CombinedText
stringlengths
4
3.42M
------------------------------------------------------------------------------ -- -- -- GNAT EXAMPLE -- -- -- -- Copyright (C) 2014, 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 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. -- -- -- ------------------------------------------------------------------------------ with Interfaces; use Interfaces; with System; use System; with Ada.Interrupts.Names; with System.Storage_Elements; package body Sci is SCI_BASE : constant := 16#fff7_e400#; TX_READY : constant := 16#100#; RX_READY : constant := 16#200#; SET_TX_INT : constant := 16#100#; SCIGCR0 : Unsigned_32; for SCIGCR0'Address use System'To_Address (SCI_BASE + 16#00#); pragma Volatile (SCIGCR0); pragma Import (Ada, SCIGCR0); SCIGCR1 : Unsigned_32; for SCIGCR1'Address use System'To_Address (SCI_BASE + 16#04#); pragma Volatile (SCIGCR1); pragma Import (Ada, SCIGCR1); SCISETINT : Unsigned_32; for SCISETINT'Address use System'To_Address (SCI_BASE + 16#0C#); pragma Volatile (SCISETINT); pragma Import (Ada, SCISETINT); SCICLEARINT : Unsigned_32; for SCICLEARINT'Address use System'To_Address (SCI_BASE + 16#10#); pragma Volatile (SCICLEARINT); pragma Import (Ada, SCICLEARINT); BRS : Unsigned_32; for BRS'Address use System'To_Address (SCI_BASE + 16#2c#); pragma Volatile (BRS); pragma Import (Ada, BRS); SCIFORMAT : Unsigned_32; for SCIFORMAT'Address use System'To_Address (SCI_BASE + 16#28#); pragma Volatile (SCIFORMAT); pragma Import (Ada, SCIFORMAT); SCIPIO0 : Unsigned_32; for SCIPIO0'Address use System'To_Address (SCI_BASE + 16#3c#); pragma Volatile (SCIPIO0); pragma Import (Ada, SCIPIO0); SCIPIO8 : Unsigned_32; for SCIPIO8'Address use System'To_Address (SCI_BASE + 16#5c#); pragma Volatile (SCIPIO8); pragma Import (Ada, SCIPIO8); SCITD : Unsigned_32; for SCITD'Address use System'To_Address (SCI_BASE + 16#38#); pragma Volatile (SCITD); pragma Import (Ada, SCITD); SCIFLR : Unsigned_32; for SCIFLR'Address use System'To_Address (SCI_BASE + 16#1c#); pragma Volatile (SCIFLR); pragma Import (Ada, SCIFLR); procedure Init is begin -- Bring out of reset SCIGCR0 := 1; -- 8n1, enable RX and TX, async, idle-line mode, SWnRST, internal clk SCIGCR1 := 16#03_00_00_22#; -- Baud rate. PLLCLK=180Mhz, VCLK = PLLCLK / 2 declare Baud : constant := 115200; VCLK : constant := 90_000_000; P : constant := VCLK / (16 * Baud) - 1; M : constant := (VCLK / Baud) rem 16; begin BRS := P + M * 2**24; end; -- 8 bits SCIFORMAT := 7; -- Enable Tx and Rx pins, pull-up SCIPIO0 := 2#110#; SCIPIO8 := 2#110#; -- Enable SCI SCIGCR1 := SCIGCR1 or 16#80#; end Init; protected Prot is pragma Interrupt_Priority; procedure Write (S : Address; L : Natural); entry Wait; private procedure Handler; pragma Attach_Handler (Handler, Ada.Interrupts.Names.LIN_Level_0_Interrupt); Done : Boolean := False; Ptr : Address; Len : Natural; end Prot; protected body Prot is procedure Write_One is use System.Storage_Elements; C : Character; for C'Address use Ptr; pragma Import (Ada, C); begin SCITD := Character'Pos (C); Len := Len - 1; Ptr := Ptr + 1; end Write_One; procedure Write (S : Address; L : Natural) is begin pragma Assert (not Done); Ptr := S; Len := L; Write_One; -- Enable interrupts (level is 0 at reset). SCISETINT := SET_TX_INT; Done := False; end Write; entry Wait when Done is begin null; end Wait; procedure Handler is begin pragma Assert ((SCIFLR and TX_READY) /= 0); if Len = 0 then -- Disable interrupts SCICLEARINT := SET_TX_INT; Done := True; else -- Next character Write_One; end if; end Handler; end Prot; procedure Put_Line (S : String) is Crlf : String := (ASCII.CR, ASCII.LF); begin if S'Length > 0 then Prot.Write (S'Address, S'Length); Prot.Wait; end if; Prot.Write (Crlf'Address, Crlf'Length); Prot.Wait; end Put_Line; begin Init; end Sci;
pragma License (Unrestricted); -- runtime unit package System.Unwind.Foreign is pragma Preelaborate; -- This is the substitute name of any exceptions propagated from any other -- runtimes. (s-except.ads) Foreign_Exception : exception with Export, Convention => Ada, External_Name => "system__exceptions__foreign_exception"; end System.Unwind.Foreign;
-- ---------------------------------------------------------------- -- -- This file contains some improvements to the gl Ada binding -- -- in order to allow a better programming style. -- -- The prototypes below follow the Implementation advice from -- -- ARM Annex B (B.3). -- -- ---------------------------------------------------------------- -- -- ----------------------------------------------------------------- -- -- Copyright (C) 2001 A.M.F.Vargas -- -- Antonio M. F. Vargas -- -- Ponta Delgada - Azores - Portugal -- -- http://www.adapower.net/~avargas -- -- E-mail: avargas@adapower.net -- -- ----------------------------------------------------------------- -- -- -- -- This library 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 library is distributed in the hope that it will be useful, -- -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -- -- General Public License for more details. -- -- -- -- You should have received a copy of the GNU General Public -- -- License along with this library; if not, write to the -- -- Free Software Foundation, Inc., 59 Temple Place - Suite 330, -- -- Boston, MA 02111-1307, USA. -- -- -- -- 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. -- -- ----------------------------------------------------------------- -- with Interfaces.C.Strings; use Interfaces.C.Strings; with Ada.Unchecked_Conversion; package body AdaGL is package CS renames Interfaces.C.Strings; function To_chars_ptr is new Ada.Unchecked_Conversion ( GLubyte_Ptr, CS.chars_ptr); -- ====================================== function Get_chars_ptr (Chars_Ref : GLenum) return CS.chars_ptr is begin return To_chars_ptr (glGetString (Chars_Ref)); end Get_chars_ptr; -- ====================================== function glGetString (Chars_Ref : GLenum) return String is temp_chars_ptr : CS.chars_ptr; begin temp_chars_ptr := Get_chars_ptr (Chars_ref); if temp_chars_ptr /= Cs.Null_Ptr then return CS.Value (Get_chars_ptr (Chars_Ref)); else return ""; end if; end glGetString; -- ====================================== end AdaGL;
-------------------------------------------------------------------------------- -- MIT License -- -- Copyright (c) 2020 Zane Myers -- -- 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 Vulkan.Math.GenDMatrix; with Vulkan.Math.Dvec4; use Vulkan.Math.GenDMatrix; use Vulkan.Math.Dvec4; -------------------------------------------------------------------------------- --< @group Vulkan Math Basic Types -------------------------------------------------------------------------------- --< @summary --< This package provides a single precision floating point matrix with 2 rows --< and 4 columns. -------------------------------------------------------------------------------- package Vulkan.Math.Dmat3x4 is pragma Preelaborate; pragma Pure; --< A 2x3 matrix of single-precision floating point numbers. subtype Vkm_Dmat3x4 is Vkm_Dmat( last_row_index => 2, last_column_index => 3); ---------------------------------------------------------------------------- --< @summary --< Constructor for Vkm_Dmat3x4 type. --< --< @description --< Construct a 2x3 matrix with each component set to zero. --< --< @return --< A 2x3 matrix. ---------------------------------------------------------------------------- function Make_Dmat3x4 return Vkm_Dmat3x4 is (GDM.Make_GenMatrix(cN => 3, rN => 2)) with Inline; ---------------------------------------------------------------------------- --< @summary --< Constructor for Vkm_Dmat3x4 type. --< --< @description --< Construct a 2x3 matrix with each component set to a different value. --< --< | value1 value3 value5 value7 | --< | value2 value4 value6 value8 | --< --< @param value1 --< The first value to set for the matrix. --< --< @param value2 --< The second value to set for the matrix. --< --< @param value3 --< The third value to set for the matrix. --< --< @param value4 --< The fourth value to set for the matrix. --< --< @param value5 --< The fifth value to set for the matrix. --< --< @param value6 --< The sixth value to set for the matrix. --< --< @param value7 --< The seventh value to set for the matrix. --< --< @param value8 --< The eighth value to set for the matrix. --< --< @param value9 --< The ninth value to set for the matrix. --< --< @param value10 --< The tenth value to set for the matrix. --< --< @param value11 --< The eleventh value to set for the matrix. --< --< @return --< A 3x4 matrix. ---------------------------------------------------------------------------- function Make_Dmat3x4 ( value1, value2 , value3 , value4 , value5, value6 , value7 , value8 , value9, value10, value11, value12 : in Vkm_Double) return Vkm_Dmat3x4 is (GDM.Make_GenMatrix( cN => 3, rN => 2, c0r0_val => value1, c0r1_val => value5, c0r2_val => value9, c1r0_val => value2, c1r1_val => value6, c1r2_val => value10, c2r0_val => value3, c2r1_val => value7, c2r2_val => value11, c3r0_val => value4, c3r1_val => value8, c3r2_val => value12)) with Inline; ---------------------------------------------------------------------------- --< @summary --< Constructor for Vkm_Dmat3x4 type. --< --< @description --< Construct a 3x4 matrix with each row set to the value of a 4 dimmensional --< vector. --< --< | value1.x value1.y value1.z value1.w | --< | value2.x value2.y value2.z value2.w | --< --< @param value1 --< The first value to set for the matrix. --< --< @param value2 --< The second value to set for the matrix. --< --< @return --< A 3x4 matrix. ---------------------------------------------------------------------------- function Make_Dmat3x4 ( value1, value2, value3: in Vkm_Dvec4) return Vkm_Dmat3x4 is (GDM.Make_GenMatrix( cN => 3, rN => 2, c0r0_val => value1.x, c0r1_val => value2.x, c0r2_val => value3.x, c1r0_val => value1.y, c1r1_val => value2.y, c1r2_val => value3.y, c2r0_val => value1.z, c2r1_val => value2.z, c2r2_val => value3.z, c3r0_val => value1.w, c3r1_val => value2.w, c3r2_val => value3.w)) with Inline; ---------------------------------------------------------------------------- --< @summary --< Constructor for Vkm_Dmat3x4 type. --< --< @description --< Construct a 2x3 matrix using values from an existing matrix. --< --< If the provided matrix has dimmensions that are not the same as this --< matrix, the corresponding element in the 4x4 identity matrix is used for --< out of bounds accesses. --< --< @param value1 --< The submatrix to extract values from. --< --< @return --< A 3x4 matrix. ---------------------------------------------------------------------------- function Make_Dmat3x4 ( value1 : in Vkm_Dmat) return Vkm_Dmat3x4 is (GDM.Make_GenMatrix( cN => 3, rN => 2, c0r0_val => value1.c0r0, c0r1_val => value1.c0r1, c0r2_val => value1.c0r2, c1r0_val => value1.c1r0, c1r1_val => value1.c1r1, c1r2_val => value1.c1r2, c2r0_val => value1.c2r0, c2r1_val => value1.c2r1, c2r2_val => value1.c2r2, c3r0_val => value1.c3r0, c3r1_val => value1.c3r1, c3r2_val => value1.c3r2)) with Inline; end Vulkan.Math.Dmat3x4;
---------------------------------------------------- -- agar_ada_core_demo.adb: Agar Ada bindings demo -- ---------------------------------------------------- with Agar; with Agar.Init; with Agar.Error; with Agar.Object; use Agar.Object; with Agar.Event; with Agar.DSO; with Agar.Types; use Agar.Types; with Ada.Text_IO; with System; with myatexit; with myeventhandler; with Animal; with Ada.Real_Time; use Ada.Real_Time; procedure agar_ada_core_demo is package T_IO renames Ada.Text_IO; package EV renames Agar.Event; package RT renames Ada.Real_Time; Major : Natural; Minor : Natural; Patch : Natural; My_Parent : Object_Access; My_Child_1 : Object_Access; My_Child_2 : Object_Access; Animal_Class : Class_Access; Cow : Object_Access; Event : EV.Event_Access; Epoch : constant RT.Time := RT.Clock; begin if not Agar.Init.Init_Core (Program_Name => "agar_ada_core_demo", Create_Directory => True) then raise program_error with Agar.Error.Get_Error; end if; T_IO.Put_Line("Agar-Core initialized in " & Duration'Image(RT.To_Duration(RT.Clock - Epoch)) & "s"); -- Register a test atexit callback. Agar.Init.At_Exit(myatexit.atexit'Access); -- Print Agar's version number. Agar.Init.Get_Version(Major, Minor, Patch); T_IO.Put_Line ("Agar version" & Integer'Image(Major) & " ." & Integer'Image(Minor) & " ." & Integer'Image(Patch)); T_IO.Put_Line ("Memory model: " & Natural'Image(AG_MODEL)); -- Register the Agar object class "Animal" specified in animal.ads. T_IO.Put_Line("Registering Animal class (" & Natural'Image(Animal.Animal'Size / System.Storage_Unit) & " bytes)"); Animal_Class := Animal.Create_Class; -- Create an instance the Animal class. Cow := New_Object(Animal_Class); Set_Name(Cow, "Cow"); Debug(Cow, "Moo!"); -- Create a generic AG_Object(3) instance. My_Parent := New_Object(Lookup_Class("AG_Object")); Set_Name(My_Parent, "My_Test_Object"); -- Access the class description of the object. T_IO.Put_Line("Object is" & Natural'Image(Natural(My_Parent.Class.Size)) & " bytes"); -- Configure an event handler for `some-event' and pass it some arguments. Event := Set_Event (Object => My_Parent, Event => "some-event", Func => myeventhandler.Some_Event'Access); EV.Push_String (Event, "This is a string argument"); -- untagged arguments EV.Push_Float (Event, 1234.0); EV.Push_Natural (Event, "width", 640); -- tagged arguments EV.Push_Natural (Event, "height", 480); -- Raise `some-event' by name. T_IO.Put_Line("Raising some-event by name"); Post_Event (My_Parent, "some-event"); -- Raise `some-event' by access (as returned by Set_Event). T_IO.Put_Line("Raising some-event by access"); Post_Event (My_Parent, Event); -- -- Raise `some-event' and pass the callback procedure some extra arguments -- on top of the existing argument list constructed by Set_Event. -- --Event := Prepare_Event (My_Parent, "Some-Event"); --EV.Push_Integer (Event, "timestamp", Ada.Real_Time.Clock - Epoch); --EV.Push_String (Event, "Hello there!"); --Post_Event (Event); -- Create two child objects under My_Parent. T_IO.Put_Line("Creating child objects"); My_Child_1 := New_Object(My_Parent, "My_Child_1", Lookup_Class("AG_Object")); My_Child_2 := New_Object(My_Parent, "My_Child_2", Lookup_Class("AG_Object")); -- Objects can send events to each other. Post_Event (Source => My_Child_1, Target => My_Child_2, Event => "Ping"); -- Propagate makes events broadcast to the object's descendants. Set_Event (Object => My_Parent, Event => "Ping", Func => myeventhandler.Ping'Access, Async => False, Propagate => True); Post_Event (Target => My_Parent, Event => "Ping"); T_IO.Put_Line("My_Parent path = " & Get_Name(My_Parent)); T_IO.Put_Line("My_Child_1 path = " & Get_Name(My_Child_1)); T_IO.Put_Line("My_Child_2 path = " & Get_Name(My_Child_2)); -- The Parent and Root members of an object are protected by the parent VFS. Lock_VFS(My_Child_2); T_IO.Put_Line("Parent of My_Child_2 is = " & Get_Name(My_Child_2.Parent)); T_IO.Put_Line("Root of My_Child_2 is = " & Get_Name(My_Child_2.Root)); Unlock_VFS(My_Child_2); -- Serialize an object to a file. if not Save(Cow, "Cow.obj") then raise program_error with Agar.Error.Get_Error; end if; T_IO.Put_Line("Saved Cow to Cow.obj"); if not Save(My_Parent, "My_Parent.obj") then raise program_error with Agar.Error.Get_Error; end if; T_IO.Put_Line("Saved My_Parent to My_Parent.obj"); -- Serialize the entire VFS to the default data directory. if not Save_All(My_Parent) then raise program_error with Agar.Error.Get_Error; end if; T_IO.Put_Line("Saved My_Parent to VFS"); -- Register a module directory and list all available DSOs. Agar.Object.Register_Module_Directory ("/tmp/dsotest"); declare DSO_List : constant Agar.DSO.DSO_List := Agar.DSO.Get_List; begin for DSO of DSO_List loop T_IO.Put("Available DSO: "); T_IO.Put_Line(DSO); end loop; end; Detach(My_Child_1); Detach(My_Child_2); Destroy(My_Child_1); Destroy(My_Child_2); Destroy(My_Parent); Destroy(Cow); Destroy_Class(Animal_Class); T_IO.Put_Line("Exiting after " & Duration'Image(RT.To_Duration(RT.Clock - Epoch)) & "s"); Agar.Init.Quit; end agar_ada_core_demo;
-- part of AdaYaml, (c) 2017 Felix Krause -- released under the terms of the MIT license, see the file "copying.txt" with Ada.Text_IO; with AUnit.Assertions; use AUnit.Assertions; package body Text.Chunk_Test is procedure Register_Tests (T : in out TC) is use AUnit.Test_Cases.Registration; begin Register_Routine (T, Test_One_String'Access, "One string"); Register_Routine (T, Test_Two_Strings'Access, "Two strings"); end Register_Tests; procedure Set_Up (T : in out TC) is begin T.P.Create (128); end Set_Up; function Name (T : TC) return Message_String is pragma Unreferenced (T); begin return AUnit.Format ("Chunk tests for String_Pool"); end Name; procedure Test_One_String (T : in out Test_Cases.Test_Case'Class) is Test_Data : constant String := "123456"; C : constant Reference := TC (T).P.From_String (Test_Data); begin Ada.Text_IO.Put_Line ("Test one string, chunk content:"); Ada.Text_IO.Put_Line (TC (T).P.Current_Chunk_As_String); Assert (C = Test_Data, "Data mismatch!"); declare C2 : constant Reference := C; begin Ada.Text_IO.Put_Line ("Range after copy: (" & C2.Data.all'First'Img & " .." & C2.Data.all'Last'Img & ')'); end; end Test_One_String; procedure Test_Two_Strings (T : in out Test_Cases.Test_Case'Class) is S1 : constant String := "aaaa"; S2 : constant String := "bbbb"; C1 : constant Reference := TC (T).P.From_String (S1); C2 : constant Reference := TC (T).P.From_String (S2); begin Ada.Text_IO.Put_Line ("Test two strings, chunk content:"); Ada.Text_IO.Put_Line (TC (T).P.Current_Chunk_As_String); Assert (C1 = S1, "S1 mismatch, is " & C1); Assert (C2 = S2, "S2 mismatch!"); end Test_Two_Strings; end Text.Chunk_Test;
-- CD5012E.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 AN ADDRESS CLAUSE CAN BE GIVEN FOR A VARIABLE OF A -- FIXED POINT TYPE IN THE DECLARATIVE PART OF A GENERIC SUBPROGRAM. -- HISTORY: -- DHH 09/15/87 CREATED ORIGINAL TEST. -- PWB 05/11/89 CHANGED EXTENSION FROM '.DEP' TO '.ADA'. WITH SYSTEM; USE SYSTEM; WITH REPORT; USE REPORT; WITH SPPRT13; PROCEDURE CD5012E IS BEGIN TEST ("CD5012E", "AN ADDRESS CLAUSE CAN BE " & "GIVEN FOR A VARIABLE OF A FIXED POINT " & "TYPE IN THE DECLARATIVE PART OF A " & "GENERIC SUBPROGRAM"); DECLARE GENERIC PROCEDURE GENPROC; PROCEDURE GENPROC IS TYPE FIXED IS DELTA 2.0**(-4) RANGE -10.0..10.0; TESTFIX : FIXED := 0.0; FOR TESTFIX USE AT SPPRT13.VARIABLE_ADDRESS; BEGIN IF EQUAL (3, 3) THEN TESTFIX := 1.0; END IF; IF TESTFIX /= 1.0 THEN FAILED ("WRONG VALUE FOR VARIABLE IN " & "A GENERIC PROCEDURE"); END IF; IF TESTFIX'ADDRESS /= SPPRT13.VARIABLE_ADDRESS THEN FAILED ("WRONG ADDRESS FOR VARIABLE " & "IN A GENERIC PROCEDURE"); END IF; END GENPROC; PROCEDURE PROC IS NEW GENPROC; BEGIN PROC; END; RESULT; END CD5012E;
------------------------------------------------------------------------------ -- -- -- GNAT LIBRARY COMPONENTS -- -- -- -- ADA.CONTAINERS.FUNCTIONAL_BASE -- -- -- -- B o d y -- -- -- -- Copyright (C) 2016-2019, 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/>. -- ------------------------------------------------------------------------------ pragma Ada_2012; package body Ada.Containers.Functional_Base with SPARK_Mode => Off is function To_Count (Idx : Extended_Index) return Count_Type is (Count_Type (Extended_Index'Pos (Idx) - Extended_Index'Pos (Extended_Index'First))); function To_Index (Position : Count_Type) return Extended_Index is (Extended_Index'Val (Position + Extended_Index'Pos (Extended_Index'First))); -- Conversion functions between Index_Type and Count_Type function Find (C : Container; E : access Element_Type) return Count_Type; -- Search a container C for an element equal to E.all, returning the -- position in the underlying array. --------- -- "=" -- --------- function "=" (C1 : Container; C2 : Container) return Boolean is begin if C1.Elements'Length /= C2.Elements'Length then return False; end if; for I in C1.Elements'Range loop if C1.Elements (I).all /= C2.Elements (I).all then return False; end if; end loop; return True; end "="; ---------- -- "<=" -- ---------- function "<=" (C1 : Container; C2 : Container) return Boolean is begin for I in C1.Elements'Range loop if Find (C2, C1.Elements (I)) = 0 then return False; end if; end loop; return True; end "<="; --------- -- Add -- --------- function Add (C : Container; I : Index_Type; E : Element_Type) return Container is A : constant Element_Array_Access := new Element_Array'(1 .. C.Elements'Last + 1 => <>); P : Count_Type := 0; begin for J in 1 .. C.Elements'Last + 1 loop if J /= To_Count (I) then P := P + 1; A (J) := C.Elements (P); else A (J) := new Element_Type'(E); end if; end loop; return Container'(Elements => A); end Add; ---------- -- Find -- ---------- function Find (C : Container; E : access Element_Type) return Count_Type is begin for I in C.Elements'Range loop if C.Elements (I).all = E.all then return I; end if; end loop; return 0; end Find; function Find (C : Container; E : Element_Type) return Extended_Index is (To_Index (Find (C, E'Unrestricted_Access))); --------- -- Get -- --------- function Get (C : Container; I : Index_Type) return Element_Type is (C.Elements (To_Count (I)).all); ------------------ -- Intersection -- ------------------ function Intersection (C1 : Container; C2 : Container) return Container is A : constant Element_Array_Access := new Element_Array'(1 .. Num_Overlaps (C1, C2) => <>); P : Count_Type := 0; begin for I in C1.Elements'Range loop if Find (C2, C1.Elements (I)) > 0 then P := P + 1; A (P) := C1.Elements (I); end if; end loop; return Container'(Elements => A); end Intersection; ------------ -- Length -- ------------ function Length (C : Container) return Count_Type is (C.Elements'Length); --------------------- -- Num_Overlaps -- --------------------- function Num_Overlaps (C1 : Container; C2 : Container) return Count_Type is P : Count_Type := 0; begin for I in C1.Elements'Range loop if Find (C2, C1.Elements (I)) > 0 then P := P + 1; end if; end loop; return P; end Num_Overlaps; ------------ -- Remove -- ------------ function Remove (C : Container; I : Index_Type) return Container is A : constant Element_Array_Access := new Element_Array'(1 .. C.Elements'Last - 1 => <>); P : Count_Type := 0; begin for J in C.Elements'Range loop if J /= To_Count (I) then P := P + 1; A (P) := C.Elements (J); end if; end loop; return Container'(Elements => A); end Remove; --------- -- Set -- --------- function Set (C : Container; I : Index_Type; E : Element_Type) return Container is Result : constant Container := Container'(Elements => new Element_Array'(C.Elements.all)); begin Result.Elements (To_Count (I)) := new Element_Type'(E); return Result; end Set; ----------- -- Union -- ----------- function Union (C1 : Container; C2 : Container) return Container is N : constant Count_Type := Num_Overlaps (C1, C2); begin -- if C2 is completely included in C1 then return C1 if N = Length (C2) then return C1; end if; -- else loop through C2 to find the remaining elements declare L : constant Count_Type := Length (C1) - N + Length (C2); A : constant Element_Array_Access := new Element_Array' (C1.Elements.all & (Length (C1) + 1 .. L => <>)); P : Count_Type := Length (C1); begin for I in C2.Elements'Range loop if Find (C1, C2.Elements (I)) = 0 then P := P + 1; A (P) := C2.Elements (I); end if; end loop; return Container'(Elements => A); end; end Union; end Ada.Containers.Functional_Base;
<?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/> <cdfg class_id="1" tracking_level="1" version="0" object_id="_0"> <name>dct_dct_2d</name> <ret_bitwidth>0</ret_bitwidth> <ports class_id="2" tracking_level="0" version="0"> <count>9</count> <item_version>0</item_version> <item class_id="3" tracking_level="1" version="0" object_id="_1"> <Value class_id="4" tracking_level="0" version="0"> <Obj class_id="5" tracking_level="0" version="0"> <type>1</type> <id>1</id> <name>in_block_0</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>in_block[0]</originalName> <rtlName/> <coreName>RAM</coreName> </Obj> <bitwidth>16</bitwidth> </Value> <direction>0</direction> <if_type>1</if_type> <array_size>8</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>in_block_1</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>in_block[1]</originalName> <rtlName/> <coreName>RAM</coreName> </Obj> <bitwidth>16</bitwidth> </Value> <direction>0</direction> <if_type>1</if_type> <array_size>8</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_3"> <Value> <Obj> <type>1</type> <id>3</id> <name>in_block_2</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>in_block[2]</originalName> <rtlName/> <coreName>RAM</coreName> </Obj> <bitwidth>16</bitwidth> </Value> <direction>0</direction> <if_type>1</if_type> <array_size>8</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_4"> <Value> <Obj> <type>1</type> <id>4</id> <name>in_block_3</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>in_block[3]</originalName> <rtlName/> <coreName>RAM</coreName> </Obj> <bitwidth>16</bitwidth> </Value> <direction>0</direction> <if_type>1</if_type> <array_size>8</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_5"> <Value> <Obj> <type>1</type> <id>5</id> <name>in_block_4</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>in_block[4]</originalName> <rtlName/> <coreName>RAM</coreName> </Obj> <bitwidth>16</bitwidth> </Value> <direction>0</direction> <if_type>1</if_type> <array_size>8</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_6"> <Value> <Obj> <type>1</type> <id>6</id> <name>in_block_5</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>in_block[5]</originalName> <rtlName/> <coreName>RAM</coreName> </Obj> <bitwidth>16</bitwidth> </Value> <direction>0</direction> <if_type>1</if_type> <array_size>8</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_7"> <Value> <Obj> <type>1</type> <id>7</id> <name>in_block_6</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>in_block[6]</originalName> <rtlName/> <coreName>RAM</coreName> </Obj> <bitwidth>16</bitwidth> </Value> <direction>0</direction> <if_type>1</if_type> <array_size>8</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_8"> <Value> <Obj> <type>1</type> <id>8</id> <name>in_block_7</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>in_block[7]</originalName> <rtlName/> <coreName>RAM</coreName> </Obj> <bitwidth>16</bitwidth> </Value> <direction>0</direction> <if_type>1</if_type> <array_size>8</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_9"> <Value> <Obj> <type>1</type> <id>9</id> <name>out_block</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>out_block</originalName> <rtlName/> <coreName>RAM</coreName> </Obj> <bitwidth>16</bitwidth> </Value> <direction>1</direction> <if_type>1</if_type> <array_size>64</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>96</count> <item_version>0</item_version> <item class_id="9" tracking_level="1" version="0" object_id="_10"> <Value> <Obj> <type>0</type> <id>18</id> <name>row_outbuf</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName>row_outbuf_U</rtlName> <coreName>RAM</coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>150</item> </oprand_edges> <opcode>alloca</opcode> </item> <item class_id_reference="9" object_id="_11"> <Value> <Obj> <type>0</type> <id>19</id> <name>col_outbuf</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName>col_outbuf_U</rtlName> <coreName>RAM</coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>151</item> </oprand_edges> <opcode>alloca</opcode> </item> <item class_id_reference="9" object_id="_12"> <Value> <Obj> <type>0</type> <id>20</id> <name>col_inbuf_0</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>71</lineNumber> <contextFuncName>dct_2d</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/Design_Analysis/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>dct.cpp</first> <second>dct_2d</second> </first> <second>71</second> </item> </second> </item> </inlineStackInfo> <originalName>col_inbuf[0]</originalName> <rtlName>col_inbuf_0_U</rtlName> <coreName>RAM</coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>152</item> </oprand_edges> <opcode>alloca</opcode> </item> <item class_id_reference="9" object_id="_13"> <Value> <Obj> <type>0</type> <id>21</id> <name>col_inbuf_1</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>71</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>71</second> </item> </second> </item> </inlineStackInfo> <originalName>col_inbuf[1]</originalName> <rtlName>col_inbuf_1_U</rtlName> <coreName>RAM</coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>153</item> </oprand_edges> <opcode>alloca</opcode> </item> <item class_id_reference="9" object_id="_14"> <Value> <Obj> <type>0</type> <id>22</id> <name>col_inbuf_2</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>71</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>71</second> </item> </second> </item> </inlineStackInfo> <originalName>col_inbuf[2]</originalName> <rtlName>col_inbuf_2_U</rtlName> <coreName>RAM</coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>154</item> </oprand_edges> <opcode>alloca</opcode> </item> <item class_id_reference="9" object_id="_15"> <Value> <Obj> <type>0</type> <id>23</id> <name>col_inbuf_3</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>71</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>71</second> </item> </second> </item> </inlineStackInfo> <originalName>col_inbuf[3]</originalName> <rtlName>col_inbuf_3_U</rtlName> <coreName>RAM</coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>155</item> </oprand_edges> <opcode>alloca</opcode> </item> <item class_id_reference="9" object_id="_16"> <Value> <Obj> <type>0</type> <id>24</id> <name>col_inbuf_4</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>71</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>71</second> </item> </second> </item> </inlineStackInfo> <originalName>col_inbuf[4]</originalName> <rtlName>col_inbuf_4_U</rtlName> <coreName>RAM</coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>156</item> </oprand_edges> <opcode>alloca</opcode> </item> <item class_id_reference="9" object_id="_17"> <Value> <Obj> <type>0</type> <id>25</id> <name>col_inbuf_5</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>71</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>71</second> </item> </second> </item> </inlineStackInfo> <originalName>col_inbuf[5]</originalName> <rtlName>col_inbuf_5_U</rtlName> <coreName>RAM</coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>157</item> </oprand_edges> <opcode>alloca</opcode> </item> <item class_id_reference="9" object_id="_18"> <Value> <Obj> <type>0</type> <id>26</id> <name>col_inbuf_6</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>71</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>71</second> </item> </second> </item> </inlineStackInfo> <originalName>col_inbuf[6]</originalName> <rtlName>col_inbuf_6_U</rtlName> <coreName>RAM</coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>158</item> </oprand_edges> <opcode>alloca</opcode> </item> <item class_id_reference="9" object_id="_19"> <Value> <Obj> <type>0</type> <id>27</id> <name>col_inbuf_7</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>71</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>71</second> </item> </second> </item> </inlineStackInfo> <originalName>col_inbuf[7]</originalName> <rtlName>col_inbuf_7_U</rtlName> <coreName>RAM</coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>159</item> </oprand_edges> <opcode>alloca</opcode> </item> <item class_id_reference="9" object_id="_20"> <Value> <Obj> <type>0</type> <id>28</id> <name/> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>76</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>76</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>160</item> </oprand_edges> <opcode>br</opcode> </item> <item class_id_reference="9" object_id="_21"> <Value> <Obj> <type>0</type> <id>30</id> <name>i</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>i</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>162</item> <item>163</item> <item>164</item> <item>165</item> </oprand_edges> <opcode>phi</opcode> </item> <item class_id_reference="9" object_id="_22"> <Value> <Obj> <type>0</type> <id>31</id> <name>exitcond5</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>76</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>76</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>exitcond5_fu_404_p2</rtlName> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>166</item> <item>168</item> </oprand_edges> <opcode>icmp</opcode> </item> <item class_id_reference="9" object_id="_23"> <Value> <Obj> <type>0</type> <id>33</id> <name>i_4</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>76</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>76</second> </item> </second> </item> </inlineStackInfo> <originalName>i</originalName> <rtlName>i_4_fu_410_p2</rtlName> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>169</item> <item>171</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_24"> <Value> <Obj> <type>0</type> <id>34</id> <name/> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>76</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>76</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>172</item> <item>173</item> <item>174</item> </oprand_edges> <opcode>br</opcode> </item> <item class_id_reference="9" object_id="_25"> <Value> <Obj> <type>0</type> <id>37</id> <name/> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>77</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>77</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>grp_dct_dct_1d_fu_361</rtlName> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>20</count> <item_version>0</item_version> <item>176</item> <item>177</item> <item>178</item> <item>179</item> <item>180</item> <item>181</item> <item>182</item> <item>183</item> <item>184</item> <item>185</item> <item>186</item> <item>187</item> <item>392</item> <item>393</item> <item>394</item> <item>395</item> <item>396</item> <item>397</item> <item>398</item> <item>399</item> </oprand_edges> <opcode>call</opcode> </item> <item class_id_reference="9" object_id="_26"> <Value> <Obj> <type>0</type> <id>38</id> <name/> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>76</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>76</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>188</item> </oprand_edges> <opcode>br</opcode> </item> <item class_id_reference="9" object_id="_27"> <Value> <Obj> <type>0</type> <id>40</id> <name>indvar_flatten</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>189</item> <item>190</item> <item>192</item> <item>193</item> </oprand_edges> <opcode>phi</opcode> </item> <item class_id_reference="9" object_id="_28"> <Value> <Obj> <type>0</type> <id>41</id> <name>j</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>83</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>83</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>194</item> <item>195</item> <item>196</item> <item>197</item> </oprand_edges> <opcode>phi</opcode> </item> <item class_id_reference="9" object_id="_29"> <Value> <Obj> <type>0</type> <id>42</id> <name>i_1</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>i</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>198</item> <item>199</item> <item>200</item> <item>201</item> </oprand_edges> <opcode>phi</opcode> </item> <item class_id_reference="9" object_id="_30"> <Value> <Obj> <type>0</type> <id>43</id> <name>exitcond_flatten</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName>exitcond_flatten_fu_416_p2</rtlName> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>202</item> <item>204</item> </oprand_edges> <opcode>icmp</opcode> </item> <item class_id_reference="9" object_id="_31"> <Value> <Obj> <type>0</type> <id>44</id> <name>indvar_flatten_next</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName>indvar_flatten_next_fu_422_p2</rtlName> <coreName/> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>205</item> <item>207</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_32"> <Value> <Obj> <type>0</type> <id>45</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>208</item> <item>209</item> <item>210</item> </oprand_edges> <opcode>br</opcode> </item> <item class_id_reference="9" object_id="_33"> <Value> <Obj> <type>0</type> <id>49</id> <name>exitcond</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>83</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>83</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>exitcond_fu_428_p2</rtlName> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>214</item> <item>215</item> </oprand_edges> <opcode>icmp</opcode> </item> <item class_id_reference="9" object_id="_34"> <Value> <Obj> <type>0</type> <id>50</id> <name>i_1_mid2</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>83</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>83</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>i_1_mid2_fu_434_p3</rtlName> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>216</item> <item>217</item> <item>218</item> </oprand_edges> <opcode>select</opcode> </item> <item class_id_reference="9" object_id="_35"> <Value> <Obj> <type>0</type> <id>51</id> <name>j_s</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>81</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>81</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>j_s_fu_442_p2</rtlName> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>219</item> <item>220</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_36"> <Value> <Obj> <type>0</type> <id>52</id> <name>j_mid2</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>83</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>83</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>j_mid2_fu_448_p3</rtlName> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>221</item> <item>222</item> <item>223</item> </oprand_edges> <opcode>select</opcode> </item> <item class_id_reference="9" object_id="_37"> <Value> <Obj> <type>0</type> <id>53</id> <name>tmp_s</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>84</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>84</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_s_fu_493_p1</rtlName> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>224</item> </oprand_edges> <opcode>zext</opcode> </item> <item class_id_reference="9" object_id="_38"> <Value> <Obj> <type>0</type> <id>57</id> <name>tmp_trn_cast</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>83</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>83</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_trn_cast_fu_456_p1</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>225</item> </oprand_edges> <opcode>zext</opcode> </item> <item class_id_reference="9" object_id="_39"> <Value> <Obj> <type>0</type> <id>58</id> <name>tmp</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>83</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>83</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_fu_460_p3</rtlName> <coreName/> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>227</item> <item>228</item> <item>230</item> </oprand_edges> <opcode>bitconcatenate</opcode> </item> <item class_id_reference="9" object_id="_40"> <Value> <Obj> <type>0</type> <id>59</id> <name>p_addr_cast</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>84</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>84</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>p_addr_cast_fu_468_p1</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>231</item> </oprand_edges> <opcode>zext</opcode> </item> <item class_id_reference="9" object_id="_41"> <Value> <Obj> <type>0</type> <id>60</id> <name>p_addr1</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>84</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>84</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>p_addr1_fu_472_p2</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>232</item> <item>233</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_42"> <Value> <Obj> <type>0</type> <id>61</id> <name>tmp_3</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>84</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>84</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_3_fu_478_p1</rtlName> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>234</item> </oprand_edges> <opcode>zext</opcode> </item> <item class_id_reference="9" object_id="_43"> <Value> <Obj> <type>0</type> <id>62</id> <name>row_outbuf_addr</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>84</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>84</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>6</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>235</item> <item>237</item> <item>238</item> </oprand_edges> <opcode>getelementptr</opcode> </item> <item class_id_reference="9" object_id="_44"> <Value> <Obj> <type>0</type> <id>63</id> <name>row_outbuf_load</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>84</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>84</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>239</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_45"> <Value> <Obj> <type>0</type> <id>64</id> <name>tmp_1</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>83</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>83</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_1_fu_483_p1</rtlName> <coreName/> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>240</item> </oprand_edges> <opcode>trunc</opcode> </item> <item class_id_reference="9" object_id="_46"> <Value> <Obj> <type>0</type> <id>65</id> <name/> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>84</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>84</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>16</count> <item_version>0</item_version> <item>241</item> <item>242</item> <item>243</item> <item>244</item> <item>246</item> <item>247</item> <item>249</item> <item>250</item> <item>252</item> <item>253</item> <item>255</item> <item>256</item> <item>258</item> <item>259</item> <item>261</item> <item>262</item> </oprand_edges> <opcode>switch</opcode> </item> <item class_id_reference="9" object_id="_47"> <Value> <Obj> <type>0</type> <id>67</id> <name>col_inbuf_6_addr</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>84</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>84</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>380</item> <item>381</item> <item>382</item> </oprand_edges> <opcode>getelementptr</opcode> </item> <item class_id_reference="9" object_id="_48"> <Value> <Obj> <type>0</type> <id>68</id> <name/> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>84</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>84</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>383</item> <item>384</item> </oprand_edges> <opcode>store</opcode> </item> <item class_id_reference="9" object_id="_49"> <Value> <Obj> <type>0</type> <id>69</id> <name/> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>84</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>84</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>385</item> </oprand_edges> <opcode>br</opcode> </item> <item class_id_reference="9" object_id="_50"> <Value> <Obj> <type>0</type> <id>71</id> <name>col_inbuf_5_addr</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>84</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>84</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>374</item> <item>375</item> <item>376</item> </oprand_edges> <opcode>getelementptr</opcode> </item> <item class_id_reference="9" object_id="_51"> <Value> <Obj> <type>0</type> <id>72</id> <name/> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>84</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>84</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>377</item> <item>378</item> </oprand_edges> <opcode>store</opcode> </item> <item class_id_reference="9" object_id="_52"> <Value> <Obj> <type>0</type> <id>73</id> <name/> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>84</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>84</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>379</item> </oprand_edges> <opcode>br</opcode> </item> <item class_id_reference="9" object_id="_53"> <Value> <Obj> <type>0</type> <id>75</id> <name>col_inbuf_4_addr</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>84</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>84</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>368</item> <item>369</item> <item>370</item> </oprand_edges> <opcode>getelementptr</opcode> </item> <item class_id_reference="9" object_id="_54"> <Value> <Obj> <type>0</type> <id>76</id> <name/> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>84</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>84</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>371</item> <item>372</item> </oprand_edges> <opcode>store</opcode> </item> <item class_id_reference="9" object_id="_55"> <Value> <Obj> <type>0</type> <id>77</id> <name/> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>84</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>84</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>373</item> </oprand_edges> <opcode>br</opcode> </item> <item class_id_reference="9" object_id="_56"> <Value> <Obj> <type>0</type> <id>79</id> <name>col_inbuf_3_addr</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>84</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>84</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>362</item> <item>363</item> <item>364</item> </oprand_edges> <opcode>getelementptr</opcode> </item> <item class_id_reference="9" object_id="_57"> <Value> <Obj> <type>0</type> <id>80</id> <name/> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>84</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>84</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>365</item> <item>366</item> </oprand_edges> <opcode>store</opcode> </item> <item class_id_reference="9" object_id="_58"> <Value> <Obj> <type>0</type> <id>81</id> <name/> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>84</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>84</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>367</item> </oprand_edges> <opcode>br</opcode> </item> <item class_id_reference="9" object_id="_59"> <Value> <Obj> <type>0</type> <id>83</id> <name>col_inbuf_2_addr</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>84</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>84</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>356</item> <item>357</item> <item>358</item> </oprand_edges> <opcode>getelementptr</opcode> </item> <item class_id_reference="9" object_id="_60"> <Value> <Obj> <type>0</type> <id>84</id> <name/> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>84</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>84</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>359</item> <item>360</item> </oprand_edges> <opcode>store</opcode> </item> <item class_id_reference="9" object_id="_61"> <Value> <Obj> <type>0</type> <id>85</id> <name/> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>84</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>84</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>361</item> </oprand_edges> <opcode>br</opcode> </item> <item class_id_reference="9" object_id="_62"> <Value> <Obj> <type>0</type> <id>87</id> <name>col_inbuf_1_addr</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>84</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>84</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>350</item> <item>351</item> <item>352</item> </oprand_edges> <opcode>getelementptr</opcode> </item> <item class_id_reference="9" object_id="_63"> <Value> <Obj> <type>0</type> <id>88</id> <name/> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>84</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>84</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>353</item> <item>354</item> </oprand_edges> <opcode>store</opcode> </item> <item class_id_reference="9" object_id="_64"> <Value> <Obj> <type>0</type> <id>89</id> <name/> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>84</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>84</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>355</item> </oprand_edges> <opcode>br</opcode> </item> <item class_id_reference="9" object_id="_65"> <Value> <Obj> <type>0</type> <id>91</id> <name>col_inbuf_0_addr</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>84</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>84</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>344</item> <item>345</item> <item>346</item> </oprand_edges> <opcode>getelementptr</opcode> </item> <item class_id_reference="9" object_id="_66"> <Value> <Obj> <type>0</type> <id>92</id> <name/> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>84</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>84</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>347</item> <item>348</item> </oprand_edges> <opcode>store</opcode> </item> <item class_id_reference="9" object_id="_67"> <Value> <Obj> <type>0</type> <id>93</id> <name/> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>84</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>84</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>349</item> </oprand_edges> <opcode>br</opcode> </item> <item class_id_reference="9" object_id="_68"> <Value> <Obj> <type>0</type> <id>95</id> <name>col_inbuf_7_addr</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>84</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>84</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>386</item> <item>387</item> <item>388</item> </oprand_edges> <opcode>getelementptr</opcode> </item> <item class_id_reference="9" object_id="_69"> <Value> <Obj> <type>0</type> <id>96</id> <name/> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>84</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>84</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>389</item> <item>390</item> </oprand_edges> <opcode>store</opcode> </item> <item class_id_reference="9" object_id="_70"> <Value> <Obj> <type>0</type> <id>97</id> <name/> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>84</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>84</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>391</item> </oprand_edges> <opcode>br</opcode> </item> <item class_id_reference="9" object_id="_71"> <Value> <Obj> <type>0</type> <id>100</id> <name>i_6</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>83</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>83</second> </item> </second> </item> </inlineStackInfo> <originalName>i</originalName> <rtlName>i_6_fu_487_p2</rtlName> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>211</item> <item>212</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_72"> <Value> <Obj> <type>0</type> <id>101</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>213</item> </oprand_edges> <opcode>br</opcode> </item> <item class_id_reference="9" object_id="_73"> <Value> <Obj> <type>0</type> <id>103</id> <name>i_2</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>i</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>263</item> <item>264</item> <item>265</item> <item>266</item> </oprand_edges> <opcode>phi</opcode> </item> <item class_id_reference="9" object_id="_74"> <Value> <Obj> <type>0</type> <id>104</id> <name>exitcond2</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>87</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>87</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>exitcond2_fu_504_p2</rtlName> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>267</item> <item>268</item> </oprand_edges> <opcode>icmp</opcode> </item> <item class_id_reference="9" object_id="_75"> <Value> <Obj> <type>0</type> <id>106</id> <name>i_5</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>87</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>87</second> </item> </second> </item> </inlineStackInfo> <originalName>i</originalName> <rtlName>i_5_fu_510_p2</rtlName> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>269</item> <item>270</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_76"> <Value> <Obj> <type>0</type> <id>107</id> <name/> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>87</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>87</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>271</item> <item>272</item> <item>273</item> </oprand_edges> <opcode>br</opcode> </item> <item class_id_reference="9" object_id="_77"> <Value> <Obj> <type>0</type> <id>110</id> <name/> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>88</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>88</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>grp_dct_dct_1d_fu_361</rtlName> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>20</count> <item_version>0</item_version> <item>274</item> <item>275</item> <item>276</item> <item>277</item> <item>278</item> <item>279</item> <item>280</item> <item>281</item> <item>282</item> <item>283</item> <item>284</item> <item>285</item> <item>400</item> <item>401</item> <item>402</item> <item>403</item> <item>404</item> <item>405</item> <item>406</item> <item>407</item> </oprand_edges> <opcode>call</opcode> </item> <item class_id_reference="9" object_id="_78"> <Value> <Obj> <type>0</type> <id>111</id> <name/> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>87</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>87</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>286</item> </oprand_edges> <opcode>br</opcode> </item> <item class_id_reference="9" object_id="_79"> <Value> <Obj> <type>0</type> <id>113</id> <name>indvar_flatten1</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>287</item> <item>288</item> <item>289</item> <item>290</item> </oprand_edges> <opcode>phi</opcode> </item> <item class_id_reference="9" object_id="_80"> <Value> <Obj> <type>0</type> <id>114</id> <name>j_1</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>94</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>94</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>291</item> <item>292</item> <item>293</item> <item>294</item> </oprand_edges> <opcode>phi</opcode> </item> <item class_id_reference="9" object_id="_81"> <Value> <Obj> <type>0</type> <id>115</id> <name>i_3</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>i</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>295</item> <item>296</item> <item>297</item> <item>298</item> </oprand_edges> <opcode>phi</opcode> </item> <item class_id_reference="9" object_id="_82"> <Value> <Obj> <type>0</type> <id>116</id> <name>exitcond_flatten1</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName>exitcond_flatten1_fu_516_p2</rtlName> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>299</item> <item>300</item> </oprand_edges> <opcode>icmp</opcode> </item> <item class_id_reference="9" object_id="_83"> <Value> <Obj> <type>0</type> <id>117</id> <name>indvar_flatten_next1</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName>indvar_flatten_next1_fu_522_p2</rtlName> <coreName/> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>301</item> <item>302</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_84"> <Value> <Obj> <type>0</type> <id>118</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>303</item> <item>304</item> <item>305</item> </oprand_edges> <opcode>br</opcode> </item> <item class_id_reference="9" object_id="_85"> <Value> <Obj> <type>0</type> <id>122</id> <name>exitcond1</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>94</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>94</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>exitcond1_fu_528_p2</rtlName> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>306</item> <item>307</item> </oprand_edges> <opcode>icmp</opcode> </item> <item class_id_reference="9" object_id="_86"> <Value> <Obj> <type>0</type> <id>123</id> <name>i_3_mid2</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>94</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>94</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>i_3_mid2_fu_534_p3</rtlName> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>308</item> <item>309</item> <item>310</item> </oprand_edges> <opcode>select</opcode> </item> <item class_id_reference="9" object_id="_87"> <Value> <Obj> <type>0</type> <id>124</id> <name>j_2</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>92</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>92</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>j_2_fu_542_p2</rtlName> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>311</item> <item>312</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_88"> <Value> <Obj> <type>0</type> <id>125</id> <name>j_1_mid2</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>94</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>94</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>j_1_mid2_fu_548_p3</rtlName> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>313</item> <item>314</item> <item>315</item> </oprand_edges> <opcode>select</opcode> </item> <item class_id_reference="9" object_id="_89"> <Value> <Obj> <type>0</type> <id>129</id> <name>tmp_4_trn_cast</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>95</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>95</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_4_trn_cast_fu_589_p1</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>316</item> </oprand_edges> <opcode>zext</opcode> </item> <item class_id_reference="9" object_id="_90"> <Value> <Obj> <type>0</type> <id>130</id> <name>tmp_3_trn_cast</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>94</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>94</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_3_trn_cast_fu_556_p1</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>317</item> </oprand_edges> <opcode>zext</opcode> </item> <item class_id_reference="9" object_id="_91"> <Value> <Obj> <type>0</type> <id>131</id> <name>tmp_4</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>94</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>94</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_4_fu_560_p3</rtlName> <coreName/> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>318</item> <item>319</item> <item>320</item> </oprand_edges> <opcode>bitconcatenate</opcode> </item> <item class_id_reference="9" object_id="_92"> <Value> <Obj> <type>0</type> <id>132</id> <name>p_addr2_cast</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>95</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>95</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>p_addr2_cast_fu_568_p1</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>321</item> </oprand_edges> <opcode>zext</opcode> </item> <item class_id_reference="9" object_id="_93"> <Value> <Obj> <type>0</type> <id>133</id> <name>p_addr5</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>95</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>95</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>p_addr5_fu_572_p2</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>322</item> <item>323</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_94"> <Value> <Obj> <type>0</type> <id>134</id> <name>tmp_6</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>95</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>95</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_6_fu_578_p1</rtlName> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>324</item> </oprand_edges> <opcode>zext</opcode> </item> <item class_id_reference="9" object_id="_95"> <Value> <Obj> <type>0</type> <id>135</id> <name>col_outbuf_addr</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>95</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>95</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>6</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>325</item> <item>326</item> <item>327</item> </oprand_edges> <opcode>getelementptr</opcode> </item> <item class_id_reference="9" object_id="_96"> <Value> <Obj> <type>0</type> <id>136</id> <name>col_outbuf_load</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>95</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>95</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>328</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_97"> <Value> <Obj> <type>0</type> <id>137</id> <name>tmp_7</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>94</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>94</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_7_fu_592_p3</rtlName> <coreName/> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>329</item> <item>330</item> <item>331</item> </oprand_edges> <opcode>bitconcatenate</opcode> </item> <item class_id_reference="9" object_id="_98"> <Value> <Obj> <type>0</type> <id>138</id> <name>p_addr3_cast</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>95</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>95</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>p_addr3_cast_fu_599_p1</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>332</item> </oprand_edges> <opcode>zext</opcode> </item> <item class_id_reference="9" object_id="_99"> <Value> <Obj> <type>0</type> <id>139</id> <name>p_addr4</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>95</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>95</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>p_addr4_fu_603_p2</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>333</item> <item>334</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_100"> <Value> <Obj> <type>0</type> <id>140</id> <name>tmp_8</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>95</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>95</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_8_fu_609_p1</rtlName> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>335</item> </oprand_edges> <opcode>zext</opcode> </item> <item class_id_reference="9" object_id="_101"> <Value> <Obj> <type>0</type> <id>141</id> <name>out_block_addr</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>95</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>95</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>6</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>336</item> <item>337</item> <item>338</item> </oprand_edges> <opcode>getelementptr</opcode> </item> <item class_id_reference="9" object_id="_102"> <Value> <Obj> <type>0</type> <id>142</id> <name/> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>95</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>95</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>339</item> <item>340</item> </oprand_edges> <opcode>store</opcode> </item> <item class_id_reference="9" object_id="_103"> <Value> <Obj> <type>0</type> <id>144</id> <name>i_7</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>94</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>94</second> </item> </second> </item> </inlineStackInfo> <originalName>i</originalName> <rtlName>i_7_fu_583_p2</rtlName> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>341</item> <item>342</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_104"> <Value> <Obj> <type>0</type> <id>145</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>343</item> </oprand_edges> <opcode>br</opcode> </item> <item class_id_reference="9" object_id="_105"> <Value> <Obj> <type>0</type> <id>147</id> <name/> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>96</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct_2d</second> </first> <second>96</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>0</count> <item_version>0</item_version> </oprand_edges> <opcode>ret</opcode> </item> </nodes> <consts class_id="15" tracking_level="0" version="0"> <count>16</count> <item_version>0</item_version> <item class_id="16" tracking_level="1" version="0" object_id="_106"> <Value> <Obj> <type>2</type> <id>149</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_107"> <Value> <Obj> <type>2</type> <id>161</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_108"> <Value> <Obj> <type>2</type> <id>167</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <const_type>0</const_type> <content>8</content> </item> <item class_id_reference="16" object_id="_109"> <Value> <Obj> <type>2</type> <id>170</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_110"> <Value> <Obj> <type>2</type> <id>175</id> <name>dct_dct_1d</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <const_type>6</const_type> <content>&lt;constant:dct_dct_1d&gt;</content> </item> <item class_id_reference="16" object_id="_111"> <Value> <Obj> <type>2</type> <id>191</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>7</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_112"> <Value> <Obj> <type>2</type> <id>203</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>7</bitwidth> </Value> <const_type>0</const_type> <content>64</content> </item> <item class_id_reference="16" object_id="_113"> <Value> <Obj> <type>2</type> <id>206</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>7</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_114"> <Value> <Obj> <type>2</type> <id>229</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>3</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_115"> <Value> <Obj> <type>2</type> <id>236</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="_116"> <Value> <Obj> <type>2</type> <id>245</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>3</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_117"> <Value> <Obj> <type>2</type> <id>248</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>3</bitwidth> </Value> <const_type>0</const_type> <content>2</content> </item> <item class_id_reference="16" object_id="_118"> <Value> <Obj> <type>2</type> <id>251</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>3</bitwidth> </Value> <const_type>0</const_type> <content>3</content> </item> <item class_id_reference="16" object_id="_119"> <Value> <Obj> <type>2</type> <id>254</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>3</bitwidth> </Value> <const_type>0</const_type> <content>4</content> </item> <item class_id_reference="16" object_id="_120"> <Value> <Obj> <type>2</type> <id>257</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>3</bitwidth> </Value> <const_type>0</const_type> <content>5</content> </item> <item class_id_reference="16" object_id="_121"> <Value> <Obj> <type>2</type> <id>260</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>3</bitwidth> </Value> <const_type>0</const_type> <content>6</content> </item> </consts> <blocks class_id="17" tracking_level="0" version="0"> <count>19</count> <item_version>0</item_version> <item class_id="18" tracking_level="1" version="0" object_id="_122"> <Obj> <type>3</type> <id>29</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>11</count> <item_version>0</item_version> <item>18</item> <item>19</item> <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> </node_objs> </item> <item class_id_reference="18" object_id="_123"> <Obj> <type>3</type> <id>35</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>4</count> <item_version>0</item_version> <item>30</item> <item>31</item> <item>33</item> <item>34</item> </node_objs> </item> <item class_id_reference="18" object_id="_124"> <Obj> <type>3</type> <id>39</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>2</count> <item_version>0</item_version> <item>37</item> <item>38</item> </node_objs> </item> <item class_id_reference="18" object_id="_125"> <Obj> <type>3</type> <id>46</id> <name>.preheader7.preheader</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>6</count> <item_version>0</item_version> <item>40</item> <item>41</item> <item>42</item> <item>43</item> <item>44</item> <item>45</item> </node_objs> </item> <item class_id_reference="18" object_id="_126"> <Obj> <type>3</type> <id>66</id> <name>.preheader7</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>49</item> <item>50</item> <item>51</item> <item>52</item> <item>53</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> <item>65</item> </node_objs> </item> <item class_id_reference="18" object_id="_127"> <Obj> <type>3</type> <id>70</id> <name>branch6</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>3</count> <item_version>0</item_version> <item>67</item> <item>68</item> <item>69</item> </node_objs> </item> <item class_id_reference="18" object_id="_128"> <Obj> <type>3</type> <id>74</id> <name>branch5</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>3</count> <item_version>0</item_version> <item>71</item> <item>72</item> <item>73</item> </node_objs> </item> <item class_id_reference="18" object_id="_129"> <Obj> <type>3</type> <id>78</id> <name>branch4</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>3</count> <item_version>0</item_version> <item>75</item> <item>76</item> <item>77</item> </node_objs> </item> <item class_id_reference="18" object_id="_130"> <Obj> <type>3</type> <id>82</id> <name>branch3</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>3</count> <item_version>0</item_version> <item>79</item> <item>80</item> <item>81</item> </node_objs> </item> <item class_id_reference="18" object_id="_131"> <Obj> <type>3</type> <id>86</id> <name>branch2</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>3</count> <item_version>0</item_version> <item>83</item> <item>84</item> <item>85</item> </node_objs> </item> <item class_id_reference="18" object_id="_132"> <Obj> <type>3</type> <id>90</id> <name>branch1</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>3</count> <item_version>0</item_version> <item>87</item> <item>88</item> <item>89</item> </node_objs> </item> <item class_id_reference="18" object_id="_133"> <Obj> <type>3</type> <id>94</id> <name>branch0</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>3</count> <item_version>0</item_version> <item>91</item> <item>92</item> <item>93</item> </node_objs> </item> <item class_id_reference="18" object_id="_134"> <Obj> <type>3</type> <id>98</id> <name>branch7</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>3</count> <item_version>0</item_version> <item>95</item> <item>96</item> <item>97</item> </node_objs> </item> <item class_id_reference="18" object_id="_135"> <Obj> <type>3</type> <id>102</id> <name>ifBlock</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>100</item> <item>101</item> </node_objs> </item> <item class_id_reference="18" object_id="_136"> <Obj> <type>3</type> <id>108</id> <name>.preheader6</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>4</count> <item_version>0</item_version> <item>103</item> <item>104</item> <item>106</item> <item>107</item> </node_objs> </item> <item class_id_reference="18" object_id="_137"> <Obj> <type>3</type> <id>112</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>2</count> <item_version>0</item_version> <item>110</item> <item>111</item> </node_objs> </item> <item class_id_reference="18" object_id="_138"> <Obj> <type>3</type> <id>119</id> <name>.preheader.preheader</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>6</count> <item_version>0</item_version> <item>113</item> <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="_139"> <Obj> <type>3</type> <id>146</id> <name>.preheader</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>20</count> <item_version>0</item_version> <item>122</item> <item>123</item> <item>124</item> <item>125</item> <item>129</item> <item>130</item> <item>131</item> <item>132</item> <item>133</item> <item>134</item> <item>135</item> <item>136</item> <item>137</item> <item>138</item> <item>139</item> <item>140</item> <item>141</item> <item>142</item> <item>144</item> <item>145</item> </node_objs> </item> <item class_id_reference="18" object_id="_140"> <Obj> <type>3</type> <id>148</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>147</item> </node_objs> </item> </blocks> <edges class_id="19" tracking_level="0" version="0"> <count>268</count> <item_version>0</item_version> <item class_id="20" tracking_level="1" version="0" object_id="_141"> <id>150</id> <edge_type>1</edge_type> <source_obj>149</source_obj> <sink_obj>18</sink_obj> </item> <item class_id_reference="20" object_id="_142"> <id>151</id> <edge_type>1</edge_type> <source_obj>149</source_obj> <sink_obj>19</sink_obj> </item> <item class_id_reference="20" object_id="_143"> <id>152</id> <edge_type>1</edge_type> <source_obj>149</source_obj> <sink_obj>20</sink_obj> </item> <item class_id_reference="20" object_id="_144"> <id>153</id> <edge_type>1</edge_type> <source_obj>149</source_obj> <sink_obj>21</sink_obj> </item> <item class_id_reference="20" object_id="_145"> <id>154</id> <edge_type>1</edge_type> <source_obj>149</source_obj> <sink_obj>22</sink_obj> </item> <item class_id_reference="20" object_id="_146"> <id>155</id> <edge_type>1</edge_type> <source_obj>149</source_obj> <sink_obj>23</sink_obj> </item> <item class_id_reference="20" object_id="_147"> <id>156</id> <edge_type>1</edge_type> <source_obj>149</source_obj> <sink_obj>24</sink_obj> </item> <item class_id_reference="20" object_id="_148"> <id>157</id> <edge_type>1</edge_type> <source_obj>149</source_obj> <sink_obj>25</sink_obj> </item> <item class_id_reference="20" object_id="_149"> <id>158</id> <edge_type>1</edge_type> <source_obj>149</source_obj> <sink_obj>26</sink_obj> </item> <item class_id_reference="20" object_id="_150"> <id>159</id> <edge_type>1</edge_type> <source_obj>149</source_obj> <sink_obj>27</sink_obj> </item> <item class_id_reference="20" object_id="_151"> <id>160</id> <edge_type>2</edge_type> <source_obj>35</source_obj> <sink_obj>28</sink_obj> </item> <item class_id_reference="20" object_id="_152"> <id>162</id> <edge_type>1</edge_type> <source_obj>161</source_obj> <sink_obj>30</sink_obj> </item> <item class_id_reference="20" object_id="_153"> <id>163</id> <edge_type>2</edge_type> <source_obj>29</source_obj> <sink_obj>30</sink_obj> </item> <item class_id_reference="20" object_id="_154"> <id>164</id> <edge_type>1</edge_type> <source_obj>33</source_obj> <sink_obj>30</sink_obj> </item> <item class_id_reference="20" object_id="_155"> <id>165</id> <edge_type>2</edge_type> <source_obj>39</source_obj> <sink_obj>30</sink_obj> </item> <item class_id_reference="20" object_id="_156"> <id>166</id> <edge_type>1</edge_type> <source_obj>30</source_obj> <sink_obj>31</sink_obj> </item> <item class_id_reference="20" object_id="_157"> <id>168</id> <edge_type>1</edge_type> <source_obj>167</source_obj> <sink_obj>31</sink_obj> </item> <item class_id_reference="20" object_id="_158"> <id>169</id> <edge_type>1</edge_type> <source_obj>30</source_obj> <sink_obj>33</sink_obj> </item> <item class_id_reference="20" object_id="_159"> <id>171</id> <edge_type>1</edge_type> <source_obj>170</source_obj> <sink_obj>33</sink_obj> </item> <item class_id_reference="20" object_id="_160"> <id>172</id> <edge_type>1</edge_type> <source_obj>31</source_obj> <sink_obj>34</sink_obj> </item> <item class_id_reference="20" object_id="_161"> <id>173</id> <edge_type>2</edge_type> <source_obj>39</source_obj> <sink_obj>34</sink_obj> </item> <item class_id_reference="20" object_id="_162"> <id>174</id> <edge_type>2</edge_type> <source_obj>46</source_obj> <sink_obj>34</sink_obj> </item> <item class_id_reference="20" object_id="_163"> <id>176</id> <edge_type>1</edge_type> <source_obj>175</source_obj> <sink_obj>37</sink_obj> </item> <item class_id_reference="20" object_id="_164"> <id>177</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>37</sink_obj> </item> <item class_id_reference="20" object_id="_165"> <id>178</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>37</sink_obj> </item> <item class_id_reference="20" object_id="_166"> <id>179</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>37</sink_obj> </item> <item class_id_reference="20" object_id="_167"> <id>180</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>37</sink_obj> </item> <item class_id_reference="20" object_id="_168"> <id>181</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>37</sink_obj> </item> <item class_id_reference="20" object_id="_169"> <id>182</id> <edge_type>1</edge_type> <source_obj>6</source_obj> <sink_obj>37</sink_obj> </item> <item class_id_reference="20" object_id="_170"> <id>183</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>37</sink_obj> </item> <item class_id_reference="20" object_id="_171"> <id>184</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>37</sink_obj> </item> <item class_id_reference="20" object_id="_172"> <id>185</id> <edge_type>1</edge_type> <source_obj>30</source_obj> <sink_obj>37</sink_obj> </item> <item class_id_reference="20" object_id="_173"> <id>186</id> <edge_type>1</edge_type> <source_obj>18</source_obj> <sink_obj>37</sink_obj> </item> <item class_id_reference="20" object_id="_174"> <id>187</id> <edge_type>1</edge_type> <source_obj>30</source_obj> <sink_obj>37</sink_obj> </item> <item class_id_reference="20" object_id="_175"> <id>188</id> <edge_type>2</edge_type> <source_obj>35</source_obj> <sink_obj>38</sink_obj> </item> <item class_id_reference="20" object_id="_176"> <id>189</id> <edge_type>1</edge_type> <source_obj>44</source_obj> <sink_obj>40</sink_obj> </item> <item class_id_reference="20" object_id="_177"> <id>190</id> <edge_type>2</edge_type> <source_obj>102</source_obj> <sink_obj>40</sink_obj> </item> <item class_id_reference="20" object_id="_178"> <id>192</id> <edge_type>1</edge_type> <source_obj>191</source_obj> <sink_obj>40</sink_obj> </item> <item class_id_reference="20" object_id="_179"> <id>193</id> <edge_type>2</edge_type> <source_obj>35</source_obj> <sink_obj>40</sink_obj> </item> <item class_id_reference="20" object_id="_180"> <id>194</id> <edge_type>1</edge_type> <source_obj>52</source_obj> <sink_obj>41</sink_obj> </item> <item class_id_reference="20" object_id="_181"> <id>195</id> <edge_type>2</edge_type> <source_obj>102</source_obj> <sink_obj>41</sink_obj> </item> <item class_id_reference="20" object_id="_182"> <id>196</id> <edge_type>1</edge_type> <source_obj>161</source_obj> <sink_obj>41</sink_obj> </item> <item class_id_reference="20" object_id="_183"> <id>197</id> <edge_type>2</edge_type> <source_obj>35</source_obj> <sink_obj>41</sink_obj> </item> <item class_id_reference="20" object_id="_184"> <id>198</id> <edge_type>1</edge_type> <source_obj>100</source_obj> <sink_obj>42</sink_obj> </item> <item class_id_reference="20" object_id="_185"> <id>199</id> <edge_type>2</edge_type> <source_obj>102</source_obj> <sink_obj>42</sink_obj> </item> <item class_id_reference="20" object_id="_186"> <id>200</id> <edge_type>1</edge_type> <source_obj>161</source_obj> <sink_obj>42</sink_obj> </item> <item class_id_reference="20" object_id="_187"> <id>201</id> <edge_type>2</edge_type> <source_obj>35</source_obj> <sink_obj>42</sink_obj> </item> <item class_id_reference="20" object_id="_188"> <id>202</id> <edge_type>1</edge_type> <source_obj>40</source_obj> <sink_obj>43</sink_obj> </item> <item class_id_reference="20" object_id="_189"> <id>204</id> <edge_type>1</edge_type> <source_obj>203</source_obj> <sink_obj>43</sink_obj> </item> <item class_id_reference="20" object_id="_190"> <id>205</id> <edge_type>1</edge_type> <source_obj>40</source_obj> <sink_obj>44</sink_obj> </item> <item class_id_reference="20" object_id="_191"> <id>207</id> <edge_type>1</edge_type> <source_obj>206</source_obj> <sink_obj>44</sink_obj> </item> <item class_id_reference="20" object_id="_192"> <id>208</id> <edge_type>1</edge_type> <source_obj>43</source_obj> <sink_obj>45</sink_obj> </item> <item class_id_reference="20" object_id="_193"> <id>209</id> <edge_type>2</edge_type> <source_obj>66</source_obj> <sink_obj>45</sink_obj> </item> <item class_id_reference="20" object_id="_194"> <id>210</id> <edge_type>2</edge_type> <source_obj>108</source_obj> <sink_obj>45</sink_obj> </item> <item class_id_reference="20" object_id="_195"> <id>211</id> <edge_type>1</edge_type> <source_obj>50</source_obj> <sink_obj>100</sink_obj> </item> <item class_id_reference="20" object_id="_196"> <id>212</id> <edge_type>1</edge_type> <source_obj>170</source_obj> <sink_obj>100</sink_obj> </item> <item class_id_reference="20" object_id="_197"> <id>213</id> <edge_type>2</edge_type> <source_obj>46</source_obj> <sink_obj>101</sink_obj> </item> <item class_id_reference="20" object_id="_198"> <id>214</id> <edge_type>1</edge_type> <source_obj>42</source_obj> <sink_obj>49</sink_obj> </item> <item class_id_reference="20" object_id="_199"> <id>215</id> <edge_type>1</edge_type> <source_obj>167</source_obj> <sink_obj>49</sink_obj> </item> <item class_id_reference="20" object_id="_200"> <id>216</id> <edge_type>1</edge_type> <source_obj>49</source_obj> <sink_obj>50</sink_obj> </item> <item class_id_reference="20" object_id="_201"> <id>217</id> <edge_type>1</edge_type> <source_obj>161</source_obj> <sink_obj>50</sink_obj> </item> <item class_id_reference="20" object_id="_202"> <id>218</id> <edge_type>1</edge_type> <source_obj>42</source_obj> <sink_obj>50</sink_obj> </item> <item class_id_reference="20" object_id="_203"> <id>219</id> <edge_type>1</edge_type> <source_obj>170</source_obj> <sink_obj>51</sink_obj> </item> <item class_id_reference="20" object_id="_204"> <id>220</id> <edge_type>1</edge_type> <source_obj>41</source_obj> <sink_obj>51</sink_obj> </item> <item class_id_reference="20" object_id="_205"> <id>221</id> <edge_type>1</edge_type> <source_obj>49</source_obj> <sink_obj>52</sink_obj> </item> <item class_id_reference="20" object_id="_206"> <id>222</id> <edge_type>1</edge_type> <source_obj>51</source_obj> <sink_obj>52</sink_obj> </item> <item class_id_reference="20" object_id="_207"> <id>223</id> <edge_type>1</edge_type> <source_obj>41</source_obj> <sink_obj>52</sink_obj> </item> <item class_id_reference="20" object_id="_208"> <id>224</id> <edge_type>1</edge_type> <source_obj>52</source_obj> <sink_obj>53</sink_obj> </item> <item class_id_reference="20" object_id="_209"> <id>225</id> <edge_type>1</edge_type> <source_obj>52</source_obj> <sink_obj>57</sink_obj> </item> <item class_id_reference="20" object_id="_210"> <id>228</id> <edge_type>1</edge_type> <source_obj>50</source_obj> <sink_obj>58</sink_obj> </item> <item class_id_reference="20" object_id="_211"> <id>230</id> <edge_type>1</edge_type> <source_obj>229</source_obj> <sink_obj>58</sink_obj> </item> <item class_id_reference="20" object_id="_212"> <id>231</id> <edge_type>1</edge_type> <source_obj>58</source_obj> <sink_obj>59</sink_obj> </item> <item class_id_reference="20" object_id="_213"> <id>232</id> <edge_type>1</edge_type> <source_obj>59</source_obj> <sink_obj>60</sink_obj> </item> <item class_id_reference="20" object_id="_214"> <id>233</id> <edge_type>1</edge_type> <source_obj>57</source_obj> <sink_obj>60</sink_obj> </item> <item class_id_reference="20" object_id="_215"> <id>234</id> <edge_type>1</edge_type> <source_obj>60</source_obj> <sink_obj>61</sink_obj> </item> <item class_id_reference="20" object_id="_216"> <id>235</id> <edge_type>1</edge_type> <source_obj>18</source_obj> <sink_obj>62</sink_obj> </item> <item class_id_reference="20" object_id="_217"> <id>237</id> <edge_type>1</edge_type> <source_obj>236</source_obj> <sink_obj>62</sink_obj> </item> <item class_id_reference="20" object_id="_218"> <id>238</id> <edge_type>1</edge_type> <source_obj>61</source_obj> <sink_obj>62</sink_obj> </item> <item class_id_reference="20" object_id="_219"> <id>239</id> <edge_type>1</edge_type> <source_obj>62</source_obj> <sink_obj>63</sink_obj> </item> <item class_id_reference="20" object_id="_220"> <id>240</id> <edge_type>1</edge_type> <source_obj>50</source_obj> <sink_obj>64</sink_obj> </item> <item class_id_reference="20" object_id="_221"> <id>241</id> <edge_type>1</edge_type> <source_obj>64</source_obj> <sink_obj>65</sink_obj> </item> <item class_id_reference="20" object_id="_222"> <id>242</id> <edge_type>2</edge_type> <source_obj>98</source_obj> <sink_obj>65</sink_obj> </item> <item class_id_reference="20" object_id="_223"> <id>243</id> <edge_type>1</edge_type> <source_obj>229</source_obj> <sink_obj>65</sink_obj> </item> <item class_id_reference="20" object_id="_224"> <id>244</id> <edge_type>2</edge_type> <source_obj>94</source_obj> <sink_obj>65</sink_obj> </item> <item class_id_reference="20" object_id="_225"> <id>246</id> <edge_type>1</edge_type> <source_obj>245</source_obj> <sink_obj>65</sink_obj> </item> <item class_id_reference="20" object_id="_226"> <id>247</id> <edge_type>2</edge_type> <source_obj>90</source_obj> <sink_obj>65</sink_obj> </item> <item class_id_reference="20" object_id="_227"> <id>249</id> <edge_type>1</edge_type> <source_obj>248</source_obj> <sink_obj>65</sink_obj> </item> <item class_id_reference="20" object_id="_228"> <id>250</id> <edge_type>2</edge_type> <source_obj>86</source_obj> <sink_obj>65</sink_obj> </item> <item class_id_reference="20" object_id="_229"> <id>252</id> <edge_type>1</edge_type> <source_obj>251</source_obj> <sink_obj>65</sink_obj> </item> <item class_id_reference="20" object_id="_230"> <id>253</id> <edge_type>2</edge_type> <source_obj>82</source_obj> <sink_obj>65</sink_obj> </item> <item class_id_reference="20" object_id="_231"> <id>255</id> <edge_type>1</edge_type> <source_obj>254</source_obj> <sink_obj>65</sink_obj> </item> <item class_id_reference="20" object_id="_232"> <id>256</id> <edge_type>2</edge_type> <source_obj>78</source_obj> <sink_obj>65</sink_obj> </item> <item class_id_reference="20" object_id="_233"> <id>258</id> <edge_type>1</edge_type> <source_obj>257</source_obj> <sink_obj>65</sink_obj> </item> <item class_id_reference="20" object_id="_234"> <id>259</id> <edge_type>2</edge_type> <source_obj>74</source_obj> <sink_obj>65</sink_obj> </item> <item class_id_reference="20" object_id="_235"> <id>261</id> <edge_type>1</edge_type> <source_obj>260</source_obj> <sink_obj>65</sink_obj> </item> <item class_id_reference="20" object_id="_236"> <id>262</id> <edge_type>2</edge_type> <source_obj>70</source_obj> <sink_obj>65</sink_obj> </item> <item class_id_reference="20" object_id="_237"> <id>263</id> <edge_type>1</edge_type> <source_obj>106</source_obj> <sink_obj>103</sink_obj> </item> <item class_id_reference="20" object_id="_238"> <id>264</id> <edge_type>2</edge_type> <source_obj>112</source_obj> <sink_obj>103</sink_obj> </item> <item class_id_reference="20" object_id="_239"> <id>265</id> <edge_type>1</edge_type> <source_obj>161</source_obj> <sink_obj>103</sink_obj> </item> <item class_id_reference="20" object_id="_240"> <id>266</id> <edge_type>2</edge_type> <source_obj>46</source_obj> <sink_obj>103</sink_obj> </item> <item class_id_reference="20" object_id="_241"> <id>267</id> <edge_type>1</edge_type> <source_obj>103</source_obj> <sink_obj>104</sink_obj> </item> <item class_id_reference="20" object_id="_242"> <id>268</id> <edge_type>1</edge_type> <source_obj>167</source_obj> <sink_obj>104</sink_obj> </item> <item class_id_reference="20" object_id="_243"> <id>269</id> <edge_type>1</edge_type> <source_obj>103</source_obj> <sink_obj>106</sink_obj> </item> <item class_id_reference="20" object_id="_244"> <id>270</id> <edge_type>1</edge_type> <source_obj>170</source_obj> <sink_obj>106</sink_obj> </item> <item class_id_reference="20" object_id="_245"> <id>271</id> <edge_type>1</edge_type> <source_obj>104</source_obj> <sink_obj>107</sink_obj> </item> <item class_id_reference="20" object_id="_246"> <id>272</id> <edge_type>2</edge_type> <source_obj>112</source_obj> <sink_obj>107</sink_obj> </item> <item class_id_reference="20" object_id="_247"> <id>273</id> <edge_type>2</edge_type> <source_obj>119</source_obj> <sink_obj>107</sink_obj> </item> <item class_id_reference="20" object_id="_248"> <id>274</id> <edge_type>1</edge_type> <source_obj>175</source_obj> <sink_obj>110</sink_obj> </item> <item class_id_reference="20" object_id="_249"> <id>275</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>110</sink_obj> </item> <item class_id_reference="20" object_id="_250"> <id>276</id> <edge_type>1</edge_type> <source_obj>21</source_obj> <sink_obj>110</sink_obj> </item> <item class_id_reference="20" object_id="_251"> <id>277</id> <edge_type>1</edge_type> <source_obj>22</source_obj> <sink_obj>110</sink_obj> </item> <item class_id_reference="20" object_id="_252"> <id>278</id> <edge_type>1</edge_type> <source_obj>23</source_obj> <sink_obj>110</sink_obj> </item> <item class_id_reference="20" object_id="_253"> <id>279</id> <edge_type>1</edge_type> <source_obj>24</source_obj> <sink_obj>110</sink_obj> </item> <item class_id_reference="20" object_id="_254"> <id>280</id> <edge_type>1</edge_type> <source_obj>25</source_obj> <sink_obj>110</sink_obj> </item> <item class_id_reference="20" object_id="_255"> <id>281</id> <edge_type>1</edge_type> <source_obj>26</source_obj> <sink_obj>110</sink_obj> </item> <item class_id_reference="20" object_id="_256"> <id>282</id> <edge_type>1</edge_type> <source_obj>27</source_obj> <sink_obj>110</sink_obj> </item> <item class_id_reference="20" object_id="_257"> <id>283</id> <edge_type>1</edge_type> <source_obj>103</source_obj> <sink_obj>110</sink_obj> </item> <item class_id_reference="20" object_id="_258"> <id>284</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>110</sink_obj> </item> <item class_id_reference="20" object_id="_259"> <id>285</id> <edge_type>1</edge_type> <source_obj>103</source_obj> <sink_obj>110</sink_obj> </item> <item class_id_reference="20" object_id="_260"> <id>286</id> <edge_type>2</edge_type> <source_obj>108</source_obj> <sink_obj>111</sink_obj> </item> <item class_id_reference="20" object_id="_261"> <id>287</id> <edge_type>1</edge_type> <source_obj>117</source_obj> <sink_obj>113</sink_obj> </item> <item class_id_reference="20" object_id="_262"> <id>288</id> <edge_type>2</edge_type> <source_obj>146</source_obj> <sink_obj>113</sink_obj> </item> <item class_id_reference="20" object_id="_263"> <id>289</id> <edge_type>1</edge_type> <source_obj>191</source_obj> <sink_obj>113</sink_obj> </item> <item class_id_reference="20" object_id="_264"> <id>290</id> <edge_type>2</edge_type> <source_obj>108</source_obj> <sink_obj>113</sink_obj> </item> <item class_id_reference="20" object_id="_265"> <id>291</id> <edge_type>1</edge_type> <source_obj>125</source_obj> <sink_obj>114</sink_obj> </item> <item class_id_reference="20" object_id="_266"> <id>292</id> <edge_type>2</edge_type> <source_obj>146</source_obj> <sink_obj>114</sink_obj> </item> <item class_id_reference="20" object_id="_267"> <id>293</id> <edge_type>1</edge_type> <source_obj>161</source_obj> <sink_obj>114</sink_obj> </item> <item class_id_reference="20" object_id="_268"> <id>294</id> <edge_type>2</edge_type> <source_obj>108</source_obj> <sink_obj>114</sink_obj> </item> <item class_id_reference="20" object_id="_269"> <id>295</id> <edge_type>1</edge_type> <source_obj>144</source_obj> <sink_obj>115</sink_obj> </item> <item class_id_reference="20" object_id="_270"> <id>296</id> <edge_type>2</edge_type> <source_obj>146</source_obj> <sink_obj>115</sink_obj> </item> <item class_id_reference="20" object_id="_271"> <id>297</id> <edge_type>1</edge_type> <source_obj>161</source_obj> <sink_obj>115</sink_obj> </item> <item class_id_reference="20" object_id="_272"> <id>298</id> <edge_type>2</edge_type> <source_obj>108</source_obj> <sink_obj>115</sink_obj> </item> <item class_id_reference="20" object_id="_273"> <id>299</id> <edge_type>1</edge_type> <source_obj>113</source_obj> <sink_obj>116</sink_obj> </item> <item class_id_reference="20" object_id="_274"> <id>300</id> <edge_type>1</edge_type> <source_obj>203</source_obj> <sink_obj>116</sink_obj> </item> <item class_id_reference="20" object_id="_275"> <id>301</id> <edge_type>1</edge_type> <source_obj>113</source_obj> <sink_obj>117</sink_obj> </item> <item class_id_reference="20" object_id="_276"> <id>302</id> <edge_type>1</edge_type> <source_obj>206</source_obj> <sink_obj>117</sink_obj> </item> <item class_id_reference="20" object_id="_277"> <id>303</id> <edge_type>1</edge_type> <source_obj>116</source_obj> <sink_obj>118</sink_obj> </item> <item class_id_reference="20" object_id="_278"> <id>304</id> <edge_type>2</edge_type> <source_obj>146</source_obj> <sink_obj>118</sink_obj> </item> <item class_id_reference="20" object_id="_279"> <id>305</id> <edge_type>2</edge_type> <source_obj>148</source_obj> <sink_obj>118</sink_obj> </item> <item class_id_reference="20" object_id="_280"> <id>306</id> <edge_type>1</edge_type> <source_obj>115</source_obj> <sink_obj>122</sink_obj> </item> <item class_id_reference="20" object_id="_281"> <id>307</id> <edge_type>1</edge_type> <source_obj>167</source_obj> <sink_obj>122</sink_obj> </item> <item class_id_reference="20" object_id="_282"> <id>308</id> <edge_type>1</edge_type> <source_obj>122</source_obj> <sink_obj>123</sink_obj> </item> <item class_id_reference="20" object_id="_283"> <id>309</id> <edge_type>1</edge_type> <source_obj>161</source_obj> <sink_obj>123</sink_obj> </item> <item class_id_reference="20" object_id="_284"> <id>310</id> <edge_type>1</edge_type> <source_obj>115</source_obj> <sink_obj>123</sink_obj> </item> <item class_id_reference="20" object_id="_285"> <id>311</id> <edge_type>1</edge_type> <source_obj>114</source_obj> <sink_obj>124</sink_obj> </item> <item class_id_reference="20" object_id="_286"> <id>312</id> <edge_type>1</edge_type> <source_obj>170</source_obj> <sink_obj>124</sink_obj> </item> <item class_id_reference="20" object_id="_287"> <id>313</id> <edge_type>1</edge_type> <source_obj>122</source_obj> <sink_obj>125</sink_obj> </item> <item class_id_reference="20" object_id="_288"> <id>314</id> <edge_type>1</edge_type> <source_obj>124</source_obj> <sink_obj>125</sink_obj> </item> <item class_id_reference="20" object_id="_289"> <id>315</id> <edge_type>1</edge_type> <source_obj>114</source_obj> <sink_obj>125</sink_obj> </item> <item class_id_reference="20" object_id="_290"> <id>316</id> <edge_type>1</edge_type> <source_obj>123</source_obj> <sink_obj>129</sink_obj> </item> <item class_id_reference="20" object_id="_291"> <id>317</id> <edge_type>1</edge_type> <source_obj>125</source_obj> <sink_obj>130</sink_obj> </item> <item class_id_reference="20" object_id="_292"> <id>319</id> <edge_type>1</edge_type> <source_obj>123</source_obj> <sink_obj>131</sink_obj> </item> <item class_id_reference="20" object_id="_293"> <id>320</id> <edge_type>1</edge_type> <source_obj>229</source_obj> <sink_obj>131</sink_obj> </item> <item class_id_reference="20" object_id="_294"> <id>321</id> <edge_type>1</edge_type> <source_obj>131</source_obj> <sink_obj>132</sink_obj> </item> <item class_id_reference="20" object_id="_295"> <id>322</id> <edge_type>1</edge_type> <source_obj>130</source_obj> <sink_obj>133</sink_obj> </item> <item class_id_reference="20" object_id="_296"> <id>323</id> <edge_type>1</edge_type> <source_obj>132</source_obj> <sink_obj>133</sink_obj> </item> <item class_id_reference="20" object_id="_297"> <id>324</id> <edge_type>1</edge_type> <source_obj>133</source_obj> <sink_obj>134</sink_obj> </item> <item class_id_reference="20" object_id="_298"> <id>325</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>135</sink_obj> </item> <item class_id_reference="20" object_id="_299"> <id>326</id> <edge_type>1</edge_type> <source_obj>236</source_obj> <sink_obj>135</sink_obj> </item> <item class_id_reference="20" object_id="_300"> <id>327</id> <edge_type>1</edge_type> <source_obj>134</source_obj> <sink_obj>135</sink_obj> </item> <item class_id_reference="20" object_id="_301"> <id>328</id> <edge_type>1</edge_type> <source_obj>135</source_obj> <sink_obj>136</sink_obj> </item> <item class_id_reference="20" object_id="_302"> <id>330</id> <edge_type>1</edge_type> <source_obj>125</source_obj> <sink_obj>137</sink_obj> </item> <item class_id_reference="20" object_id="_303"> <id>331</id> <edge_type>1</edge_type> <source_obj>229</source_obj> <sink_obj>137</sink_obj> </item> <item class_id_reference="20" object_id="_304"> <id>332</id> <edge_type>1</edge_type> <source_obj>137</source_obj> <sink_obj>138</sink_obj> </item> <item class_id_reference="20" object_id="_305"> <id>333</id> <edge_type>1</edge_type> <source_obj>129</source_obj> <sink_obj>139</sink_obj> </item> <item class_id_reference="20" object_id="_306"> <id>334</id> <edge_type>1</edge_type> <source_obj>138</source_obj> <sink_obj>139</sink_obj> </item> <item class_id_reference="20" object_id="_307"> <id>335</id> <edge_type>1</edge_type> <source_obj>139</source_obj> <sink_obj>140</sink_obj> </item> <item class_id_reference="20" object_id="_308"> <id>336</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>141</sink_obj> </item> <item class_id_reference="20" object_id="_309"> <id>337</id> <edge_type>1</edge_type> <source_obj>236</source_obj> <sink_obj>141</sink_obj> </item> <item class_id_reference="20" object_id="_310"> <id>338</id> <edge_type>1</edge_type> <source_obj>140</source_obj> <sink_obj>141</sink_obj> </item> <item class_id_reference="20" object_id="_311"> <id>339</id> <edge_type>1</edge_type> <source_obj>136</source_obj> <sink_obj>142</sink_obj> </item> <item class_id_reference="20" object_id="_312"> <id>340</id> <edge_type>1</edge_type> <source_obj>141</source_obj> <sink_obj>142</sink_obj> </item> <item class_id_reference="20" object_id="_313"> <id>341</id> <edge_type>1</edge_type> <source_obj>123</source_obj> <sink_obj>144</sink_obj> </item> <item class_id_reference="20" object_id="_314"> <id>342</id> <edge_type>1</edge_type> <source_obj>170</source_obj> <sink_obj>144</sink_obj> </item> <item class_id_reference="20" object_id="_315"> <id>343</id> <edge_type>2</edge_type> <source_obj>119</source_obj> <sink_obj>145</sink_obj> </item> <item class_id_reference="20" object_id="_316"> <id>344</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>91</sink_obj> </item> <item class_id_reference="20" object_id="_317"> <id>345</id> <edge_type>1</edge_type> <source_obj>236</source_obj> <sink_obj>91</sink_obj> </item> <item class_id_reference="20" object_id="_318"> <id>346</id> <edge_type>1</edge_type> <source_obj>53</source_obj> <sink_obj>91</sink_obj> </item> <item class_id_reference="20" object_id="_319"> <id>347</id> <edge_type>1</edge_type> <source_obj>63</source_obj> <sink_obj>92</sink_obj> </item> <item class_id_reference="20" object_id="_320"> <id>348</id> <edge_type>1</edge_type> <source_obj>91</source_obj> <sink_obj>92</sink_obj> </item> <item class_id_reference="20" object_id="_321"> <id>349</id> <edge_type>2</edge_type> <source_obj>102</source_obj> <sink_obj>93</sink_obj> </item> <item class_id_reference="20" object_id="_322"> <id>350</id> <edge_type>1</edge_type> <source_obj>21</source_obj> <sink_obj>87</sink_obj> </item> <item class_id_reference="20" object_id="_323"> <id>351</id> <edge_type>1</edge_type> <source_obj>236</source_obj> <sink_obj>87</sink_obj> </item> <item class_id_reference="20" object_id="_324"> <id>352</id> <edge_type>1</edge_type> <source_obj>53</source_obj> <sink_obj>87</sink_obj> </item> <item class_id_reference="20" object_id="_325"> <id>353</id> <edge_type>1</edge_type> <source_obj>63</source_obj> <sink_obj>88</sink_obj> </item> <item class_id_reference="20" object_id="_326"> <id>354</id> <edge_type>1</edge_type> <source_obj>87</source_obj> <sink_obj>88</sink_obj> </item> <item class_id_reference="20" object_id="_327"> <id>355</id> <edge_type>2</edge_type> <source_obj>102</source_obj> <sink_obj>89</sink_obj> </item> <item class_id_reference="20" object_id="_328"> <id>356</id> <edge_type>1</edge_type> <source_obj>22</source_obj> <sink_obj>83</sink_obj> </item> <item class_id_reference="20" object_id="_329"> <id>357</id> <edge_type>1</edge_type> <source_obj>236</source_obj> <sink_obj>83</sink_obj> </item> <item class_id_reference="20" object_id="_330"> <id>358</id> <edge_type>1</edge_type> <source_obj>53</source_obj> <sink_obj>83</sink_obj> </item> <item class_id_reference="20" object_id="_331"> <id>359</id> <edge_type>1</edge_type> <source_obj>63</source_obj> <sink_obj>84</sink_obj> </item> <item class_id_reference="20" object_id="_332"> <id>360</id> <edge_type>1</edge_type> <source_obj>83</source_obj> <sink_obj>84</sink_obj> </item> <item class_id_reference="20" object_id="_333"> <id>361</id> <edge_type>2</edge_type> <source_obj>102</source_obj> <sink_obj>85</sink_obj> </item> <item class_id_reference="20" object_id="_334"> <id>362</id> <edge_type>1</edge_type> <source_obj>23</source_obj> <sink_obj>79</sink_obj> </item> <item class_id_reference="20" object_id="_335"> <id>363</id> <edge_type>1</edge_type> <source_obj>236</source_obj> <sink_obj>79</sink_obj> </item> <item class_id_reference="20" object_id="_336"> <id>364</id> <edge_type>1</edge_type> <source_obj>53</source_obj> <sink_obj>79</sink_obj> </item> <item class_id_reference="20" object_id="_337"> <id>365</id> <edge_type>1</edge_type> <source_obj>63</source_obj> <sink_obj>80</sink_obj> </item> <item class_id_reference="20" object_id="_338"> <id>366</id> <edge_type>1</edge_type> <source_obj>79</source_obj> <sink_obj>80</sink_obj> </item> <item class_id_reference="20" object_id="_339"> <id>367</id> <edge_type>2</edge_type> <source_obj>102</source_obj> <sink_obj>81</sink_obj> </item> <item class_id_reference="20" object_id="_340"> <id>368</id> <edge_type>1</edge_type> <source_obj>24</source_obj> <sink_obj>75</sink_obj> </item> <item class_id_reference="20" object_id="_341"> <id>369</id> <edge_type>1</edge_type> <source_obj>236</source_obj> <sink_obj>75</sink_obj> </item> <item class_id_reference="20" object_id="_342"> <id>370</id> <edge_type>1</edge_type> <source_obj>53</source_obj> <sink_obj>75</sink_obj> </item> <item class_id_reference="20" object_id="_343"> <id>371</id> <edge_type>1</edge_type> <source_obj>63</source_obj> <sink_obj>76</sink_obj> </item> <item class_id_reference="20" object_id="_344"> <id>372</id> <edge_type>1</edge_type> <source_obj>75</source_obj> <sink_obj>76</sink_obj> </item> <item class_id_reference="20" object_id="_345"> <id>373</id> <edge_type>2</edge_type> <source_obj>102</source_obj> <sink_obj>77</sink_obj> </item> <item class_id_reference="20" object_id="_346"> <id>374</id> <edge_type>1</edge_type> <source_obj>25</source_obj> <sink_obj>71</sink_obj> </item> <item class_id_reference="20" object_id="_347"> <id>375</id> <edge_type>1</edge_type> <source_obj>236</source_obj> <sink_obj>71</sink_obj> </item> <item class_id_reference="20" object_id="_348"> <id>376</id> <edge_type>1</edge_type> <source_obj>53</source_obj> <sink_obj>71</sink_obj> </item> <item class_id_reference="20" object_id="_349"> <id>377</id> <edge_type>1</edge_type> <source_obj>63</source_obj> <sink_obj>72</sink_obj> </item> <item class_id_reference="20" object_id="_350"> <id>378</id> <edge_type>1</edge_type> <source_obj>71</source_obj> <sink_obj>72</sink_obj> </item> <item class_id_reference="20" object_id="_351"> <id>379</id> <edge_type>2</edge_type> <source_obj>102</source_obj> <sink_obj>73</sink_obj> </item> <item class_id_reference="20" object_id="_352"> <id>380</id> <edge_type>1</edge_type> <source_obj>26</source_obj> <sink_obj>67</sink_obj> </item> <item class_id_reference="20" object_id="_353"> <id>381</id> <edge_type>1</edge_type> <source_obj>236</source_obj> <sink_obj>67</sink_obj> </item> <item class_id_reference="20" object_id="_354"> <id>382</id> <edge_type>1</edge_type> <source_obj>53</source_obj> <sink_obj>67</sink_obj> </item> <item class_id_reference="20" object_id="_355"> <id>383</id> <edge_type>1</edge_type> <source_obj>63</source_obj> <sink_obj>68</sink_obj> </item> <item class_id_reference="20" object_id="_356"> <id>384</id> <edge_type>1</edge_type> <source_obj>67</source_obj> <sink_obj>68</sink_obj> </item> <item class_id_reference="20" object_id="_357"> <id>385</id> <edge_type>2</edge_type> <source_obj>102</source_obj> <sink_obj>69</sink_obj> </item> <item class_id_reference="20" object_id="_358"> <id>386</id> <edge_type>1</edge_type> <source_obj>27</source_obj> <sink_obj>95</sink_obj> </item> <item class_id_reference="20" object_id="_359"> <id>387</id> <edge_type>1</edge_type> <source_obj>236</source_obj> <sink_obj>95</sink_obj> </item> <item class_id_reference="20" object_id="_360"> <id>388</id> <edge_type>1</edge_type> <source_obj>53</source_obj> <sink_obj>95</sink_obj> </item> <item class_id_reference="20" object_id="_361"> <id>389</id> <edge_type>1</edge_type> <source_obj>63</source_obj> <sink_obj>96</sink_obj> </item> <item class_id_reference="20" object_id="_362"> <id>390</id> <edge_type>1</edge_type> <source_obj>95</source_obj> <sink_obj>96</sink_obj> </item> <item class_id_reference="20" object_id="_363"> <id>391</id> <edge_type>2</edge_type> <source_obj>102</source_obj> <sink_obj>97</sink_obj> </item> <item class_id_reference="20" object_id="_364"> <id>392</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>37</sink_obj> </item> <item class_id_reference="20" object_id="_365"> <id>393</id> <edge_type>1</edge_type> <source_obj>11</source_obj> <sink_obj>37</sink_obj> </item> <item class_id_reference="20" object_id="_366"> <id>394</id> <edge_type>1</edge_type> <source_obj>12</source_obj> <sink_obj>37</sink_obj> </item> <item class_id_reference="20" object_id="_367"> <id>395</id> <edge_type>1</edge_type> <source_obj>13</source_obj> <sink_obj>37</sink_obj> </item> <item class_id_reference="20" object_id="_368"> <id>396</id> <edge_type>1</edge_type> <source_obj>14</source_obj> <sink_obj>37</sink_obj> </item> <item class_id_reference="20" object_id="_369"> <id>397</id> <edge_type>1</edge_type> <source_obj>15</source_obj> <sink_obj>37</sink_obj> </item> <item class_id_reference="20" object_id="_370"> <id>398</id> <edge_type>1</edge_type> <source_obj>16</source_obj> <sink_obj>37</sink_obj> </item> <item class_id_reference="20" object_id="_371"> <id>399</id> <edge_type>1</edge_type> <source_obj>17</source_obj> <sink_obj>37</sink_obj> </item> <item class_id_reference="20" object_id="_372"> <id>400</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>110</sink_obj> </item> <item class_id_reference="20" object_id="_373"> <id>401</id> <edge_type>1</edge_type> <source_obj>11</source_obj> <sink_obj>110</sink_obj> </item> <item class_id_reference="20" object_id="_374"> <id>402</id> <edge_type>1</edge_type> <source_obj>12</source_obj> <sink_obj>110</sink_obj> </item> <item class_id_reference="20" object_id="_375"> <id>403</id> <edge_type>1</edge_type> <source_obj>13</source_obj> <sink_obj>110</sink_obj> </item> <item class_id_reference="20" object_id="_376"> <id>404</id> <edge_type>1</edge_type> <source_obj>14</source_obj> <sink_obj>110</sink_obj> </item> <item class_id_reference="20" object_id="_377"> <id>405</id> <edge_type>1</edge_type> <source_obj>15</source_obj> <sink_obj>110</sink_obj> </item> <item class_id_reference="20" object_id="_378"> <id>406</id> <edge_type>1</edge_type> <source_obj>16</source_obj> <sink_obj>110</sink_obj> </item> <item class_id_reference="20" object_id="_379"> <id>407</id> <edge_type>1</edge_type> <source_obj>17</source_obj> <sink_obj>110</sink_obj> </item> <item class_id_reference="20" object_id="_380"> <id>474</id> <edge_type>2</edge_type> <source_obj>29</source_obj> <sink_obj>35</sink_obj> </item> <item class_id_reference="20" object_id="_381"> <id>475</id> <edge_type>2</edge_type> <source_obj>35</source_obj> <sink_obj>46</sink_obj> </item> <item class_id_reference="20" object_id="_382"> <id>476</id> <edge_type>2</edge_type> <source_obj>35</source_obj> <sink_obj>39</sink_obj> </item> <item class_id_reference="20" object_id="_383"> <id>477</id> <edge_type>2</edge_type> <source_obj>39</source_obj> <sink_obj>35</sink_obj> </item> <item class_id_reference="20" object_id="_384"> <id>478</id> <edge_type>2</edge_type> <source_obj>46</source_obj> <sink_obj>108</sink_obj> </item> <item class_id_reference="20" object_id="_385"> <id>479</id> <edge_type>2</edge_type> <source_obj>46</source_obj> <sink_obj>66</sink_obj> </item> <item class_id_reference="20" object_id="_386"> <id>480</id> <edge_type>2</edge_type> <source_obj>66</source_obj> <sink_obj>98</sink_obj> </item> <item class_id_reference="20" object_id="_387"> <id>481</id> <edge_type>2</edge_type> <source_obj>66</source_obj> <sink_obj>94</sink_obj> </item> <item class_id_reference="20" object_id="_388"> <id>482</id> <edge_type>2</edge_type> <source_obj>66</source_obj> <sink_obj>90</sink_obj> </item> <item class_id_reference="20" object_id="_389"> <id>483</id> <edge_type>2</edge_type> <source_obj>66</source_obj> <sink_obj>86</sink_obj> </item> <item class_id_reference="20" object_id="_390"> <id>484</id> <edge_type>2</edge_type> <source_obj>66</source_obj> <sink_obj>82</sink_obj> </item> <item class_id_reference="20" object_id="_391"> <id>485</id> <edge_type>2</edge_type> <source_obj>66</source_obj> <sink_obj>78</sink_obj> </item> <item class_id_reference="20" object_id="_392"> <id>486</id> <edge_type>2</edge_type> <source_obj>66</source_obj> <sink_obj>74</sink_obj> </item> <item class_id_reference="20" object_id="_393"> <id>487</id> <edge_type>2</edge_type> <source_obj>66</source_obj> <sink_obj>70</sink_obj> </item> <item class_id_reference="20" object_id="_394"> <id>488</id> <edge_type>2</edge_type> <source_obj>70</source_obj> <sink_obj>102</sink_obj> </item> <item class_id_reference="20" object_id="_395"> <id>489</id> <edge_type>2</edge_type> <source_obj>74</source_obj> <sink_obj>102</sink_obj> </item> <item class_id_reference="20" object_id="_396"> <id>490</id> <edge_type>2</edge_type> <source_obj>78</source_obj> <sink_obj>102</sink_obj> </item> <item class_id_reference="20" object_id="_397"> <id>491</id> <edge_type>2</edge_type> <source_obj>82</source_obj> <sink_obj>102</sink_obj> </item> <item class_id_reference="20" object_id="_398"> <id>492</id> <edge_type>2</edge_type> <source_obj>86</source_obj> <sink_obj>102</sink_obj> </item> <item class_id_reference="20" object_id="_399"> <id>493</id> <edge_type>2</edge_type> <source_obj>90</source_obj> <sink_obj>102</sink_obj> </item> <item class_id_reference="20" object_id="_400"> <id>494</id> <edge_type>2</edge_type> <source_obj>94</source_obj> <sink_obj>102</sink_obj> </item> <item class_id_reference="20" object_id="_401"> <id>495</id> <edge_type>2</edge_type> <source_obj>98</source_obj> <sink_obj>102</sink_obj> </item> <item class_id_reference="20" object_id="_402"> <id>496</id> <edge_type>2</edge_type> <source_obj>102</source_obj> <sink_obj>46</sink_obj> </item> <item class_id_reference="20" object_id="_403"> <id>497</id> <edge_type>2</edge_type> <source_obj>108</source_obj> <sink_obj>119</sink_obj> </item> <item class_id_reference="20" object_id="_404"> <id>498</id> <edge_type>2</edge_type> <source_obj>108</source_obj> <sink_obj>112</sink_obj> </item> <item class_id_reference="20" object_id="_405"> <id>499</id> <edge_type>2</edge_type> <source_obj>112</source_obj> <sink_obj>108</sink_obj> </item> <item class_id_reference="20" object_id="_406"> <id>500</id> <edge_type>2</edge_type> <source_obj>119</source_obj> <sink_obj>148</sink_obj> </item> <item class_id_reference="20" object_id="_407"> <id>501</id> <edge_type>2</edge_type> <source_obj>119</source_obj> <sink_obj>146</sink_obj> </item> <item class_id_reference="20" object_id="_408"> <id>502</id> <edge_type>2</edge_type> <source_obj>146</source_obj> <sink_obj>119</sink_obj> </item> </edges> </cdfg> <cdfg_regions class_id="21" tracking_level="0" version="0"> <count>7</count> <item_version>0</item_version> <item class_id="22" tracking_level="1" version="0" object_id="_409"> <mId>1</mId> <mTag>dct_dct_2d</mTag> <mType>0</mType> <sub_regions> <count>6</count> <item_version>0</item_version> <item>2</item> <item>3</item> <item>4</item> <item>5</item> <item>6</item> <item>7</item> </sub_regions> <basic_blocks> <count>0</count> <item_version>0</item_version> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>373</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> <item class_id_reference="22" object_id="_410"> <mId>2</mId> <mTag>Entry</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>29</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> <item class_id_reference="22" object_id="_411"> <mId>3</mId> <mTag>Row_DCT_Loop</mTag> <mType>1</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>35</item> <item>39</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>8</mMinTripCount> <mMaxTripCount>8</mMaxTripCount> <mMinLatency>120</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> <item class_id_reference="22" object_id="_412"> <mId>4</mId> <mTag>Xpose_Row_Outer_Loop_Xpose_Row_Inner_Loop</mTag> <mType>1</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>11</count> <item_version>0</item_version> <item>46</item> <item>66</item> <item>70</item> <item>74</item> <item>78</item> <item>82</item> <item>86</item> <item>90</item> <item>94</item> <item>98</item> <item>102</item> </basic_blocks> <mII>1</mII> <mDepth>2</mDepth> <mMinTripCount>64</mMinTripCount> <mMaxTripCount>64</mMaxTripCount> <mMinLatency>64</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> <item class_id_reference="22" object_id="_413"> <mId>5</mId> <mTag>Col_DCT_Loop</mTag> <mType>1</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>108</item> <item>112</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>8</mMinTripCount> <mMaxTripCount>8</mMaxTripCount> <mMinLatency>120</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> <item class_id_reference="22" object_id="_414"> <mId>6</mId> <mTag>Xpose_Col_Outer_Loop_Xpose_Col_Inner_Loop</mTag> <mType>1</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>119</item> <item>146</item> </basic_blocks> <mII>1</mII> <mDepth>2</mDepth> <mMinTripCount>64</mMinTripCount> <mMaxTripCount>64</mMaxTripCount> <mMinLatency>64</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> <item class_id_reference="22" object_id="_415"> <mId>7</mId> <mTag>Return</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>148</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> </cdfg_regions> <fsm class_id="24" tracking_level="1" version="0" object_id="_416"> <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="_417"> <id>1</id> <operations class_id="27" tracking_level="0" version="0"> <count>11</count> <item_version>0</item_version> <item class_id="28" tracking_level="1" version="0" object_id="_418"> <id>18</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_419"> <id>19</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_420"> <id>20</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_421"> <id>21</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_422"> <id>22</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_423"> <id>23</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_424"> <id>24</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_425"> <id>25</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_426"> <id>26</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_427"> <id>27</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_428"> <id>28</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_429"> <id>2</id> <operations> <count>6</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_430"> <id>30</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_431"> <id>31</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_432"> <id>32</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_433"> <id>33</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_434"> <id>34</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_435"> <id>37</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_436"> <id>3</id> <operations> <count>3</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_437"> <id>36</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_438"> <id>37</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_439"> <id>38</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_440"> <id>4</id> <operations> <count>20</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_441"> <id>40</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_442"> <id>41</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_443"> <id>42</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_444"> <id>43</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_445"> <id>44</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_446"> <id>45</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_447"> <id>49</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_448"> <id>50</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_449"> <id>51</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_450"> <id>52</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_451"> <id>57</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_452"> <id>58</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_453"> <id>59</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_454"> <id>60</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_455"> <id>61</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_456"> <id>62</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_457"> <id>63</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_458"> <id>64</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_459"> <id>65</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_460"> <id>100</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_461"> <id>5</id> <operations> <count>33</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_462"> <id>47</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_463"> <id>48</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_464"> <id>53</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_465"> <id>54</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_466"> <id>55</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_467"> <id>56</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_468"> <id>63</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_469"> <id>67</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_470"> <id>68</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_471"> <id>69</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_472"> <id>71</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_473"> <id>72</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_474"> <id>73</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_475"> <id>75</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_476"> <id>76</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_477"> <id>77</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_478"> <id>79</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_479"> <id>80</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_480"> <id>81</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_481"> <id>83</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_482"> <id>84</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_483"> <id>85</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_484"> <id>87</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_485"> <id>88</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_486"> <id>89</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_487"> <id>91</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_488"> <id>92</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_489"> <id>93</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_490"> <id>95</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_491"> <id>96</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_492"> <id>97</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_493"> <id>99</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_494"> <id>101</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_495"> <id>6</id> <operations> <count>6</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_496"> <id>103</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_497"> <id>104</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_498"> <id>105</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_499"> <id>106</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_500"> <id>107</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_501"> <id>110</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_502"> <id>7</id> <operations> <count>3</count> <item_version>0</item_version> <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>110</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_505"> <id>111</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_506"> <id>8</id> <operations> <count>18</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_507"> <id>113</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_508"> <id>114</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_509"> <id>115</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_510"> <id>116</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_511"> <id>117</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_512"> <id>118</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_513"> <id>122</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_514"> <id>123</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_515"> <id>124</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_516"> <id>125</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_517"> <id>130</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_518"> <id>131</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_519"> <id>132</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_520"> <id>133</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_521"> <id>134</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_522"> <id>135</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_523"> <id>136</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_524"> <id>144</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_525"> <id>9</id> <operations> <count>15</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_526"> <id>120</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_527"> <id>121</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_528"> <id>126</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_529"> <id>127</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_530"> <id>128</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_531"> <id>129</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_532"> <id>136</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_533"> <id>137</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_534"> <id>138</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_535"> <id>139</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_536"> <id>140</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_537"> <id>141</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_538"> <id>142</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_539"> <id>143</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_540"> <id>145</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_541"> <id>10</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_542"> <id>147</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> </states> <transitions class_id="29" tracking_level="0" version="0"> <count>13</count> <item_version>0</item_version> <item class_id="30" tracking_level="1" version="0" object_id="_543"> <inState>1</inState> <outState>2</outState> <condition class_id="31" tracking_level="0" version="0"> <id>104</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="_544"> <inState>2</inState> <outState>3</outState> <condition> <id>107</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>1</count> <item_version>0</item_version> <item class_id="34" tracking_level="0" version="0"> <first class_id="35" tracking_level="0" version="0"> <first>31</first> <second>0</second> </first> <second>1</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_545"> <inState>2</inState> <outState>4</outState> <condition> <id>106</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>1</count> <item_version>0</item_version> <item> <first> <first>31</first> <second>0</second> </first> <second>0</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_546"> <inState>3</inState> <outState>2</outState> <condition> <id>110</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="_547"> <inState>6</inState> <outState>7</outState> <condition> <id>120</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>1</count> <item_version>0</item_version> <item> <first> <first>104</first> <second>0</second> </first> <second>1</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_548"> <inState>6</inState> <outState>8</outState> <condition> <id>119</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>1</count> <item_version>0</item_version> <item> <first> <first>104</first> <second>0</second> </first> <second>0</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_549"> <inState>7</inState> <outState>6</outState> <condition> <id>123</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="_550"> <inState>5</inState> <outState>4</outState> <condition> <id>131</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="_551"> <inState>4</inState> <outState>6</outState> <condition> <id>130</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>1</count> <item_version>0</item_version> <item> <first> <first>43</first> <second>0</second> </first> <second>0</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_552"> <inState>4</inState> <outState>5</outState> <condition> <id>132</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>1</count> <item_version>0</item_version> <item> <first> <first>43</first> <second>0</second> </first> <second>1</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_553"> <inState>9</inState> <outState>8</outState> <condition> <id>134</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="_554"> <inState>8</inState> <outState>10</outState> <condition> <id>133</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>1</count> <item_version>0</item_version> <item> <first> <first>116</first> <second>0</second> </first> <second>0</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_555"> <inState>8</inState> <outState>9</outState> <condition> <id>135</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>1</count> <item_version>0</item_version> <item> <first> <first>116</first> <second>0</second> </first> <second>1</second> </item> </item> </sop> </condition> </item> </transitions> </fsm> <res class_id="36" tracking_level="1" version="0" object_id="_556"> <dp_component_resource class_id="37" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="38" tracking_level="0" version="0"> <first>grp_dct_dct_1d_fu_361 (dct_dct_1d)</first> <second class_id="39" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="40" tracking_level="0" version="0"> <first>BRAM</first> <second>0</second> </item> <item> <first>DSP48E</first> <second>8</second> </item> <item> <first>FF</first> <second>591</second> </item> <item> <first>LUT</first> <second>103</second> </item> </second> </item> </dp_component_resource> <dp_expression_resource> <count>21</count> <item_version>0</item_version> <item> <first>exitcond1_fu_528_p2 ( icmp ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>4</second> </item> <item> <first>(1P1)</first> <second>5</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>exitcond2_fu_504_p2 ( icmp ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>4</second> </item> <item> <first>(1P1)</first> <second>5</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>exitcond5_fu_404_p2 ( icmp ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>4</second> </item> <item> <first>(1P1)</first> <second>5</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>exitcond_flatten1_fu_516_p2 ( icmp ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>7</second> </item> <item> <first>(1P1)</first> <second>8</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>3</second> </item> </second> </item> <item> <first>exitcond_flatten_fu_416_p2 ( icmp ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>7</second> </item> <item> <first>(1P1)</first> <second>8</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>3</second> </item> </second> </item> <item> <first>exitcond_fu_428_p2 ( icmp ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>4</second> </item> <item> <first>(1P1)</first> <second>5</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>i_1_mid2_fu_434_p3 ( Select ) </first> <second> <count>5</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>(2P2)</first> <second>4</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>4</second> </item> </second> </item> <item> <first>i_3_mid2_fu_534_p3 ( Select ) </first> <second> <count>5</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>(2P2)</first> <second>4</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>4</second> </item> </second> </item> <item> <first>i_4_fu_410_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>4</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>4</second> </item> </second> </item> <item> <first>i_5_fu_510_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>4</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>4</second> </item> </second> </item> <item> <first>i_6_fu_487_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>4</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>4</second> </item> </second> </item> <item> <first>i_7_fu_583_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>4</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>4</second> </item> </second> </item> <item> <first>indvar_flatten_next1_fu_522_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>7</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>7</second> </item> </second> </item> <item> <first>indvar_flatten_next_fu_422_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>7</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>7</second> </item> </second> </item> <item> <first>j_1_mid2_fu_548_p3 ( Select ) </first> <second> <count>5</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>4</second> </item> <item> <first>(2P2)</first> <second>4</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>4</second> </item> </second> </item> <item> <first>j_2_fu_542_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>4</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>4</second> </item> </second> </item> <item> <first>j_mid2_fu_448_p3 ( Select ) </first> <second> <count>5</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>4</second> </item> <item> <first>(2P2)</first> <second>4</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>4</second> </item> </second> </item> <item> <first>j_s_fu_442_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>4</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>4</second> </item> </second> </item> <item> <first>p_addr1_fu_472_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>8</second> </item> <item> <first>(1P1)</first> <second>8</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>8</second> </item> </second> </item> <item> <first>p_addr4_fu_603_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>8</second> </item> <item> <first>(1P1)</first> <second>8</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>8</second> </item> </second> </item> <item> <first>p_addr5_fu_572_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>8</second> </item> <item> <first>(1P1)</first> <second>8</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>8</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>10</count> <item_version>0</item_version> <item> <first>col_inbuf_0_U</first> <second> <count>7</count> <item_version>0</item_version> <item> <first>(0Words)</first> <second>8</second> </item> <item> <first>(1Bits)</first> <second>16</second> </item> <item> <first>(2Banks)</first> <second>1</second> </item> <item> <first>(3W*Bits*Banks)</first> <second>128</second> </item> <item> <first>BRAM</first> <second>0</second> </item> <item> <first>FF</first> <second>32</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>col_inbuf_1_U</first> <second> <count>7</count> <item_version>0</item_version> <item> <first>(0Words)</first> <second>8</second> </item> <item> <first>(1Bits)</first> <second>16</second> </item> <item> <first>(2Banks)</first> <second>1</second> </item> <item> <first>(3W*Bits*Banks)</first> <second>128</second> </item> <item> <first>BRAM</first> <second>0</second> </item> <item> <first>FF</first> <second>32</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>col_inbuf_2_U</first> <second> <count>7</count> <item_version>0</item_version> <item> <first>(0Words)</first> <second>8</second> </item> <item> <first>(1Bits)</first> <second>16</second> </item> <item> <first>(2Banks)</first> <second>1</second> </item> <item> <first>(3W*Bits*Banks)</first> <second>128</second> </item> <item> <first>BRAM</first> <second>0</second> </item> <item> <first>FF</first> <second>32</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>col_inbuf_3_U</first> <second> <count>7</count> <item_version>0</item_version> <item> <first>(0Words)</first> <second>8</second> </item> <item> <first>(1Bits)</first> <second>16</second> </item> <item> <first>(2Banks)</first> <second>1</second> </item> <item> <first>(3W*Bits*Banks)</first> <second>128</second> </item> <item> <first>BRAM</first> <second>0</second> </item> <item> <first>FF</first> <second>32</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>col_inbuf_4_U</first> <second> <count>7</count> <item_version>0</item_version> <item> <first>(0Words)</first> <second>8</second> </item> <item> <first>(1Bits)</first> <second>16</second> </item> <item> <first>(2Banks)</first> <second>1</second> </item> <item> <first>(3W*Bits*Banks)</first> <second>128</second> </item> <item> <first>BRAM</first> <second>0</second> </item> <item> <first>FF</first> <second>32</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>col_inbuf_5_U</first> <second> <count>7</count> <item_version>0</item_version> <item> <first>(0Words)</first> <second>8</second> </item> <item> <first>(1Bits)</first> <second>16</second> </item> <item> <first>(2Banks)</first> <second>1</second> </item> <item> <first>(3W*Bits*Banks)</first> <second>128</second> </item> <item> <first>BRAM</first> <second>0</second> </item> <item> <first>FF</first> <second>32</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>col_inbuf_6_U</first> <second> <count>7</count> <item_version>0</item_version> <item> <first>(0Words)</first> <second>8</second> </item> <item> <first>(1Bits)</first> <second>16</second> </item> <item> <first>(2Banks)</first> <second>1</second> </item> <item> <first>(3W*Bits*Banks)</first> <second>128</second> </item> <item> <first>BRAM</first> <second>0</second> </item> <item> <first>FF</first> <second>32</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>col_inbuf_7_U</first> <second> <count>7</count> <item_version>0</item_version> <item> <first>(0Words)</first> <second>8</second> </item> <item> <first>(1Bits)</first> <second>16</second> </item> <item> <first>(2Banks)</first> <second>1</second> </item> <item> <first>(3W*Bits*Banks)</first> <second>128</second> </item> <item> <first>BRAM</first> <second>0</second> </item> <item> <first>FF</first> <second>32</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>col_outbuf_U</first> <second> <count>7</count> <item_version>0</item_version> <item> <first>(0Words)</first> <second>64</second> </item> <item> <first>(1Bits)</first> <second>16</second> </item> <item> <first>(2Banks)</first> <second>1</second> </item> <item> <first>(3W*Bits*Banks)</first> <second>1024</second> </item> <item> <first>BRAM</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>0</second> </item> </second> </item> <item> <first>row_outbuf_U</first> <second> <count>7</count> <item_version>0</item_version> <item> <first>(0Words)</first> <second>64</second> </item> <item> <first>(1Bits)</first> <second>16</second> </item> <item> <first>(2Banks)</first> <second>1</second> </item> <item> <first>(3W*Bits*Banks)</first> <second>1024</second> </item> <item> <first>BRAM</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>0</second> </item> </second> </item> </dp_memory_resource> <dp_multiplexer_resource> <count>51</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>9</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>9</second> </item> <item> <first>LUT</first> <second>4</second> </item> </second> </item> <item> <first>col_inbuf_0_address0</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>3</second> </item> <item> <first>(2Count)</first> <second>9</second> </item> <item> <first>LUT</first> <second>3</second> </item> </second> </item> <item> <first>col_inbuf_0_ce0</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>1</second> </item> </second> </item> <item> <first>col_inbuf_1_address0</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>3</second> </item> <item> <first>(2Count)</first> <second>9</second> </item> <item> <first>LUT</first> <second>3</second> </item> </second> </item> <item> <first>col_inbuf_1_ce0</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>1</second> </item> </second> </item> <item> <first>col_inbuf_2_address0</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>3</second> </item> <item> <first>(2Count)</first> <second>9</second> </item> <item> <first>LUT</first> <second>3</second> </item> </second> </item> <item> <first>col_inbuf_2_ce0</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>1</second> </item> </second> </item> <item> <first>col_inbuf_3_address0</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>3</second> </item> <item> <first>(2Count)</first> <second>9</second> </item> <item> <first>LUT</first> <second>3</second> </item> </second> </item> <item> <first>col_inbuf_3_ce0</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>1</second> </item> </second> </item> <item> <first>col_inbuf_4_address0</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>3</second> </item> <item> <first>(2Count)</first> <second>9</second> </item> <item> <first>LUT</first> <second>3</second> </item> </second> </item> <item> <first>col_inbuf_4_ce0</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>1</second> </item> </second> </item> <item> <first>col_inbuf_5_address0</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>3</second> </item> <item> <first>(2Count)</first> <second>9</second> </item> <item> <first>LUT</first> <second>3</second> </item> </second> </item> <item> <first>col_inbuf_5_ce0</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>1</second> </item> </second> </item> <item> <first>col_inbuf_6_address0</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>3</second> </item> <item> <first>(2Count)</first> <second>9</second> </item> <item> <first>LUT</first> <second>3</second> </item> </second> </item> <item> <first>col_inbuf_6_ce0</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>1</second> </item> </second> </item> <item> <first>col_inbuf_7_address0</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>3</second> </item> <item> <first>(2Count)</first> <second>9</second> </item> <item> <first>LUT</first> <second>3</second> </item> </second> </item> <item> <first>col_inbuf_7_ce0</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>1</second> </item> </second> </item> <item> <first>col_outbuf_address0</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>6</second> </item> <item> <first>(2Count)</first> <second>18</second> </item> <item> <first>LUT</first> <second>6</second> </item> </second> </item> <item> <first>col_outbuf_ce0</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>1</second> </item> </second> </item> <item> <first>col_outbuf_we0</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>1</second> </item> </second> </item> <item> <first>grp_dct_dct_1d_fu_361_src1_q0</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>16</second> </item> <item> <first>(2Count)</first> <second>48</second> </item> <item> <first>LUT</first> <second>16</second> </item> </second> </item> <item> <first>grp_dct_dct_1d_fu_361_src2_q0</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>16</second> </item> <item> <first>(2Count)</first> <second>48</second> </item> <item> <first>LUT</first> <second>16</second> </item> </second> </item> <item> <first>grp_dct_dct_1d_fu_361_src3_q0</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>16</second> </item> <item> <first>(2Count)</first> <second>48</second> </item> <item> <first>LUT</first> <second>16</second> </item> </second> </item> <item> <first>grp_dct_dct_1d_fu_361_src4_q0</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>16</second> </item> <item> <first>(2Count)</first> <second>48</second> </item> <item> <first>LUT</first> <second>16</second> </item> </second> </item> <item> <first>grp_dct_dct_1d_fu_361_src5_q0</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>16</second> </item> <item> <first>(2Count)</first> <second>48</second> </item> <item> <first>LUT</first> <second>16</second> </item> </second> </item> <item> <first>grp_dct_dct_1d_fu_361_src6_q0</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>16</second> </item> <item> <first>(2Count)</first> <second>48</second> </item> <item> <first>LUT</first> <second>16</second> </item> </second> </item> <item> <first>grp_dct_dct_1d_fu_361_src7_q0</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>16</second> </item> <item> <first>(2Count)</first> <second>48</second> </item> <item> <first>LUT</first> <second>16</second> </item> </second> </item> <item> <first>grp_dct_dct_1d_fu_361_src_q0</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>16</second> </item> <item> <first>(2Count)</first> <second>48</second> </item> <item> <first>LUT</first> <second>16</second> </item> </second> </item> <item> <first>grp_dct_dct_1d_fu_361_tmp_1</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>4</second> </item> <item> <first>(2Count)</first> <second>12</second> </item> <item> <first>LUT</first> <second>4</second> </item> </second> </item> <item> <first>grp_dct_dct_1d_fu_361_tmp_11</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>4</second> </item> <item> <first>(2Count)</first> <second>12</second> </item> <item> <first>LUT</first> <second>4</second> </item> </second> </item> <item> <first>i_1_reg_305</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>4</second> </item> <item> <first>(2Count)</first> <second>8</second> </item> <item> <first>LUT</first> <second>4</second> </item> </second> </item> <item> <first>i_2_reg_316</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>4</second> </item> <item> <first>(2Count)</first> <second>8</second> </item> <item> <first>LUT</first> <second>4</second> </item> </second> </item> <item> <first>i_3_reg_350</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>4</second> </item> <item> <first>(2Count)</first> <second>8</second> </item> <item> <first>LUT</first> <second>4</second> </item> </second> </item> <item> <first>i_reg_271</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>4</second> </item> <item> <first>(2Count)</first> <second>8</second> </item> <item> <first>LUT</first> <second>4</second> </item> </second> </item> <item> <first>in_block_0_ce0</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>1</second> </item> </second> </item> <item> <first>in_block_1_ce0</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>1</second> </item> </second> </item> <item> <first>in_block_2_ce0</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>1</second> </item> </second> </item> <item> <first>in_block_3_ce0</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>1</second> </item> </second> </item> <item> <first>in_block_4_ce0</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>1</second> </item> </second> </item> <item> <first>in_block_5_ce0</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>1</second> </item> </second> </item> <item> <first>in_block_6_ce0</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>1</second> </item> </second> </item> <item> <first>in_block_7_ce0</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>1</second> </item> </second> </item> <item> <first>indvar_flatten1_reg_328</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>7</second> </item> <item> <first>(2Count)</first> <second>14</second> </item> <item> <first>LUT</first> <second>7</second> </item> </second> </item> <item> <first>indvar_flatten_reg_283</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>7</second> </item> <item> <first>(2Count)</first> <second>14</second> </item> <item> <first>LUT</first> <second>7</second> </item> </second> </item> <item> <first>j_1_phi_fu_343_p4</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>4</second> </item> <item> <first>(2Count)</first> <second>8</second> </item> <item> <first>LUT</first> <second>4</second> </item> </second> </item> <item> <first>j_1_reg_339</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>4</second> </item> <item> <first>(2Count)</first> <second>8</second> </item> <item> <first>LUT</first> <second>4</second> </item> </second> </item> <item> <first>j_phi_fu_298_p4</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>4</second> </item> <item> <first>(2Count)</first> <second>8</second> </item> <item> <first>LUT</first> <second>4</second> </item> </second> </item> <item> <first>j_reg_294</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>4</second> </item> <item> <first>(2Count)</first> <second>8</second> </item> <item> <first>LUT</first> <second>4</second> </item> </second> </item> <item> <first>row_outbuf_address0</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>6</second> </item> <item> <first>(2Count)</first> <second>18</second> </item> <item> <first>LUT</first> <second>6</second> </item> </second> </item> <item> <first>row_outbuf_ce0</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>1</second> </item> </second> </item> <item> <first>row_outbuf_we0</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>1</second> </item> </second> </item> </dp_multiplexer_resource> <dp_register_resource> <count>22</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>8</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>8</second> </item> </second> </item> <item> <first>ap_reg_ppiten_pp0_it0</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>ap_reg_ppiten_pp0_it1</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>ap_reg_ppiten_pp1_it0</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>ap_reg_ppiten_pp1_it1</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>exitcond_flatten1_reg_661</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>exitcond_flatten_reg_623</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_dct_dct_1d_fu_361_ap_start_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>i_1_reg_305</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>4</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>4</second> </item> </second> </item> <item> <first>i_2_reg_316</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>4</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>4</second> </item> </second> </item> <item> <first>i_3_mid2_reg_670</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>4</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>4</second> </item> </second> </item> <item> <first>i_3_reg_350</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>4</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>4</second> </item> </second> </item> <item> <first>i_4_reg_618</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>4</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>4</second> </item> </second> </item> <item> <first>i_5_reg_656</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>4</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>4</second> </item> </second> </item> <item> <first>i_reg_271</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>4</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>4</second> </item> </second> </item> <item> <first>indvar_flatten1_reg_328</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>7</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>7</second> </item> </second> </item> <item> <first>indvar_flatten_reg_283</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>7</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>7</second> </item> </second> </item> <item> <first>j_1_mid2_reg_675</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>4</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>4</second> </item> </second> </item> <item> <first>j_1_reg_339</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>4</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>4</second> </item> </second> </item> <item> <first>j_mid2_reg_632</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>4</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>4</second> </item> </second> </item> <item> <first>j_reg_294</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>4</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>4</second> </item> </second> </item> <item> <first>tmp_1_reg_643</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>3</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>3</second> </item> </second> </item> </dp_register_resource> <dp_component_map class_id="41" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="42" tracking_level="0" version="0"> <first>grp_dct_dct_1d_fu_361 (dct_dct_1d)</first> <second> <count>2</count> <item_version>0</item_version> <item>37</item> <item>110</item> </second> </item> </dp_component_map> <dp_expression_map> <count>21</count> <item_version>0</item_version> <item> <first>exitcond1_fu_528_p2 ( icmp ) </first> <second> <count>1</count> <item_version>0</item_version> <item>122</item> </second> </item> <item> <first>exitcond2_fu_504_p2 ( icmp ) </first> <second> <count>1</count> <item_version>0</item_version> <item>104</item> </second> </item> <item> <first>exitcond5_fu_404_p2 ( icmp ) </first> <second> <count>1</count> <item_version>0</item_version> <item>31</item> </second> </item> <item> <first>exitcond_flatten1_fu_516_p2 ( icmp ) </first> <second> <count>1</count> <item_version>0</item_version> <item>116</item> </second> </item> <item> <first>exitcond_flatten_fu_416_p2 ( icmp ) </first> <second> <count>1</count> <item_version>0</item_version> <item>43</item> </second> </item> <item> <first>exitcond_fu_428_p2 ( icmp ) </first> <second> <count>1</count> <item_version>0</item_version> <item>49</item> </second> </item> <item> <first>i_1_mid2_fu_434_p3 ( Select ) </first> <second> <count>1</count> <item_version>0</item_version> <item>50</item> </second> </item> <item> <first>i_3_mid2_fu_534_p3 ( Select ) </first> <second> <count>1</count> <item_version>0</item_version> <item>123</item> </second> </item> <item> <first>i_4_fu_410_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>33</item> </second> </item> <item> <first>i_5_fu_510_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>106</item> </second> </item> <item> <first>i_6_fu_487_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>100</item> </second> </item> <item> <first>i_7_fu_583_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>144</item> </second> </item> <item> <first>indvar_flatten_next1_fu_522_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>117</item> </second> </item> <item> <first>indvar_flatten_next_fu_422_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>44</item> </second> </item> <item> <first>j_1_mid2_fu_548_p3 ( Select ) </first> <second> <count>1</count> <item_version>0</item_version> <item>125</item> </second> </item> <item> <first>j_2_fu_542_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>124</item> </second> </item> <item> <first>j_mid2_fu_448_p3 ( Select ) </first> <second> <count>1</count> <item_version>0</item_version> <item>52</item> </second> </item> <item> <first>j_s_fu_442_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>51</item> </second> </item> <item> <first>p_addr1_fu_472_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>60</item> </second> </item> <item> <first>p_addr4_fu_603_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>139</item> </second> </item> <item> <first>p_addr5_fu_572_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>133</item> </second> </item> </dp_expression_map> <dp_fifo_map> <count>0</count> <item_version>0</item_version> </dp_fifo_map> <dp_memory_map> <count>10</count> <item_version>0</item_version> <item> <first>col_inbuf_0_U</first> <second> <count>1</count> <item_version>0</item_version> <item>208</item> </second> </item> <item> <first>col_inbuf_1_U</first> <second> <count>1</count> <item_version>0</item_version> <item>217</item> </second> </item> <item> <first>col_inbuf_2_U</first> <second> <count>1</count> <item_version>0</item_version> <item>226</item> </second> </item> <item> <first>col_inbuf_3_U</first> <second> <count>1</count> <item_version>0</item_version> <item>235</item> </second> </item> <item> <first>col_inbuf_4_U</first> <second> <count>1</count> <item_version>0</item_version> <item>244</item> </second> </item> <item> <first>col_inbuf_5_U</first> <second> <count>1</count> <item_version>0</item_version> <item>253</item> </second> </item> <item> <first>col_inbuf_6_U</first> <second> <count>1</count> <item_version>0</item_version> <item>262</item> </second> </item> <item> <first>col_inbuf_7_U</first> <second> <count>1</count> <item_version>0</item_version> <item>271</item> </second> </item> <item> <first>col_outbuf_U</first> <second> <count>1</count> <item_version>0</item_version> <item>198</item> </second> </item> <item> <first>row_outbuf_U</first> <second> <count>1</count> <item_version>0</item_version> <item>189</item> </second> </item> </dp_memory_map> </res> <node_label_latency class_id="43" tracking_level="0" version="0"> <count>96</count> <item_version>0</item_version> <item class_id="44" tracking_level="0" version="0"> <first>18</first> <second class_id="45" tracking_level="0" version="0"> <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>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>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>30</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>31</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>33</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>34</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>37</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>38</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>40</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>41</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>42</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>43</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>44</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>45</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>49</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>50</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>51</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>52</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>53</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>57</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>58</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>59</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>60</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>61</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>62</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>63</first> <second> <first>2</first> <second>1</second> </second> </item> <item> <first>64</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>65</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>67</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>68</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>69</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>71</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>72</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>73</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>75</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>76</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>77</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>79</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>80</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>81</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>83</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>84</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>85</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>87</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>88</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>89</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>91</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>92</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>93</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>95</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>96</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>97</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>100</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>101</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>103</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>104</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>106</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>107</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>110</first> <second> <first>3</first> <second>1</second> </second> </item> <item> <first>111</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>113</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>114</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>115</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>116</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>117</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>118</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>122</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>123</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>124</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>125</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>129</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>130</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>131</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>132</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>133</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>134</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>135</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>136</first> <second> <first>4</first> <second>1</second> </second> </item> <item> <first>137</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>138</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>139</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>140</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>141</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>142</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>144</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>145</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>147</first> <second> <first>5</first> <second>0</second> </second> </item> </node_label_latency> <bblk_ent_exit class_id="46" tracking_level="0" version="0"> <count>19</count> <item_version>0</item_version> <item class_id="47" tracking_level="0" version="0"> <first>29</first> <second class_id="48" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>35</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>39</first> <second> <first>1</first> <second>2</second> </second> </item> <item> <first>46</first> <second> <first>2</first> <second>2</second> </second> </item> <item> <first>66</first> <second> <first>2</first> <second>3</second> </second> </item> <item> <first>70</first> <second> <first>3</first> <second>3</second> </second> </item> <item> <first>74</first> <second> <first>3</first> <second>3</second> </second> </item> <item> <first>78</first> <second> <first>3</first> <second>3</second> </second> </item> <item> <first>82</first> <second> <first>3</first> <second>3</second> </second> </item> <item> <first>86</first> <second> <first>3</first> <second>3</second> </second> </item> <item> <first>90</first> <second> <first>3</first> <second>3</second> </second> </item> <item> <first>94</first> <second> <first>3</first> <second>3</second> </second> </item> <item> <first>98</first> <second> <first>3</first> <second>3</second> </second> </item> <item> <first>102</first> <second> <first>2</first> <second>3</second> </second> </item> <item> <first>108</first> <second> <first>3</first> <second>3</second> </second> </item> <item> <first>112</first> <second> <first>3</first> <second>4</second> </second> </item> <item> <first>119</first> <second> <first>4</first> <second>4</second> </second> </item> <item> <first>146</first> <second> <first>4</first> <second>5</second> </second> </item> <item> <first>148</first> <second> <first>5</first> <second>5</second> </second> </item> </bblk_ent_exit> <regions class_id="49" tracking_level="0" version="0"> <count>2</count> <item_version>0</item_version> <item class_id="50" tracking_level="1" version="0" object_id="_557"> <region_name>Xpose_Row_Outer_Loop_Xpose_Row_Inner_Loop</region_name> <basic_blocks> <count>11</count> <item_version>0</item_version> <item>46</item> <item>66</item> <item>70</item> <item>74</item> <item>78</item> <item>82</item> <item>86</item> <item>90</item> <item>94</item> <item>98</item> <item>102</item> </basic_blocks> <nodes> <count>0</count> <item_version>0</item_version> </nodes> <anchor_node>-1</anchor_node> <region_type>8</region_type> <interval>1</interval> <pipe_depth>2</pipe_depth> </item> <item class_id_reference="50" object_id="_558"> <region_name>Xpose_Col_Outer_Loop_Xpose_Col_Inner_Loop</region_name> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>119</item> <item>146</item> </basic_blocks> <nodes> <count>0</count> <item_version>0</item_version> </nodes> <anchor_node>-1</anchor_node> <region_type>8</region_type> <interval>1</interval> <pipe_depth>2</pipe_depth> </item> </regions> <dp_fu_nodes class_id="51" tracking_level="0" version="0"> <count>76</count> <item_version>0</item_version> <item class_id="52" tracking_level="0" version="0"> <first>100</first> <second> <count>1</count> <item_version>0</item_version> <item>18</item> </second> </item> <item> <first>104</first> <second> <count>1</count> <item_version>0</item_version> <item>19</item> </second> </item> <item> <first>108</first> <second> <count>1</count> <item_version>0</item_version> <item>20</item> </second> </item> <item> <first>112</first> <second> <count>1</count> <item_version>0</item_version> <item>21</item> </second> </item> <item> <first>116</first> <second> <count>1</count> <item_version>0</item_version> <item>22</item> </second> </item> <item> <first>120</first> <second> <count>1</count> <item_version>0</item_version> <item>23</item> </second> </item> <item> <first>124</first> <second> <count>1</count> <item_version>0</item_version> <item>24</item> </second> </item> <item> <first>128</first> <second> <count>1</count> <item_version>0</item_version> <item>25</item> </second> </item> <item> <first>132</first> <second> <count>1</count> <item_version>0</item_version> <item>26</item> </second> </item> <item> <first>136</first> <second> <count>1</count> <item_version>0</item_version> <item>27</item> </second> </item> <item> <first>140</first> <second> <count>1</count> <item_version>0</item_version> <item>62</item> </second> </item> <item> <first>146</first> <second> <count>2</count> <item_version>0</item_version> <item>63</item> <item>63</item> </second> </item> <item> <first>151</first> <second> <count>1</count> <item_version>0</item_version> <item>67</item> </second> </item> <item> <first>157</first> <second> <count>1</count> <item_version>0</item_version> <item>68</item> </second> </item> <item> <first>163</first> <second> <count>1</count> <item_version>0</item_version> <item>71</item> </second> </item> <item> <first>169</first> <second> <count>1</count> <item_version>0</item_version> <item>72</item> </second> </item> <item> <first>175</first> <second> <count>1</count> <item_version>0</item_version> <item>75</item> </second> </item> <item> <first>181</first> <second> <count>1</count> <item_version>0</item_version> <item>76</item> </second> </item> <item> <first>187</first> <second> <count>1</count> <item_version>0</item_version> <item>79</item> </second> </item> <item> <first>193</first> <second> <count>1</count> <item_version>0</item_version> <item>80</item> </second> </item> <item> <first>199</first> <second> <count>1</count> <item_version>0</item_version> <item>83</item> </second> </item> <item> <first>205</first> <second> <count>1</count> <item_version>0</item_version> <item>84</item> </second> </item> <item> <first>211</first> <second> <count>1</count> <item_version>0</item_version> <item>87</item> </second> </item> <item> <first>217</first> <second> <count>1</count> <item_version>0</item_version> <item>88</item> </second> </item> <item> <first>223</first> <second> <count>1</count> <item_version>0</item_version> <item>91</item> </second> </item> <item> <first>229</first> <second> <count>1</count> <item_version>0</item_version> <item>92</item> </second> </item> <item> <first>235</first> <second> <count>1</count> <item_version>0</item_version> <item>95</item> </second> </item> <item> <first>241</first> <second> <count>1</count> <item_version>0</item_version> <item>96</item> </second> </item> <item> <first>247</first> <second> <count>1</count> <item_version>0</item_version> <item>135</item> </second> </item> <item> <first>253</first> <second> <count>2</count> <item_version>0</item_version> <item>136</item> <item>136</item> </second> </item> <item> <first>258</first> <second> <count>1</count> <item_version>0</item_version> <item>141</item> </second> </item> <item> <first>265</first> <second> <count>1</count> <item_version>0</item_version> <item>142</item> </second> </item> <item> <first>275</first> <second> <count>1</count> <item_version>0</item_version> <item>30</item> </second> </item> <item> <first>287</first> <second> <count>1</count> <item_version>0</item_version> <item>40</item> </second> </item> <item> <first>298</first> <second> <count>1</count> <item_version>0</item_version> <item>41</item> </second> </item> <item> <first>309</first> <second> <count>1</count> <item_version>0</item_version> <item>42</item> </second> </item> <item> <first>320</first> <second> <count>1</count> <item_version>0</item_version> <item>103</item> </second> </item> <item> <first>332</first> <second> <count>1</count> <item_version>0</item_version> <item>113</item> </second> </item> <item> <first>343</first> <second> <count>1</count> <item_version>0</item_version> <item>114</item> </second> </item> <item> <first>354</first> <second> <count>1</count> <item_version>0</item_version> <item>115</item> </second> </item> <item> <first>361</first> <second> <count>4</count> <item_version>0</item_version> <item>37</item> <item>37</item> <item>110</item> <item>110</item> </second> </item> <item> <first>404</first> <second> <count>1</count> <item_version>0</item_version> <item>31</item> </second> </item> <item> <first>410</first> <second> <count>1</count> <item_version>0</item_version> <item>33</item> </second> </item> <item> <first>416</first> <second> <count>1</count> <item_version>0</item_version> <item>43</item> </second> </item> <item> <first>422</first> <second> <count>1</count> <item_version>0</item_version> <item>44</item> </second> </item> <item> <first>428</first> <second> <count>1</count> <item_version>0</item_version> <item>49</item> </second> </item> <item> <first>434</first> <second> <count>1</count> <item_version>0</item_version> <item>50</item> </second> </item> <item> <first>442</first> <second> <count>1</count> <item_version>0</item_version> <item>51</item> </second> </item> <item> <first>448</first> <second> <count>1</count> <item_version>0</item_version> <item>52</item> </second> </item> <item> <first>456</first> <second> <count>1</count> <item_version>0</item_version> <item>57</item> </second> </item> <item> <first>460</first> <second> <count>1</count> <item_version>0</item_version> <item>58</item> </second> </item> <item> <first>468</first> <second> <count>1</count> <item_version>0</item_version> <item>59</item> </second> </item> <item> <first>472</first> <second> <count>1</count> <item_version>0</item_version> <item>60</item> </second> </item> <item> <first>478</first> <second> <count>1</count> <item_version>0</item_version> <item>61</item> </second> </item> <item> <first>483</first> <second> <count>1</count> <item_version>0</item_version> <item>64</item> </second> </item> <item> <first>487</first> <second> <count>1</count> <item_version>0</item_version> <item>100</item> </second> </item> <item> <first>493</first> <second> <count>1</count> <item_version>0</item_version> <item>53</item> </second> </item> <item> <first>504</first> <second> <count>1</count> <item_version>0</item_version> <item>104</item> </second> </item> <item> <first>510</first> <second> <count>1</count> <item_version>0</item_version> <item>106</item> </second> </item> <item> <first>516</first> <second> <count>1</count> <item_version>0</item_version> <item>116</item> </second> </item> <item> <first>522</first> <second> <count>1</count> <item_version>0</item_version> <item>117</item> </second> </item> <item> <first>528</first> <second> <count>1</count> <item_version>0</item_version> <item>122</item> </second> </item> <item> <first>534</first> <second> <count>1</count> <item_version>0</item_version> <item>123</item> </second> </item> <item> <first>542</first> <second> <count>1</count> <item_version>0</item_version> <item>124</item> </second> </item> <item> <first>548</first> <second> <count>1</count> <item_version>0</item_version> <item>125</item> </second> </item> <item> <first>556</first> <second> <count>1</count> <item_version>0</item_version> <item>130</item> </second> </item> <item> <first>560</first> <second> <count>1</count> <item_version>0</item_version> <item>131</item> </second> </item> <item> <first>568</first> <second> <count>1</count> <item_version>0</item_version> <item>132</item> </second> </item> <item> <first>572</first> <second> <count>1</count> <item_version>0</item_version> <item>133</item> </second> </item> <item> <first>578</first> <second> <count>1</count> <item_version>0</item_version> <item>134</item> </second> </item> <item> <first>583</first> <second> <count>1</count> <item_version>0</item_version> <item>144</item> </second> </item> <item> <first>589</first> <second> <count>1</count> <item_version>0</item_version> <item>129</item> </second> </item> <item> <first>592</first> <second> <count>1</count> <item_version>0</item_version> <item>137</item> </second> </item> <item> <first>599</first> <second> <count>1</count> <item_version>0</item_version> <item>138</item> </second> </item> <item> <first>603</first> <second> <count>1</count> <item_version>0</item_version> <item>139</item> </second> </item> <item> <first>609</first> <second> <count>1</count> <item_version>0</item_version> <item>140</item> </second> </item> </dp_fu_nodes> <dp_fu_nodes_expression class_id="54" tracking_level="0" version="0"> <count>64</count> <item_version>0</item_version> <item class_id="55" tracking_level="0" version="0"> <first>col_inbuf_0_addr_gep_fu_223</first> <second> <count>1</count> <item_version>0</item_version> <item>91</item> </second> </item> <item> <first>col_inbuf_0_alloca_fu_108</first> <second> <count>1</count> <item_version>0</item_version> <item>20</item> </second> </item> <item> <first>col_inbuf_1_addr_gep_fu_211</first> <second> <count>1</count> <item_version>0</item_version> <item>87</item> </second> </item> <item> <first>col_inbuf_1_alloca_fu_112</first> <second> <count>1</count> <item_version>0</item_version> <item>21</item> </second> </item> <item> <first>col_inbuf_2_addr_gep_fu_199</first> <second> <count>1</count> <item_version>0</item_version> <item>83</item> </second> </item> <item> <first>col_inbuf_2_alloca_fu_116</first> <second> <count>1</count> <item_version>0</item_version> <item>22</item> </second> </item> <item> <first>col_inbuf_3_addr_gep_fu_187</first> <second> <count>1</count> <item_version>0</item_version> <item>79</item> </second> </item> <item> <first>col_inbuf_3_alloca_fu_120</first> <second> <count>1</count> <item_version>0</item_version> <item>23</item> </second> </item> <item> <first>col_inbuf_4_addr_gep_fu_175</first> <second> <count>1</count> <item_version>0</item_version> <item>75</item> </second> </item> <item> <first>col_inbuf_4_alloca_fu_124</first> <second> <count>1</count> <item_version>0</item_version> <item>24</item> </second> </item> <item> <first>col_inbuf_5_addr_gep_fu_163</first> <second> <count>1</count> <item_version>0</item_version> <item>71</item> </second> </item> <item> <first>col_inbuf_5_alloca_fu_128</first> <second> <count>1</count> <item_version>0</item_version> <item>25</item> </second> </item> <item> <first>col_inbuf_6_addr_gep_fu_151</first> <second> <count>1</count> <item_version>0</item_version> <item>67</item> </second> </item> <item> <first>col_inbuf_6_alloca_fu_132</first> <second> <count>1</count> <item_version>0</item_version> <item>26</item> </second> </item> <item> <first>col_inbuf_7_addr_gep_fu_235</first> <second> <count>1</count> <item_version>0</item_version> <item>95</item> </second> </item> <item> <first>col_inbuf_7_alloca_fu_136</first> <second> <count>1</count> <item_version>0</item_version> <item>27</item> </second> </item> <item> <first>col_outbuf_addr_gep_fu_247</first> <second> <count>1</count> <item_version>0</item_version> <item>135</item> </second> </item> <item> <first>col_outbuf_alloca_fu_104</first> <second> <count>1</count> <item_version>0</item_version> <item>19</item> </second> </item> <item> <first>exitcond1_fu_528</first> <second> <count>1</count> <item_version>0</item_version> <item>122</item> </second> </item> <item> <first>exitcond2_fu_504</first> <second> <count>1</count> <item_version>0</item_version> <item>104</item> </second> </item> <item> <first>exitcond5_fu_404</first> <second> <count>1</count> <item_version>0</item_version> <item>31</item> </second> </item> <item> <first>exitcond_flatten1_fu_516</first> <second> <count>1</count> <item_version>0</item_version> <item>116</item> </second> </item> <item> <first>exitcond_flatten_fu_416</first> <second> <count>1</count> <item_version>0</item_version> <item>43</item> </second> </item> <item> <first>exitcond_fu_428</first> <second> <count>1</count> <item_version>0</item_version> <item>49</item> </second> </item> <item> <first>i_1_mid2_fu_434</first> <second> <count>1</count> <item_version>0</item_version> <item>50</item> </second> </item> <item> <first>i_1_phi_fu_309</first> <second> <count>1</count> <item_version>0</item_version> <item>42</item> </second> </item> <item> <first>i_2_phi_fu_320</first> <second> <count>1</count> <item_version>0</item_version> <item>103</item> </second> </item> <item> <first>i_3_mid2_fu_534</first> <second> <count>1</count> <item_version>0</item_version> <item>123</item> </second> </item> <item> <first>i_3_phi_fu_354</first> <second> <count>1</count> <item_version>0</item_version> <item>115</item> </second> </item> <item> <first>i_4_fu_410</first> <second> <count>1</count> <item_version>0</item_version> <item>33</item> </second> </item> <item> <first>i_5_fu_510</first> <second> <count>1</count> <item_version>0</item_version> <item>106</item> </second> </item> <item> <first>i_6_fu_487</first> <second> <count>1</count> <item_version>0</item_version> <item>100</item> </second> </item> <item> <first>i_7_fu_583</first> <second> <count>1</count> <item_version>0</item_version> <item>144</item> </second> </item> <item> <first>i_phi_fu_275</first> <second> <count>1</count> <item_version>0</item_version> <item>30</item> </second> </item> <item> <first>indvar_flatten1_phi_fu_332</first> <second> <count>1</count> <item_version>0</item_version> <item>113</item> </second> </item> <item> <first>indvar_flatten_next1_fu_522</first> <second> <count>1</count> <item_version>0</item_version> <item>117</item> </second> </item> <item> <first>indvar_flatten_next_fu_422</first> <second> <count>1</count> <item_version>0</item_version> <item>44</item> </second> </item> <item> <first>indvar_flatten_phi_fu_287</first> <second> <count>1</count> <item_version>0</item_version> <item>40</item> </second> </item> <item> <first>j_1_mid2_fu_548</first> <second> <count>1</count> <item_version>0</item_version> <item>125</item> </second> </item> <item> <first>j_1_phi_fu_343</first> <second> <count>1</count> <item_version>0</item_version> <item>114</item> </second> </item> <item> <first>j_2_fu_542</first> <second> <count>1</count> <item_version>0</item_version> <item>124</item> </second> </item> <item> <first>j_mid2_fu_448</first> <second> <count>1</count> <item_version>0</item_version> <item>52</item> </second> </item> <item> <first>j_phi_fu_298</first> <second> <count>1</count> <item_version>0</item_version> <item>41</item> </second> </item> <item> <first>j_s_fu_442</first> <second> <count>1</count> <item_version>0</item_version> <item>51</item> </second> </item> <item> <first>out_block_addr_gep_fu_258</first> <second> <count>1</count> <item_version>0</item_version> <item>141</item> </second> </item> <item> <first>p_addr1_fu_472</first> <second> <count>1</count> <item_version>0</item_version> <item>60</item> </second> </item> <item> <first>p_addr2_cast_fu_568</first> <second> <count>1</count> <item_version>0</item_version> <item>132</item> </second> </item> <item> <first>p_addr3_cast_fu_599</first> <second> <count>1</count> <item_version>0</item_version> <item>138</item> </second> </item> <item> <first>p_addr4_fu_603</first> <second> <count>1</count> <item_version>0</item_version> <item>139</item> </second> </item> <item> <first>p_addr5_fu_572</first> <second> <count>1</count> <item_version>0</item_version> <item>133</item> </second> </item> <item> <first>p_addr_cast_fu_468</first> <second> <count>1</count> <item_version>0</item_version> <item>59</item> </second> </item> <item> <first>row_outbuf_addr_gep_fu_140</first> <second> <count>1</count> <item_version>0</item_version> <item>62</item> </second> </item> <item> <first>row_outbuf_alloca_fu_100</first> <second> <count>1</count> <item_version>0</item_version> <item>18</item> </second> </item> <item> <first>tmp_1_fu_483</first> <second> <count>1</count> <item_version>0</item_version> <item>64</item> </second> </item> <item> <first>tmp_3_fu_478</first> <second> <count>1</count> <item_version>0</item_version> <item>61</item> </second> </item> <item> <first>tmp_3_trn_cast_fu_556</first> <second> <count>1</count> <item_version>0</item_version> <item>130</item> </second> </item> <item> <first>tmp_4_fu_560</first> <second> <count>1</count> <item_version>0</item_version> <item>131</item> </second> </item> <item> <first>tmp_4_trn_cast_fu_589</first> <second> <count>1</count> <item_version>0</item_version> <item>129</item> </second> </item> <item> <first>tmp_6_fu_578</first> <second> <count>1</count> <item_version>0</item_version> <item>134</item> </second> </item> <item> <first>tmp_7_fu_592</first> <second> <count>1</count> <item_version>0</item_version> <item>137</item> </second> </item> <item> <first>tmp_8_fu_609</first> <second> <count>1</count> <item_version>0</item_version> <item>140</item> </second> </item> <item> <first>tmp_fu_460</first> <second> <count>1</count> <item_version>0</item_version> <item>58</item> </second> </item> <item> <first>tmp_s_fu_493</first> <second> <count>1</count> <item_version>0</item_version> <item>53</item> </second> </item> <item> <first>tmp_trn_cast_fu_456</first> <second> <count>1</count> <item_version>0</item_version> <item>57</item> </second> </item> </dp_fu_nodes_expression> <dp_fu_nodes_module> <count>1</count> <item_version>0</item_version> <item> <first>grp_dct_dct_1d_fu_361</first> <second> <count>4</count> <item_version>0</item_version> <item>37</item> <item>37</item> <item>110</item> <item>110</item> </second> </item> </dp_fu_nodes_module> <dp_fu_nodes_io> <count>0</count> <item_version>0</item_version> </dp_fu_nodes_io> <return_ports> <count>0</count> <item_version>0</item_version> </return_ports> <dp_mem_port_nodes class_id="56" tracking_level="0" version="0"> <count>29</count> <item_version>0</item_version> <item class_id="57" tracking_level="0" version="0"> <first class_id="58" tracking_level="0" version="0"> <first>col_inbuf_0</first> <second>0</second> </first> <second> <count>1</count> <item_version>0</item_version> <item>92</item> </second> </item> <item> <first> <first>col_inbuf_0</first> <second>100</second> </first> <second> <count>1</count> <item_version>0</item_version> <item>110</item> </second> </item> <item> <first> <first>col_inbuf_1</first> <second>0</second> </first> <second> <count>1</count> <item_version>0</item_version> <item>88</item> </second> </item> <item> <first> <first>col_inbuf_1</first> <second>100</second> </first> <second> <count>1</count> <item_version>0</item_version> <item>110</item> </second> </item> <item> <first> <first>col_inbuf_2</first> <second>0</second> </first> <second> <count>1</count> <item_version>0</item_version> <item>84</item> </second> </item> <item> <first> <first>col_inbuf_2</first> <second>100</second> </first> <second> <count>1</count> <item_version>0</item_version> <item>110</item> </second> </item> <item> <first> <first>col_inbuf_3</first> <second>0</second> </first> <second> <count>1</count> <item_version>0</item_version> <item>80</item> </second> </item> <item> <first> <first>col_inbuf_3</first> <second>100</second> </first> <second> <count>1</count> <item_version>0</item_version> <item>110</item> </second> </item> <item> <first> <first>col_inbuf_4</first> <second>0</second> </first> <second> <count>1</count> <item_version>0</item_version> <item>76</item> </second> </item> <item> <first> <first>col_inbuf_4</first> <second>100</second> </first> <second> <count>1</count> <item_version>0</item_version> <item>110</item> </second> </item> <item> <first> <first>col_inbuf_5</first> <second>0</second> </first> <second> <count>1</count> <item_version>0</item_version> <item>72</item> </second> </item> <item> <first> <first>col_inbuf_5</first> <second>100</second> </first> <second> <count>1</count> <item_version>0</item_version> <item>110</item> </second> </item> <item> <first> <first>col_inbuf_6</first> <second>0</second> </first> <second> <count>1</count> <item_version>0</item_version> <item>68</item> </second> </item> <item> <first> <first>col_inbuf_6</first> <second>100</second> </first> <second> <count>1</count> <item_version>0</item_version> <item>110</item> </second> </item> <item> <first> <first>col_inbuf_7</first> <second>0</second> </first> <second> <count>1</count> <item_version>0</item_version> <item>96</item> </second> </item> <item> <first> <first>col_inbuf_7</first> <second>100</second> </first> <second> <count>1</count> <item_version>0</item_version> <item>110</item> </second> </item> <item> <first> <first>col_outbuf</first> <second>0</second> </first> <second> <count>2</count> <item_version>0</item_version> <item>136</item> <item>136</item> </second> </item> <item> <first> <first>col_outbuf</first> <second>100</second> </first> <second> <count>1</count> <item_version>0</item_version> <item>110</item> </second> </item> <item> <first> <first>dct_coeff_table_0</first> <second>100</second> </first> <second> <count>2</count> <item_version>0</item_version> <item>37</item> <item>110</item> </second> </item> <item> <first> <first>dct_coeff_table_1</first> <second>100</second> </first> <second> <count>2</count> <item_version>0</item_version> <item>37</item> <item>110</item> </second> </item> <item> <first> <first>dct_coeff_table_2</first> <second>100</second> </first> <second> <count>2</count> <item_version>0</item_version> <item>37</item> <item>110</item> </second> </item> <item> <first> <first>dct_coeff_table_3</first> <second>100</second> </first> <second> <count>2</count> <item_version>0</item_version> <item>37</item> <item>110</item> </second> </item> <item> <first> <first>dct_coeff_table_4</first> <second>100</second> </first> <second> <count>2</count> <item_version>0</item_version> <item>37</item> <item>110</item> </second> </item> <item> <first> <first>dct_coeff_table_5</first> <second>100</second> </first> <second> <count>2</count> <item_version>0</item_version> <item>37</item> <item>110</item> </second> </item> <item> <first> <first>dct_coeff_table_6</first> <second>100</second> </first> <second> <count>2</count> <item_version>0</item_version> <item>37</item> <item>110</item> </second> </item> <item> <first> <first>dct_coeff_table_7</first> <second>100</second> </first> <second> <count>2</count> <item_version>0</item_version> <item>37</item> <item>110</item> </second> </item> <item> <first> <first>out_block</first> <second>0</second> </first> <second> <count>1</count> <item_version>0</item_version> <item>142</item> </second> </item> <item> <first> <first>row_outbuf</first> <second>0</second> </first> <second> <count>2</count> <item_version>0</item_version> <item>63</item> <item>63</item> </second> </item> <item> <first> <first>row_outbuf</first> <second>100</second> </first> <second> <count>1</count> <item_version>0</item_version> <item>37</item> </second> </item> </dp_mem_port_nodes> <dp_reg_nodes> <count>24</count> <item_version>0</item_version> <item> <first>271</first> <second> <count>1</count> <item_version>0</item_version> <item>30</item> </second> </item> <item> <first>283</first> <second> <count>1</count> <item_version>0</item_version> <item>40</item> </second> </item> <item> <first>294</first> <second> <count>1</count> <item_version>0</item_version> <item>41</item> </second> </item> <item> <first>305</first> <second> <count>1</count> <item_version>0</item_version> <item>42</item> </second> </item> <item> <first>316</first> <second> <count>1</count> <item_version>0</item_version> <item>103</item> </second> </item> <item> <first>328</first> <second> <count>1</count> <item_version>0</item_version> <item>113</item> </second> </item> <item> <first>339</first> <second> <count>1</count> <item_version>0</item_version> <item>114</item> </second> </item> <item> <first>350</first> <second> <count>1</count> <item_version>0</item_version> <item>115</item> </second> </item> <item> <first>614</first> <second> <count>1</count> <item_version>0</item_version> <item>31</item> </second> </item> <item> <first>618</first> <second> <count>1</count> <item_version>0</item_version> <item>33</item> </second> </item> <item> <first>623</first> <second> <count>1</count> <item_version>0</item_version> <item>43</item> </second> </item> <item> <first>627</first> <second> <count>1</count> <item_version>0</item_version> <item>44</item> </second> </item> <item> <first>632</first> <second> <count>1</count> <item_version>0</item_version> <item>52</item> </second> </item> <item> <first>638</first> <second> <count>1</count> <item_version>0</item_version> <item>62</item> </second> </item> <item> <first>643</first> <second> <count>1</count> <item_version>0</item_version> <item>64</item> </second> </item> <item> <first>647</first> <second> <count>1</count> <item_version>0</item_version> <item>100</item> </second> </item> <item> <first>652</first> <second> <count>1</count> <item_version>0</item_version> <item>104</item> </second> </item> <item> <first>656</first> <second> <count>1</count> <item_version>0</item_version> <item>106</item> </second> </item> <item> <first>661</first> <second> <count>1</count> <item_version>0</item_version> <item>116</item> </second> </item> <item> <first>665</first> <second> <count>1</count> <item_version>0</item_version> <item>117</item> </second> </item> <item> <first>670</first> <second> <count>1</count> <item_version>0</item_version> <item>123</item> </second> </item> <item> <first>675</first> <second> <count>1</count> <item_version>0</item_version> <item>125</item> </second> </item> <item> <first>681</first> <second> <count>1</count> <item_version>0</item_version> <item>135</item> </second> </item> <item> <first>686</first> <second> <count>1</count> <item_version>0</item_version> <item>144</item> </second> </item> </dp_reg_nodes> <dp_regname_nodes> <count>24</count> <item_version>0</item_version> <item> <first>col_outbuf_addr_reg_681</first> <second> <count>1</count> <item_version>0</item_version> <item>135</item> </second> </item> <item> <first>exitcond2_reg_652</first> <second> <count>1</count> <item_version>0</item_version> <item>104</item> </second> </item> <item> <first>exitcond5_reg_614</first> <second> <count>1</count> <item_version>0</item_version> <item>31</item> </second> </item> <item> <first>exitcond_flatten1_reg_661</first> <second> <count>1</count> <item_version>0</item_version> <item>116</item> </second> </item> <item> <first>exitcond_flatten_reg_623</first> <second> <count>1</count> <item_version>0</item_version> <item>43</item> </second> </item> <item> <first>i_1_reg_305</first> <second> <count>1</count> <item_version>0</item_version> <item>42</item> </second> </item> <item> <first>i_2_reg_316</first> <second> <count>1</count> <item_version>0</item_version> <item>103</item> </second> </item> <item> <first>i_3_mid2_reg_670</first> <second> <count>1</count> <item_version>0</item_version> <item>123</item> </second> </item> <item> <first>i_3_reg_350</first> <second> <count>1</count> <item_version>0</item_version> <item>115</item> </second> </item> <item> <first>i_4_reg_618</first> <second> <count>1</count> <item_version>0</item_version> <item>33</item> </second> </item> <item> <first>i_5_reg_656</first> <second> <count>1</count> <item_version>0</item_version> <item>106</item> </second> </item> <item> <first>i_6_reg_647</first> <second> <count>1</count> <item_version>0</item_version> <item>100</item> </second> </item> <item> <first>i_7_reg_686</first> <second> <count>1</count> <item_version>0</item_version> <item>144</item> </second> </item> <item> <first>i_reg_271</first> <second> <count>1</count> <item_version>0</item_version> <item>30</item> </second> </item> <item> <first>indvar_flatten1_reg_328</first> <second> <count>1</count> <item_version>0</item_version> <item>113</item> </second> </item> <item> <first>indvar_flatten_next1_reg_665</first> <second> <count>1</count> <item_version>0</item_version> <item>117</item> </second> </item> <item> <first>indvar_flatten_next_reg_627</first> <second> <count>1</count> <item_version>0</item_version> <item>44</item> </second> </item> <item> <first>indvar_flatten_reg_283</first> <second> <count>1</count> <item_version>0</item_version> <item>40</item> </second> </item> <item> <first>j_1_mid2_reg_675</first> <second> <count>1</count> <item_version>0</item_version> <item>125</item> </second> </item> <item> <first>j_1_reg_339</first> <second> <count>1</count> <item_version>0</item_version> <item>114</item> </second> </item> <item> <first>j_mid2_reg_632</first> <second> <count>1</count> <item_version>0</item_version> <item>52</item> </second> </item> <item> <first>j_reg_294</first> <second> <count>1</count> <item_version>0</item_version> <item>41</item> </second> </item> <item> <first>row_outbuf_addr_reg_638</first> <second> <count>1</count> <item_version>0</item_version> <item>62</item> </second> </item> <item> <first>tmp_1_reg_643</first> <second> <count>1</count> <item_version>0</item_version> <item>64</item> </second> </item> </dp_regname_nodes> <dp_reg_phi> <count>8</count> <item_version>0</item_version> <item> <first>271</first> <second> <count>1</count> <item_version>0</item_version> <item>30</item> </second> </item> <item> <first>283</first> <second> <count>1</count> <item_version>0</item_version> <item>40</item> </second> </item> <item> <first>294</first> <second> <count>1</count> <item_version>0</item_version> <item>41</item> </second> </item> <item> <first>305</first> <second> <count>1</count> <item_version>0</item_version> <item>42</item> </second> </item> <item> <first>316</first> <second> <count>1</count> <item_version>0</item_version> <item>103</item> </second> </item> <item> <first>328</first> <second> <count>1</count> <item_version>0</item_version> <item>113</item> </second> </item> <item> <first>339</first> <second> <count>1</count> <item_version>0</item_version> <item>114</item> </second> </item> <item> <first>350</first> <second> <count>1</count> <item_version>0</item_version> <item>115</item> </second> </item> </dp_reg_phi> <dp_regname_phi> <count>8</count> <item_version>0</item_version> <item> <first>i_1_reg_305</first> <second> <count>1</count> <item_version>0</item_version> <item>42</item> </second> </item> <item> <first>i_2_reg_316</first> <second> <count>1</count> <item_version>0</item_version> <item>103</item> </second> </item> <item> <first>i_3_reg_350</first> <second> <count>1</count> <item_version>0</item_version> <item>115</item> </second> </item> <item> <first>i_reg_271</first> <second> <count>1</count> <item_version>0</item_version> <item>30</item> </second> </item> <item> <first>indvar_flatten1_reg_328</first> <second> <count>1</count> <item_version>0</item_version> <item>113</item> </second> </item> <item> <first>indvar_flatten_reg_283</first> <second> <count>1</count> <item_version>0</item_version> <item>40</item> </second> </item> <item> <first>j_1_reg_339</first> <second> <count>1</count> <item_version>0</item_version> <item>114</item> </second> </item> <item> <first>j_reg_294</first> <second> <count>1</count> <item_version>0</item_version> <item>41</item> </second> </item> </dp_regname_phi> <dp_port_io_nodes class_id="59" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="60" tracking_level="0" version="0"> <first>out_block(p0)</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>store</first> <second> <count>1</count> <item_version>0</item_version> <item>142</item> </second> </item> </second> </item> </dp_port_io_nodes> <port2core class_id="61" tracking_level="0" version="0"> <count>9</count> <item_version>0</item_version> <item class_id="62" tracking_level="0" version="0"> <first>1</first> <second>RAM</second> </item> <item> <first>2</first> <second>RAM</second> </item> <item> <first>3</first> <second>RAM</second> </item> <item> <first>4</first> <second>RAM</second> </item> <item> <first>5</first> <second>RAM</second> </item> <item> <first>6</first> <second>RAM</second> </item> <item> <first>7</first> <second>RAM</second> </item> <item> <first>8</first> <second>RAM</second> </item> <item> <first>9</first> <second>RAM</second> </item> </port2core> <node2core> <count>10</count> <item_version>0</item_version> <item> <first>18</first> <second>RAM</second> </item> <item> <first>19</first> <second>RAM</second> </item> <item> <first>20</first> <second>RAM</second> </item> <item> <first>21</first> <second>RAM</second> </item> <item> <first>22</first> <second>RAM</second> </item> <item> <first>23</first> <second>RAM</second> </item> <item> <first>24</first> <second>RAM</second> </item> <item> <first>25</first> <second>RAM</second> </item> <item> <first>26</first> <second>RAM</second> </item> <item> <first>27</first> <second>RAM</second> </item> </node2core> </syndb> </boost_serialization>
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Ada Modeling Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 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. ------------------------------------------------------------------------------ package AMF.Internals.Tables.Primitive_Types_Metamodel.Properties is procedure Initialize; private procedure Initialize_1; procedure Initialize_2; procedure Initialize_3; procedure Initialize_4; procedure Initialize_5; procedure Initialize_6; procedure Initialize_7; procedure Initialize_8; procedure Initialize_9; procedure Initialize_10; procedure Initialize_11; procedure Initialize_12; procedure Initialize_13; procedure Initialize_14; procedure Initialize_15; end AMF.Internals.Tables.Primitive_Types_Metamodel.Properties;
-- -- -- package Copyright (c) Dmitry A. Kazakov -- -- Parsers.Generic_Source.XPM Luebeck -- -- Implementation Summer, 2006 -- -- -- -- Last revision : 19:56 08 Aug 2015 -- -- -- -- This library 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 library -- -- is distributed in the hope that it will be useful, but WITHOUT -- -- ANY WARRANTY; without even the implied warranty of -- -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -- -- General Public License for more details. You should have -- -- received a copy of the GNU General Public License along with -- -- this library; if not, write to the Free Software Foundation, -- -- Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -- -- -- -- 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. -- --____________________________________________________________________-- with Ada.Exceptions; use Ada.Exceptions; with Ada.IO_Exceptions; use Ada.IO_Exceptions; with Ada.Characters.Handling; use Ada.Characters.Handling; with Ada.Characters.Latin_1; use Ada.Characters.Latin_1; with Strings_Edit.Integers; use Strings_Edit.Integers; package body Parsers.Generic_Source.XPM is use Color_Tables; procedure Skip ( Code : in out Source_Type; In_String : Boolean ) is type Chain_Type is (Slash, Catenation); Chain : Chain_Type; Error_At : Location_Type; begin if not In_String then declare Got_It : Boolean; Error : Boolean; begin Skip (Code, Got_It, Error, Error_At); if Error then Raise_Exception ( Syntax_Error'Identity, ( "Unclosed comment starts at " & Image (Error_At & Link (Code)) ) ); end if; return; end; end if; loop declare Line : Line_Ptr_Type; Pointer : Integer; Last : Integer; begin Get_Line (Code, Line, Pointer, Last); loop if Pointer > Last then Set_Pointer (Code, Pointer); Raise_Exception ( Syntax_Error'Identity, ( "Malformed string literal at " & Image (Link (Code)) ) ); end if; case Line (Pointer) is when ' ' | HT | LF | CR | VT | FF => Pointer := Pointer + 1; when '\' => Pointer := Pointer + 1; if Pointer > Last then Chain := Slash; exit; end if; if ( Line (Pointer) = CR or else Line (Pointer) = LF ) then Pointer := Pointer + 1; else Set_Pointer (Code, Pointer - 1); return; end if; when '"' => Chain := Catenation; Set_Pointer (Code, Pointer + 1); exit; when others => Set_Pointer (Code, Pointer); return; end case; end loop; end; case Chain is when Catenation => Skip (Code, False); declare Got_It : Boolean; begin Get (Code, """", Got_It); if not Got_It then Raise_Exception ( Use_Error'Identity, ( "String literal continuation is expected at " & Image (Link (Code)) ) ); end if; end; when Slash => begin Next_Line (Code); exception when End_Error => Raise_Exception ( Syntax_Error'Identity, ( "Unclosed string literal at " & Image (Link (Code)) ) ); end; end case; end loop; end Skip; procedure Match ( Code : in out Source_Type; Text : String; In_String : Boolean ) is Got_It : Boolean; begin Skip (Code, In_String); Get (Code, Text, Got_It); if not Got_It then Raise_Exception ( Syntax_Error'Identity, ( "'" & Text & "' is expected at " & Image (Link (Code)) ) ); end if; end Match; procedure Match_End (Code : in out Source_Type) is begin Skip (Code, True); Raise_Exception ( Syntax_Error'Identity, """ is expected at " & Image (Link (Code)) ); exception when Use_Error => return; end Match_End; procedure Get_Decimal ( Code : in out Source_Type; Number : out Integer; Name : String; Got_It : out Boolean; First : Integer := 1; Last : Integer := Integer'Last ) is begin Skip (Code, True); declare Line : Line_Ptr_Type; Pointer : Integer; Last_Pointer : Integer; begin Get_Line (Code, Line, Pointer, Last_Pointer); Set_Pointer (Code, Pointer); Get ( Line (Line'First..Last_Pointer), Pointer, Number, First => First, Last => Last ); Set_Pointer (Code, Pointer); Got_It := True; exception when End_Error => Got_It := False; when Data_Error => Set_Pointer (Code, Pointer); Raise_Exception ( Syntax_Error'Identity, ( Name & " is expected at " & Image (Link (Code)) ) ); when Constraint_Error => Set_Pointer (Code, Pointer); Raise_Exception ( Syntax_Error'Identity, ( Name & " as a positive number " & Image (First) & ".." & Image (Last) & " is expected " & Image (Link (Code)) ) ); end; end Get_Decimal; procedure Match_Decimal ( Code : in out Source_Type; Number : out Integer; Name : String; First : Integer := 1; Last : Integer := Integer'Last ) is Got_It : Boolean; begin Get_Decimal (Code, Number, Name, Got_It, First, Last); if not Got_It then Raise_Exception ( Syntax_Error'Identity, Name & " is expected at " & Image (Link (Code)) ); end if; exception when Error : Use_Error => Raise_Exception ( Syntax_Error'Identity, ( Exception_Message (Error) & " to contain " & Name ) ); end Match_Decimal; function Get_Header (Code : access Source_Type; Name : String) return Descriptor is This : Source_Type renames Code.all; Width : Positive; Height : Positive; Pixel_Size : Positive; Map_Size : Positive; X_Hotspot : Natural; Y_Hotspot : Natural; Extended : Boolean; Hotspot : Boolean; begin Skip (This, False); Match (This, "[", False); Match (This, "]", False); Match (This, "=", False); Match (This, "{", False); Match (This, """", False); Match_Decimal (This, Width, "Width"); Match_Decimal (This, Height, "Height"); Match_Decimal (This, Map_Size, "Colors number"); Match_Decimal (This, Pixel_Size, "Characters per pixel"); begin Get_Decimal ( This, X_Hotspot, "x-hot spot", Hotspot, First => 0, Last => Width - 1 ); if Hotspot then Match_Decimal ( This, Y_Hotspot, "y-hot spot", First => 0, Last => Height - 1 ); Get (This, "XPMEXT", Extended); Match_End (This); return ( Has_Hotspot => True, Length => Name'Length, Name => Name, Width => Width, Height => Height, Pixel_Size => Pixel_Size, Map_Size => Map_Size, Extended => Extended, X_Hotspot => X_Hotspot, Y_Hotspot => Y_Hotspot ); else Get (This, "XPMEXT", Extended); Match_End (This); return ( Has_Hotspot => False, Length => Name'Length, Name => Name, Width => Width, Height => Height, Pixel_Size => Pixel_Size, Map_Size => Map_Size, Extended => Extended ); end if; exception when Use_Error => return ( Has_Hotspot => False, Length => Name'Length, Name => Name, Width => Width, Height => Height, Pixel_Size => Pixel_Size, Map_Size => Map_Size, Extended => False ); end; end Get_Header; function Get (Code : access Source_Type) return Descriptor is This : Source_Type renames Code.all; Line : Line_Ptr_Type; Pointer : Integer; Last : Integer; Start : Integer; begin Match (This, "static", False); Match (This, "char", False); Match (This, "*", False); Skip (This, False); Get_Line (This, Line, Pointer, Last); Start := Pointer; while Pointer < Last loop case Line (Pointer) is when 'A'..'Z' | 'a'..'z' | '0'..'9' | '_' => Pointer := Pointer + 1; when '/' | '\' | ':' => Pointer := Pointer + 1; Start := Pointer; when others => exit; end case; end loop; if Pointer = Start then Set_Pointer (This, Pointer); Raise_Exception ( Syntax_Error'Identity, "Identifier is expected at " & Image (Link (This)) ); end if; declare Name : String := Line (Start..Pointer - 1); begin Set_Pointer (This, Pointer); return Get_Header (Code, Name); end; end Get; procedure Get_Color ( Code : in out Source_Type; Map : in out Table; Name : String; Name_At : Location_Type ) is Mode : Color_Type; Symbolic : Color_Name; RGB : RGB_Color; Got_It : Boolean; begin Skip (Code, True); Color_Types.Get (Code, Mode, Got_it); if not Got_It then Raise_Exception ( Syntax_Error'Identity, "Color type is expected at " & Image (Link (Code)) ); end if; Skip (Code, True); Color_Names.Get (Code, Symbolic, Got_It); if Got_It then case Symbolic is when None => RGB := RGB_Color'Last; when Black => RGB := 16#000000#; when Blue => RGB := 16#0000FF#; when Green => RGB := 16#00FF00#; when Red => RGB := 16#FF0000#; when White => RGB := 16#FFFFFF#; end case; else declare Line : Line_Ptr_Type; Pointer : Integer; Last : Integer; begin Get_Line (Code, Line, Pointer, Last); if Pointer > Last then Raise_Exception ( Syntax_Error'Identity, "Color value is expected at " & Image (Link (Code)) ); end if; if Line (Pointer) = '#' then Pointer := Pointer + 1; declare Value : Natural; begin Get ( Line (Line'First..Last), Pointer, Value, Base => 16, First => 0, Last => 16#FFFFFF# ); RGB := RGB_Color (Value); exception when End_Error | Data_Error | Constraint_Error => Set_Pointer (Code, Pointer); Raise_Exception ( Syntax_Error'Identity, ( "RGB value 0..FFFFFF is expected at " & Image (Link (Code)) ) ); end; Set_Pointer (Code, Pointer); elsif Line (Pointer) = '%' then Pointer := Pointer + 1; Set_Pointer (Code, Pointer); Raise_Exception ( Syntax_Error'Identity, ( "HSV colors aren't supported, as met at " & Image (Link (Code)) ) ); else Set_Pointer (Code, Pointer); Raise_Exception ( Syntax_Error'Identity, ( "Color value is expected at " & Image (Link (Code)) ) ); end if; end; end if; Match_End (Code); begin Add (Map, Name, RGB); exception when Name_Error => Raise_Exception ( Syntax_Error'Identity, ( "Duplicate color name '" & Name & "' at " & Image (Name_At) ) ); end; end Get_Color; function Get ( Code : access Source_Type; Header : Descriptor ) return Table is This : Source_Type renames Code.all; Name_At : Location_Type; Map : Table; Line : Line_Ptr_Type; Pointer : Integer; Last : Integer; Color_Beg : Integer; Color_End : Integer; begin for Color_Entry in 1..Header.Map_Size loop Match (This, ",", False); Match (This, """", False); Name_At := Link (This); Get_Line (This, Line, Pointer, Last); Color_Beg := Pointer; Color_End := Color_Beg + Header.Pixel_Size - 1; if Color_End - 1 > Last then Set_Pointer (This, Last + 1); Raise_Exception ( Syntax_Error'Identity, ( "Color definition is expected at " & Image (Link (This)) ) ); end if; declare Name : String := Line (Color_Beg..Color_End); begin Set_Pointer (This, Color_End + 1); Get_Color (This, Map, Name, Name_At); end; end loop; return Map; end Get; function Get ( Code : access Source_Type; Header : Descriptor; Map : Table ) return Pixel_Buffer is This : Source_Type renames Code.all; Result : Pixel_Buffer (1..Header.Height, 1..Header.Width); Line : Line_Ptr_Type; Pointer : Integer; Last : Integer; begin for Row in Result'Range (1) loop Match (This, ",", False); Match (This, """", False); Get_Line (This, Line, Pointer, Last); for Column in Result'Range (2) loop begin Get ( Line (Line'First..Last), Pointer, Map, Result (Row, Column) ); Set_Pointer (This, Pointer); exception when End_Error => Set_Pointer ( This, ( Pointer + Integer'Min (Header.Pixel_Size, Last) ) ); Raise_Exception ( Syntax_Error'Identity, ( "Undefined color name at " & Image (Link (This)) ) ); end; end loop; Match_End (This); end loop; if Header.Extended then declare Got_It : Boolean := False; begin while not Got_It loop Skip (This, False); Get (This, """", Got_It); exit when not Got_It; Got_It := False; while not Got_It loop Get_Line (This, Line, Pointer, Last); while Pointer < Last loop if Line (Pointer) = '\' then Pointer := Pointer + 1; exit when Pointer > Last; Pointer := Pointer + 1; elsif Line (Pointer) = '"' then Got_It := True; exit; end if; end loop; end loop; Skip (This, False); Get (This, ",", Got_It); end loop; end; end if; Match (This, "}", False); Match (This, ";", False); return Result; end Get; end Parsers.Generic_Source.XPM;
------------------------------------------------------------------------------ -- -- -- 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. ------------------------------------------------------------------------------ with AMF.Generic_Collections; package AMF.UML.Execution_Occurrence_Specifications.Collections is pragma Preelaborate; package UML_Execution_Occurrence_Specification_Collections is new AMF.Generic_Collections (UML_Execution_Occurrence_Specification, UML_Execution_Occurrence_Specification_Access); type Set_Of_UML_Execution_Occurrence_Specification is new UML_Execution_Occurrence_Specification_Collections.Set with null record; Empty_Set_Of_UML_Execution_Occurrence_Specification : constant Set_Of_UML_Execution_Occurrence_Specification; type Ordered_Set_Of_UML_Execution_Occurrence_Specification is new UML_Execution_Occurrence_Specification_Collections.Ordered_Set with null record; Empty_Ordered_Set_Of_UML_Execution_Occurrence_Specification : constant Ordered_Set_Of_UML_Execution_Occurrence_Specification; type Bag_Of_UML_Execution_Occurrence_Specification is new UML_Execution_Occurrence_Specification_Collections.Bag with null record; Empty_Bag_Of_UML_Execution_Occurrence_Specification : constant Bag_Of_UML_Execution_Occurrence_Specification; type Sequence_Of_UML_Execution_Occurrence_Specification is new UML_Execution_Occurrence_Specification_Collections.Sequence with null record; Empty_Sequence_Of_UML_Execution_Occurrence_Specification : constant Sequence_Of_UML_Execution_Occurrence_Specification; private Empty_Set_Of_UML_Execution_Occurrence_Specification : constant Set_Of_UML_Execution_Occurrence_Specification := (UML_Execution_Occurrence_Specification_Collections.Set with null record); Empty_Ordered_Set_Of_UML_Execution_Occurrence_Specification : constant Ordered_Set_Of_UML_Execution_Occurrence_Specification := (UML_Execution_Occurrence_Specification_Collections.Ordered_Set with null record); Empty_Bag_Of_UML_Execution_Occurrence_Specification : constant Bag_Of_UML_Execution_Occurrence_Specification := (UML_Execution_Occurrence_Specification_Collections.Bag with null record); Empty_Sequence_Of_UML_Execution_Occurrence_Specification : constant Sequence_Of_UML_Execution_Occurrence_Specification := (UML_Execution_Occurrence_Specification_Collections.Sequence with null record); end AMF.UML.Execution_Occurrence_Specifications.Collections;
-- 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 access Holder := 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;
------------------------------------------------------------------------------ -- G E L A X 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) $ -- Purpose: -- Multyprecission integer arithmetic with Ada.Strings.Unbounded; package XASIS.Integers is type Value is private; function Literal (Text : String) return Value; function "and" (Left, Right : Value) return Value; function "or" (Left, Right : Value) return Value; function "xor" (Left, Right : Value) return Value; function "=" (Left, Right : Value) return Boolean; function ">" (Left, Right : Value) return Boolean; function "<" (Left, Right : Value) return Boolean; function ">=" (Left, Right : Value) return Boolean; function "<=" (Left, Right : Value) return Boolean; function "-" (Left : Value) return Value; function "+" (Left, Right : Value) return Value; function "-" (Left, Right : Value) return Value; function "*" (Left, Right : Value) return Value; function "/" (Left, Right : Value) return Value; function "mod" (Left, Right : Value) return Value; function "rem" (Left, Right : Value) return Value; function "**" (Left, Right : Value) return Value; function "abs" (Left : Value) return Value; function "not" (Left : Value) return Value; function Image (Left : Value) return String; Zero : constant Value; One : constant Value; Two : constant Value; Ten : constant Value; private package U renames Ada.Strings.Unbounded; type Value is new U.Unbounded_String; Zero : constant Value := To_Unbounded_String ("+"); One : constant Value := To_Unbounded_String ('+' & Character'Val (1)); Two : constant Value := To_Unbounded_String ('+' & Character'Val (2)); Ten : constant Value := To_Unbounded_String ('+' & Character'Val (10)); end XASIS.Integers; ------------------------------------------------------------------------------ -- Copyright (c) 2006-2013, 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. ------------------------------------------------------------------------------
with Ada.Numerics.Generic_Complex_Types; with Ada.Finalization; generic type Scalar_Type is digits <>; with package Complex_Types is new Ada.Numerics.Generic_Complex_Types (Scalar_Type); package DSP.Generic_Functions is subtype Complex_Type is Complex_Types.Complex; type Scalar_Array is array (Integer range <>) of Scalar_Type; type Complex_Array is array (Integer range <>) of Complex_Types.Complex; function Delta_Signal (K : Integer) return Scalar_Type is ((if K = 0 then 1.0 else 0.0)); function Delta_Signal (K : Integer) return Complex_Type is (Complex_Type'(Delta_Signal (K), 0.0)); type Complex_Filter_Type is limited interface; function Filter (Item : in out Complex_Filter_Type; Input : Complex_Type) return Complex_Type is abstract; type Complex_FIR is new Ada.Finalization.Limited_Controlled and Complex_Filter_Type with private; function Filter (Item : in out Complex_FIR; Input : Complex_Type) return Complex_Type; function Is_Empty (F : Complex_Fir) return Boolean; procedure Set (Filter : in out Complex_FIR; Impulse_Response : Complex_Array) with Pre => Filter.Is_Empty, Post => not Filter.Is_Empty; procedure Set (Filter : in out Complex_FIR; Impulse_Response : Scalar_Array) with Pre => Filter.Is_Empty, Post => not Filter.Is_Empty; type Complex_IIR is new Ada.Finalization.Limited_Controlled and Complex_Filter_Type with private; function Filter (Item : in out Complex_IIR; Input : Complex_Type) return Complex_Type; function Is_Empty (F : Complex_IIR) return Boolean; type Complex_IIR_Spec (Num_Deg, Den_Deg : Natural) is record Numerator : Complex_Array (0 .. Num_Deg); Denominator : Complex_Array (1 .. Den_Deg); end record; procedure Set (Filter : in out Complex_IIR; Specs : Complex_IIR_Spec) with Pre => Filter.Is_Empty, Post => not Filter.Is_Empty; procedure Set (Filter : in out Complex_IIR; Numerator : Complex_Array; Denominator : Complex_Array) with Pre => Filter.Is_Empty and Numerator'First >= 0 and Denominator'First >= 0, Post => not Filter.Is_Empty; procedure Set (Filter : in out Complex_IIR; Numerator : Scalar_Array; Denominator : Scalar_Array) with Pre => Filter.Is_Empty and Numerator'First >= 0 and Denominator'First >= 0, Post => not Filter.Is_Empty; type Notch_Type is (Passband, Stopband); function Notch_Specs (Freq : Normalized_Frequency; Pole_Radius : Float; Class : Notch_Type := Stopband) return Complex_IIR_Spec; private type Scalar_Array_Access is access Scalar_Array; type complex_Array_Access is access complex_Array; type Complex_FIR is new Ada.Finalization.Limited_Controlled and Complex_Filter_Type with record Spec : Complex_Array_Access := null; Buffer : Complex_Array_Access := null; end record with Type_Invariant => ((Spec = null) = (Buffer = null)) and then (Spec = null or else (Spec.all'First = 0 and Buffer.all'First = 1 and Buffer.all'Last = Spec.all'Last)); overriding procedure Finalize (Object : in out Complex_FIR); function Is_Empty (F : Complex_Fir) return Boolean is (F.Spec = null); type Complex_IIR is new Ada.Finalization.Limited_Controlled and Complex_Filter_Type with record Num : Complex_Array_Access := null; Den : Complex_Array_Access := null; Buffer : Complex_Array_Access := null; end record with Type_Invariant => ((Num = null) = (Den = null) and (Num = null) = (Buffer = null)) and then (Num = null or else (Num.all'First = 0 and Den.all'First = 1 and Buffer.all'First = 1 and Buffer.all'Last = Num.all'Last and Buffer.all'Last = Den.all'Last)); overriding procedure Finalize (Object : in out Complex_IIR); function Is_Empty (F : Complex_IIR) return Boolean is (F.Num = null); end DSP.Generic_Functions; -- type Mobile_Average (<>) is new Filter_Type private; -- -- procedure Set (N : Positive := 12) return Mobile_Average; -- -- function Filter (Filter : in out Mobile_Average; -- Input : Scalar_Type) -- return Scalar_Type;
package body speedModule with SPARK_Mode is function speedtest(S : in Speed) return Boolean is begin if (0.0 <= S and then S <= 5.0) then return True; else return False; end if; end speedtest; end;
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Ada Modeling Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2012-2013, 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. ------------------------------------------------------------------------------ with AMF.Internals.Element_Collections; with AMF.Internals.OCL_Any_Types; with AMF.Internals.OCL_Association_Class_Call_Exps; with AMF.Internals.OCL_Bag_Types; with AMF.Internals.OCL_Boolean_Literal_Exps; with AMF.Internals.OCL_Collection_Items; with AMF.Internals.OCL_Collection_Literal_Exps; with AMF.Internals.OCL_Collection_Ranges; with AMF.Internals.OCL_Collection_Types; with AMF.Internals.OCL_Enum_Literal_Exps; with AMF.Internals.OCL_Expression_In_Ocls; with AMF.Internals.OCL_If_Exps; with AMF.Internals.OCL_Integer_Literal_Exps; with AMF.Internals.OCL_Invalid_Literal_Exps; with AMF.Internals.OCL_Invalid_Types; with AMF.Internals.OCL_Iterate_Exps; with AMF.Internals.OCL_Iterator_Exps; with AMF.Internals.OCL_Let_Exps; with AMF.Internals.OCL_Message_Exps; with AMF.Internals.OCL_Message_Types; with AMF.Internals.OCL_Null_Literal_Exps; with AMF.Internals.OCL_Operation_Call_Exps; with AMF.Internals.OCL_Ordered_Set_Types; with AMF.Internals.OCL_Property_Call_Exps; with AMF.Internals.OCL_Real_Literal_Exps; with AMF.Internals.OCL_Sequence_Types; with AMF.Internals.OCL_Set_Types; with AMF.Internals.OCL_State_Exps; with AMF.Internals.OCL_String_Literal_Exps; with AMF.Internals.OCL_Template_Parameter_Types; with AMF.Internals.OCL_Tuple_Literal_Exps; with AMF.Internals.OCL_Tuple_Literal_Parts; with AMF.Internals.OCL_Tuple_Types; with AMF.Internals.OCL_Type_Exps; with AMF.Internals.OCL_Unlimited_Natural_Literal_Exps; with AMF.Internals.OCL_Unspecified_Value_Exps; with AMF.Internals.OCL_Variable_Exps; with AMF.Internals.OCL_Variables; with AMF.Internals.OCL_Void_Types; with AMF.Internals.Tables.OCL_Element_Table; with AMF.Internals.Tables.OCL_Metamodel; with AMF.Internals.Tables.OCL_Types; with AMF.Internals.Tables.UML_Metamodel; with AMF.OCL; with AMF.UML; with Matreshka.Internals.Strings; package body AMF.Internals.Tables.OCL_Constructors is use AMF.Internals.Tables; use type AMF.Internals.AMF_Collection_Of_Element; ------------------------- -- Create_OCL_Any_Type -- ------------------------- function Create_OCL_Any_Type return AMF.Internals.AMF_Element is Self : AMF.Internals.AMF_Element; begin OCL_Element_Table.Increment_Last; Self := OCL_Element_Table.Last; OCL_Element_Table.Table (Self).all := (Kind => AMF.Internals.Tables.OCL_Types.E_OCL_Any_Type, Extent => 0, Proxy => new AMF.Internals.OCL_Any_Types.OCL_Any_Type_Proxy'(Element => Self), Member => (0 => (Kind => AMF.Internals.Tables.OCL_Types.M_None), 12 => (AMF.Internals.Tables.OCL_Types.M_Boolean, False), -- isAbstract 13 => (AMF.Internals.Tables.OCL_Types.M_Boolean, False), -- isFinalSpecialization 11 => (AMF.Internals.Tables.OCL_Types.M_Boolean, False), -- isLeaf 2 => (AMF.Internals.Tables.OCL_Types.M_String, null), -- name 3 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- nameExpression 4 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- namespace 14 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- ownedTemplateSignature 10 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- ownedTemplateSignature 1 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- owner 8 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- owningTemplateParameter 7 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- package 5 => (AMF.Internals.Tables.OCL_Types.M_String, null), -- qualifiedName 15 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- representation 16 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- templateParameter 9 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- templateParameter 6 => (AMF.Internals.Tables.OCL_Types.M_Visibility_Kind_Holder, (False, AMF.UML.Public_Visibility)), -- visibility others => (Kind => AMF.Internals.Tables.OCL_Types.M_None))); OCL_Element_Table.Table (Self).Member (0) := (AMF.Internals.Tables.OCL_Types.M_Collection_Of_Element, AMF.Internals.Element_Collections.Allocate_Collections (32)); -- attribute AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Attribute_A_Classifier, OCL_Element_Table.Table (Self).Member (0).Collection + 13); -- clientDependency AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Named_Element_Client_Dependency_Dependency_Client, OCL_Element_Table.Table (Self).Member (0).Collection + 3); -- collaborationUse AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Collaboration_Use_A_Classifier, OCL_Element_Table.Table (Self).Member (0).Collection + 14); -- elementImport AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Namespace_Element_Import_Element_Import_Importing_Namespace, OCL_Element_Table.Table (Self).Member (0).Collection + 4); -- feature AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Feature_Feature_Featuring_Classifier, OCL_Element_Table.Table (Self).Member (0).Collection + 15); -- general AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_General_A_Classifier, OCL_Element_Table.Table (Self).Member (0).Collection + 16); -- generalization AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Generalization_Generalization_Specific, OCL_Element_Table.Table (Self).Member (0).Collection + 17); -- importedMember AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Namespace_Imported_Member_A_Namespace, OCL_Element_Table.Table (Self).Member (0).Collection + 5); -- inheritedMember AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Inherited_Member_A_Classifier, OCL_Element_Table.Table (Self).Member (0).Collection + 18); -- member AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Namespace_Member_A_Member_Namespace, OCL_Element_Table.Table (Self).Member (0).Collection + 6); -- ownedComment AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Element_Owned_Comment_A_Owning_Element, OCL_Element_Table.Table (Self).Member (0).Collection + 1); -- ownedElement AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Element_Owned_Element_Element_Owner, OCL_Element_Table.Table (Self).Member (0).Collection + 2); -- ownedMember AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Namespace_Owned_Member_Named_Element_Namespace, OCL_Element_Table.Table (Self).Member (0).Collection + 7); -- ownedRule AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Namespace_Owned_Rule_Constraint_Context, OCL_Element_Table.Table (Self).Member (0).Collection + 8); -- ownedUseCase AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Owned_Use_Case_A_Classifier, OCL_Element_Table.Table (Self).Member (0).Collection + 19); -- packageImport AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Namespace_Package_Import_Package_Import_Importing_Namespace, OCL_Element_Table.Table (Self).Member (0).Collection + 9); -- powertypeExtent AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Powertype_Extent_Generalization_Set_Powertype, OCL_Element_Table.Table (Self).Member (0).Collection + 20); -- redefinedClassifier AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Redefined_Classifier_A_Classifier, OCL_Element_Table.Table (Self).Member (0).Collection + 21); -- redefinedElement AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Redefinable_Element_Redefined_Element_A_Redefinable_Element, OCL_Element_Table.Table (Self).Member (0).Collection + 11); -- redefinitionContext AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Redefinable_Element_Redefinition_Context_A_Redefinable_Element, OCL_Element_Table.Table (Self).Member (0).Collection + 12); -- substitution AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Substitution_Substitution_Substituting_Classifier, OCL_Element_Table.Table (Self).Member (0).Collection + 22); -- templateBinding AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Templateable_Element_Template_Binding_Template_Binding_Bound_Element, OCL_Element_Table.Table (Self).Member (0).Collection + 10); -- useCase AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Use_Case_Use_Case_Subject, OCL_Element_Table.Table (Self).Member (0).Collection + 23); return Self; end Create_OCL_Any_Type; ------------------------------------------- -- Create_OCL_Association_Class_Call_Exp -- ------------------------------------------- function Create_OCL_Association_Class_Call_Exp return AMF.Internals.AMF_Element is Self : AMF.Internals.AMF_Element; begin OCL_Element_Table.Increment_Last; Self := OCL_Element_Table.Last; OCL_Element_Table.Table (Self).all := (Kind => AMF.Internals.Tables.OCL_Types.E_OCL_Association_Class_Call_Exp, Extent => 0, Proxy => new AMF.Internals.OCL_Association_Class_Call_Exps.OCL_Association_Class_Call_Exp_Proxy'(Element => Self), Member => (0 => (Kind => AMF.Internals.Tables.OCL_Types.M_None), 2 => (AMF.Internals.Tables.OCL_Types.M_String, null), -- name 3 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- nameExpression 4 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- namespace 9 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- navigationSource 1 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- owner 5 => (AMF.Internals.Tables.OCL_Types.M_String, null), -- qualifiedName 10 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- referredAssociationClass 8 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- source 7 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- type 6 => (AMF.Internals.Tables.OCL_Types.M_Visibility_Kind_Holder, (Is_Empty => True)), -- visibility others => (Kind => AMF.Internals.Tables.OCL_Types.M_None))); OCL_Element_Table.Table (Self).Member (0) := (AMF.Internals.Tables.OCL_Types.M_Collection_Of_Element, AMF.Internals.Element_Collections.Allocate_Collections (32)); -- clientDependency AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Named_Element_Client_Dependency_Dependency_Client, OCL_Element_Table.Table (Self).Member (0).Collection + 3); -- ownedComment AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Element_Owned_Comment_A_Owning_Element, OCL_Element_Table.Table (Self).Member (0).Collection + 1); -- ownedElement AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Element_Owned_Element_Element_Owner, OCL_Element_Table.Table (Self).Member (0).Collection + 2); -- qualifier AMF.Internals.Element_Collections.Initialize_Ordered_Set_Collection (Self, AMF.Internals.Tables.OCL_Metamodel.MP_OCL_Navigation_Call_Exp_Qualifier_A_Parent_Nav, OCL_Element_Table.Table (Self).Member (0).Collection + 4); return Self; end Create_OCL_Association_Class_Call_Exp; ------------------------- -- Create_OCL_Bag_Type -- ------------------------- function Create_OCL_Bag_Type return AMF.Internals.AMF_Element is Self : AMF.Internals.AMF_Element; begin OCL_Element_Table.Increment_Last; Self := OCL_Element_Table.Last; OCL_Element_Table.Table (Self).all := (Kind => AMF.Internals.Tables.OCL_Types.E_OCL_Bag_Type, Extent => 0, Proxy => new AMF.Internals.OCL_Bag_Types.OCL_Bag_Type_Proxy'(Element => Self), Member => (0 => (Kind => AMF.Internals.Tables.OCL_Types.M_None), 17 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- elementType 12 => (AMF.Internals.Tables.OCL_Types.M_Boolean, False), -- isAbstract 13 => (AMF.Internals.Tables.OCL_Types.M_Boolean, False), -- isFinalSpecialization 11 => (AMF.Internals.Tables.OCL_Types.M_Boolean, False), -- isLeaf 2 => (AMF.Internals.Tables.OCL_Types.M_String, null), -- name 3 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- nameExpression 4 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- namespace 14 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- ownedTemplateSignature 10 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- ownedTemplateSignature 1 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- owner 8 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- owningTemplateParameter 7 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- package 5 => (AMF.Internals.Tables.OCL_Types.M_String, null), -- qualifiedName 15 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- representation 16 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- templateParameter 9 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- templateParameter 6 => (AMF.Internals.Tables.OCL_Types.M_Visibility_Kind_Holder, (False, AMF.UML.Public_Visibility)), -- visibility others => (Kind => AMF.Internals.Tables.OCL_Types.M_None))); OCL_Element_Table.Table (Self).Member (0) := (AMF.Internals.Tables.OCL_Types.M_Collection_Of_Element, AMF.Internals.Element_Collections.Allocate_Collections (32)); -- attribute AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Attribute_A_Classifier, OCL_Element_Table.Table (Self).Member (0).Collection + 13); -- clientDependency AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Named_Element_Client_Dependency_Dependency_Client, OCL_Element_Table.Table (Self).Member (0).Collection + 3); -- collaborationUse AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Collaboration_Use_A_Classifier, OCL_Element_Table.Table (Self).Member (0).Collection + 14); -- elementImport AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Namespace_Element_Import_Element_Import_Importing_Namespace, OCL_Element_Table.Table (Self).Member (0).Collection + 4); -- feature AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Feature_Feature_Featuring_Classifier, OCL_Element_Table.Table (Self).Member (0).Collection + 15); -- general AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_General_A_Classifier, OCL_Element_Table.Table (Self).Member (0).Collection + 16); -- generalization AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Generalization_Generalization_Specific, OCL_Element_Table.Table (Self).Member (0).Collection + 17); -- importedMember AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Namespace_Imported_Member_A_Namespace, OCL_Element_Table.Table (Self).Member (0).Collection + 5); -- inheritedMember AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Inherited_Member_A_Classifier, OCL_Element_Table.Table (Self).Member (0).Collection + 18); -- member AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Namespace_Member_A_Member_Namespace, OCL_Element_Table.Table (Self).Member (0).Collection + 6); -- ownedAttribute AMF.Internals.Element_Collections.Initialize_Ordered_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Data_Type_Owned_Attribute_Property_Datatype, OCL_Element_Table.Table (Self).Member (0).Collection + 24); -- ownedComment AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Element_Owned_Comment_A_Owning_Element, OCL_Element_Table.Table (Self).Member (0).Collection + 1); -- ownedElement AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Element_Owned_Element_Element_Owner, OCL_Element_Table.Table (Self).Member (0).Collection + 2); -- ownedMember AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Namespace_Owned_Member_Named_Element_Namespace, OCL_Element_Table.Table (Self).Member (0).Collection + 7); -- ownedOperation AMF.Internals.Element_Collections.Initialize_Ordered_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Data_Type_Owned_Operation_Operation_Datatype, OCL_Element_Table.Table (Self).Member (0).Collection + 25); -- ownedRule AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Namespace_Owned_Rule_Constraint_Context, OCL_Element_Table.Table (Self).Member (0).Collection + 8); -- ownedUseCase AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Owned_Use_Case_A_Classifier, OCL_Element_Table.Table (Self).Member (0).Collection + 19); -- packageImport AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Namespace_Package_Import_Package_Import_Importing_Namespace, OCL_Element_Table.Table (Self).Member (0).Collection + 9); -- powertypeExtent AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Powertype_Extent_Generalization_Set_Powertype, OCL_Element_Table.Table (Self).Member (0).Collection + 20); -- redefinedClassifier AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Redefined_Classifier_A_Classifier, OCL_Element_Table.Table (Self).Member (0).Collection + 21); -- redefinedElement AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Redefinable_Element_Redefined_Element_A_Redefinable_Element, OCL_Element_Table.Table (Self).Member (0).Collection + 11); -- redefinitionContext AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Redefinable_Element_Redefinition_Context_A_Redefinable_Element, OCL_Element_Table.Table (Self).Member (0).Collection + 12); -- substitution AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Substitution_Substitution_Substituting_Classifier, OCL_Element_Table.Table (Self).Member (0).Collection + 22); -- templateBinding AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Templateable_Element_Template_Binding_Template_Binding_Bound_Element, OCL_Element_Table.Table (Self).Member (0).Collection + 10); -- useCase AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Use_Case_Use_Case_Subject, OCL_Element_Table.Table (Self).Member (0).Collection + 23); return Self; end Create_OCL_Bag_Type; ------------------------------------ -- Create_OCL_Boolean_Literal_Exp -- ------------------------------------ function Create_OCL_Boolean_Literal_Exp return AMF.Internals.AMF_Element is Self : AMF.Internals.AMF_Element; begin OCL_Element_Table.Increment_Last; Self := OCL_Element_Table.Last; OCL_Element_Table.Table (Self).all := (Kind => AMF.Internals.Tables.OCL_Types.E_OCL_Boolean_Literal_Exp, Extent => 0, Proxy => new AMF.Internals.OCL_Boolean_Literal_Exps.OCL_Boolean_Literal_Exp_Proxy'(Element => Self), Member => (0 => (Kind => AMF.Internals.Tables.OCL_Types.M_None), 8 => (AMF.Internals.Tables.OCL_Types.M_Boolean, False), -- booleanSymbol 2 => (AMF.Internals.Tables.OCL_Types.M_String, null), -- name 3 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- nameExpression 4 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- namespace 1 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- owner 5 => (AMF.Internals.Tables.OCL_Types.M_String, null), -- qualifiedName 7 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- type 6 => (AMF.Internals.Tables.OCL_Types.M_Visibility_Kind_Holder, (Is_Empty => True)), -- visibility others => (Kind => AMF.Internals.Tables.OCL_Types.M_None))); OCL_Element_Table.Table (Self).Member (0) := (AMF.Internals.Tables.OCL_Types.M_Collection_Of_Element, AMF.Internals.Element_Collections.Allocate_Collections (32)); -- clientDependency AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Named_Element_Client_Dependency_Dependency_Client, OCL_Element_Table.Table (Self).Member (0).Collection + 3); -- ownedComment AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Element_Owned_Comment_A_Owning_Element, OCL_Element_Table.Table (Self).Member (0).Collection + 1); -- ownedElement AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Element_Owned_Element_Element_Owner, OCL_Element_Table.Table (Self).Member (0).Collection + 2); return Self; end Create_OCL_Boolean_Literal_Exp; -------------------------------- -- Create_OCL_Collection_Item -- -------------------------------- function Create_OCL_Collection_Item return AMF.Internals.AMF_Element is Self : AMF.Internals.AMF_Element; begin OCL_Element_Table.Increment_Last; Self := OCL_Element_Table.Last; OCL_Element_Table.Table (Self).all := (Kind => AMF.Internals.Tables.OCL_Types.E_OCL_Collection_Item, Extent => 0, Proxy => new AMF.Internals.OCL_Collection_Items.OCL_Collection_Item_Proxy'(Element => Self), Member => (0 => (Kind => AMF.Internals.Tables.OCL_Types.M_None), 8 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- item 2 => (AMF.Internals.Tables.OCL_Types.M_String, null), -- name 3 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- nameExpression 4 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- namespace 1 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- owner 5 => (AMF.Internals.Tables.OCL_Types.M_String, null), -- qualifiedName 7 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- type 6 => (AMF.Internals.Tables.OCL_Types.M_Visibility_Kind_Holder, (Is_Empty => True)), -- visibility others => (Kind => AMF.Internals.Tables.OCL_Types.M_None))); OCL_Element_Table.Table (Self).Member (0) := (AMF.Internals.Tables.OCL_Types.M_Collection_Of_Element, AMF.Internals.Element_Collections.Allocate_Collections (32)); -- clientDependency AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Named_Element_Client_Dependency_Dependency_Client, OCL_Element_Table.Table (Self).Member (0).Collection + 3); -- ownedComment AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Element_Owned_Comment_A_Owning_Element, OCL_Element_Table.Table (Self).Member (0).Collection + 1); -- ownedElement AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Element_Owned_Element_Element_Owner, OCL_Element_Table.Table (Self).Member (0).Collection + 2); return Self; end Create_OCL_Collection_Item; --------------------------------------- -- Create_OCL_Collection_Literal_Exp -- --------------------------------------- function Create_OCL_Collection_Literal_Exp return AMF.Internals.AMF_Element is Self : AMF.Internals.AMF_Element; begin OCL_Element_Table.Increment_Last; Self := OCL_Element_Table.Last; OCL_Element_Table.Table (Self).all := (Kind => AMF.Internals.Tables.OCL_Types.E_OCL_Collection_Literal_Exp, Extent => 0, Proxy => new AMF.Internals.OCL_Collection_Literal_Exps.OCL_Collection_Literal_Exp_Proxy'(Element => Self), Member => (0 => (Kind => AMF.Internals.Tables.OCL_Types.M_None), 8 => (AMF.Internals.Tables.OCL_Types.M_Collection_Kind, AMF.OCL.Collection), -- kind 2 => (AMF.Internals.Tables.OCL_Types.M_String, null), -- name 3 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- nameExpression 4 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- namespace 1 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- owner 5 => (AMF.Internals.Tables.OCL_Types.M_String, null), -- qualifiedName 7 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- type 6 => (AMF.Internals.Tables.OCL_Types.M_Visibility_Kind_Holder, (Is_Empty => True)), -- visibility others => (Kind => AMF.Internals.Tables.OCL_Types.M_None))); OCL_Element_Table.Table (Self).Member (0) := (AMF.Internals.Tables.OCL_Types.M_Collection_Of_Element, AMF.Internals.Element_Collections.Allocate_Collections (32)); -- clientDependency AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Named_Element_Client_Dependency_Dependency_Client, OCL_Element_Table.Table (Self).Member (0).Collection + 3); -- ownedComment AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Element_Owned_Comment_A_Owning_Element, OCL_Element_Table.Table (Self).Member (0).Collection + 1); -- ownedElement AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Element_Owned_Element_Element_Owner, OCL_Element_Table.Table (Self).Member (0).Collection + 2); -- part AMF.Internals.Element_Collections.Initialize_Ordered_Set_Collection (Self, AMF.Internals.Tables.OCL_Metamodel.MP_OCL_Collection_Literal_Exp_Part_A_Exp1, OCL_Element_Table.Table (Self).Member (0).Collection + 4); return Self; end Create_OCL_Collection_Literal_Exp; --------------------------------- -- Create_OCL_Collection_Range -- --------------------------------- function Create_OCL_Collection_Range return AMF.Internals.AMF_Element is Self : AMF.Internals.AMF_Element; begin OCL_Element_Table.Increment_Last; Self := OCL_Element_Table.Last; OCL_Element_Table.Table (Self).all := (Kind => AMF.Internals.Tables.OCL_Types.E_OCL_Collection_Range, Extent => 0, Proxy => new AMF.Internals.OCL_Collection_Ranges.OCL_Collection_Range_Proxy'(Element => Self), Member => (0 => (Kind => AMF.Internals.Tables.OCL_Types.M_None), 8 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- first 9 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- last 2 => (AMF.Internals.Tables.OCL_Types.M_String, null), -- name 3 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- nameExpression 4 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- namespace 1 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- owner 5 => (AMF.Internals.Tables.OCL_Types.M_String, null), -- qualifiedName 7 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- type 6 => (AMF.Internals.Tables.OCL_Types.M_Visibility_Kind_Holder, (Is_Empty => True)), -- visibility others => (Kind => AMF.Internals.Tables.OCL_Types.M_None))); OCL_Element_Table.Table (Self).Member (0) := (AMF.Internals.Tables.OCL_Types.M_Collection_Of_Element, AMF.Internals.Element_Collections.Allocate_Collections (32)); -- clientDependency AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Named_Element_Client_Dependency_Dependency_Client, OCL_Element_Table.Table (Self).Member (0).Collection + 3); -- ownedComment AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Element_Owned_Comment_A_Owning_Element, OCL_Element_Table.Table (Self).Member (0).Collection + 1); -- ownedElement AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Element_Owned_Element_Element_Owner, OCL_Element_Table.Table (Self).Member (0).Collection + 2); return Self; end Create_OCL_Collection_Range; -------------------------------- -- Create_OCL_Collection_Type -- -------------------------------- function Create_OCL_Collection_Type return AMF.Internals.AMF_Element is Self : AMF.Internals.AMF_Element; begin OCL_Element_Table.Increment_Last; Self := OCL_Element_Table.Last; OCL_Element_Table.Table (Self).all := (Kind => AMF.Internals.Tables.OCL_Types.E_OCL_Collection_Type, Extent => 0, Proxy => new AMF.Internals.OCL_Collection_Types.OCL_Collection_Type_Proxy'(Element => Self), Member => (0 => (Kind => AMF.Internals.Tables.OCL_Types.M_None), 17 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- elementType 12 => (AMF.Internals.Tables.OCL_Types.M_Boolean, False), -- isAbstract 13 => (AMF.Internals.Tables.OCL_Types.M_Boolean, False), -- isFinalSpecialization 11 => (AMF.Internals.Tables.OCL_Types.M_Boolean, False), -- isLeaf 2 => (AMF.Internals.Tables.OCL_Types.M_String, null), -- name 3 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- nameExpression 4 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- namespace 14 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- ownedTemplateSignature 10 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- ownedTemplateSignature 1 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- owner 8 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- owningTemplateParameter 7 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- package 5 => (AMF.Internals.Tables.OCL_Types.M_String, null), -- qualifiedName 15 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- representation 16 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- templateParameter 9 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- templateParameter 6 => (AMF.Internals.Tables.OCL_Types.M_Visibility_Kind_Holder, (False, AMF.UML.Public_Visibility)), -- visibility others => (Kind => AMF.Internals.Tables.OCL_Types.M_None))); OCL_Element_Table.Table (Self).Member (0) := (AMF.Internals.Tables.OCL_Types.M_Collection_Of_Element, AMF.Internals.Element_Collections.Allocate_Collections (32)); -- attribute AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Attribute_A_Classifier, OCL_Element_Table.Table (Self).Member (0).Collection + 13); -- clientDependency AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Named_Element_Client_Dependency_Dependency_Client, OCL_Element_Table.Table (Self).Member (0).Collection + 3); -- collaborationUse AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Collaboration_Use_A_Classifier, OCL_Element_Table.Table (Self).Member (0).Collection + 14); -- elementImport AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Namespace_Element_Import_Element_Import_Importing_Namespace, OCL_Element_Table.Table (Self).Member (0).Collection + 4); -- feature AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Feature_Feature_Featuring_Classifier, OCL_Element_Table.Table (Self).Member (0).Collection + 15); -- general AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_General_A_Classifier, OCL_Element_Table.Table (Self).Member (0).Collection + 16); -- generalization AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Generalization_Generalization_Specific, OCL_Element_Table.Table (Self).Member (0).Collection + 17); -- importedMember AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Namespace_Imported_Member_A_Namespace, OCL_Element_Table.Table (Self).Member (0).Collection + 5); -- inheritedMember AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Inherited_Member_A_Classifier, OCL_Element_Table.Table (Self).Member (0).Collection + 18); -- member AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Namespace_Member_A_Member_Namespace, OCL_Element_Table.Table (Self).Member (0).Collection + 6); -- ownedAttribute AMF.Internals.Element_Collections.Initialize_Ordered_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Data_Type_Owned_Attribute_Property_Datatype, OCL_Element_Table.Table (Self).Member (0).Collection + 24); -- ownedComment AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Element_Owned_Comment_A_Owning_Element, OCL_Element_Table.Table (Self).Member (0).Collection + 1); -- ownedElement AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Element_Owned_Element_Element_Owner, OCL_Element_Table.Table (Self).Member (0).Collection + 2); -- ownedMember AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Namespace_Owned_Member_Named_Element_Namespace, OCL_Element_Table.Table (Self).Member (0).Collection + 7); -- ownedOperation AMF.Internals.Element_Collections.Initialize_Ordered_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Data_Type_Owned_Operation_Operation_Datatype, OCL_Element_Table.Table (Self).Member (0).Collection + 25); -- ownedRule AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Namespace_Owned_Rule_Constraint_Context, OCL_Element_Table.Table (Self).Member (0).Collection + 8); -- ownedUseCase AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Owned_Use_Case_A_Classifier, OCL_Element_Table.Table (Self).Member (0).Collection + 19); -- packageImport AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Namespace_Package_Import_Package_Import_Importing_Namespace, OCL_Element_Table.Table (Self).Member (0).Collection + 9); -- powertypeExtent AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Powertype_Extent_Generalization_Set_Powertype, OCL_Element_Table.Table (Self).Member (0).Collection + 20); -- redefinedClassifier AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Redefined_Classifier_A_Classifier, OCL_Element_Table.Table (Self).Member (0).Collection + 21); -- redefinedElement AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Redefinable_Element_Redefined_Element_A_Redefinable_Element, OCL_Element_Table.Table (Self).Member (0).Collection + 11); -- redefinitionContext AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Redefinable_Element_Redefinition_Context_A_Redefinable_Element, OCL_Element_Table.Table (Self).Member (0).Collection + 12); -- substitution AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Substitution_Substitution_Substituting_Classifier, OCL_Element_Table.Table (Self).Member (0).Collection + 22); -- templateBinding AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Templateable_Element_Template_Binding_Template_Binding_Bound_Element, OCL_Element_Table.Table (Self).Member (0).Collection + 10); -- useCase AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Use_Case_Use_Case_Subject, OCL_Element_Table.Table (Self).Member (0).Collection + 23); return Self; end Create_OCL_Collection_Type; --------------------------------- -- Create_OCL_Enum_Literal_Exp -- --------------------------------- function Create_OCL_Enum_Literal_Exp return AMF.Internals.AMF_Element is Self : AMF.Internals.AMF_Element; begin OCL_Element_Table.Increment_Last; Self := OCL_Element_Table.Last; OCL_Element_Table.Table (Self).all := (Kind => AMF.Internals.Tables.OCL_Types.E_OCL_Enum_Literal_Exp, Extent => 0, Proxy => new AMF.Internals.OCL_Enum_Literal_Exps.OCL_Enum_Literal_Exp_Proxy'(Element => Self), Member => (0 => (Kind => AMF.Internals.Tables.OCL_Types.M_None), 2 => (AMF.Internals.Tables.OCL_Types.M_String, null), -- name 3 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- nameExpression 4 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- namespace 1 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- owner 5 => (AMF.Internals.Tables.OCL_Types.M_String, null), -- qualifiedName 8 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- referredEnumLiteral 7 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- type 6 => (AMF.Internals.Tables.OCL_Types.M_Visibility_Kind_Holder, (Is_Empty => True)), -- visibility others => (Kind => AMF.Internals.Tables.OCL_Types.M_None))); OCL_Element_Table.Table (Self).Member (0) := (AMF.Internals.Tables.OCL_Types.M_Collection_Of_Element, AMF.Internals.Element_Collections.Allocate_Collections (32)); -- clientDependency AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Named_Element_Client_Dependency_Dependency_Client, OCL_Element_Table.Table (Self).Member (0).Collection + 3); -- ownedComment AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Element_Owned_Comment_A_Owning_Element, OCL_Element_Table.Table (Self).Member (0).Collection + 1); -- ownedElement AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Element_Owned_Element_Element_Owner, OCL_Element_Table.Table (Self).Member (0).Collection + 2); return Self; end Create_OCL_Enum_Literal_Exp; ---------------------------------- -- Create_OCL_Expression_In_Ocl -- ---------------------------------- function Create_OCL_Expression_In_Ocl return AMF.Internals.AMF_Element is Self : AMF.Internals.AMF_Element; begin OCL_Element_Table.Increment_Last; Self := OCL_Element_Table.Last; OCL_Element_Table.Table (Self).all := (Kind => AMF.Internals.Tables.OCL_Types.E_OCL_Expression_In_Ocl, Extent => 0, Proxy => new AMF.Internals.OCL_Expression_In_Ocls.OCL_Expression_In_Ocl_Proxy'(Element => Self), Member => (0 => (Kind => AMF.Internals.Tables.OCL_Types.M_None), 10 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- behavior 11 => (AMF.Internals.Tables.OCL_Types.M_Collection_Of_String, 0), -- body 14 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- bodyExpression 15 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- contextVariable 17 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- generatedType 12 => (AMF.Internals.Tables.OCL_Types.M_Collection_Of_String, 0), -- language 2 => (AMF.Internals.Tables.OCL_Types.M_String, null), -- name 3 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- nameExpression 4 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- namespace 1 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- owner 8 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- owningTemplateParameter 5 => (AMF.Internals.Tables.OCL_Types.M_String, null), -- qualifiedName 13 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- result 16 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- resultVariable 9 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- templateParameter 7 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- type 6 => (AMF.Internals.Tables.OCL_Types.M_Visibility_Kind_Holder, (False, AMF.UML.Public_Visibility)), -- visibility others => (Kind => AMF.Internals.Tables.OCL_Types.M_None))); OCL_Element_Table.Table (Self).Member (0) := (AMF.Internals.Tables.OCL_Types.M_Collection_Of_Element, AMF.Internals.Element_Collections.Allocate_Collections (32)); -- clientDependency AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Named_Element_Client_Dependency_Dependency_Client, OCL_Element_Table.Table (Self).Member (0).Collection + 3); -- ownedComment AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Element_Owned_Comment_A_Owning_Element, OCL_Element_Table.Table (Self).Member (0).Collection + 1); -- ownedElement AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Element_Owned_Element_Element_Owner, OCL_Element_Table.Table (Self).Member (0).Collection + 2); -- parameterVariable AMF.Internals.Element_Collections.Initialize_Ordered_Set_Collection (Self, AMF.Internals.Tables.OCL_Metamodel.MP_OCL_Expression_In_Ocl_Parameter_Variable_A_Var_Owner, OCL_Element_Table.Table (Self).Member (0).Collection + 4); return Self; end Create_OCL_Expression_In_Ocl; ----------------------- -- Create_OCL_If_Exp -- ----------------------- function Create_OCL_If_Exp return AMF.Internals.AMF_Element is Self : AMF.Internals.AMF_Element; begin OCL_Element_Table.Increment_Last; Self := OCL_Element_Table.Last; OCL_Element_Table.Table (Self).all := (Kind => AMF.Internals.Tables.OCL_Types.E_OCL_If_Exp, Extent => 0, Proxy => new AMF.Internals.OCL_If_Exps.OCL_If_Exp_Proxy'(Element => Self), Member => (0 => (Kind => AMF.Internals.Tables.OCL_Types.M_None), 8 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- condition 10 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- elseExpression 2 => (AMF.Internals.Tables.OCL_Types.M_String, null), -- name 3 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- nameExpression 4 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- namespace 1 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- owner 5 => (AMF.Internals.Tables.OCL_Types.M_String, null), -- qualifiedName 9 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- thenExpression 7 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- type 6 => (AMF.Internals.Tables.OCL_Types.M_Visibility_Kind_Holder, (Is_Empty => True)), -- visibility others => (Kind => AMF.Internals.Tables.OCL_Types.M_None))); OCL_Element_Table.Table (Self).Member (0) := (AMF.Internals.Tables.OCL_Types.M_Collection_Of_Element, AMF.Internals.Element_Collections.Allocate_Collections (32)); -- clientDependency AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Named_Element_Client_Dependency_Dependency_Client, OCL_Element_Table.Table (Self).Member (0).Collection + 3); -- ownedComment AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Element_Owned_Comment_A_Owning_Element, OCL_Element_Table.Table (Self).Member (0).Collection + 1); -- ownedElement AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Element_Owned_Element_Element_Owner, OCL_Element_Table.Table (Self).Member (0).Collection + 2); return Self; end Create_OCL_If_Exp; ------------------------------------ -- Create_OCL_Integer_Literal_Exp -- ------------------------------------ function Create_OCL_Integer_Literal_Exp return AMF.Internals.AMF_Element is Self : AMF.Internals.AMF_Element; begin OCL_Element_Table.Increment_Last; Self := OCL_Element_Table.Last; OCL_Element_Table.Table (Self).all := (Kind => AMF.Internals.Tables.OCL_Types.E_OCL_Integer_Literal_Exp, Extent => 0, Proxy => new AMF.Internals.OCL_Integer_Literal_Exps.OCL_Integer_Literal_Exp_Proxy'(Element => Self), Member => (0 => (Kind => AMF.Internals.Tables.OCL_Types.M_None), 8 => (AMF.Internals.Tables.OCL_Types.M_Integer, 0), -- integerSymbol 2 => (AMF.Internals.Tables.OCL_Types.M_String, null), -- name 3 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- nameExpression 4 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- namespace 1 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- owner 5 => (AMF.Internals.Tables.OCL_Types.M_String, null), -- qualifiedName 7 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- type 6 => (AMF.Internals.Tables.OCL_Types.M_Visibility_Kind_Holder, (Is_Empty => True)), -- visibility others => (Kind => AMF.Internals.Tables.OCL_Types.M_None))); OCL_Element_Table.Table (Self).Member (0) := (AMF.Internals.Tables.OCL_Types.M_Collection_Of_Element, AMF.Internals.Element_Collections.Allocate_Collections (32)); -- clientDependency AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Named_Element_Client_Dependency_Dependency_Client, OCL_Element_Table.Table (Self).Member (0).Collection + 3); -- ownedComment AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Element_Owned_Comment_A_Owning_Element, OCL_Element_Table.Table (Self).Member (0).Collection + 1); -- ownedElement AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Element_Owned_Element_Element_Owner, OCL_Element_Table.Table (Self).Member (0).Collection + 2); return Self; end Create_OCL_Integer_Literal_Exp; ------------------------------------ -- Create_OCL_Invalid_Literal_Exp -- ------------------------------------ function Create_OCL_Invalid_Literal_Exp return AMF.Internals.AMF_Element is Self : AMF.Internals.AMF_Element; begin OCL_Element_Table.Increment_Last; Self := OCL_Element_Table.Last; OCL_Element_Table.Table (Self).all := (Kind => AMF.Internals.Tables.OCL_Types.E_OCL_Invalid_Literal_Exp, Extent => 0, Proxy => new AMF.Internals.OCL_Invalid_Literal_Exps.OCL_Invalid_Literal_Exp_Proxy'(Element => Self), Member => (0 => (Kind => AMF.Internals.Tables.OCL_Types.M_None), 2 => (AMF.Internals.Tables.OCL_Types.M_String, null), -- name 3 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- nameExpression 4 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- namespace 1 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- owner 5 => (AMF.Internals.Tables.OCL_Types.M_String, null), -- qualifiedName 7 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- type 6 => (AMF.Internals.Tables.OCL_Types.M_Visibility_Kind_Holder, (Is_Empty => True)), -- visibility others => (Kind => AMF.Internals.Tables.OCL_Types.M_None))); OCL_Element_Table.Table (Self).Member (0) := (AMF.Internals.Tables.OCL_Types.M_Collection_Of_Element, AMF.Internals.Element_Collections.Allocate_Collections (32)); -- clientDependency AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Named_Element_Client_Dependency_Dependency_Client, OCL_Element_Table.Table (Self).Member (0).Collection + 3); -- ownedComment AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Element_Owned_Comment_A_Owning_Element, OCL_Element_Table.Table (Self).Member (0).Collection + 1); -- ownedElement AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Element_Owned_Element_Element_Owner, OCL_Element_Table.Table (Self).Member (0).Collection + 2); return Self; end Create_OCL_Invalid_Literal_Exp; ----------------------------- -- Create_OCL_Invalid_Type -- ----------------------------- function Create_OCL_Invalid_Type return AMF.Internals.AMF_Element is Self : AMF.Internals.AMF_Element; begin OCL_Element_Table.Increment_Last; Self := OCL_Element_Table.Last; OCL_Element_Table.Table (Self).all := (Kind => AMF.Internals.Tables.OCL_Types.E_OCL_Invalid_Type, Extent => 0, Proxy => new AMF.Internals.OCL_Invalid_Types.OCL_Invalid_Type_Proxy'(Element => Self), Member => (0 => (Kind => AMF.Internals.Tables.OCL_Types.M_None), 12 => (AMF.Internals.Tables.OCL_Types.M_Boolean, False), -- isAbstract 13 => (AMF.Internals.Tables.OCL_Types.M_Boolean, False), -- isFinalSpecialization 11 => (AMF.Internals.Tables.OCL_Types.M_Boolean, False), -- isLeaf 2 => (AMF.Internals.Tables.OCL_Types.M_String, null), -- name 3 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- nameExpression 4 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- namespace 14 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- ownedTemplateSignature 10 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- ownedTemplateSignature 1 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- owner 8 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- owningTemplateParameter 7 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- package 5 => (AMF.Internals.Tables.OCL_Types.M_String, null), -- qualifiedName 15 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- representation 16 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- templateParameter 9 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- templateParameter 6 => (AMF.Internals.Tables.OCL_Types.M_Visibility_Kind_Holder, (False, AMF.UML.Public_Visibility)), -- visibility others => (Kind => AMF.Internals.Tables.OCL_Types.M_None))); OCL_Element_Table.Table (Self).Member (0) := (AMF.Internals.Tables.OCL_Types.M_Collection_Of_Element, AMF.Internals.Element_Collections.Allocate_Collections (32)); -- attribute AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Attribute_A_Classifier, OCL_Element_Table.Table (Self).Member (0).Collection + 13); -- clientDependency AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Named_Element_Client_Dependency_Dependency_Client, OCL_Element_Table.Table (Self).Member (0).Collection + 3); -- collaborationUse AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Collaboration_Use_A_Classifier, OCL_Element_Table.Table (Self).Member (0).Collection + 14); -- elementImport AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Namespace_Element_Import_Element_Import_Importing_Namespace, OCL_Element_Table.Table (Self).Member (0).Collection + 4); -- feature AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Feature_Feature_Featuring_Classifier, OCL_Element_Table.Table (Self).Member (0).Collection + 15); -- general AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_General_A_Classifier, OCL_Element_Table.Table (Self).Member (0).Collection + 16); -- generalization AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Generalization_Generalization_Specific, OCL_Element_Table.Table (Self).Member (0).Collection + 17); -- importedMember AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Namespace_Imported_Member_A_Namespace, OCL_Element_Table.Table (Self).Member (0).Collection + 5); -- inheritedMember AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Inherited_Member_A_Classifier, OCL_Element_Table.Table (Self).Member (0).Collection + 18); -- member AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Namespace_Member_A_Member_Namespace, OCL_Element_Table.Table (Self).Member (0).Collection + 6); -- ownedComment AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Element_Owned_Comment_A_Owning_Element, OCL_Element_Table.Table (Self).Member (0).Collection + 1); -- ownedElement AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Element_Owned_Element_Element_Owner, OCL_Element_Table.Table (Self).Member (0).Collection + 2); -- ownedMember AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Namespace_Owned_Member_Named_Element_Namespace, OCL_Element_Table.Table (Self).Member (0).Collection + 7); -- ownedRule AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Namespace_Owned_Rule_Constraint_Context, OCL_Element_Table.Table (Self).Member (0).Collection + 8); -- ownedUseCase AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Owned_Use_Case_A_Classifier, OCL_Element_Table.Table (Self).Member (0).Collection + 19); -- packageImport AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Namespace_Package_Import_Package_Import_Importing_Namespace, OCL_Element_Table.Table (Self).Member (0).Collection + 9); -- powertypeExtent AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Powertype_Extent_Generalization_Set_Powertype, OCL_Element_Table.Table (Self).Member (0).Collection + 20); -- redefinedClassifier AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Redefined_Classifier_A_Classifier, OCL_Element_Table.Table (Self).Member (0).Collection + 21); -- redefinedElement AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Redefinable_Element_Redefined_Element_A_Redefinable_Element, OCL_Element_Table.Table (Self).Member (0).Collection + 11); -- redefinitionContext AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Redefinable_Element_Redefinition_Context_A_Redefinable_Element, OCL_Element_Table.Table (Self).Member (0).Collection + 12); -- substitution AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Substitution_Substitution_Substituting_Classifier, OCL_Element_Table.Table (Self).Member (0).Collection + 22); -- templateBinding AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Templateable_Element_Template_Binding_Template_Binding_Bound_Element, OCL_Element_Table.Table (Self).Member (0).Collection + 10); -- useCase AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Use_Case_Use_Case_Subject, OCL_Element_Table.Table (Self).Member (0).Collection + 23); return Self; end Create_OCL_Invalid_Type; ---------------------------- -- Create_OCL_Iterate_Exp -- ---------------------------- function Create_OCL_Iterate_Exp return AMF.Internals.AMF_Element is Self : AMF.Internals.AMF_Element; begin OCL_Element_Table.Increment_Last; Self := OCL_Element_Table.Last; OCL_Element_Table.Table (Self).all := (Kind => AMF.Internals.Tables.OCL_Types.E_OCL_Iterate_Exp, Extent => 0, Proxy => new AMF.Internals.OCL_Iterate_Exps.OCL_Iterate_Exp_Proxy'(Element => Self), Member => (0 => (Kind => AMF.Internals.Tables.OCL_Types.M_None), 9 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- body 2 => (AMF.Internals.Tables.OCL_Types.M_String, null), -- name 3 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- nameExpression 4 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- namespace 1 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- owner 5 => (AMF.Internals.Tables.OCL_Types.M_String, null), -- qualifiedName 10 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- result 8 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- source 7 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- type 6 => (AMF.Internals.Tables.OCL_Types.M_Visibility_Kind_Holder, (Is_Empty => True)), -- visibility others => (Kind => AMF.Internals.Tables.OCL_Types.M_None))); OCL_Element_Table.Table (Self).Member (0) := (AMF.Internals.Tables.OCL_Types.M_Collection_Of_Element, AMF.Internals.Element_Collections.Allocate_Collections (32)); -- clientDependency AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Named_Element_Client_Dependency_Dependency_Client, OCL_Element_Table.Table (Self).Member (0).Collection + 3); -- iterator AMF.Internals.Element_Collections.Initialize_Ordered_Set_Collection (Self, AMF.Internals.Tables.OCL_Metamodel.MP_OCL_Loop_Exp_Iterator_A_Loop_Exp, OCL_Element_Table.Table (Self).Member (0).Collection + 4); -- ownedComment AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Element_Owned_Comment_A_Owning_Element, OCL_Element_Table.Table (Self).Member (0).Collection + 1); -- ownedElement AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Element_Owned_Element_Element_Owner, OCL_Element_Table.Table (Self).Member (0).Collection + 2); return Self; end Create_OCL_Iterate_Exp; ----------------------------- -- Create_OCL_Iterator_Exp -- ----------------------------- function Create_OCL_Iterator_Exp return AMF.Internals.AMF_Element is Self : AMF.Internals.AMF_Element; begin OCL_Element_Table.Increment_Last; Self := OCL_Element_Table.Last; OCL_Element_Table.Table (Self).all := (Kind => AMF.Internals.Tables.OCL_Types.E_OCL_Iterator_Exp, Extent => 0, Proxy => new AMF.Internals.OCL_Iterator_Exps.OCL_Iterator_Exp_Proxy'(Element => Self), Member => (0 => (Kind => AMF.Internals.Tables.OCL_Types.M_None), 9 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- body 2 => (AMF.Internals.Tables.OCL_Types.M_String, null), -- name 3 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- nameExpression 4 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- namespace 1 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- owner 5 => (AMF.Internals.Tables.OCL_Types.M_String, null), -- qualifiedName 8 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- source 7 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- type 6 => (AMF.Internals.Tables.OCL_Types.M_Visibility_Kind_Holder, (Is_Empty => True)), -- visibility others => (Kind => AMF.Internals.Tables.OCL_Types.M_None))); OCL_Element_Table.Table (Self).Member (0) := (AMF.Internals.Tables.OCL_Types.M_Collection_Of_Element, AMF.Internals.Element_Collections.Allocate_Collections (32)); -- clientDependency AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Named_Element_Client_Dependency_Dependency_Client, OCL_Element_Table.Table (Self).Member (0).Collection + 3); -- iterator AMF.Internals.Element_Collections.Initialize_Ordered_Set_Collection (Self, AMF.Internals.Tables.OCL_Metamodel.MP_OCL_Loop_Exp_Iterator_A_Loop_Exp, OCL_Element_Table.Table (Self).Member (0).Collection + 4); -- ownedComment AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Element_Owned_Comment_A_Owning_Element, OCL_Element_Table.Table (Self).Member (0).Collection + 1); -- ownedElement AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Element_Owned_Element_Element_Owner, OCL_Element_Table.Table (Self).Member (0).Collection + 2); return Self; end Create_OCL_Iterator_Exp; ------------------------ -- Create_OCL_Let_Exp -- ------------------------ function Create_OCL_Let_Exp return AMF.Internals.AMF_Element is Self : AMF.Internals.AMF_Element; begin OCL_Element_Table.Increment_Last; Self := OCL_Element_Table.Last; OCL_Element_Table.Table (Self).all := (Kind => AMF.Internals.Tables.OCL_Types.E_OCL_Let_Exp, Extent => 0, Proxy => new AMF.Internals.OCL_Let_Exps.OCL_Let_Exp_Proxy'(Element => Self), Member => (0 => (Kind => AMF.Internals.Tables.OCL_Types.M_None), 8 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- in 2 => (AMF.Internals.Tables.OCL_Types.M_String, null), -- name 3 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- nameExpression 4 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- namespace 1 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- owner 5 => (AMF.Internals.Tables.OCL_Types.M_String, null), -- qualifiedName 7 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- type 9 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- variable 6 => (AMF.Internals.Tables.OCL_Types.M_Visibility_Kind_Holder, (Is_Empty => True)), -- visibility others => (Kind => AMF.Internals.Tables.OCL_Types.M_None))); OCL_Element_Table.Table (Self).Member (0) := (AMF.Internals.Tables.OCL_Types.M_Collection_Of_Element, AMF.Internals.Element_Collections.Allocate_Collections (32)); -- clientDependency AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Named_Element_Client_Dependency_Dependency_Client, OCL_Element_Table.Table (Self).Member (0).Collection + 3); -- ownedComment AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Element_Owned_Comment_A_Owning_Element, OCL_Element_Table.Table (Self).Member (0).Collection + 1); -- ownedElement AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Element_Owned_Element_Element_Owner, OCL_Element_Table.Table (Self).Member (0).Collection + 2); return Self; end Create_OCL_Let_Exp; ---------------------------- -- Create_OCL_Message_Exp -- ---------------------------- function Create_OCL_Message_Exp return AMF.Internals.AMF_Element is Self : AMF.Internals.AMF_Element; begin OCL_Element_Table.Increment_Last; Self := OCL_Element_Table.Last; OCL_Element_Table.Table (Self).all := (Kind => AMF.Internals.Tables.OCL_Types.E_OCL_Message_Exp, Extent => 0, Proxy => new AMF.Internals.OCL_Message_Exps.OCL_Message_Exp_Proxy'(Element => Self), Member => (0 => (Kind => AMF.Internals.Tables.OCL_Types.M_None), 9 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- calledOperation 2 => (AMF.Internals.Tables.OCL_Types.M_String, null), -- name 3 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- nameExpression 4 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- namespace 1 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- owner 5 => (AMF.Internals.Tables.OCL_Types.M_String, null), -- qualifiedName 10 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- sentSignal 8 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- target 7 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- type 6 => (AMF.Internals.Tables.OCL_Types.M_Visibility_Kind_Holder, (Is_Empty => True)), -- visibility others => (Kind => AMF.Internals.Tables.OCL_Types.M_None))); OCL_Element_Table.Table (Self).Member (0) := (AMF.Internals.Tables.OCL_Types.M_Collection_Of_Element, AMF.Internals.Element_Collections.Allocate_Collections (32)); -- argument AMF.Internals.Element_Collections.Initialize_Ordered_Set_Collection (Self, AMF.Internals.Tables.OCL_Metamodel.MP_OCL_Message_Exp_Argument_A_Exp2, OCL_Element_Table.Table (Self).Member (0).Collection + 4); -- clientDependency AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Named_Element_Client_Dependency_Dependency_Client, OCL_Element_Table.Table (Self).Member (0).Collection + 3); -- ownedComment AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Element_Owned_Comment_A_Owning_Element, OCL_Element_Table.Table (Self).Member (0).Collection + 1); -- ownedElement AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Element_Owned_Element_Element_Owner, OCL_Element_Table.Table (Self).Member (0).Collection + 2); return Self; end Create_OCL_Message_Exp; ----------------------------- -- Create_OCL_Message_Type -- ----------------------------- function Create_OCL_Message_Type return AMF.Internals.AMF_Element is Self : AMF.Internals.AMF_Element; begin OCL_Element_Table.Increment_Last; Self := OCL_Element_Table.Last; OCL_Element_Table.Table (Self).all := (Kind => AMF.Internals.Tables.OCL_Types.E_OCL_Message_Type, Extent => 0, Proxy => new AMF.Internals.OCL_Message_Types.OCL_Message_Type_Proxy'(Element => Self), Member => (0 => (Kind => AMF.Internals.Tables.OCL_Types.M_None), 12 => (AMF.Internals.Tables.OCL_Types.M_Boolean, False), -- isAbstract 13 => (AMF.Internals.Tables.OCL_Types.M_Boolean, False), -- isFinalSpecialization 11 => (AMF.Internals.Tables.OCL_Types.M_Boolean, False), -- isLeaf 2 => (AMF.Internals.Tables.OCL_Types.M_String, null), -- name 3 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- nameExpression 4 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- namespace 14 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- ownedTemplateSignature 10 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- ownedTemplateSignature 1 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- owner 8 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- owningTemplateParameter 7 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- package 5 => (AMF.Internals.Tables.OCL_Types.M_String, null), -- qualifiedName 18 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- referredOperation 17 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- referredSignal 15 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- representation 16 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- templateParameter 9 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- templateParameter 6 => (AMF.Internals.Tables.OCL_Types.M_Visibility_Kind_Holder, (False, AMF.UML.Public_Visibility)), -- visibility others => (Kind => AMF.Internals.Tables.OCL_Types.M_None))); OCL_Element_Table.Table (Self).Member (0) := (AMF.Internals.Tables.OCL_Types.M_Collection_Of_Element, AMF.Internals.Element_Collections.Allocate_Collections (32)); -- attribute AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Attribute_A_Classifier, OCL_Element_Table.Table (Self).Member (0).Collection + 13); -- clientDependency AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Named_Element_Client_Dependency_Dependency_Client, OCL_Element_Table.Table (Self).Member (0).Collection + 3); -- collaborationUse AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Collaboration_Use_A_Classifier, OCL_Element_Table.Table (Self).Member (0).Collection + 14); -- elementImport AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Namespace_Element_Import_Element_Import_Importing_Namespace, OCL_Element_Table.Table (Self).Member (0).Collection + 4); -- feature AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Feature_Feature_Featuring_Classifier, OCL_Element_Table.Table (Self).Member (0).Collection + 15); -- general AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_General_A_Classifier, OCL_Element_Table.Table (Self).Member (0).Collection + 16); -- generalization AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Generalization_Generalization_Specific, OCL_Element_Table.Table (Self).Member (0).Collection + 17); -- importedMember AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Namespace_Imported_Member_A_Namespace, OCL_Element_Table.Table (Self).Member (0).Collection + 5); -- inheritedMember AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Inherited_Member_A_Classifier, OCL_Element_Table.Table (Self).Member (0).Collection + 18); -- member AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Namespace_Member_A_Member_Namespace, OCL_Element_Table.Table (Self).Member (0).Collection + 6); -- ownedComment AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Element_Owned_Comment_A_Owning_Element, OCL_Element_Table.Table (Self).Member (0).Collection + 1); -- ownedElement AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Element_Owned_Element_Element_Owner, OCL_Element_Table.Table (Self).Member (0).Collection + 2); -- ownedMember AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Namespace_Owned_Member_Named_Element_Namespace, OCL_Element_Table.Table (Self).Member (0).Collection + 7); -- ownedRule AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Namespace_Owned_Rule_Constraint_Context, OCL_Element_Table.Table (Self).Member (0).Collection + 8); -- ownedUseCase AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Owned_Use_Case_A_Classifier, OCL_Element_Table.Table (Self).Member (0).Collection + 19); -- packageImport AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Namespace_Package_Import_Package_Import_Importing_Namespace, OCL_Element_Table.Table (Self).Member (0).Collection + 9); -- powertypeExtent AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Powertype_Extent_Generalization_Set_Powertype, OCL_Element_Table.Table (Self).Member (0).Collection + 20); -- redefinedClassifier AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Redefined_Classifier_A_Classifier, OCL_Element_Table.Table (Self).Member (0).Collection + 21); -- redefinedElement AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Redefinable_Element_Redefined_Element_A_Redefinable_Element, OCL_Element_Table.Table (Self).Member (0).Collection + 11); -- redefinitionContext AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Redefinable_Element_Redefinition_Context_A_Redefinable_Element, OCL_Element_Table.Table (Self).Member (0).Collection + 12); -- substitution AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Substitution_Substitution_Substituting_Classifier, OCL_Element_Table.Table (Self).Member (0).Collection + 22); -- templateBinding AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Templateable_Element_Template_Binding_Template_Binding_Bound_Element, OCL_Element_Table.Table (Self).Member (0).Collection + 10); -- useCase AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Use_Case_Use_Case_Subject, OCL_Element_Table.Table (Self).Member (0).Collection + 23); return Self; end Create_OCL_Message_Type; --------------------------------- -- Create_OCL_Null_Literal_Exp -- --------------------------------- function Create_OCL_Null_Literal_Exp return AMF.Internals.AMF_Element is Self : AMF.Internals.AMF_Element; begin OCL_Element_Table.Increment_Last; Self := OCL_Element_Table.Last; OCL_Element_Table.Table (Self).all := (Kind => AMF.Internals.Tables.OCL_Types.E_OCL_Null_Literal_Exp, Extent => 0, Proxy => new AMF.Internals.OCL_Null_Literal_Exps.OCL_Null_Literal_Exp_Proxy'(Element => Self), Member => (0 => (Kind => AMF.Internals.Tables.OCL_Types.M_None), 2 => (AMF.Internals.Tables.OCL_Types.M_String, null), -- name 3 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- nameExpression 4 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- namespace 1 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- owner 5 => (AMF.Internals.Tables.OCL_Types.M_String, null), -- qualifiedName 7 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- type 6 => (AMF.Internals.Tables.OCL_Types.M_Visibility_Kind_Holder, (Is_Empty => True)), -- visibility others => (Kind => AMF.Internals.Tables.OCL_Types.M_None))); OCL_Element_Table.Table (Self).Member (0) := (AMF.Internals.Tables.OCL_Types.M_Collection_Of_Element, AMF.Internals.Element_Collections.Allocate_Collections (32)); -- clientDependency AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Named_Element_Client_Dependency_Dependency_Client, OCL_Element_Table.Table (Self).Member (0).Collection + 3); -- ownedComment AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Element_Owned_Comment_A_Owning_Element, OCL_Element_Table.Table (Self).Member (0).Collection + 1); -- ownedElement AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Element_Owned_Element_Element_Owner, OCL_Element_Table.Table (Self).Member (0).Collection + 2); return Self; end Create_OCL_Null_Literal_Exp; ----------------------------------- -- Create_OCL_Operation_Call_Exp -- ----------------------------------- function Create_OCL_Operation_Call_Exp return AMF.Internals.AMF_Element is Self : AMF.Internals.AMF_Element; begin OCL_Element_Table.Increment_Last; Self := OCL_Element_Table.Last; OCL_Element_Table.Table (Self).all := (Kind => AMF.Internals.Tables.OCL_Types.E_OCL_Operation_Call_Exp, Extent => 0, Proxy => new AMF.Internals.OCL_Operation_Call_Exps.OCL_Operation_Call_Exp_Proxy'(Element => Self), Member => (0 => (Kind => AMF.Internals.Tables.OCL_Types.M_None), 2 => (AMF.Internals.Tables.OCL_Types.M_String, null), -- name 3 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- nameExpression 4 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- namespace 1 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- owner 5 => (AMF.Internals.Tables.OCL_Types.M_String, null), -- qualifiedName 9 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- referredOperation 8 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- source 7 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- type 6 => (AMF.Internals.Tables.OCL_Types.M_Visibility_Kind_Holder, (Is_Empty => True)), -- visibility others => (Kind => AMF.Internals.Tables.OCL_Types.M_None))); OCL_Element_Table.Table (Self).Member (0) := (AMF.Internals.Tables.OCL_Types.M_Collection_Of_Element, AMF.Internals.Element_Collections.Allocate_Collections (32)); -- argument AMF.Internals.Element_Collections.Initialize_Ordered_Set_Collection (Self, AMF.Internals.Tables.OCL_Metamodel.MP_OCL_Operation_Call_Exp_Argument_A_Parent_Call, OCL_Element_Table.Table (Self).Member (0).Collection + 4); -- clientDependency AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Named_Element_Client_Dependency_Dependency_Client, OCL_Element_Table.Table (Self).Member (0).Collection + 3); -- ownedComment AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Element_Owned_Comment_A_Owning_Element, OCL_Element_Table.Table (Self).Member (0).Collection + 1); -- ownedElement AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Element_Owned_Element_Element_Owner, OCL_Element_Table.Table (Self).Member (0).Collection + 2); return Self; end Create_OCL_Operation_Call_Exp; --------------------------------- -- Create_OCL_Ordered_Set_Type -- --------------------------------- function Create_OCL_Ordered_Set_Type return AMF.Internals.AMF_Element is Self : AMF.Internals.AMF_Element; begin OCL_Element_Table.Increment_Last; Self := OCL_Element_Table.Last; OCL_Element_Table.Table (Self).all := (Kind => AMF.Internals.Tables.OCL_Types.E_OCL_Ordered_Set_Type, Extent => 0, Proxy => new AMF.Internals.OCL_Ordered_Set_Types.OCL_Ordered_Set_Type_Proxy'(Element => Self), Member => (0 => (Kind => AMF.Internals.Tables.OCL_Types.M_None), 17 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- elementType 12 => (AMF.Internals.Tables.OCL_Types.M_Boolean, False), -- isAbstract 13 => (AMF.Internals.Tables.OCL_Types.M_Boolean, False), -- isFinalSpecialization 11 => (AMF.Internals.Tables.OCL_Types.M_Boolean, False), -- isLeaf 2 => (AMF.Internals.Tables.OCL_Types.M_String, null), -- name 3 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- nameExpression 4 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- namespace 14 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- ownedTemplateSignature 10 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- ownedTemplateSignature 1 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- owner 8 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- owningTemplateParameter 7 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- package 5 => (AMF.Internals.Tables.OCL_Types.M_String, null), -- qualifiedName 15 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- representation 16 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- templateParameter 9 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- templateParameter 6 => (AMF.Internals.Tables.OCL_Types.M_Visibility_Kind_Holder, (False, AMF.UML.Public_Visibility)), -- visibility others => (Kind => AMF.Internals.Tables.OCL_Types.M_None))); OCL_Element_Table.Table (Self).Member (0) := (AMF.Internals.Tables.OCL_Types.M_Collection_Of_Element, AMF.Internals.Element_Collections.Allocate_Collections (32)); -- attribute AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Attribute_A_Classifier, OCL_Element_Table.Table (Self).Member (0).Collection + 13); -- clientDependency AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Named_Element_Client_Dependency_Dependency_Client, OCL_Element_Table.Table (Self).Member (0).Collection + 3); -- collaborationUse AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Collaboration_Use_A_Classifier, OCL_Element_Table.Table (Self).Member (0).Collection + 14); -- elementImport AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Namespace_Element_Import_Element_Import_Importing_Namespace, OCL_Element_Table.Table (Self).Member (0).Collection + 4); -- feature AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Feature_Feature_Featuring_Classifier, OCL_Element_Table.Table (Self).Member (0).Collection + 15); -- general AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_General_A_Classifier, OCL_Element_Table.Table (Self).Member (0).Collection + 16); -- generalization AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Generalization_Generalization_Specific, OCL_Element_Table.Table (Self).Member (0).Collection + 17); -- importedMember AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Namespace_Imported_Member_A_Namespace, OCL_Element_Table.Table (Self).Member (0).Collection + 5); -- inheritedMember AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Inherited_Member_A_Classifier, OCL_Element_Table.Table (Self).Member (0).Collection + 18); -- member AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Namespace_Member_A_Member_Namespace, OCL_Element_Table.Table (Self).Member (0).Collection + 6); -- ownedAttribute AMF.Internals.Element_Collections.Initialize_Ordered_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Data_Type_Owned_Attribute_Property_Datatype, OCL_Element_Table.Table (Self).Member (0).Collection + 24); -- ownedComment AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Element_Owned_Comment_A_Owning_Element, OCL_Element_Table.Table (Self).Member (0).Collection + 1); -- ownedElement AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Element_Owned_Element_Element_Owner, OCL_Element_Table.Table (Self).Member (0).Collection + 2); -- ownedMember AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Namespace_Owned_Member_Named_Element_Namespace, OCL_Element_Table.Table (Self).Member (0).Collection + 7); -- ownedOperation AMF.Internals.Element_Collections.Initialize_Ordered_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Data_Type_Owned_Operation_Operation_Datatype, OCL_Element_Table.Table (Self).Member (0).Collection + 25); -- ownedRule AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Namespace_Owned_Rule_Constraint_Context, OCL_Element_Table.Table (Self).Member (0).Collection + 8); -- ownedUseCase AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Owned_Use_Case_A_Classifier, OCL_Element_Table.Table (Self).Member (0).Collection + 19); -- packageImport AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Namespace_Package_Import_Package_Import_Importing_Namespace, OCL_Element_Table.Table (Self).Member (0).Collection + 9); -- powertypeExtent AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Powertype_Extent_Generalization_Set_Powertype, OCL_Element_Table.Table (Self).Member (0).Collection + 20); -- redefinedClassifier AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Redefined_Classifier_A_Classifier, OCL_Element_Table.Table (Self).Member (0).Collection + 21); -- redefinedElement AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Redefinable_Element_Redefined_Element_A_Redefinable_Element, OCL_Element_Table.Table (Self).Member (0).Collection + 11); -- redefinitionContext AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Redefinable_Element_Redefinition_Context_A_Redefinable_Element, OCL_Element_Table.Table (Self).Member (0).Collection + 12); -- substitution AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Substitution_Substitution_Substituting_Classifier, OCL_Element_Table.Table (Self).Member (0).Collection + 22); -- templateBinding AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Templateable_Element_Template_Binding_Template_Binding_Bound_Element, OCL_Element_Table.Table (Self).Member (0).Collection + 10); -- useCase AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Use_Case_Use_Case_Subject, OCL_Element_Table.Table (Self).Member (0).Collection + 23); return Self; end Create_OCL_Ordered_Set_Type; ---------------------------------- -- Create_OCL_Property_Call_Exp -- ---------------------------------- function Create_OCL_Property_Call_Exp return AMF.Internals.AMF_Element is Self : AMF.Internals.AMF_Element; begin OCL_Element_Table.Increment_Last; Self := OCL_Element_Table.Last; OCL_Element_Table.Table (Self).all := (Kind => AMF.Internals.Tables.OCL_Types.E_OCL_Property_Call_Exp, Extent => 0, Proxy => new AMF.Internals.OCL_Property_Call_Exps.OCL_Property_Call_Exp_Proxy'(Element => Self), Member => (0 => (Kind => AMF.Internals.Tables.OCL_Types.M_None), 2 => (AMF.Internals.Tables.OCL_Types.M_String, null), -- name 3 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- nameExpression 4 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- namespace 9 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- navigationSource 1 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- owner 5 => (AMF.Internals.Tables.OCL_Types.M_String, null), -- qualifiedName 10 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- referredProperty 8 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- source 7 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- type 6 => (AMF.Internals.Tables.OCL_Types.M_Visibility_Kind_Holder, (Is_Empty => True)), -- visibility others => (Kind => AMF.Internals.Tables.OCL_Types.M_None))); OCL_Element_Table.Table (Self).Member (0) := (AMF.Internals.Tables.OCL_Types.M_Collection_Of_Element, AMF.Internals.Element_Collections.Allocate_Collections (32)); -- clientDependency AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Named_Element_Client_Dependency_Dependency_Client, OCL_Element_Table.Table (Self).Member (0).Collection + 3); -- ownedComment AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Element_Owned_Comment_A_Owning_Element, OCL_Element_Table.Table (Self).Member (0).Collection + 1); -- ownedElement AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Element_Owned_Element_Element_Owner, OCL_Element_Table.Table (Self).Member (0).Collection + 2); -- qualifier AMF.Internals.Element_Collections.Initialize_Ordered_Set_Collection (Self, AMF.Internals.Tables.OCL_Metamodel.MP_OCL_Navigation_Call_Exp_Qualifier_A_Parent_Nav, OCL_Element_Table.Table (Self).Member (0).Collection + 4); return Self; end Create_OCL_Property_Call_Exp; --------------------------------- -- Create_OCL_Real_Literal_Exp -- --------------------------------- function Create_OCL_Real_Literal_Exp return AMF.Internals.AMF_Element is Self : AMF.Internals.AMF_Element; begin OCL_Element_Table.Increment_Last; Self := OCL_Element_Table.Last; OCL_Element_Table.Table (Self).all := (Kind => AMF.Internals.Tables.OCL_Types.E_OCL_Real_Literal_Exp, Extent => 0, Proxy => new AMF.Internals.OCL_Real_Literal_Exps.OCL_Real_Literal_Exp_Proxy'(Element => Self), Member => (0 => (Kind => AMF.Internals.Tables.OCL_Types.M_None), 2 => (AMF.Internals.Tables.OCL_Types.M_String, null), -- name 3 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- nameExpression 4 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- namespace 1 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- owner 5 => (AMF.Internals.Tables.OCL_Types.M_String, null), -- qualifiedName 8 => (AMF.Internals.Tables.OCL_Types.M_Real, 0.0), -- realSymbol 7 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- type 6 => (AMF.Internals.Tables.OCL_Types.M_Visibility_Kind_Holder, (Is_Empty => True)), -- visibility others => (Kind => AMF.Internals.Tables.OCL_Types.M_None))); OCL_Element_Table.Table (Self).Member (0) := (AMF.Internals.Tables.OCL_Types.M_Collection_Of_Element, AMF.Internals.Element_Collections.Allocate_Collections (32)); -- clientDependency AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Named_Element_Client_Dependency_Dependency_Client, OCL_Element_Table.Table (Self).Member (0).Collection + 3); -- ownedComment AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Element_Owned_Comment_A_Owning_Element, OCL_Element_Table.Table (Self).Member (0).Collection + 1); -- ownedElement AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Element_Owned_Element_Element_Owner, OCL_Element_Table.Table (Self).Member (0).Collection + 2); return Self; end Create_OCL_Real_Literal_Exp; ------------------------------ -- Create_OCL_Sequence_Type -- ------------------------------ function Create_OCL_Sequence_Type return AMF.Internals.AMF_Element is Self : AMF.Internals.AMF_Element; begin OCL_Element_Table.Increment_Last; Self := OCL_Element_Table.Last; OCL_Element_Table.Table (Self).all := (Kind => AMF.Internals.Tables.OCL_Types.E_OCL_Sequence_Type, Extent => 0, Proxy => new AMF.Internals.OCL_Sequence_Types.OCL_Sequence_Type_Proxy'(Element => Self), Member => (0 => (Kind => AMF.Internals.Tables.OCL_Types.M_None), 17 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- elementType 12 => (AMF.Internals.Tables.OCL_Types.M_Boolean, False), -- isAbstract 13 => (AMF.Internals.Tables.OCL_Types.M_Boolean, False), -- isFinalSpecialization 11 => (AMF.Internals.Tables.OCL_Types.M_Boolean, False), -- isLeaf 2 => (AMF.Internals.Tables.OCL_Types.M_String, null), -- name 3 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- nameExpression 4 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- namespace 14 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- ownedTemplateSignature 10 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- ownedTemplateSignature 1 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- owner 8 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- owningTemplateParameter 7 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- package 5 => (AMF.Internals.Tables.OCL_Types.M_String, null), -- qualifiedName 15 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- representation 16 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- templateParameter 9 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- templateParameter 6 => (AMF.Internals.Tables.OCL_Types.M_Visibility_Kind_Holder, (False, AMF.UML.Public_Visibility)), -- visibility others => (Kind => AMF.Internals.Tables.OCL_Types.M_None))); OCL_Element_Table.Table (Self).Member (0) := (AMF.Internals.Tables.OCL_Types.M_Collection_Of_Element, AMF.Internals.Element_Collections.Allocate_Collections (32)); -- attribute AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Attribute_A_Classifier, OCL_Element_Table.Table (Self).Member (0).Collection + 13); -- clientDependency AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Named_Element_Client_Dependency_Dependency_Client, OCL_Element_Table.Table (Self).Member (0).Collection + 3); -- collaborationUse AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Collaboration_Use_A_Classifier, OCL_Element_Table.Table (Self).Member (0).Collection + 14); -- elementImport AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Namespace_Element_Import_Element_Import_Importing_Namespace, OCL_Element_Table.Table (Self).Member (0).Collection + 4); -- feature AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Feature_Feature_Featuring_Classifier, OCL_Element_Table.Table (Self).Member (0).Collection + 15); -- general AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_General_A_Classifier, OCL_Element_Table.Table (Self).Member (0).Collection + 16); -- generalization AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Generalization_Generalization_Specific, OCL_Element_Table.Table (Self).Member (0).Collection + 17); -- importedMember AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Namespace_Imported_Member_A_Namespace, OCL_Element_Table.Table (Self).Member (0).Collection + 5); -- inheritedMember AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Inherited_Member_A_Classifier, OCL_Element_Table.Table (Self).Member (0).Collection + 18); -- member AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Namespace_Member_A_Member_Namespace, OCL_Element_Table.Table (Self).Member (0).Collection + 6); -- ownedAttribute AMF.Internals.Element_Collections.Initialize_Ordered_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Data_Type_Owned_Attribute_Property_Datatype, OCL_Element_Table.Table (Self).Member (0).Collection + 24); -- ownedComment AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Element_Owned_Comment_A_Owning_Element, OCL_Element_Table.Table (Self).Member (0).Collection + 1); -- ownedElement AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Element_Owned_Element_Element_Owner, OCL_Element_Table.Table (Self).Member (0).Collection + 2); -- ownedMember AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Namespace_Owned_Member_Named_Element_Namespace, OCL_Element_Table.Table (Self).Member (0).Collection + 7); -- ownedOperation AMF.Internals.Element_Collections.Initialize_Ordered_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Data_Type_Owned_Operation_Operation_Datatype, OCL_Element_Table.Table (Self).Member (0).Collection + 25); -- ownedRule AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Namespace_Owned_Rule_Constraint_Context, OCL_Element_Table.Table (Self).Member (0).Collection + 8); -- ownedUseCase AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Owned_Use_Case_A_Classifier, OCL_Element_Table.Table (Self).Member (0).Collection + 19); -- packageImport AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Namespace_Package_Import_Package_Import_Importing_Namespace, OCL_Element_Table.Table (Self).Member (0).Collection + 9); -- powertypeExtent AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Powertype_Extent_Generalization_Set_Powertype, OCL_Element_Table.Table (Self).Member (0).Collection + 20); -- redefinedClassifier AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Redefined_Classifier_A_Classifier, OCL_Element_Table.Table (Self).Member (0).Collection + 21); -- redefinedElement AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Redefinable_Element_Redefined_Element_A_Redefinable_Element, OCL_Element_Table.Table (Self).Member (0).Collection + 11); -- redefinitionContext AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Redefinable_Element_Redefinition_Context_A_Redefinable_Element, OCL_Element_Table.Table (Self).Member (0).Collection + 12); -- substitution AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Substitution_Substitution_Substituting_Classifier, OCL_Element_Table.Table (Self).Member (0).Collection + 22); -- templateBinding AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Templateable_Element_Template_Binding_Template_Binding_Bound_Element, OCL_Element_Table.Table (Self).Member (0).Collection + 10); -- useCase AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Use_Case_Use_Case_Subject, OCL_Element_Table.Table (Self).Member (0).Collection + 23); return Self; end Create_OCL_Sequence_Type; ------------------------- -- Create_OCL_Set_Type -- ------------------------- function Create_OCL_Set_Type return AMF.Internals.AMF_Element is Self : AMF.Internals.AMF_Element; begin OCL_Element_Table.Increment_Last; Self := OCL_Element_Table.Last; OCL_Element_Table.Table (Self).all := (Kind => AMF.Internals.Tables.OCL_Types.E_OCL_Set_Type, Extent => 0, Proxy => new AMF.Internals.OCL_Set_Types.OCL_Set_Type_Proxy'(Element => Self), Member => (0 => (Kind => AMF.Internals.Tables.OCL_Types.M_None), 17 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- elementType 12 => (AMF.Internals.Tables.OCL_Types.M_Boolean, False), -- isAbstract 13 => (AMF.Internals.Tables.OCL_Types.M_Boolean, False), -- isFinalSpecialization 11 => (AMF.Internals.Tables.OCL_Types.M_Boolean, False), -- isLeaf 2 => (AMF.Internals.Tables.OCL_Types.M_String, null), -- name 3 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- nameExpression 4 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- namespace 14 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- ownedTemplateSignature 10 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- ownedTemplateSignature 1 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- owner 8 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- owningTemplateParameter 7 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- package 5 => (AMF.Internals.Tables.OCL_Types.M_String, null), -- qualifiedName 15 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- representation 16 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- templateParameter 9 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- templateParameter 6 => (AMF.Internals.Tables.OCL_Types.M_Visibility_Kind_Holder, (False, AMF.UML.Public_Visibility)), -- visibility others => (Kind => AMF.Internals.Tables.OCL_Types.M_None))); OCL_Element_Table.Table (Self).Member (0) := (AMF.Internals.Tables.OCL_Types.M_Collection_Of_Element, AMF.Internals.Element_Collections.Allocate_Collections (32)); -- attribute AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Attribute_A_Classifier, OCL_Element_Table.Table (Self).Member (0).Collection + 13); -- clientDependency AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Named_Element_Client_Dependency_Dependency_Client, OCL_Element_Table.Table (Self).Member (0).Collection + 3); -- collaborationUse AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Collaboration_Use_A_Classifier, OCL_Element_Table.Table (Self).Member (0).Collection + 14); -- elementImport AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Namespace_Element_Import_Element_Import_Importing_Namespace, OCL_Element_Table.Table (Self).Member (0).Collection + 4); -- feature AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Feature_Feature_Featuring_Classifier, OCL_Element_Table.Table (Self).Member (0).Collection + 15); -- general AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_General_A_Classifier, OCL_Element_Table.Table (Self).Member (0).Collection + 16); -- generalization AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Generalization_Generalization_Specific, OCL_Element_Table.Table (Self).Member (0).Collection + 17); -- importedMember AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Namespace_Imported_Member_A_Namespace, OCL_Element_Table.Table (Self).Member (0).Collection + 5); -- inheritedMember AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Inherited_Member_A_Classifier, OCL_Element_Table.Table (Self).Member (0).Collection + 18); -- member AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Namespace_Member_A_Member_Namespace, OCL_Element_Table.Table (Self).Member (0).Collection + 6); -- ownedAttribute AMF.Internals.Element_Collections.Initialize_Ordered_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Data_Type_Owned_Attribute_Property_Datatype, OCL_Element_Table.Table (Self).Member (0).Collection + 24); -- ownedComment AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Element_Owned_Comment_A_Owning_Element, OCL_Element_Table.Table (Self).Member (0).Collection + 1); -- ownedElement AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Element_Owned_Element_Element_Owner, OCL_Element_Table.Table (Self).Member (0).Collection + 2); -- ownedMember AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Namespace_Owned_Member_Named_Element_Namespace, OCL_Element_Table.Table (Self).Member (0).Collection + 7); -- ownedOperation AMF.Internals.Element_Collections.Initialize_Ordered_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Data_Type_Owned_Operation_Operation_Datatype, OCL_Element_Table.Table (Self).Member (0).Collection + 25); -- ownedRule AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Namespace_Owned_Rule_Constraint_Context, OCL_Element_Table.Table (Self).Member (0).Collection + 8); -- ownedUseCase AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Owned_Use_Case_A_Classifier, OCL_Element_Table.Table (Self).Member (0).Collection + 19); -- packageImport AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Namespace_Package_Import_Package_Import_Importing_Namespace, OCL_Element_Table.Table (Self).Member (0).Collection + 9); -- powertypeExtent AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Powertype_Extent_Generalization_Set_Powertype, OCL_Element_Table.Table (Self).Member (0).Collection + 20); -- redefinedClassifier AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Redefined_Classifier_A_Classifier, OCL_Element_Table.Table (Self).Member (0).Collection + 21); -- redefinedElement AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Redefinable_Element_Redefined_Element_A_Redefinable_Element, OCL_Element_Table.Table (Self).Member (0).Collection + 11); -- redefinitionContext AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Redefinable_Element_Redefinition_Context_A_Redefinable_Element, OCL_Element_Table.Table (Self).Member (0).Collection + 12); -- substitution AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Substitution_Substitution_Substituting_Classifier, OCL_Element_Table.Table (Self).Member (0).Collection + 22); -- templateBinding AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Templateable_Element_Template_Binding_Template_Binding_Bound_Element, OCL_Element_Table.Table (Self).Member (0).Collection + 10); -- useCase AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Use_Case_Use_Case_Subject, OCL_Element_Table.Table (Self).Member (0).Collection + 23); return Self; end Create_OCL_Set_Type; -------------------------- -- Create_OCL_State_Exp -- -------------------------- function Create_OCL_State_Exp return AMF.Internals.AMF_Element is Self : AMF.Internals.AMF_Element; begin OCL_Element_Table.Increment_Last; Self := OCL_Element_Table.Last; OCL_Element_Table.Table (Self).all := (Kind => AMF.Internals.Tables.OCL_Types.E_OCL_State_Exp, Extent => 0, Proxy => new AMF.Internals.OCL_State_Exps.OCL_State_Exp_Proxy'(Element => Self), Member => (0 => (Kind => AMF.Internals.Tables.OCL_Types.M_None), 2 => (AMF.Internals.Tables.OCL_Types.M_String, null), -- name 3 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- nameExpression 4 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- namespace 1 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- owner 5 => (AMF.Internals.Tables.OCL_Types.M_String, null), -- qualifiedName 8 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- referredState 7 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- type 6 => (AMF.Internals.Tables.OCL_Types.M_Visibility_Kind_Holder, (Is_Empty => True)), -- visibility others => (Kind => AMF.Internals.Tables.OCL_Types.M_None))); OCL_Element_Table.Table (Self).Member (0) := (AMF.Internals.Tables.OCL_Types.M_Collection_Of_Element, AMF.Internals.Element_Collections.Allocate_Collections (32)); -- clientDependency AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Named_Element_Client_Dependency_Dependency_Client, OCL_Element_Table.Table (Self).Member (0).Collection + 3); -- ownedComment AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Element_Owned_Comment_A_Owning_Element, OCL_Element_Table.Table (Self).Member (0).Collection + 1); -- ownedElement AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Element_Owned_Element_Element_Owner, OCL_Element_Table.Table (Self).Member (0).Collection + 2); return Self; end Create_OCL_State_Exp; ----------------------------------- -- Create_OCL_String_Literal_Exp -- ----------------------------------- function Create_OCL_String_Literal_Exp return AMF.Internals.AMF_Element is Self : AMF.Internals.AMF_Element; begin OCL_Element_Table.Increment_Last; Self := OCL_Element_Table.Last; OCL_Element_Table.Table (Self).all := (Kind => AMF.Internals.Tables.OCL_Types.E_OCL_String_Literal_Exp, Extent => 0, Proxy => new AMF.Internals.OCL_String_Literal_Exps.OCL_String_Literal_Exp_Proxy'(Element => Self), Member => (0 => (Kind => AMF.Internals.Tables.OCL_Types.M_None), 2 => (AMF.Internals.Tables.OCL_Types.M_String, null), -- name 3 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- nameExpression 4 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- namespace 1 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- owner 5 => (AMF.Internals.Tables.OCL_Types.M_String, null), -- qualifiedName 8 => (AMF.Internals.Tables.OCL_Types.M_String, Matreshka.Internals.Strings.Shared_Empty'Access), -- stringSymbol 7 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- type 6 => (AMF.Internals.Tables.OCL_Types.M_Visibility_Kind_Holder, (Is_Empty => True)), -- visibility others => (Kind => AMF.Internals.Tables.OCL_Types.M_None))); OCL_Element_Table.Table (Self).Member (0) := (AMF.Internals.Tables.OCL_Types.M_Collection_Of_Element, AMF.Internals.Element_Collections.Allocate_Collections (32)); -- clientDependency AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Named_Element_Client_Dependency_Dependency_Client, OCL_Element_Table.Table (Self).Member (0).Collection + 3); -- ownedComment AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Element_Owned_Comment_A_Owning_Element, OCL_Element_Table.Table (Self).Member (0).Collection + 1); -- ownedElement AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Element_Owned_Element_Element_Owner, OCL_Element_Table.Table (Self).Member (0).Collection + 2); return Self; end Create_OCL_String_Literal_Exp; ---------------------------------------- -- Create_OCL_Template_Parameter_Type -- ---------------------------------------- function Create_OCL_Template_Parameter_Type return AMF.Internals.AMF_Element is Self : AMF.Internals.AMF_Element; begin OCL_Element_Table.Increment_Last; Self := OCL_Element_Table.Last; OCL_Element_Table.Table (Self).all := (Kind => AMF.Internals.Tables.OCL_Types.E_OCL_Template_Parameter_Type, Extent => 0, Proxy => new AMF.Internals.OCL_Template_Parameter_Types.OCL_Template_Parameter_Type_Proxy'(Element => Self), Member => (0 => (Kind => AMF.Internals.Tables.OCL_Types.M_None), 12 => (AMF.Internals.Tables.OCL_Types.M_Boolean, False), -- isAbstract 13 => (AMF.Internals.Tables.OCL_Types.M_Boolean, False), -- isFinalSpecialization 11 => (AMF.Internals.Tables.OCL_Types.M_Boolean, False), -- isLeaf 2 => (AMF.Internals.Tables.OCL_Types.M_String, null), -- name 3 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- nameExpression 4 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- namespace 14 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- ownedTemplateSignature 10 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- ownedTemplateSignature 1 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- owner 8 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- owningTemplateParameter 7 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- package 5 => (AMF.Internals.Tables.OCL_Types.M_String, null), -- qualifiedName 15 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- representation 17 => (AMF.Internals.Tables.OCL_Types.M_String, null), -- specification 16 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- templateParameter 9 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- templateParameter 6 => (AMF.Internals.Tables.OCL_Types.M_Visibility_Kind_Holder, (False, AMF.UML.Public_Visibility)), -- visibility others => (Kind => AMF.Internals.Tables.OCL_Types.M_None))); OCL_Element_Table.Table (Self).Member (0) := (AMF.Internals.Tables.OCL_Types.M_Collection_Of_Element, AMF.Internals.Element_Collections.Allocate_Collections (32)); -- attribute AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Attribute_A_Classifier, OCL_Element_Table.Table (Self).Member (0).Collection + 13); -- clientDependency AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Named_Element_Client_Dependency_Dependency_Client, OCL_Element_Table.Table (Self).Member (0).Collection + 3); -- collaborationUse AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Collaboration_Use_A_Classifier, OCL_Element_Table.Table (Self).Member (0).Collection + 14); -- elementImport AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Namespace_Element_Import_Element_Import_Importing_Namespace, OCL_Element_Table.Table (Self).Member (0).Collection + 4); -- feature AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Feature_Feature_Featuring_Classifier, OCL_Element_Table.Table (Self).Member (0).Collection + 15); -- general AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_General_A_Classifier, OCL_Element_Table.Table (Self).Member (0).Collection + 16); -- generalization AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Generalization_Generalization_Specific, OCL_Element_Table.Table (Self).Member (0).Collection + 17); -- importedMember AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Namespace_Imported_Member_A_Namespace, OCL_Element_Table.Table (Self).Member (0).Collection + 5); -- inheritedMember AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Inherited_Member_A_Classifier, OCL_Element_Table.Table (Self).Member (0).Collection + 18); -- member AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Namespace_Member_A_Member_Namespace, OCL_Element_Table.Table (Self).Member (0).Collection + 6); -- ownedComment AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Element_Owned_Comment_A_Owning_Element, OCL_Element_Table.Table (Self).Member (0).Collection + 1); -- ownedElement AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Element_Owned_Element_Element_Owner, OCL_Element_Table.Table (Self).Member (0).Collection + 2); -- ownedMember AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Namespace_Owned_Member_Named_Element_Namespace, OCL_Element_Table.Table (Self).Member (0).Collection + 7); -- ownedRule AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Namespace_Owned_Rule_Constraint_Context, OCL_Element_Table.Table (Self).Member (0).Collection + 8); -- ownedUseCase AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Owned_Use_Case_A_Classifier, OCL_Element_Table.Table (Self).Member (0).Collection + 19); -- packageImport AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Namespace_Package_Import_Package_Import_Importing_Namespace, OCL_Element_Table.Table (Self).Member (0).Collection + 9); -- powertypeExtent AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Powertype_Extent_Generalization_Set_Powertype, OCL_Element_Table.Table (Self).Member (0).Collection + 20); -- redefinedClassifier AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Redefined_Classifier_A_Classifier, OCL_Element_Table.Table (Self).Member (0).Collection + 21); -- redefinedElement AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Redefinable_Element_Redefined_Element_A_Redefinable_Element, OCL_Element_Table.Table (Self).Member (0).Collection + 11); -- redefinitionContext AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Redefinable_Element_Redefinition_Context_A_Redefinable_Element, OCL_Element_Table.Table (Self).Member (0).Collection + 12); -- substitution AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Substitution_Substitution_Substituting_Classifier, OCL_Element_Table.Table (Self).Member (0).Collection + 22); -- templateBinding AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Templateable_Element_Template_Binding_Template_Binding_Bound_Element, OCL_Element_Table.Table (Self).Member (0).Collection + 10); -- useCase AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Use_Case_Use_Case_Subject, OCL_Element_Table.Table (Self).Member (0).Collection + 23); return Self; end Create_OCL_Template_Parameter_Type; ---------------------------------- -- Create_OCL_Tuple_Literal_Exp -- ---------------------------------- function Create_OCL_Tuple_Literal_Exp return AMF.Internals.AMF_Element is Self : AMF.Internals.AMF_Element; begin OCL_Element_Table.Increment_Last; Self := OCL_Element_Table.Last; OCL_Element_Table.Table (Self).all := (Kind => AMF.Internals.Tables.OCL_Types.E_OCL_Tuple_Literal_Exp, Extent => 0, Proxy => new AMF.Internals.OCL_Tuple_Literal_Exps.OCL_Tuple_Literal_Exp_Proxy'(Element => Self), Member => (0 => (Kind => AMF.Internals.Tables.OCL_Types.M_None), 2 => (AMF.Internals.Tables.OCL_Types.M_String, null), -- name 3 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- nameExpression 4 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- namespace 1 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- owner 5 => (AMF.Internals.Tables.OCL_Types.M_String, null), -- qualifiedName 7 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- type 6 => (AMF.Internals.Tables.OCL_Types.M_Visibility_Kind_Holder, (Is_Empty => True)), -- visibility others => (Kind => AMF.Internals.Tables.OCL_Types.M_None))); OCL_Element_Table.Table (Self).Member (0) := (AMF.Internals.Tables.OCL_Types.M_Collection_Of_Element, AMF.Internals.Element_Collections.Allocate_Collections (32)); -- clientDependency AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Named_Element_Client_Dependency_Dependency_Client, OCL_Element_Table.Table (Self).Member (0).Collection + 3); -- ownedComment AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Element_Owned_Comment_A_Owning_Element, OCL_Element_Table.Table (Self).Member (0).Collection + 1); -- ownedElement AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Element_Owned_Element_Element_Owner, OCL_Element_Table.Table (Self).Member (0).Collection + 2); -- part AMF.Internals.Element_Collections.Initialize_Ordered_Set_Collection (Self, AMF.Internals.Tables.OCL_Metamodel.MP_OCL_Tuple_Literal_Exp_Part_A_Exp3, OCL_Element_Table.Table (Self).Member (0).Collection + 4); return Self; end Create_OCL_Tuple_Literal_Exp; ----------------------------------- -- Create_OCL_Tuple_Literal_Part -- ----------------------------------- function Create_OCL_Tuple_Literal_Part return AMF.Internals.AMF_Element is Self : AMF.Internals.AMF_Element; begin OCL_Element_Table.Increment_Last; Self := OCL_Element_Table.Last; OCL_Element_Table.Table (Self).all := (Kind => AMF.Internals.Tables.OCL_Types.E_OCL_Tuple_Literal_Part, Extent => 0, Proxy => new AMF.Internals.OCL_Tuple_Literal_Parts.OCL_Tuple_Literal_Part_Proxy'(Element => Self), Member => (0 => (Kind => AMF.Internals.Tables.OCL_Types.M_None), 8 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- attribute 2 => (AMF.Internals.Tables.OCL_Types.M_String, null), -- name 3 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- nameExpression 4 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- namespace 1 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- owner 5 => (AMF.Internals.Tables.OCL_Types.M_String, null), -- qualifiedName 7 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- type 6 => (AMF.Internals.Tables.OCL_Types.M_Visibility_Kind_Holder, (Is_Empty => True)), -- visibility others => (Kind => AMF.Internals.Tables.OCL_Types.M_None))); OCL_Element_Table.Table (Self).Member (0) := (AMF.Internals.Tables.OCL_Types.M_Collection_Of_Element, AMF.Internals.Element_Collections.Allocate_Collections (32)); -- clientDependency AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Named_Element_Client_Dependency_Dependency_Client, OCL_Element_Table.Table (Self).Member (0).Collection + 3); -- ownedComment AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Element_Owned_Comment_A_Owning_Element, OCL_Element_Table.Table (Self).Member (0).Collection + 1); -- ownedElement AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Element_Owned_Element_Element_Owner, OCL_Element_Table.Table (Self).Member (0).Collection + 2); return Self; end Create_OCL_Tuple_Literal_Part; --------------------------- -- Create_OCL_Tuple_Type -- --------------------------- function Create_OCL_Tuple_Type return AMF.Internals.AMF_Element is Self : AMF.Internals.AMF_Element; begin OCL_Element_Table.Increment_Last; Self := OCL_Element_Table.Last; OCL_Element_Table.Table (Self).all := (Kind => AMF.Internals.Tables.OCL_Types.E_OCL_Tuple_Type, Extent => 0, Proxy => new AMF.Internals.OCL_Tuple_Types.OCL_Tuple_Type_Proxy'(Element => Self), Member => (0 => (Kind => AMF.Internals.Tables.OCL_Types.M_None), 12 => (AMF.Internals.Tables.OCL_Types.M_Boolean, False), -- isAbstract 13 => (AMF.Internals.Tables.OCL_Types.M_Boolean, False), -- isFinalSpecialization 11 => (AMF.Internals.Tables.OCL_Types.M_Boolean, False), -- isLeaf 2 => (AMF.Internals.Tables.OCL_Types.M_String, null), -- name 3 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- nameExpression 4 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- namespace 14 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- ownedTemplateSignature 10 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- ownedTemplateSignature 1 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- owner 8 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- owningTemplateParameter 7 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- package 5 => (AMF.Internals.Tables.OCL_Types.M_String, null), -- qualifiedName 15 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- representation 16 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- templateParameter 9 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- templateParameter 6 => (AMF.Internals.Tables.OCL_Types.M_Visibility_Kind_Holder, (False, AMF.UML.Public_Visibility)), -- visibility others => (Kind => AMF.Internals.Tables.OCL_Types.M_None))); OCL_Element_Table.Table (Self).Member (0) := (AMF.Internals.Tables.OCL_Types.M_Collection_Of_Element, AMF.Internals.Element_Collections.Allocate_Collections (32)); -- attribute AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Attribute_A_Classifier, OCL_Element_Table.Table (Self).Member (0).Collection + 13); -- clientDependency AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Named_Element_Client_Dependency_Dependency_Client, OCL_Element_Table.Table (Self).Member (0).Collection + 3); -- collaborationUse AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Collaboration_Use_A_Classifier, OCL_Element_Table.Table (Self).Member (0).Collection + 14); -- elementImport AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Namespace_Element_Import_Element_Import_Importing_Namespace, OCL_Element_Table.Table (Self).Member (0).Collection + 4); -- feature AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Feature_Feature_Featuring_Classifier, OCL_Element_Table.Table (Self).Member (0).Collection + 15); -- general AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_General_A_Classifier, OCL_Element_Table.Table (Self).Member (0).Collection + 16); -- generalization AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Generalization_Generalization_Specific, OCL_Element_Table.Table (Self).Member (0).Collection + 17); -- importedMember AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Namespace_Imported_Member_A_Namespace, OCL_Element_Table.Table (Self).Member (0).Collection + 5); -- inheritedMember AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Inherited_Member_A_Classifier, OCL_Element_Table.Table (Self).Member (0).Collection + 18); -- member AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Namespace_Member_A_Member_Namespace, OCL_Element_Table.Table (Self).Member (0).Collection + 6); -- ownedAttribute AMF.Internals.Element_Collections.Initialize_Ordered_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Data_Type_Owned_Attribute_Property_Datatype, OCL_Element_Table.Table (Self).Member (0).Collection + 24); -- ownedComment AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Element_Owned_Comment_A_Owning_Element, OCL_Element_Table.Table (Self).Member (0).Collection + 1); -- ownedElement AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Element_Owned_Element_Element_Owner, OCL_Element_Table.Table (Self).Member (0).Collection + 2); -- ownedMember AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Namespace_Owned_Member_Named_Element_Namespace, OCL_Element_Table.Table (Self).Member (0).Collection + 7); -- ownedOperation AMF.Internals.Element_Collections.Initialize_Ordered_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Data_Type_Owned_Operation_Operation_Datatype, OCL_Element_Table.Table (Self).Member (0).Collection + 25); -- ownedRule AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Namespace_Owned_Rule_Constraint_Context, OCL_Element_Table.Table (Self).Member (0).Collection + 8); -- ownedUseCase AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Owned_Use_Case_A_Classifier, OCL_Element_Table.Table (Self).Member (0).Collection + 19); -- packageImport AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Namespace_Package_Import_Package_Import_Importing_Namespace, OCL_Element_Table.Table (Self).Member (0).Collection + 9); -- powertypeExtent AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Powertype_Extent_Generalization_Set_Powertype, OCL_Element_Table.Table (Self).Member (0).Collection + 20); -- redefinedClassifier AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Redefined_Classifier_A_Classifier, OCL_Element_Table.Table (Self).Member (0).Collection + 21); -- redefinedElement AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Redefinable_Element_Redefined_Element_A_Redefinable_Element, OCL_Element_Table.Table (Self).Member (0).Collection + 11); -- redefinitionContext AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Redefinable_Element_Redefinition_Context_A_Redefinable_Element, OCL_Element_Table.Table (Self).Member (0).Collection + 12); -- substitution AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Substitution_Substitution_Substituting_Classifier, OCL_Element_Table.Table (Self).Member (0).Collection + 22); -- templateBinding AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Templateable_Element_Template_Binding_Template_Binding_Bound_Element, OCL_Element_Table.Table (Self).Member (0).Collection + 10); -- useCase AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Use_Case_Use_Case_Subject, OCL_Element_Table.Table (Self).Member (0).Collection + 23); return Self; end Create_OCL_Tuple_Type; ------------------------- -- Create_OCL_Type_Exp -- ------------------------- function Create_OCL_Type_Exp return AMF.Internals.AMF_Element is Self : AMF.Internals.AMF_Element; begin OCL_Element_Table.Increment_Last; Self := OCL_Element_Table.Last; OCL_Element_Table.Table (Self).all := (Kind => AMF.Internals.Tables.OCL_Types.E_OCL_Type_Exp, Extent => 0, Proxy => new AMF.Internals.OCL_Type_Exps.OCL_Type_Exp_Proxy'(Element => Self), Member => (0 => (Kind => AMF.Internals.Tables.OCL_Types.M_None), 2 => (AMF.Internals.Tables.OCL_Types.M_String, null), -- name 3 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- nameExpression 4 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- namespace 1 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- owner 5 => (AMF.Internals.Tables.OCL_Types.M_String, null), -- qualifiedName 8 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- referredType 7 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- type 6 => (AMF.Internals.Tables.OCL_Types.M_Visibility_Kind_Holder, (Is_Empty => True)), -- visibility others => (Kind => AMF.Internals.Tables.OCL_Types.M_None))); OCL_Element_Table.Table (Self).Member (0) := (AMF.Internals.Tables.OCL_Types.M_Collection_Of_Element, AMF.Internals.Element_Collections.Allocate_Collections (32)); -- clientDependency AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Named_Element_Client_Dependency_Dependency_Client, OCL_Element_Table.Table (Self).Member (0).Collection + 3); -- ownedComment AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Element_Owned_Comment_A_Owning_Element, OCL_Element_Table.Table (Self).Member (0).Collection + 1); -- ownedElement AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Element_Owned_Element_Element_Owner, OCL_Element_Table.Table (Self).Member (0).Collection + 2); return Self; end Create_OCL_Type_Exp; ---------------------------------------------- -- Create_OCL_Unlimited_Natural_Literal_Exp -- ---------------------------------------------- function Create_OCL_Unlimited_Natural_Literal_Exp return AMF.Internals.AMF_Element is Self : AMF.Internals.AMF_Element; begin OCL_Element_Table.Increment_Last; Self := OCL_Element_Table.Last; OCL_Element_Table.Table (Self).all := (Kind => AMF.Internals.Tables.OCL_Types.E_OCL_Unlimited_Natural_Literal_Exp, Extent => 0, Proxy => new AMF.Internals.OCL_Unlimited_Natural_Literal_Exps.OCL_Unlimited_Natural_Literal_Exp_Proxy'(Element => Self), Member => (0 => (Kind => AMF.Internals.Tables.OCL_Types.M_None), 2 => (AMF.Internals.Tables.OCL_Types.M_String, null), -- name 3 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- nameExpression 4 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- namespace 1 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- owner 5 => (AMF.Internals.Tables.OCL_Types.M_String, null), -- qualifiedName 7 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- type 8 => (AMF.Internals.Tables.OCL_Types.M_Unlimited_Natural, (False, 0)), -- unlimitedNaturalSymbol 6 => (AMF.Internals.Tables.OCL_Types.M_Visibility_Kind_Holder, (Is_Empty => True)), -- visibility others => (Kind => AMF.Internals.Tables.OCL_Types.M_None))); OCL_Element_Table.Table (Self).Member (0) := (AMF.Internals.Tables.OCL_Types.M_Collection_Of_Element, AMF.Internals.Element_Collections.Allocate_Collections (32)); -- clientDependency AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Named_Element_Client_Dependency_Dependency_Client, OCL_Element_Table.Table (Self).Member (0).Collection + 3); -- ownedComment AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Element_Owned_Comment_A_Owning_Element, OCL_Element_Table.Table (Self).Member (0).Collection + 1); -- ownedElement AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Element_Owned_Element_Element_Owner, OCL_Element_Table.Table (Self).Member (0).Collection + 2); return Self; end Create_OCL_Unlimited_Natural_Literal_Exp; -------------------------------------- -- Create_OCL_Unspecified_Value_Exp -- -------------------------------------- function Create_OCL_Unspecified_Value_Exp return AMF.Internals.AMF_Element is Self : AMF.Internals.AMF_Element; begin OCL_Element_Table.Increment_Last; Self := OCL_Element_Table.Last; OCL_Element_Table.Table (Self).all := (Kind => AMF.Internals.Tables.OCL_Types.E_OCL_Unspecified_Value_Exp, Extent => 0, Proxy => new AMF.Internals.OCL_Unspecified_Value_Exps.OCL_Unspecified_Value_Exp_Proxy'(Element => Self), Member => (0 => (Kind => AMF.Internals.Tables.OCL_Types.M_None), 2 => (AMF.Internals.Tables.OCL_Types.M_String, null), -- name 3 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- nameExpression 4 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- namespace 1 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- owner 5 => (AMF.Internals.Tables.OCL_Types.M_String, null), -- qualifiedName 7 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- type 6 => (AMF.Internals.Tables.OCL_Types.M_Visibility_Kind_Holder, (Is_Empty => True)), -- visibility others => (Kind => AMF.Internals.Tables.OCL_Types.M_None))); OCL_Element_Table.Table (Self).Member (0) := (AMF.Internals.Tables.OCL_Types.M_Collection_Of_Element, AMF.Internals.Element_Collections.Allocate_Collections (32)); -- clientDependency AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Named_Element_Client_Dependency_Dependency_Client, OCL_Element_Table.Table (Self).Member (0).Collection + 3); -- ownedComment AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Element_Owned_Comment_A_Owning_Element, OCL_Element_Table.Table (Self).Member (0).Collection + 1); -- ownedElement AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Element_Owned_Element_Element_Owner, OCL_Element_Table.Table (Self).Member (0).Collection + 2); return Self; end Create_OCL_Unspecified_Value_Exp; ------------------------- -- Create_OCL_Variable -- ------------------------- function Create_OCL_Variable return AMF.Internals.AMF_Element is Self : AMF.Internals.AMF_Element; begin OCL_Element_Table.Increment_Last; Self := OCL_Element_Table.Last; OCL_Element_Table.Table (Self).all := (Kind => AMF.Internals.Tables.OCL_Types.E_OCL_Variable, Extent => 0, Proxy => new AMF.Internals.OCL_Variables.OCL_Variable_Proxy'(Element => Self), Member => (0 => (Kind => AMF.Internals.Tables.OCL_Types.M_None), 8 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- initExpression 2 => (AMF.Internals.Tables.OCL_Types.M_String, null), -- name 3 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- nameExpression 4 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- namespace 1 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- owner 5 => (AMF.Internals.Tables.OCL_Types.M_String, null), -- qualifiedName 9 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- representedParameter 7 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- type 6 => (AMF.Internals.Tables.OCL_Types.M_Visibility_Kind_Holder, (Is_Empty => True)), -- visibility others => (Kind => AMF.Internals.Tables.OCL_Types.M_None))); OCL_Element_Table.Table (Self).Member (0) := (AMF.Internals.Tables.OCL_Types.M_Collection_Of_Element, AMF.Internals.Element_Collections.Allocate_Collections (32)); -- clientDependency AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Named_Element_Client_Dependency_Dependency_Client, OCL_Element_Table.Table (Self).Member (0).Collection + 3); -- ownedComment AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Element_Owned_Comment_A_Owning_Element, OCL_Element_Table.Table (Self).Member (0).Collection + 1); -- ownedElement AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Element_Owned_Element_Element_Owner, OCL_Element_Table.Table (Self).Member (0).Collection + 2); return Self; end Create_OCL_Variable; ----------------------------- -- Create_OCL_Variable_Exp -- ----------------------------- function Create_OCL_Variable_Exp return AMF.Internals.AMF_Element is Self : AMF.Internals.AMF_Element; begin OCL_Element_Table.Increment_Last; Self := OCL_Element_Table.Last; OCL_Element_Table.Table (Self).all := (Kind => AMF.Internals.Tables.OCL_Types.E_OCL_Variable_Exp, Extent => 0, Proxy => new AMF.Internals.OCL_Variable_Exps.OCL_Variable_Exp_Proxy'(Element => Self), Member => (0 => (Kind => AMF.Internals.Tables.OCL_Types.M_None), 2 => (AMF.Internals.Tables.OCL_Types.M_String, null), -- name 3 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- nameExpression 4 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- namespace 1 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- owner 5 => (AMF.Internals.Tables.OCL_Types.M_String, null), -- qualifiedName 8 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- referredVariable 7 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- type 6 => (AMF.Internals.Tables.OCL_Types.M_Visibility_Kind_Holder, (Is_Empty => True)), -- visibility others => (Kind => AMF.Internals.Tables.OCL_Types.M_None))); OCL_Element_Table.Table (Self).Member (0) := (AMF.Internals.Tables.OCL_Types.M_Collection_Of_Element, AMF.Internals.Element_Collections.Allocate_Collections (32)); -- clientDependency AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Named_Element_Client_Dependency_Dependency_Client, OCL_Element_Table.Table (Self).Member (0).Collection + 3); -- ownedComment AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Element_Owned_Comment_A_Owning_Element, OCL_Element_Table.Table (Self).Member (0).Collection + 1); -- ownedElement AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Element_Owned_Element_Element_Owner, OCL_Element_Table.Table (Self).Member (0).Collection + 2); return Self; end Create_OCL_Variable_Exp; -------------------------- -- Create_OCL_Void_Type -- -------------------------- function Create_OCL_Void_Type return AMF.Internals.AMF_Element is Self : AMF.Internals.AMF_Element; begin OCL_Element_Table.Increment_Last; Self := OCL_Element_Table.Last; OCL_Element_Table.Table (Self).all := (Kind => AMF.Internals.Tables.OCL_Types.E_OCL_Void_Type, Extent => 0, Proxy => new AMF.Internals.OCL_Void_Types.OCL_Void_Type_Proxy'(Element => Self), Member => (0 => (Kind => AMF.Internals.Tables.OCL_Types.M_None), 12 => (AMF.Internals.Tables.OCL_Types.M_Boolean, False), -- isAbstract 13 => (AMF.Internals.Tables.OCL_Types.M_Boolean, False), -- isFinalSpecialization 11 => (AMF.Internals.Tables.OCL_Types.M_Boolean, False), -- isLeaf 2 => (AMF.Internals.Tables.OCL_Types.M_String, null), -- name 3 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- nameExpression 4 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- namespace 14 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- ownedTemplateSignature 10 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- ownedTemplateSignature 1 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- owner 8 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- owningTemplateParameter 7 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- package 5 => (AMF.Internals.Tables.OCL_Types.M_String, null), -- qualifiedName 15 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- representation 16 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- templateParameter 9 => (AMF.Internals.Tables.OCL_Types.M_Element, No_AMF_Link), -- templateParameter 6 => (AMF.Internals.Tables.OCL_Types.M_Visibility_Kind_Holder, (False, AMF.UML.Public_Visibility)), -- visibility others => (Kind => AMF.Internals.Tables.OCL_Types.M_None))); OCL_Element_Table.Table (Self).Member (0) := (AMF.Internals.Tables.OCL_Types.M_Collection_Of_Element, AMF.Internals.Element_Collections.Allocate_Collections (32)); -- attribute AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Attribute_A_Classifier, OCL_Element_Table.Table (Self).Member (0).Collection + 13); -- clientDependency AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Named_Element_Client_Dependency_Dependency_Client, OCL_Element_Table.Table (Self).Member (0).Collection + 3); -- collaborationUse AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Collaboration_Use_A_Classifier, OCL_Element_Table.Table (Self).Member (0).Collection + 14); -- elementImport AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Namespace_Element_Import_Element_Import_Importing_Namespace, OCL_Element_Table.Table (Self).Member (0).Collection + 4); -- feature AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Feature_Feature_Featuring_Classifier, OCL_Element_Table.Table (Self).Member (0).Collection + 15); -- general AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_General_A_Classifier, OCL_Element_Table.Table (Self).Member (0).Collection + 16); -- generalization AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Generalization_Generalization_Specific, OCL_Element_Table.Table (Self).Member (0).Collection + 17); -- importedMember AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Namespace_Imported_Member_A_Namespace, OCL_Element_Table.Table (Self).Member (0).Collection + 5); -- inheritedMember AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Inherited_Member_A_Classifier, OCL_Element_Table.Table (Self).Member (0).Collection + 18); -- member AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Namespace_Member_A_Member_Namespace, OCL_Element_Table.Table (Self).Member (0).Collection + 6); -- ownedComment AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Element_Owned_Comment_A_Owning_Element, OCL_Element_Table.Table (Self).Member (0).Collection + 1); -- ownedElement AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Element_Owned_Element_Element_Owner, OCL_Element_Table.Table (Self).Member (0).Collection + 2); -- ownedMember AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Namespace_Owned_Member_Named_Element_Namespace, OCL_Element_Table.Table (Self).Member (0).Collection + 7); -- ownedRule AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Namespace_Owned_Rule_Constraint_Context, OCL_Element_Table.Table (Self).Member (0).Collection + 8); -- ownedUseCase AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Owned_Use_Case_A_Classifier, OCL_Element_Table.Table (Self).Member (0).Collection + 19); -- packageImport AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Namespace_Package_Import_Package_Import_Importing_Namespace, OCL_Element_Table.Table (Self).Member (0).Collection + 9); -- powertypeExtent AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Powertype_Extent_Generalization_Set_Powertype, OCL_Element_Table.Table (Self).Member (0).Collection + 20); -- redefinedClassifier AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Redefined_Classifier_A_Classifier, OCL_Element_Table.Table (Self).Member (0).Collection + 21); -- redefinedElement AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Redefinable_Element_Redefined_Element_A_Redefinable_Element, OCL_Element_Table.Table (Self).Member (0).Collection + 11); -- redefinitionContext AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Redefinable_Element_Redefinition_Context_A_Redefinable_Element, OCL_Element_Table.Table (Self).Member (0).Collection + 12); -- substitution AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Substitution_Substitution_Substituting_Classifier, OCL_Element_Table.Table (Self).Member (0).Collection + 22); -- templateBinding AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Templateable_Element_Template_Binding_Template_Binding_Bound_Element, OCL_Element_Table.Table (Self).Member (0).Collection + 10); -- useCase AMF.Internals.Element_Collections.Initialize_Set_Collection (Self, AMF.Internals.Tables.UML_Metamodel.MP_UML_Classifier_Use_Case_Use_Case_Subject, OCL_Element_Table.Table (Self).Member (0).Collection + 23); return Self; end Create_OCL_Void_Type; end AMF.Internals.Tables.OCL_Constructors;
-- Copyright 2016-2019 NXP -- All rights reserved.SPDX-License-Identifier: BSD-3-Clause -- This spec has been automatically generated from LPC55S6x.svd pragma Restrictions (No_Elaboration_Code); pragma Ada_2012; pragma Style_Checks (Off); with HAL; with System; package NXP_SVD.DBGMAILBOX is pragma Preelaborate; --------------- -- Registers -- --------------- -- CRC mode register type CSW_Register is record -- Debugger will set this bit to 1 to request a resynchronrisation RESYNCH_REQ : Boolean := False; -- Request is pending from debugger (i.e unread value in REQUEST) REQ_PENDING : Boolean := False; -- Debugger overrun error (previous REQUEST overwritten before being -- picked up by ROM) DBG_OR_ERR : Boolean := False; -- AHB overrun Error (Return value overwritten by ROM) AHB_OR_ERR : Boolean := False; -- Soft Reset for DM (write-only from AHB, not readable and -- selfclearing). A write to this bit will cause a soft reset for DM. SOFT_RESET : Boolean := False; -- Write-only. Write only bit. Once written will cause the chip to reset -- (note that the DM is not reset by this reset as it is only resettable -- by a SOFT reset or a POR/BOD event) CHIP_RESET_REQ : Boolean := False; -- unspecified Reserved_6_31 : HAL.UInt26 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for CSW_Register use record RESYNCH_REQ at 0 range 0 .. 0; REQ_PENDING at 0 range 1 .. 1; DBG_OR_ERR at 0 range 2 .. 2; AHB_OR_ERR at 0 range 3 .. 3; SOFT_RESET at 0 range 4 .. 4; CHIP_RESET_REQ at 0 range 5 .. 5; Reserved_6_31 at 0 range 6 .. 31; end record; ----------------- -- Peripherals -- ----------------- -- MCU Debugger Mailbox type DBGMAILBOX_Peripheral is record -- CRC mode register CSW : aliased CSW_Register; -- CRC seed register REQUEST : aliased HAL.UInt32; -- Return value from ROM. RETURN_k : aliased HAL.UInt32; -- Identification register ID : aliased HAL.UInt32; end record with Volatile; for DBGMAILBOX_Peripheral use record CSW at 16#0# range 0 .. 31; REQUEST at 16#4# range 0 .. 31; RETURN_k at 16#8# range 0 .. 31; ID at 16#FC# range 0 .. 31; end record; -- MCU Debugger Mailbox DBGMAILBOX_Periph : aliased DBGMAILBOX_Peripheral with Import, Address => System'To_Address (16#4009C000#); end NXP_SVD.DBGMAILBOX;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- S Y S T E M . S T R I N G _ O P S _ C O N C A T _ 3 -- -- -- -- S p e c -- -- -- -- $Revision$ -- -- -- Copyright (C) 1992-2000, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 2, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING. If not, write -- -- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, -- -- MA 02111-1307, USA. -- -- -- -- As a special exception, if other files instantiate generics from this -- -- unit, or you link this unit with other files to produce an executable, -- -- this unit does not by itself cause the resulting executable to be -- -- covered by the GNU General Public License. This exception does not -- -- however invalidate any other reasons why the executable file might be -- -- covered by the GNU Public License. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- This package contains the function for concatenating three strings package System.String_Ops_Concat_3 is pragma Pure (String_Ops_Concat_3); function Str_Concat_3 (S1, S2, S3 : String) return String; -- Concatenate two strings and return resulting string end System.String_Ops_Concat_3;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- A D A . A S S E R T -- -- -- -- B o d y -- -- -- -- Copyright (C) 2007-2015, 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.Assertions with SPARK_Mode is ------------ -- Assert -- ------------ procedure Assert (Check : Boolean) is begin if Check = False then raise Ada.Assertions.Assertion_Error; end if; end Assert; procedure Assert (Check : Boolean; Message : String) is begin if Check = False then raise Ada.Assertions.Assertion_Error with Message; end if; end Assert; end Ada.Assertions;
------------------------------------------------------------------------------ -- -- -- THIS IS AN AUTOMATICALLY GENERATED FILE! DO NOT EDIT! -- -- -- -- WAVEFILES -- -- -- -- Test application -- -- -- -- The MIT License (MIT) -- -- -- -- Copyright (c) 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. -- ------------------------------------------------------------------------------ package body Generic_Float_PCM_Buffer_Ops is --------- -- "+" -- --------- function "+" (PCM_Ref : PCM_MC_Sample; PCM_DUT : PCM_MC_Sample) return PCM_MC_Sample is Max_Last : constant Positive := Positive'Max (PCM_Ref'Last, PCM_DUT'Last); PCM_Sum : PCM_MC_Sample (1 .. Max_Last); begin for I in 1 .. Max_Last loop PCM_Sum (I) := PCM_Ref (I) + PCM_DUT (I); end loop; return PCM_Sum; end "+"; --------- -- "-" -- --------- function "-" (PCM_Ref : PCM_MC_Sample; PCM_DUT : PCM_MC_Sample) return PCM_MC_Sample is Max_Last : constant Positive := Positive'Max (PCM_Ref'Last, PCM_DUT'Last); PCM_Diff : PCM_MC_Sample (1 .. Max_Last); begin for I in 1 .. Max_Last loop PCM_Diff (I) := PCM_Ref (I) - PCM_DUT (I); end loop; return PCM_Diff; end "-"; end Generic_Float_PCM_Buffer_Ops;
----------------------------------------------------------------------- -- AWA.OAuth.Models -- AWA.OAuth.Models ----------------------------------------------------------------------- -- File generated by ada-gen DO NOT MODIFY -- Template used: templates/model/package-spec.xhtml -- Ada Generator: https://ada-gen.googlecode.com/svn/trunk Revision 1095 ----------------------------------------------------------------------- -- Copyright (C) 2017 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. ----------------------------------------------------------------------- pragma Warnings (Off); with ADO.Sessions; with ADO.Objects; with ADO.Statements; with ADO.SQL; with ADO.Schemas; with Ada.Calendar; with Ada.Containers.Vectors; with Ada.Strings.Unbounded; with Util.Beans.Objects; with Util.Beans.Basic.Lists; with AWA.Users.Models; pragma Warnings (On); package AWA.OAuth.Models is pragma Style_Checks ("-mr"); type Application_Ref is new ADO.Objects.Object_Ref with null record; type Callback_Ref is new ADO.Objects.Object_Ref with null record; type Session_Ref is new ADO.Objects.Object_Ref with null record; -- -------------------- -- The application that is granted access to the database. -- -------------------- -- Create an object key for Application. function Application_Key (Id : in ADO.Identifier) return ADO.Objects.Object_Key; -- Create an object key for Application from a string. -- Raises Constraint_Error if the string cannot be converted into the object key. function Application_Key (Id : in String) return ADO.Objects.Object_Key; Null_Application : constant Application_Ref; function "=" (Left, Right : Application_Ref'Class) return Boolean; -- Set the application identifier. procedure Set_Id (Object : in out Application_Ref; Value : in ADO.Identifier); -- Get the application identifier. function Get_Id (Object : in Application_Ref) return ADO.Identifier; -- Set the application name. procedure Set_Name (Object : in out Application_Ref; Value : in Ada.Strings.Unbounded.Unbounded_String); procedure Set_Name (Object : in out Application_Ref; Value : in String); -- Get the application name. function Get_Name (Object : in Application_Ref) return Ada.Strings.Unbounded.Unbounded_String; function Get_Name (Object : in Application_Ref) return String; -- Set the application secret key. procedure Set_Secret_Key (Object : in out Application_Ref; Value : in Ada.Strings.Unbounded.Unbounded_String); procedure Set_Secret_Key (Object : in out Application_Ref; Value : in String); -- Get the application secret key. function Get_Secret_Key (Object : in Application_Ref) return Ada.Strings.Unbounded.Unbounded_String; function Get_Secret_Key (Object : in Application_Ref) return String; -- Set the application public identifier. procedure Set_Client_Id (Object : in out Application_Ref; Value : in Ada.Strings.Unbounded.Unbounded_String); procedure Set_Client_Id (Object : in out Application_Ref; Value : in String); -- Get the application public identifier. function Get_Client_Id (Object : in Application_Ref) return Ada.Strings.Unbounded.Unbounded_String; function Get_Client_Id (Object : in Application_Ref) return String; -- Get the optimistic lock version. function Get_Version (Object : in Application_Ref) return Integer; -- Set the application create date. procedure Set_Create_Date (Object : in out Application_Ref; Value : in Ada.Calendar.Time); -- Get the application create date. function Get_Create_Date (Object : in Application_Ref) return Ada.Calendar.Time; -- Set the application update date. procedure Set_Update_Date (Object : in out Application_Ref; Value : in Ada.Calendar.Time); -- Get the application update date. function Get_Update_Date (Object : in Application_Ref) return Ada.Calendar.Time; -- Set the application title displayed in the OAuth login form. procedure Set_Title (Object : in out Application_Ref; Value : in Ada.Strings.Unbounded.Unbounded_String); procedure Set_Title (Object : in out Application_Ref; Value : in String); -- Get the application title displayed in the OAuth login form. function Get_Title (Object : in Application_Ref) return Ada.Strings.Unbounded.Unbounded_String; function Get_Title (Object : in Application_Ref) return String; -- Set the application description. procedure Set_Description (Object : in out Application_Ref; Value : in Ada.Strings.Unbounded.Unbounded_String); procedure Set_Description (Object : in out Application_Ref; Value : in String); -- Get the application description. function Get_Description (Object : in Application_Ref) return Ada.Strings.Unbounded.Unbounded_String; function Get_Description (Object : in Application_Ref) return String; -- Set the optional login URL. procedure Set_App_Login_Url (Object : in out Application_Ref; Value : in Ada.Strings.Unbounded.Unbounded_String); procedure Set_App_Login_Url (Object : in out Application_Ref; Value : in String); -- Get the optional login URL. function Get_App_Login_Url (Object : in Application_Ref) return Ada.Strings.Unbounded.Unbounded_String; function Get_App_Login_Url (Object : in Application_Ref) return String; -- Set the application logo URL. procedure Set_App_Logo_Url (Object : in out Application_Ref; Value : in Ada.Strings.Unbounded.Unbounded_String); procedure Set_App_Logo_Url (Object : in out Application_Ref; Value : in String); -- Get the application logo URL. function Get_App_Logo_Url (Object : in Application_Ref) return Ada.Strings.Unbounded.Unbounded_String; function Get_App_Logo_Url (Object : in Application_Ref) return String; -- procedure Set_User (Object : in out Application_Ref; Value : in AWA.Users.Models.User_Ref'Class); -- function Get_User (Object : in Application_Ref) return AWA.Users.Models.User_Ref'Class; -- Load the entity identified by 'Id'. -- Raises the NOT_FOUND exception if it does not exist. procedure Load (Object : in out Application_Ref; Session : in out ADO.Sessions.Session'Class; Id : in ADO.Identifier); -- Load the entity identified by 'Id'. -- Returns True in <b>Found</b> if the object was found and False if it does not exist. procedure Load (Object : in out Application_Ref; Session : in out ADO.Sessions.Session'Class; Id : in ADO.Identifier; Found : out Boolean); -- Find and load the entity. overriding procedure Find (Object : in out Application_Ref; Session : in out ADO.Sessions.Session'Class; Query : in ADO.SQL.Query'Class; Found : out Boolean); -- Save the entity. If the entity does not have an identifier, an identifier is allocated -- and it is inserted in the table. Otherwise, only data fields which have been changed -- are updated. overriding procedure Save (Object : in out Application_Ref; Session : in out ADO.Sessions.Master_Session'Class); -- Delete the entity. overriding procedure Delete (Object : in out Application_Ref; Session : in out ADO.Sessions.Master_Session'Class); overriding function Get_Value (From : in Application_Ref; Name : in String) return Util.Beans.Objects.Object; -- Table definition APPLICATION_TABLE : constant ADO.Schemas.Class_Mapping_Access; -- Internal method to allocate the Object_Record instance overriding procedure Allocate (Object : in out Application_Ref); -- Copy of the object. procedure Copy (Object : in Application_Ref; Into : in out Application_Ref); package Application_Vectors is new Ada.Containers.Vectors (Index_Type => Natural, Element_Type => Application_Ref, "=" => "="); subtype Application_Vector is Application_Vectors.Vector; procedure List (Object : in out Application_Vector; Session : in out ADO.Sessions.Session'Class; Query : in ADO.SQL.Query'Class); -- Create an object key for Callback. function Callback_Key (Id : in ADO.Identifier) return ADO.Objects.Object_Key; -- Create an object key for Callback from a string. -- Raises Constraint_Error if the string cannot be converted into the object key. function Callback_Key (Id : in String) return ADO.Objects.Object_Key; Null_Callback : constant Callback_Ref; function "=" (Left, Right : Callback_Ref'Class) return Boolean; -- procedure Set_Id (Object : in out Callback_Ref; Value : in ADO.Identifier); -- function Get_Id (Object : in Callback_Ref) return ADO.Identifier; -- procedure Set_Url (Object : in out Callback_Ref; Value : in Ada.Strings.Unbounded.Unbounded_String); procedure Set_Url (Object : in out Callback_Ref; Value : in String); -- function Get_Url (Object : in Callback_Ref) return Ada.Strings.Unbounded.Unbounded_String; function Get_Url (Object : in Callback_Ref) return String; -- Get the optimistic lock version. function Get_Version (Object : in Callback_Ref) return Integer; -- procedure Set_Application (Object : in out Callback_Ref; Value : in AWA.OAuth.Models.Application_Ref'Class); -- function Get_Application (Object : in Callback_Ref) return AWA.OAuth.Models.Application_Ref'Class; -- Load the entity identified by 'Id'. -- Raises the NOT_FOUND exception if it does not exist. procedure Load (Object : in out Callback_Ref; Session : in out ADO.Sessions.Session'Class; Id : in ADO.Identifier); -- Load the entity identified by 'Id'. -- Returns True in <b>Found</b> if the object was found and False if it does not exist. procedure Load (Object : in out Callback_Ref; Session : in out ADO.Sessions.Session'Class; Id : in ADO.Identifier; Found : out Boolean); -- Find and load the entity. overriding procedure Find (Object : in out Callback_Ref; Session : in out ADO.Sessions.Session'Class; Query : in ADO.SQL.Query'Class; Found : out Boolean); -- Save the entity. If the entity does not have an identifier, an identifier is allocated -- and it is inserted in the table. Otherwise, only data fields which have been changed -- are updated. overriding procedure Save (Object : in out Callback_Ref; Session : in out ADO.Sessions.Master_Session'Class); -- Delete the entity. overriding procedure Delete (Object : in out Callback_Ref; Session : in out ADO.Sessions.Master_Session'Class); overriding function Get_Value (From : in Callback_Ref; Name : in String) return Util.Beans.Objects.Object; -- Table definition CALLBACK_TABLE : constant ADO.Schemas.Class_Mapping_Access; -- Internal method to allocate the Object_Record instance overriding procedure Allocate (Object : in out Callback_Ref); -- Copy of the object. procedure Copy (Object : in Callback_Ref; Into : in out Callback_Ref); package Callback_Vectors is new Ada.Containers.Vectors (Index_Type => Natural, Element_Type => Callback_Ref, "=" => "="); subtype Callback_Vector is Callback_Vectors.Vector; procedure List (Object : in out Callback_Vector; Session : in out ADO.Sessions.Session'Class; Query : in ADO.SQL.Query'Class); -- -------------------- -- The session is created when the user has granted an access to an application -- or when the application has refreshed its access token. -- -------------------- -- Create an object key for Session. function Session_Key (Id : in ADO.Identifier) return ADO.Objects.Object_Key; -- Create an object key for Session from a string. -- Raises Constraint_Error if the string cannot be converted into the object key. function Session_Key (Id : in String) return ADO.Objects.Object_Key; Null_Session : constant Session_Ref; function "=" (Left, Right : Session_Ref'Class) return Boolean; -- Set the session identifier. procedure Set_Id (Object : in out Session_Ref; Value : in ADO.Identifier); -- Get the session identifier. function Get_Id (Object : in Session_Ref) return ADO.Identifier; -- Set the session creation date. procedure Set_Create_Date (Object : in out Session_Ref; Value : in Ada.Calendar.Time); -- Get the session creation date. function Get_Create_Date (Object : in Session_Ref) return Ada.Calendar.Time; -- Set a random salt string to access/request token generation. procedure Set_Salt (Object : in out Session_Ref; Value : in Ada.Strings.Unbounded.Unbounded_String); procedure Set_Salt (Object : in out Session_Ref; Value : in String); -- Get a random salt string to access/request token generation. function Get_Salt (Object : in Session_Ref) return Ada.Strings.Unbounded.Unbounded_String; function Get_Salt (Object : in Session_Ref) return String; -- Set the expiration date. procedure Set_Expire_Date (Object : in out Session_Ref; Value : in Ada.Calendar.Time); -- Get the expiration date. function Get_Expire_Date (Object : in Session_Ref) return Ada.Calendar.Time; -- Set the application that is granted access. procedure Set_Application (Object : in out Session_Ref; Value : in AWA.OAuth.Models.Application_Ref'Class); -- Get the application that is granted access. function Get_Application (Object : in Session_Ref) return AWA.OAuth.Models.Application_Ref'Class; -- procedure Set_User (Object : in out Session_Ref; Value : in AWA.Users.Models.User_Ref'Class); -- function Get_User (Object : in Session_Ref) return AWA.Users.Models.User_Ref'Class; -- procedure Set_Session (Object : in out Session_Ref; Value : in AWA.Users.Models.Session_Ref'Class); -- function Get_Session (Object : in Session_Ref) return AWA.Users.Models.Session_Ref'Class; -- Load the entity identified by 'Id'. -- Raises the NOT_FOUND exception if it does not exist. procedure Load (Object : in out Session_Ref; Session : in out ADO.Sessions.Session'Class; Id : in ADO.Identifier); -- Load the entity identified by 'Id'. -- Returns True in <b>Found</b> if the object was found and False if it does not exist. procedure Load (Object : in out Session_Ref; Session : in out ADO.Sessions.Session'Class; Id : in ADO.Identifier; Found : out Boolean); -- Find and load the entity. overriding procedure Find (Object : in out Session_Ref; Session : in out ADO.Sessions.Session'Class; Query : in ADO.SQL.Query'Class; Found : out Boolean); -- Save the entity. If the entity does not have an identifier, an identifier is allocated -- and it is inserted in the table. Otherwise, only data fields which have been changed -- are updated. overriding procedure Save (Object : in out Session_Ref; Session : in out ADO.Sessions.Master_Session'Class); -- Delete the entity. overriding procedure Delete (Object : in out Session_Ref; Session : in out ADO.Sessions.Master_Session'Class); overriding function Get_Value (From : in Session_Ref; Name : in String) return Util.Beans.Objects.Object; -- Table definition SESSION_TABLE : constant ADO.Schemas.Class_Mapping_Access; -- Internal method to allocate the Object_Record instance overriding procedure Allocate (Object : in out Session_Ref); -- Copy of the object. procedure Copy (Object : in Session_Ref; Into : in out Session_Ref); package Session_Vectors is new Ada.Containers.Vectors (Index_Type => Natural, Element_Type => Session_Ref, "=" => "="); subtype Session_Vector is Session_Vectors.Vector; procedure List (Object : in out Session_Vector; Session : in out ADO.Sessions.Session'Class; Query : in ADO.SQL.Query'Class); private APPLICATION_NAME : aliased constant String := "awa_application"; COL_0_1_NAME : aliased constant String := "id"; COL_1_1_NAME : aliased constant String := "name"; COL_2_1_NAME : aliased constant String := "secret_key"; COL_3_1_NAME : aliased constant String := "client_id"; COL_4_1_NAME : aliased constant String := "version"; COL_5_1_NAME : aliased constant String := "create_date"; COL_6_1_NAME : aliased constant String := "update_date"; COL_7_1_NAME : aliased constant String := "title"; COL_8_1_NAME : aliased constant String := "description"; COL_9_1_NAME : aliased constant String := "app_login_url"; COL_10_1_NAME : aliased constant String := "app_logo_url"; COL_11_1_NAME : aliased constant String := "user_id"; APPLICATION_DEF : aliased constant ADO.Schemas.Class_Mapping := (Count => 12, Table => APPLICATION_NAME'Access, Members => ( 1 => COL_0_1_NAME'Access, 2 => COL_1_1_NAME'Access, 3 => COL_2_1_NAME'Access, 4 => COL_3_1_NAME'Access, 5 => COL_4_1_NAME'Access, 6 => COL_5_1_NAME'Access, 7 => COL_6_1_NAME'Access, 8 => COL_7_1_NAME'Access, 9 => COL_8_1_NAME'Access, 10 => COL_9_1_NAME'Access, 11 => COL_10_1_NAME'Access, 12 => COL_11_1_NAME'Access ) ); APPLICATION_TABLE : constant ADO.Schemas.Class_Mapping_Access := APPLICATION_DEF'Access; Null_Application : constant Application_Ref := Application_Ref'(ADO.Objects.Object_Ref with null record); type Application_Impl is new ADO.Objects.Object_Record (Key_Type => ADO.Objects.KEY_INTEGER, Of_Class => APPLICATION_DEF'Access) with record Name : Ada.Strings.Unbounded.Unbounded_String; Secret_Key : Ada.Strings.Unbounded.Unbounded_String; Client_Id : Ada.Strings.Unbounded.Unbounded_String; Version : Integer; Create_Date : Ada.Calendar.Time; Update_Date : Ada.Calendar.Time; Title : Ada.Strings.Unbounded.Unbounded_String; Description : Ada.Strings.Unbounded.Unbounded_String; App_Login_Url : Ada.Strings.Unbounded.Unbounded_String; App_Logo_Url : Ada.Strings.Unbounded.Unbounded_String; User : AWA.Users.Models.User_Ref; end record; type Application_Access is access all Application_Impl; overriding procedure Destroy (Object : access Application_Impl); overriding procedure Find (Object : in out Application_Impl; Session : in out ADO.Sessions.Session'Class; Query : in ADO.SQL.Query'Class; Found : out Boolean); overriding procedure Load (Object : in out Application_Impl; Session : in out ADO.Sessions.Session'Class); procedure Load (Object : in out Application_Impl; Stmt : in out ADO.Statements.Query_Statement'Class; Session : in out ADO.Sessions.Session'Class); overriding procedure Save (Object : in out Application_Impl; Session : in out ADO.Sessions.Master_Session'Class); procedure Create (Object : in out Application_Impl; Session : in out ADO.Sessions.Master_Session'Class); overriding procedure Delete (Object : in out Application_Impl; Session : in out ADO.Sessions.Master_Session'Class); procedure Set_Field (Object : in out Application_Ref'Class; Impl : out Application_Access); CALLBACK_NAME : aliased constant String := "awa_callback"; COL_0_2_NAME : aliased constant String := "id"; COL_1_2_NAME : aliased constant String := "url"; COL_2_2_NAME : aliased constant String := "version"; COL_3_2_NAME : aliased constant String := "application_id"; CALLBACK_DEF : aliased constant ADO.Schemas.Class_Mapping := (Count => 4, Table => CALLBACK_NAME'Access, Members => ( 1 => COL_0_2_NAME'Access, 2 => COL_1_2_NAME'Access, 3 => COL_2_2_NAME'Access, 4 => COL_3_2_NAME'Access ) ); CALLBACK_TABLE : constant ADO.Schemas.Class_Mapping_Access := CALLBACK_DEF'Access; Null_Callback : constant Callback_Ref := Callback_Ref'(ADO.Objects.Object_Ref with null record); type Callback_Impl is new ADO.Objects.Object_Record (Key_Type => ADO.Objects.KEY_INTEGER, Of_Class => CALLBACK_DEF'Access) with record Url : Ada.Strings.Unbounded.Unbounded_String; Version : Integer; Application : AWA.OAuth.Models.Application_Ref; end record; type Callback_Access is access all Callback_Impl; overriding procedure Destroy (Object : access Callback_Impl); overriding procedure Find (Object : in out Callback_Impl; Session : in out ADO.Sessions.Session'Class; Query : in ADO.SQL.Query'Class; Found : out Boolean); overriding procedure Load (Object : in out Callback_Impl; Session : in out ADO.Sessions.Session'Class); procedure Load (Object : in out Callback_Impl; Stmt : in out ADO.Statements.Query_Statement'Class; Session : in out ADO.Sessions.Session'Class); overriding procedure Save (Object : in out Callback_Impl; Session : in out ADO.Sessions.Master_Session'Class); procedure Create (Object : in out Callback_Impl; Session : in out ADO.Sessions.Master_Session'Class); overriding procedure Delete (Object : in out Callback_Impl; Session : in out ADO.Sessions.Master_Session'Class); procedure Set_Field (Object : in out Callback_Ref'Class; Impl : out Callback_Access); SESSION_NAME : aliased constant String := "awa_oauth_session"; COL_0_3_NAME : aliased constant String := "id"; COL_1_3_NAME : aliased constant String := "create_date"; COL_2_3_NAME : aliased constant String := "salt"; COL_3_3_NAME : aliased constant String := "expire_date"; COL_4_3_NAME : aliased constant String := "application_id"; COL_5_3_NAME : aliased constant String := "user_id"; COL_6_3_NAME : aliased constant String := "session_id"; SESSION_DEF : aliased constant ADO.Schemas.Class_Mapping := (Count => 7, Table => SESSION_NAME'Access, Members => ( 1 => COL_0_3_NAME'Access, 2 => COL_1_3_NAME'Access, 3 => COL_2_3_NAME'Access, 4 => COL_3_3_NAME'Access, 5 => COL_4_3_NAME'Access, 6 => COL_5_3_NAME'Access, 7 => COL_6_3_NAME'Access ) ); SESSION_TABLE : constant ADO.Schemas.Class_Mapping_Access := SESSION_DEF'Access; Null_Session : constant Session_Ref := Session_Ref'(ADO.Objects.Object_Ref with null record); type Session_Impl is new ADO.Objects.Object_Record (Key_Type => ADO.Objects.KEY_INTEGER, Of_Class => SESSION_DEF'Access) with record Create_Date : Ada.Calendar.Time; Salt : Ada.Strings.Unbounded.Unbounded_String; Expire_Date : Ada.Calendar.Time; Application : AWA.OAuth.Models.Application_Ref; User : AWA.Users.Models.User_Ref; Session : AWA.Users.Models.Session_Ref; end record; type Session_Access is access all Session_Impl; overriding procedure Destroy (Object : access Session_Impl); overriding procedure Find (Object : in out Session_Impl; Session : in out ADO.Sessions.Session'Class; Query : in ADO.SQL.Query'Class; Found : out Boolean); overriding procedure Load (Object : in out Session_Impl; Session : in out ADO.Sessions.Session'Class); procedure Load (Object : in out Session_Impl; Stmt : in out ADO.Statements.Query_Statement'Class; Session : in out ADO.Sessions.Session'Class); overriding procedure Save (Object : in out Session_Impl; Session : in out ADO.Sessions.Master_Session'Class); procedure Create (Object : in out Session_Impl; Session : in out ADO.Sessions.Master_Session'Class); overriding procedure Delete (Object : in out Session_Impl; Session : in out ADO.Sessions.Master_Session'Class); procedure Set_Field (Object : in out Session_Ref'Class; Impl : out Session_Access); end AWA.OAuth.Models;
pragma Ada_2012; pragma Style_Checks (Off); with Interfaces.C; use Interfaces.C; package bits_cpu_set_h is -- Definition of the cpu_set_t structure used by the POSIX 1003.1b-1993 -- scheduling interface. -- Copyright (C) 1996-2021 Free Software Foundation, Inc. -- This file is part of the GNU C Library. -- The GNU C Library is free software; you can redistribute it and/or -- modify it under the terms of the GNU Lesser General Public -- License as published by the Free Software Foundation; either -- version 2.1 of the License, or (at your option) any later version. -- The GNU C Library is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -- Lesser General Public License for more details. -- You should have received a copy of the GNU Lesser General Public -- License along with the GNU C Library; if not, see -- <https://www.gnu.org/licenses/>. -- Size definition for CPU sets. -- Type for array elements in 'cpu_set_t'. subtype uu_cpu_mask is unsigned_long; -- /usr/include/bits/cpu-set.h:32 -- Basic access functions. -- Data structure to describe CPU mask. -- skipped anonymous struct anon_16 type cpu_set_t_array1085 is array (0 .. 15) of aliased uu_cpu_mask; type cpu_set_t is record uu_bits : aliased cpu_set_t_array1085; -- /usr/include/bits/cpu-set.h:41 end record with Convention => C_Pass_By_Copy; -- /usr/include/bits/cpu-set.h:42 -- Access functions for CPU masks. -- skipped func __sched_cpucount -- skipped func __sched_cpualloc -- skipped func __sched_cpufree end bits_cpu_set_h;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- S Y S T E M . P A C K _ 5 8 -- -- -- -- 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. -- -- -- -- -- -- -- -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- Handling of packed arrays with Component_Size = 58 package System.Pack_58 is pragma Preelaborate; Bits : constant := 58; type Bits_58 is mod 2 ** Bits; for Bits_58'Size use Bits; function Get_58 (Arr : System.Address; N : Natural) return Bits_58; -- Arr is the address of the packed array, N is the zero-based -- subscript. This element is extracted and returned. procedure Set_58 (Arr : System.Address; N : Natural; E : Bits_58); -- Arr is the address of the packed array, N is the zero-based -- subscript. This element is set to the given value. function GetU_58 (Arr : System.Address; N : Natural) return Bits_58; -- Arr is the address of the packed array, N is the zero-based -- subscript. This element is extracted and returned. This version -- is used when Arr may represent an unaligned address. procedure SetU_58 (Arr : System.Address; N : Natural; E : Bits_58); -- Arr is the address of the packed array, N is the zero-based -- subscript. This element is set to the given value. This version -- is used when Arr may represent an unaligned address end System.Pack_58;
generic type Data is private; package Iface1 is type Future is synchronized interface; type Any_Future is access all Future; procedure Get (This : in out Future; P : out Data) is abstract; procedure Set (This : in out Future; P : in Data) is abstract; type Reusable_Future is synchronized interface and Future; type Any_Reusable_Future is access all Reusable_Future'Class; end Iface1;
with Ada.Containers.Ordered_Sets; with Ada.Unchecked_Deallocation; with Ada.Containers.Generic_Array_Sort; with Ada.Text_IO; package body Decipherer is package Character_Sets is new Ada.Containers.Ordered_Sets(Element_Type => Encrypted_Char); package IO renames Ada.Text_IO; type Priority_Pair is record item, priority : Integer; end record; type Priority_Pair_Array is Array(Positive range <>) of Priority_Pair; function "<"(a, b : Priority_Pair) return Boolean is begin return a.priority > b.priority; end "<"; procedure Priority_Pair_Sort is new Ada.Containers.Generic_Array_Sort(Index_Type => Positive, Element_Type => Priority_Pair, Array_Type => Priority_Pair_Array); type Mapping_Candidates is Array(Positive range 1 .. 26) of Character; type Char_Possibilities is record c : Encrypted_Char; num_possible : Natural; possibilities : Mapping_Candidates; end record; type Word_Possibilities is record is_using_root : Boolean; words : Word_List.Word_Vector; end record; type Guess_Order_Array is Array(Positive range <>) of Positive; type Char_Possibilities_Array is Array(Positive range <>) of Char_Possibilities; type Word_Possibilities_Array is Array(Positive range <>) of Word_Possibilities; type Word_Inclusion is Array(Positive range <>, Positive range <>) of Natural; type Letter_Toggle is Array(Positive range <>) of Boolean; type Word_Toggle is Array(Positive range <>) of Boolean; package Word_Vectors renames Word_List.Word_Vectors; function "="(a, b: Word_Vectors.Cursor) return Boolean renames Word_Vectors."="; procedure Free_Word_Vector is new Ada.Unchecked_Deallocation(Object => Word_Vectors.Vector, Name => Word_List.Word_Vector); type Decipher_State (num_words : Positive; num_letters : Positive) is record candidates : Candidate_Set(1 .. num_words); characters : Char_Possibilities_Array(1 .. num_letters); words : Word_Possibilities_Array(1 .. num_words); inclusion : Word_Inclusion(1 .. num_letters, 1 .. num_words); guess_order : Guess_Order_Array(1 .. num_letters); results : Result_Vector; end record; function Image(ew: Encrypted_Word) return Word_List.Word is w : Word_List.Word; begin for i in ew'Range loop w(i) := Character(ew(i)); end loop; return w; end Image; function Get_Character_Index(state : Decipher_State; c : Encrypted_Char) return Positive is begin for ci in state.characters'Range loop if c = state.characters(ci).c then return ci; end if; end loop; raise Constraint_Error; end Get_Character_Index; function Is_Word_Valid(state : Decipher_State; candidate : Encrypted_Word; word : Word_List.Word) return Boolean is begin for i in candidate'Range loop exit when candidate(i) = ' '; declare ci : constant Positive := Get_Character_Index(state, candidate(i)); c : constant Character := word(i); cp : Char_Possibilities renames state.characters(ci); found : Boolean := False; begin if cp.num_possible = 1 then found := cp.possibilities(1) = c; elsif cp.num_possible = 26 then found := True; else for j in 1 .. cp.num_possible loop if cp.possibilities(j) = c then found := True; exit; end if; end loop; end if; if not found then return False; end if; end; end loop; return True; end Is_Word_Valid; procedure Filter_Word_List(state : Decipher_State; candidate : Encrypted_Word; initial : Word_List.Word_Vector; final : Word_List.Word_Vector) is cur : Word_Vectors.Cursor := initial.First; begin while cur /= Word_Vectors.No_Element loop if Is_Word_Valid(state, candidate, Word_Vectors.Element(cur)) then final.Append(Word_Vectors.Element(cur)); end if; cur := Word_Vectors.Next(cur); end loop; end Filter_Word_List; procedure Put_Possible(cp: Char_Possibilities) is begin for i in 1 .. cp.Num_Possible loop IO.Put(cp.possibilities(i)); end loop; IO.New_Line; end Put_Possible; procedure Put_Inclusion(state: Decipher_State) is begin for i in 1 .. state.Num_Letters loop IO.Put(Encrypted_Char'Image(state.characters(i).c) & ": "); for j in 1 .. state.Num_Words loop exit when state.inclusion(i, j) = 0; IO.Put(Natural'Image(state.inclusion(i, j))); end loop; IO.New_Line; end loop; end Put_Inclusion; procedure Put_Solution(state : Decipher_State) is begin IO.Put_Line("Found Solution"); for ci in 1 .. state.num_letters loop IO.Put(Character(state.characters(ci).c)); if state.characters(ci).num_possible /= 1 then IO.Put_Line(": Invalid State"); return; end if; end loop; IO.New_Line; for ci in 1 .. state.num_letters loop IO.Put(state.characters(ci).possibilities(1)); end loop; IO.New_Line; for wi in 1 .. state.num_words loop IO.Put(Image(state.candidates(wi)) & ": "); if Natural(state.words(wi).words.all.Length) = 1 then IO.Put_Line(state.words(wi).words.First_Element); else IO.Put_Line("*Invalid: " & Ada.Containers.Count_Type'Image(state.words(wi).words.all.Length) & " Words"); end if; end loop; IO.Put_Line("--------------------------"); end Put_Solution; procedure Make_Unique(state : in out Decipher_State; ci : Positive; success : out Boolean; changed : in out Letter_Toggle) is letter : constant Character := state.characters(ci).possibilities(1); begin success := True; -- IO.Put_Line("Determined that " & Encrypted_Char'Image(state.characters(ci).c) & " has to be a " & Character'Image(letter)); for i in state.characters'Range loop if i /= ci then declare cp : Char_Possibilities renames state.characters(i); begin for j in 1 .. cp.num_possible loop if cp.possibilities(j) = letter then if cp.num_possible = 1 then success := False; return; else -- IO.Put("Before: "); Put_Possible(cp); cp.possibilities(j .. cp.num_possible - 1) := cp.possibilities(j + 1 .. cp.num_possible); cp.num_possible := cp.num_possible - 1; -- IO.Put("After: "); Put_Possible(cp); changed(i) := True; if cp.num_possible = 1 then -- IO.Put_Line("Make_Unique from Make_Unique"); Make_Unique(state, i, success, changed); if not success then return; end if; end if; exit; end if; end if; end loop; end; end if; end loop; end Make_Unique; procedure Constrain_Letters(state : in out Decipher_State; wi : Positive; success : out Boolean; changed : in out Letter_Toggle) is ci : Positive; cur : Word_Vectors.Cursor := state.words(wi).words.all.First; word : Word_List.Word; seen : Array(Positive range 1 .. state.num_letters, Character range 'a' .. 'z') of Boolean := (others => (others => False)); used : Array(Positive range 1 .. state.num_letters) of Boolean := (others => False); begin success := True; while cur /= Word_Vectors.No_Element loop word := Word_Vectors.Element(cur); for i in word'Range loop exit when word(i) = ' '; ci := Get_Character_Index(state, state.candidates(wi)(i)); seen(ci, word(i)) := True; used(ci) := True; end loop; cur := Word_Vectors.Next(cur); end loop; for i in used'range loop if used(i) then -- IO.Put("Seen: "); -- for c in Character range 'a' .. 'z' loop -- if (seen(i, c)) then -- IO.Put(c); -- end if; -- end loop; -- IO.New_Line; declare cp : Char_Possibilities renames state.characters(i); shrunk : Boolean := False; write_head : Natural := 0; begin -- IO.Put("Before: "); Put_Possible(cp); for read_head in 1 .. cp.Num_Possible loop if seen(i, cp.possibilities(read_head)) then write_head := write_head + 1; if write_head /= read_head then cp.possibilities(write_head) := cp.possibilities(read_head); end if; else shrunk := True; end if; end loop; cp.Num_Possible := write_head; -- IO.Put("After: "); Put_Possible(cp); if Shrunk then changed(i) := True; if cp.Num_Possible = 0 then success := False; return; elsif cp.Num_Possible = 1 then -- IO.Put_Line("Make_Unique from Constrain_Letters"); Make_Unique(state, i, success, changed); if not success then return; end if; end if; end if; end; end if; end loop; end Constrain_Letters; procedure Check_Constraints(state : in out Decipher_State; changed : Letter_Toggle; success : out Boolean) is words : Word_Toggle(1 .. state.num_words) := (others => False); follow_up : Letter_Toggle(1 .. state.num_letters) := (others => False); any_changed : Boolean := False; begin success := True; for i in 1 .. state.num_letters loop if changed(i) then any_changed := True; for j in 1 .. state.num_words loop exit when state.inclusion(i, j) = 0; words(state.inclusion(i, j)) := True; end loop; end if; end loop; if not any_changed then return; end if; for i in 1 .. state.num_words loop if words(i) then declare new_words : Word_List.Word_Vector := new Word_Vectors.Vector; begin Filter_Word_List(state, state.candidates(i), state.words(i).words, new_words); if Natural(new_words.Length) = 0 then Free_Word_Vector(new_words); success := False; return; elsif Natural(new_words.Length) = Natural(state.words(i).words.Length) then -- IO.Put_Line("Word set for " & Positive'Image(i) & "(" & Image(state.candidates(i)) & ") did not shrink from " & Ada.Containers.Count_Type'Image(state.words(i).words.all.Length)); Free_Word_Vector(new_Words); else -- IO.Put_Line("Restricting word set for " & Positive'Image(i) & "(" & Image(state.candidates(i)) & ") from " & Ada.Containers.Count_Type'Image(state.words(i).words.all.Length) & " to " & Ada.Containers.Count_Type'Image(new_words.all.Length)); if state.words(i).is_using_root then state.words(i).is_using_root := False; else Free_Word_Vector(state.words(i).words); end if; state.words(i).words := new_words; Constrain_Letters(state, i, success, follow_up); if not success then return; end if; end if; end; end if; end loop; Check_Constraints(state, follow_up, success); end Check_Constraints; procedure Guess_Letter(state : in out Decipher_State; gi : Positive) is begin if gi > state.num_letters then declare result : Result_Set := (others => '.'); begin -- Put_Solution(state); for ci in 1 .. state.num_letters loop if state.characters(ci).num_possible /= 1 then raise Constraint_Error; end if; result(state.characters(ci).c) := state.characters(ci).possibilities(1); end loop; for wi in 1 .. state.num_words loop if Natural(state.words(wi).words.all.Length) /= 1 then raise Constraint_Error; end if; end loop; state.results.Append(result); end; else declare ci : constant Positive := state.guess_order(gi); begin if state.characters(ci).num_possible = 1 then -- Nothing to do, pass it up the line Guess_Letter(state, gi + 1); else declare success : Boolean; changed : Letter_Toggle(1 .. state.num_letters); characters : constant Char_Possibilities_Array := state.characters; words : constant Word_Possibilities_Array := state.words; cp : Char_Possibilities renames characters(ci); begin for mi in 1 .. cp.num_possible loop changed := (others => False); changed(ci) := True; state.characters(ci).possibilities(1) := characters(ci).possibilities(mi); -- IO.Put_Line("Guessing " & Character'Image(state.characters(ci).possibilities(mi)) & " for " & Encrypted_Char'Image(state.characters(ci).c)); state.characters(ci).num_possible := 1; for wi in 1 .. state.num_words loop state.words(wi).is_using_root := True; end loop; -- IO.Put_Line("Make_Unique from Guess_Letter"); Make_Unique(state, ci, success, changed); if success then Check_Constraints(state, changed, success); if success then Guess_Letter(state, gi + 1); end if; end if; for wi in 1 .. state.num_words loop if not state.words(wi).is_using_root then Free_Word_Vector(state.words(wi).words); end if; end loop; -- IO.Put_Line("Restore Letter guess for " & Positive'Image(ci)); state.characters := characters; state.words := words; end loop; end; end if; end; end if; end Guess_Letter; function Decipher(candidates: Candidate_Set; words: Word_List.Word_List) return Result_Vector is letters : Character_Sets.Set; begin for ci in candidates'Range loop for i in candidates(ci)'Range loop exit when candidates(ci)(i) = ' '; letters.Include(candidates(ci)(i)); end loop; end loop; declare num_words : constant Positive := Positive(candidates'Length); num_letters : constant Positive := Positive(letters.Length); state : Decipher_State(num_words, num_letters); cur : Character_Sets.Cursor := letters.First; inclusion_priority : Priority_Pair_Array(1 .. num_letters); begin state.candidates := candidates; state.inclusion := (others => (others => 0)); for i in 1 .. num_letters loop state.characters(i).c := Character_Sets.Element(cur); state.characters(i).num_possible := 26; inclusion_priority(i) := (item => i, priority => 0); for l in Character range 'a' .. 'z' loop state.characters(i).possibilities(Character'Pos(l) - Character'Pos('a') + 1) := l; end loop; cur := Character_Sets.Next(cur); end loop; for i in 1 .. num_words loop for l in candidates(Candidates'First + i - 1)'Range loop declare c : constant Encrypted_Char := candidates(Candidates'First + i - 1)(l); ci : Positive; begin exit when c = ' '; ci := Get_Character_Index(state, c); for mi in 1 .. num_words loop if state.inclusion(ci, mi) = 0 then state.inclusion(ci, mi) := i; inclusion_priority(ci).priority := mi; exit; elsif state.inclusion(ci, mi) = i then exit; end if; end loop; end; end loop; state.words(i).is_using_root := True; state.words(i).words := words.Element(Word_List.Make_Pattern(Image(candidates(i)))); end loop; Priority_Pair_Sort(inclusion_priority); -- Put_Inclusion(state); for i in inclusion_priority'range loop state.guess_order(i) := inclusion_priority(i).item; -- IO.Put_Line("Guess " & Integer'Image(i) & " is " & Encrypted_Char'Image(state.characters(inclusion_priority(i).item).c) & " with " & Integer'Image(inclusion_priority(i).priority) & " words connected to it"); end loop; Guess_Letter(state, 1); return state.results; end; end Decipher; end Decipherer;
<?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>brightness_color_adj</name> <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>src_data_stream_0_V</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>src.data_stream[0].V</originalName> <rtlName/> <coreName>FIFO</coreName> </Obj> <bitwidth>32</bitwidth> </Value> <direction>0</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs class_id="7" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_2"> <Value> <Obj> <type>1</type> <id>2</id> <name>src_data_stream_1_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>src.data_stream[1].V</originalName> <rtlName/> <coreName>FIFO</coreName> </Obj> <bitwidth>32</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="_3"> <Value> <Obj> <type>1</type> <id>3</id> <name>src_data_stream_2_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>src.data_stream[2].V</originalName> <rtlName/> <coreName>FIFO</coreName> </Obj> <bitwidth>32</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="_4"> <Value> <Obj> <type>1</type> <id>4</id> <name>dst_data_stream_0_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>dst.data_stream[0].V</originalName> <rtlName/> <coreName>FIFO</coreName> </Obj> <bitwidth>32</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_5"> <Value> <Obj> <type>1</type> <id>5</id> <name>dst_data_stream_1_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>dst.data_stream[1].V</originalName> <rtlName/> <coreName>FIFO</coreName> </Obj> <bitwidth>32</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_6"> <Value> <Obj> <type>1</type> <id>6</id> <name>dst_data_stream_2_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>dst.data_stream[2].V</originalName> <rtlName/> <coreName>FIFO</coreName> </Obj> <bitwidth>32</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_7"> <Value> <Obj> <type>1</type> <id>7</id> <name>brightness_index_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <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="_8"> <Value> <Obj> <type>1</type> <id>8</id> <name>color_correct_V</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> <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>44</count> <item_version>0</item_version> <item class_id="9" tracking_level="1" version="0" object_id="_9"> <Value> <Obj> <type>0</type> <id>18</id> <name>color_correct_V_read</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> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>85</item> <item>86</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>9</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_10"> <Value> <Obj> <type>0</type> <id>19</id> <name>brightness_index_V_r</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>88</item> <item>89</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="_11"> <Value> <Obj> <type>0</type> <id>20</id> <name>tmp</name> <fileName>hls_video_processor/hls_video_processor.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>270</lineNumber> <contextFuncName>brightness_color_adjust</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item class_id="11" tracking_level="0" version="0"> <first>C:\Users\byronxu\Documents\6.S193</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>hls_video_processor/hls_video_processor.cpp</first> <second>brightness_color_adjust</second> </first> <second>270</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_fu_202_p1</rtlName> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>90</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>2</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_12"> <Value> <Obj> <type>0</type> <id>21</id> <name>lut_perceptual_brigh_3</name> <fileName>hls_video_processor/hls_video_processor.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>270</lineNumber> <contextFuncName>brightness_color_adjust</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\byronxu\Documents\6.S193</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_video_processor/hls_video_processor.cpp</first> <second>brightness_color_adjust</second> </first> <second>270</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>91</item> <item>93</item> <item>94</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>3</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_13"> <Value> <Obj> <type>0</type> <id>22</id> <name>scale_b_2</name> <fileName>hls_video_processor/hls_video_processor.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>270</lineNumber> <contextFuncName>brightness_color_adjust</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\byronxu\Documents\6.S193</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_video_processor/hls_video_processor.cpp</first> <second>brightness_color_adjust</second> </first> <second>270</second> </item> </second> </item> </inlineStackInfo> <originalName>scale_b</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>95</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>3.25</m_delay> <m_topoIndex>4</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_14"> <Value> <Obj> <type>0</type> <id>23</id> <name>scale_r_cast</name> <fileName>hls_video_processor/hls_video_processor.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>270</lineNumber> <contextFuncName>brightness_color_adjust</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\byronxu\Documents\6.S193</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_video_processor/hls_video_processor.cpp</first> <second>brightness_color_adjust</second> </first> <second>270</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>scale_r_cast_fu_209_p1</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>96</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>10</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_15"> <Value> <Obj> <type>0</type> <id>24</id> <name>lut_perceptual_brigh_4</name> <fileName>hls_video_processor/hls_video_processor.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>271</lineNumber> <contextFuncName>brightness_color_adjust</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\byronxu\Documents\6.S193</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_video_processor/hls_video_processor.cpp</first> <second>brightness_color_adjust</second> </first> <second>271</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>97</item> <item>98</item> <item>99</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>5</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_16"> <Value> <Obj> <type>0</type> <id>25</id> <name>scale_g</name> <fileName>hls_video_processor/hls_video_processor.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>271</lineNumber> <contextFuncName>brightness_color_adjust</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\byronxu\Documents\6.S193</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_video_processor/hls_video_processor.cpp</first> <second>brightness_color_adjust</second> </first> <second>271</second> </item> </second> </item> </inlineStackInfo> <originalName>scale_g</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>100</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>3.25</m_delay> <m_topoIndex>6</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_17"> <Value> <Obj> <type>0</type> <id>26</id> <name>scale_g_cast2</name> <fileName>hls_video_processor/hls_video_processor.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>271</lineNumber> <contextFuncName>brightness_color_adjust</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\byronxu\Documents\6.S193</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_video_processor/hls_video_processor.cpp</first> <second>brightness_color_adjust</second> </first> <second>271</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>scale_g_cast2_fu_213_p1</rtlName> <coreName/> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>101</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>11</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_18"> <Value> <Obj> <type>0</type> <id>27</id> <name>lut_perceptual_brigh_5</name> <fileName>hls_video_processor/hls_video_processor.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>272</lineNumber> <contextFuncName>brightness_color_adjust</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\byronxu\Documents\6.S193</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_video_processor/hls_video_processor.cpp</first> <second>brightness_color_adjust</second> </first> <second>272</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>102</item> <item>103</item> <item>104</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>7</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_19"> <Value> <Obj> <type>0</type> <id>28</id> <name>scale_b</name> <fileName>hls_video_processor/hls_video_processor.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>272</lineNumber> <contextFuncName>brightness_color_adjust</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\byronxu\Documents\6.S193</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_video_processor/hls_video_processor.cpp</first> <second>brightness_color_adjust</second> </first> <second>272</second> </item> </second> </item> </inlineStackInfo> <originalName>scale_b</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>105</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>3.25</m_delay> <m_topoIndex>8</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_20"> <Value> <Obj> <type>0</type> <id>29</id> <name>scale_b_cast1</name> <fileName>hls_video_processor/hls_video_processor.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>272</lineNumber> <contextFuncName>brightness_color_adjust</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\byronxu\Documents\6.S193</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_video_processor/hls_video_processor.cpp</first> <second>brightness_color_adjust</second> </first> <second>272</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>scale_b_cast1_fu_217_p1</rtlName> <coreName/> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>106</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>12</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_21"> <Value> <Obj> <type>0</type> <id>30</id> <name>scale_g2</name> <fileName>hls_video_processor/hls_video_processor.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>270</lineNumber> <contextFuncName>brightness_color_adjust</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\byronxu\Documents\6.S193</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_video_processor/hls_video_processor.cpp</first> <second>brightness_color_adjust</second> </first> <second>270</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>scale_g2_fu_221_p3</rtlName> <coreName/> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>107</item> <item>108</item> <item>109</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.96</m_delay> <m_topoIndex>13</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_22"> <Value> <Obj> <type>0</type> <id>31</id> <name>scale_b2</name> <fileName>hls_video_processor/hls_video_processor.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>270</lineNumber> <contextFuncName>brightness_color_adjust</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\byronxu\Documents\6.S193</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_video_processor/hls_video_processor.cpp</first> <second>brightness_color_adjust</second> </first> <second>270</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>scale_b2_fu_229_p3</rtlName> <coreName/> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>110</item> <item>111</item> <item>112</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.96</m_delay> <m_topoIndex>14</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_23"> <Value> <Obj> <type>0</type> <id>32</id> <name>scale_g2_cast</name> <fileName>hls_video_processor/hls_video_processor.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>279</lineNumber> <contextFuncName>brightness_color_adjust</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\byronxu\Documents\6.S193</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_video_processor/hls_video_processor.cpp</first> <second>brightness_color_adjust</second> </first> <second>279</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>scale_g2_cast_fu_237_p1</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>113</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>15</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_24"> <Value> <Obj> <type>0</type> <id>33</id> <name>scale_b2_cast</name> <fileName>hls_video_processor/hls_video_processor.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>279</lineNumber> <contextFuncName>brightness_color_adjust</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\byronxu\Documents\6.S193</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_video_processor/hls_video_processor.cpp</first> <second>brightness_color_adjust</second> </first> <second>279</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>scale_b2_cast_fu_241_p1</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>114</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>16</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_25"> <Value> <Obj> <type>0</type> <id>34</id> <name/> <fileName>hls_video_processor/hls_video_processor.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>279</lineNumber> <contextFuncName>brightness_color_adjust</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\byronxu\Documents\6.S193</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_video_processor/hls_video_processor.cpp</first> <second>brightness_color_adjust</second> </first> <second>279</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>115</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.76</m_delay> <m_topoIndex>17</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_26"> <Value> <Obj> <type>0</type> <id>36</id> <name>t_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>r.V</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>117</item> <item>118</item> <item>119</item> <item>120</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>18</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_27"> <Value> <Obj> <type>0</type> <id>37</id> <name>exitcond4</name> <fileName>hls_video_processor/hls_video_processor.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>279</lineNumber> <contextFuncName>brightness_color_adjust</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\byronxu\Documents\6.S193</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_video_processor/hls_video_processor.cpp</first> <second>brightness_color_adjust</second> </first> <second>279</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>exitcond4_fu_245_p2</rtlName> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>121</item> <item>123</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.36</m_delay> <m_topoIndex>19</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_28"> <Value> <Obj> <type>0</type> <id>39</id> <name>r_V</name> <fileName>hls_video_processor/hls_video_processor.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>279</lineNumber> <contextFuncName>brightness_color_adjust</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\byronxu\Documents\6.S193</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_video_processor/hls_video_processor.cpp</first> <second>brightness_color_adjust</second> </first> <second>279</second> </item> </second> </item> </inlineStackInfo> <originalName>r.V</originalName> <rtlName>r_V_fu_251_p2</rtlName> <coreName/> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>124</item> <item>126</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.78</m_delay> <m_topoIndex>20</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_29"> <Value> <Obj> <type>0</type> <id>40</id> <name/> <fileName>hls_video_processor/hls_video_processor.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>279</lineNumber> <contextFuncName>brightness_color_adjust</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\byronxu\Documents\6.S193</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_video_processor/hls_video_processor.cpp</first> <second>brightness_color_adjust</second> </first> <second>279</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>127</item> <item>128</item> <item>129</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>21</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_30"> <Value> <Obj> <type>0</type> <id>44</id> <name/> <fileName>hls_video_processor/hls_video_processor.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>280</lineNumber> <contextFuncName>brightness_color_adjust</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\byronxu\Documents\6.S193</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_video_processor/hls_video_processor.cpp</first> <second>brightness_color_adjust</second> </first> <second>280</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>130</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.76</m_delay> <m_topoIndex>22</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_31"> <Value> <Obj> <type>0</type> <id>46</id> <name>t_V_3</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>c.V</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>6</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>132</item> <item>133</item> <item>134</item> <item>135</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>24</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_32"> <Value> <Obj> <type>0</type> <id>47</id> <name>exitcond</name> <fileName>hls_video_processor/hls_video_processor.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>280</lineNumber> <contextFuncName>brightness_color_adjust</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\byronxu\Documents\6.S193</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_video_processor/hls_video_processor.cpp</first> <second>brightness_color_adjust</second> </first> <second>280</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>exitcond_fu_257_p2</rtlName> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>136</item> <item>138</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.42</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>49</id> <name>c_V</name> <fileName>hls_video_processor/hls_video_processor.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>280</lineNumber> <contextFuncName>brightness_color_adjust</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\byronxu\Documents\6.S193</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_video_processor/hls_video_processor.cpp</first> <second>brightness_color_adjust</second> </first> <second>280</second> </item> </second> </item> </inlineStackInfo> <originalName>c.V</originalName> <rtlName>c_V_fu_263_p2</rtlName> <coreName/> </Obj> <bitwidth>6</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>139</item> <item>141</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.82</m_delay> <m_topoIndex>26</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_34"> <Value> <Obj> <type>0</type> <id>50</id> <name/> <fileName>hls_video_processor/hls_video_processor.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>280</lineNumber> <contextFuncName>brightness_color_adjust</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\byronxu\Documents\6.S193</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_video_processor/hls_video_processor.cpp</first> <second>brightness_color_adjust</second> </first> <second>280</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>142</item> <item>143</item> <item>144</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>27</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_35"> <Value> <Obj> <type>0</type> <id>57</id> <name>tmp_32</name> <fileName>C:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_core.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>679</lineNumber> <contextFuncName>read</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\byronxu\Documents\6.S193</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_core.h</first> <second>operator&amp;gt;&amp;gt;</second> </first> <second>711</second> </item> <item> <first> <first>C:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_core.h</first> <second>read</second> </first> <second>679</second> </item> <item> <first> <first>hls_video_processor/hls_video_processor.cpp</first> <second>brightness_color_adjust</second> </first> <second>287</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>146</item> <item>147</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>2.88</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>58</id> <name>tmp_33</name> <fileName>C:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_core.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>679</lineNumber> <contextFuncName>read</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\byronxu\Documents\6.S193</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_core.h</first> <second>operator&amp;gt;&amp;gt;</second> </first> <second>711</second> </item> <item> <first> <first>C:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_core.h</first> <second>read</second> </first> <second>679</second> </item> <item> <first> <first>hls_video_processor/hls_video_processor.cpp</first> <second>brightness_color_adjust</second> </first> <second>287</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>148</item> <item>149</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>2.88</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>59</id> <name>tmp_31</name> <fileName>C:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_core.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>679</lineNumber> <contextFuncName>read</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\byronxu\Documents\6.S193</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_core.h</first> <second>operator&amp;gt;&amp;gt;</second> </first> <second>711</second> </item> <item> <first> <first>C:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_core.h</first> <second>read</second> </first> <second>679</second> </item> <item> <first> <first>hls_video_processor/hls_video_processor.cpp</first> <second>brightness_color_adjust</second> </first> <second>287</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>150</item> <item>151</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>2.88</m_delay> <m_topoIndex>30</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_38"> <Value> <Obj> <type>0</type> <id>61</id> <name>tmp_s</name> <fileName>hls_video_processor/hls_video_processor.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>291</lineNumber> <contextFuncName>brightness_color_adjust</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\byronxu\Documents\6.S193</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_video_processor/hls_video_processor.cpp</first> <second>brightness_color_adjust</second> </first> <second>291</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>hls_video_processibs_U40</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>152</item> <item>153</item> </oprand_edges> <opcode>mul</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>5.74</m_delay> <m_topoIndex>31</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_39"> <Value> <Obj> <type>0</type> <id>62</id> <name>tmp_19</name> <fileName>hls_video_processor/hls_video_processor.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>291</lineNumber> <contextFuncName>brightness_color_adjust</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\byronxu\Documents\6.S193</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_video_processor/hls_video_processor.cpp</first> <second>brightness_color_adjust</second> </first> <second>291</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_19_reg_385</rtlName> <coreName/> </Obj> <bitwidth>24</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>155</item> <item>156</item> <item>158</item> <item>160</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>33</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_40"> <Value> <Obj> <type>0</type> <id>63</id> <name>tmp_20</name> <fileName>hls_video_processor/hls_video_processor.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>291</lineNumber> <contextFuncName>brightness_color_adjust</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\byronxu\Documents\6.S193</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_video_processor/hls_video_processor.cpp</first> <second>brightness_color_adjust</second> </first> <second>291</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp</originalName> <rtlName>dst_data_stream_0_V_din</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>161</item> </oprand_edges> <opcode>sext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>37</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_21</name> <fileName>hls_video_processor/hls_video_processor.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>292</lineNumber> <contextFuncName>brightness_color_adjust</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\byronxu\Documents\6.S193</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_video_processor/hls_video_processor.cpp</first> <second>brightness_color_adjust</second> </first> <second>292</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>hls_video_processibs_U41</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>162</item> <item>163</item> </oprand_edges> <opcode>mul</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>5.74</m_delay> <m_topoIndex>32</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>tmp_22</name> <fileName>hls_video_processor/hls_video_processor.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>292</lineNumber> <contextFuncName>brightness_color_adjust</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\byronxu\Documents\6.S193</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_video_processor/hls_video_processor.cpp</first> <second>brightness_color_adjust</second> </first> <second>292</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_22_reg_390</rtlName> <coreName/> </Obj> <bitwidth>24</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>164</item> <item>165</item> <item>166</item> <item>167</item> </oprand_edges> <opcode>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>35</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_43"> <Value> <Obj> <type>0</type> <id>66</id> <name>tmp_23</name> <fileName>hls_video_processor/hls_video_processor.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>292</lineNumber> <contextFuncName>brightness_color_adjust</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\byronxu\Documents\6.S193</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_video_processor/hls_video_processor.cpp</first> <second>brightness_color_adjust</second> </first> <second>292</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp</originalName> <rtlName>dst_data_stream_1_V_din</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>168</item> </oprand_edges> <opcode>sext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>38</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_44"> <Value> <Obj> <type>0</type> <id>67</id> <name>tmp_24</name> <fileName>hls_video_processor/hls_video_processor.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>293</lineNumber> <contextFuncName>brightness_color_adjust</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\byronxu\Documents\6.S193</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_video_processor/hls_video_processor.cpp</first> <second>brightness_color_adjust</second> </first> <second>293</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>hls_video_processibs_U42</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>169</item> <item>170</item> </oprand_edges> <opcode>mul</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>5.74</m_delay> <m_topoIndex>34</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_45"> <Value> <Obj> <type>0</type> <id>68</id> <name>tmp_25</name> <fileName>hls_video_processor/hls_video_processor.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>293</lineNumber> <contextFuncName>brightness_color_adjust</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\byronxu\Documents\6.S193</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_video_processor/hls_video_processor.cpp</first> <second>brightness_color_adjust</second> </first> <second>293</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_25_reg_395</rtlName> <coreName/> </Obj> <bitwidth>24</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>171</item> <item>172</item> <item>173</item> <item>174</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>36</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_46"> <Value> <Obj> <type>0</type> <id>69</id> <name>tmp_26</name> <fileName>hls_video_processor/hls_video_processor.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>293</lineNumber> <contextFuncName>brightness_color_adjust</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\byronxu\Documents\6.S193</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_video_processor/hls_video_processor.cpp</first> <second>brightness_color_adjust</second> </first> <second>293</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp</originalName> <rtlName>dst_data_stream_2_V_din</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>175</item> </oprand_edges> <opcode>sext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>39</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_47"> <Value> <Obj> <type>0</type> <id>72</id> <name/> <fileName>C:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_core.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>703</lineNumber> <contextFuncName>write</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\byronxu\Documents\6.S193</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_core.h</first> <second>operator&amp;lt;&amp;lt;</second> </first> <second>717</second> </item> <item> <first> <first>C:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_core.h</first> <second>write</second> </first> <second>703</second> </item> <item> <first> <first>hls_video_processor/hls_video_processor.cpp</first> <second>brightness_color_adjust</second> </first> <second>295</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>177</item> <item>178</item> <item>179</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>2.88</m_delay> <m_topoIndex>40</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_48"> <Value> <Obj> <type>0</type> <id>73</id> <name/> <fileName>C:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_core.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>703</lineNumber> <contextFuncName>write</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\byronxu\Documents\6.S193</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_core.h</first> <second>operator&amp;lt;&amp;lt;</second> </first> <second>717</second> </item> <item> <first> <first>C:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_core.h</first> <second>write</second> </first> <second>703</second> </item> <item> <first> <first>hls_video_processor/hls_video_processor.cpp</first> <second>brightness_color_adjust</second> </first> <second>295</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>180</item> <item>181</item> <item>182</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>2.88</m_delay> <m_topoIndex>41</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_49"> <Value> <Obj> <type>0</type> <id>74</id> <name/> <fileName>C:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_core.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>703</lineNumber> <contextFuncName>write</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\byronxu\Documents\6.S193</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_core.h</first> <second>operator&amp;lt;&amp;lt;</second> </first> <second>717</second> </item> <item> <first> <first>C:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_core.h</first> <second>write</second> </first> <second>703</second> </item> <item> <first> <first>hls_video_processor/hls_video_processor.cpp</first> <second>brightness_color_adjust</second> </first> <second>295</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>183</item> <item>184</item> <item>185</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>2.88</m_delay> <m_topoIndex>42</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_50"> <Value> <Obj> <type>0</type> <id>77</id> <name/> <fileName>hls_video_processor/hls_video_processor.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>280</lineNumber> <contextFuncName>brightness_color_adjust</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\byronxu\Documents\6.S193</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_video_processor/hls_video_processor.cpp</first> <second>brightness_color_adjust</second> </first> <second>280</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>186</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="_51"> <Value> <Obj> <type>0</type> <id>80</id> <name/> <fileName>hls_video_processor/hls_video_processor.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>279</lineNumber> <contextFuncName>brightness_color_adjust</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\byronxu\Documents\6.S193</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_video_processor/hls_video_processor.cpp</first> <second>brightness_color_adjust</second> </first> <second>279</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>187</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>44</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_52"> <Value> <Obj> <type>0</type> <id>82</id> <name/> <fileName>hls_video_processor/hls_video_processor.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>298</lineNumber> <contextFuncName>brightness_color_adjust</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\byronxu\Documents\6.S193</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_video_processor/hls_video_processor.cpp</first> <second>brightness_color_adjust</second> </first> <second>298</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>0</count> <item_version>0</item_version> </oprand_edges> <opcode>ret</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>23</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> </nodes> <consts class_id="15" tracking_level="0" version="0"> <count>9</count> <item_version>0</item_version> <item class_id="16" tracking_level="1" version="0" object_id="_53"> <Value> <Obj> <type>2</type> <id>92</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="_54"> <Value> <Obj> <type>2</type> <id>116</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>5</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_55"> <Value> <Obj> <type>2</type> <id>122</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>5</bitwidth> </Value> <const_type>0</const_type> <content>30</content> </item> <item class_id_reference="16" object_id="_56"> <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>5</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_57"> <Value> <Obj> <type>2</type> <id>131</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>6</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_58"> <Value> <Obj> <type>2</type> <id>137</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>6</bitwidth> </Value> <const_type>0</const_type> <content>60</content> </item> <item class_id_reference="16" object_id="_59"> <Value> <Obj> <type>2</type> <id>140</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>6</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_60"> <Value> <Obj> <type>2</type> <id>157</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="_61"> <Value> <Obj> <type>2</type> <id>159</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>31</content> </item> </consts> <blocks class_id="17" tracking_level="0" version="0"> <count>7</count> <item_version>0</item_version> <item class_id="18" tracking_level="1" version="0" object_id="_62"> <Obj> <type>3</type> <id>35</id> <name>_ifconv</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>17</count> <item_version>0</item_version> <item>18</item> <item>19</item> <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> <item>32</item> <item>33</item> <item>34</item> </node_objs> </item> <item class_id_reference="18" object_id="_63"> <Obj> <type>3</type> <id>41</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>4</count> <item_version>0</item_version> <item>36</item> <item>37</item> <item>39</item> <item>40</item> </node_objs> </item> <item class_id_reference="18" object_id="_64"> <Obj> <type>3</type> <id>45</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>44</item> </node_objs> </item> <item class_id_reference="18" object_id="_65"> <Obj> <type>3</type> <id>51</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>4</count> <item_version>0</item_version> <item>46</item> <item>47</item> <item>49</item> <item>50</item> </node_objs> </item> <item class_id_reference="18" object_id="_66"> <Obj> <type>3</type> <id>78</id> <name>operator&gt;&gt;.exit</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>16</count> <item_version>0</item_version> <item>57</item> <item>58</item> <item>59</item> <item>61</item> <item>62</item> <item>63</item> <item>64</item> <item>65</item> <item>66</item> <item>67</item> <item>68</item> <item>69</item> <item>72</item> <item>73</item> <item>74</item> <item>77</item> </node_objs> </item> <item class_id_reference="18" object_id="_67"> <Obj> <type>3</type> <id>81</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>80</item> </node_objs> </item> <item class_id_reference="18" object_id="_68"> <Obj> <type>3</type> <id>83</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>82</item> </node_objs> </item> </blocks> <edges class_id="19" tracking_level="0" version="0"> <count>87</count> <item_version>0</item_version> <item class_id="20" tracking_level="1" version="0" object_id="_69"> <id>86</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>18</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_70"> <id>89</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>19</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_71"> <id>90</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>20</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_72"> <id>91</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>21</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_73"> <id>93</id> <edge_type>1</edge_type> <source_obj>92</source_obj> <sink_obj>21</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_74"> <id>94</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>21</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_75"> <id>95</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="_76"> <id>96</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="_77"> <id>97</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_78"> <id>98</id> <edge_type>1</edge_type> <source_obj>92</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_79"> <id>99</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_80"> <id>100</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="_81"> <id>101</id> <edge_type>1</edge_type> <source_obj>25</source_obj> <sink_obj>26</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_82"> <id>102</id> <edge_type>1</edge_type> <source_obj>11</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_83"> <id>103</id> <edge_type>1</edge_type> <source_obj>92</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_84"> <id>104</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="_85"> <id>105</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="_86"> <id>106</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="_87"> <id>107</id> <edge_type>1</edge_type> <source_obj>18</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_88"> <id>108</id> <edge_type>1</edge_type> <source_obj>26</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_89"> <id>109</id> <edge_type>1</edge_type> <source_obj>22</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_90"> <id>110</id> <edge_type>1</edge_type> <source_obj>18</source_obj> <sink_obj>31</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_91"> <id>111</id> <edge_type>1</edge_type> <source_obj>29</source_obj> <sink_obj>31</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_92"> <id>112</id> <edge_type>1</edge_type> <source_obj>22</source_obj> <sink_obj>31</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_93"> <id>113</id> <edge_type>1</edge_type> <source_obj>30</source_obj> <sink_obj>32</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_94"> <id>114</id> <edge_type>1</edge_type> <source_obj>31</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_95"> <id>115</id> <edge_type>2</edge_type> <source_obj>41</source_obj> <sink_obj>34</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_96"> <id>117</id> <edge_type>1</edge_type> <source_obj>116</source_obj> <sink_obj>36</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_97"> <id>118</id> <edge_type>2</edge_type> <source_obj>35</source_obj> <sink_obj>36</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_98"> <id>119</id> <edge_type>1</edge_type> <source_obj>39</source_obj> <sink_obj>36</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_99"> <id>120</id> <edge_type>2</edge_type> <source_obj>81</source_obj> <sink_obj>36</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_100"> <id>121</id> <edge_type>1</edge_type> <source_obj>36</source_obj> <sink_obj>37</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_101"> <id>123</id> <edge_type>1</edge_type> <source_obj>122</source_obj> <sink_obj>37</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_102"> <id>124</id> <edge_type>1</edge_type> <source_obj>36</source_obj> <sink_obj>39</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_103"> <id>126</id> <edge_type>1</edge_type> <source_obj>125</source_obj> <sink_obj>39</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_104"> <id>127</id> <edge_type>1</edge_type> <source_obj>37</source_obj> <sink_obj>40</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_105"> <id>128</id> <edge_type>2</edge_type> <source_obj>45</source_obj> <sink_obj>40</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_106"> <id>129</id> <edge_type>2</edge_type> <source_obj>83</source_obj> <sink_obj>40</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_107"> <id>130</id> <edge_type>2</edge_type> <source_obj>51</source_obj> <sink_obj>44</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_108"> <id>132</id> <edge_type>1</edge_type> <source_obj>131</source_obj> <sink_obj>46</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_109"> <id>133</id> <edge_type>2</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="_110"> <id>134</id> <edge_type>1</edge_type> <source_obj>49</source_obj> <sink_obj>46</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_111"> <id>135</id> <edge_type>2</edge_type> <source_obj>78</source_obj> <sink_obj>46</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_112"> <id>136</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="_113"> <id>138</id> <edge_type>1</edge_type> <source_obj>137</source_obj> <sink_obj>47</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_114"> <id>139</id> <edge_type>1</edge_type> <source_obj>46</source_obj> <sink_obj>49</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_115"> <id>141</id> <edge_type>1</edge_type> <source_obj>140</source_obj> <sink_obj>49</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_116"> <id>142</id> <edge_type>1</edge_type> <source_obj>47</source_obj> <sink_obj>50</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_117"> <id>143</id> <edge_type>2</edge_type> <source_obj>78</source_obj> <sink_obj>50</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_118"> <id>144</id> <edge_type>2</edge_type> <source_obj>81</source_obj> <sink_obj>50</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_119"> <id>147</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>57</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_120"> <id>149</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>58</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_121"> <id>151</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="_122"> <id>152</id> <edge_type>1</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="_123"> <id>153</id> <edge_type>1</edge_type> <source_obj>32</source_obj> <sink_obj>61</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_124"> <id>156</id> <edge_type>1</edge_type> <source_obj>61</source_obj> <sink_obj>62</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_125"> <id>158</id> <edge_type>1</edge_type> <source_obj>157</source_obj> <sink_obj>62</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_126"> <id>160</id> <edge_type>1</edge_type> <source_obj>159</source_obj> <sink_obj>62</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_127"> <id>161</id> <edge_type>1</edge_type> <source_obj>62</source_obj> <sink_obj>63</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_128"> <id>162</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="_129"> <id>163</id> <edge_type>1</edge_type> <source_obj>33</source_obj> <sink_obj>64</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_130"> <id>165</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="_131"> <id>166</id> <edge_type>1</edge_type> <source_obj>157</source_obj> <sink_obj>65</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_132"> <id>167</id> <edge_type>1</edge_type> <source_obj>159</source_obj> <sink_obj>65</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_133"> <id>168</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="_134"> <id>169</id> <edge_type>1</edge_type> <source_obj>59</source_obj> <sink_obj>67</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_135"> <id>170</id> <edge_type>1</edge_type> <source_obj>23</source_obj> <sink_obj>67</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_136"> <id>172</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="_137"> <id>173</id> <edge_type>1</edge_type> <source_obj>157</source_obj> <sink_obj>68</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_138"> <id>174</id> <edge_type>1</edge_type> <source_obj>159</source_obj> <sink_obj>68</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_139"> <id>175</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="_140"> <id>178</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>72</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_141"> <id>179</id> <edge_type>1</edge_type> <source_obj>63</source_obj> <sink_obj>72</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_142"> <id>181</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>73</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_143"> <id>182</id> <edge_type>1</edge_type> <source_obj>66</source_obj> <sink_obj>73</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_144"> <id>184</id> <edge_type>1</edge_type> <source_obj>6</source_obj> <sink_obj>74</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_145"> <id>185</id> <edge_type>1</edge_type> <source_obj>69</source_obj> <sink_obj>74</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_146"> <id>186</id> <edge_type>2</edge_type> <source_obj>51</source_obj> <sink_obj>77</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_147"> <id>187</id> <edge_type>2</edge_type> <source_obj>41</source_obj> <sink_obj>80</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_148"> <id>354</id> <edge_type>2</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="_149"> <id>355</id> <edge_type>2</edge_type> <source_obj>41</source_obj> <sink_obj>83</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_150"> <id>356</id> <edge_type>2</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="_151"> <id>357</id> <edge_type>2</edge_type> <source_obj>45</source_obj> <sink_obj>51</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_152"> <id>358</id> <edge_type>2</edge_type> <source_obj>51</source_obj> <sink_obj>81</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_153"> <id>359</id> <edge_type>2</edge_type> <source_obj>51</source_obj> <sink_obj>78</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_154"> <id>360</id> <edge_type>2</edge_type> <source_obj>78</source_obj> <sink_obj>51</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_155"> <id>361</id> <edge_type>2</edge_type> <source_obj>81</source_obj> <sink_obj>41</sink_obj> <is_back_edge>1</is_back_edge> </item> </edges> </cdfg> <cdfg_regions class_id="21" tracking_level="0" version="0"> <count>7</count> <item_version>0</item_version> <item class_id="22" tracking_level="1" version="0" object_id="_156"> <mId>1</mId> <mTag>brightness_color_adj</mTag> <mType>0</mType> <sub_regions> <count>3</count> <item_version>0</item_version> <item>2</item> <item>3</item> <item>7</item> </sub_regions> <basic_blocks> <count>0</count> <item_version>0</item_version> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>14492</mMinLatency> <mMaxLatency>14492</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> <item class_id_reference="22" object_id="_157"> <mId>2</mId> <mTag>Entry</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>35</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>1</mMinLatency> <mMaxLatency>1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> <item class_id_reference="22" object_id="_158"> <mId>3</mId> <mTag>loop_height</mTag> <mType>1</mType> <sub_regions> <count>3</count> <item_version>0</item_version> <item>4</item> <item>5</item> <item>6</item> </sub_regions> <basic_blocks> <count>0</count> <item_version>0</item_version> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>30</mMinTripCount> <mMaxTripCount>30</mMaxTripCount> <mMinLatency>14490</mMinLatency> <mMaxLatency>14490</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> <item class_id_reference="22" object_id="_159"> <mId>4</mId> <mTag>Region 1</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>41</item> <item>45</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>0</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> <item class_id_reference="22" object_id="_160"> <mId>5</mId> <mTag>loop_width</mTag> <mType>1</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>51</item> <item>78</item> </basic_blocks> <mII>8</mII> <mDepth>8</mDepth> <mMinTripCount>60</mMinTripCount> <mMaxTripCount>60</mMaxTripCount> <mMinLatency>480</mMinLatency> <mMaxLatency>480</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> <item class_id_reference="22" object_id="_161"> <mId>6</mId> <mTag>Region 2</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>81</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>0</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> <item class_id_reference="22" object_id="_162"> <mId>7</mId> <mTag>Return</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>83</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>0</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> </cdfg_regions> <fsm class_id="24" tracking_level="1" version="0" object_id="_163"> <states class_id="25" tracking_level="0" version="0"> <count>12</count> <item_version>0</item_version> <item class_id="26" tracking_level="1" version="0" object_id="_164"> <id>1</id> <operations class_id="27" tracking_level="0" version="0"> <count>8</count> <item_version>0</item_version> <item class_id="28" tracking_level="1" version="0" object_id="_165"> <id>19</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_166"> <id>20</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_167"> <id>21</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_168"> <id>22</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_169"> <id>24</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_170"> <id>25</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_171"> <id>27</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_172"> <id>28</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_173"> <id>2</id> <operations> <count>18</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_174"> <id>12</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_175"> <id>13</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_176"> <id>14</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_177"> <id>15</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_178"> <id>16</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_179"> <id>17</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_180"> <id>18</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_181"> <id>22</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_182"> <id>23</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_183"> <id>25</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_184"> <id>26</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_185"> <id>28</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_186"> <id>29</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_187"> <id>30</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_188"> <id>31</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_189"> <id>32</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_190"> <id>33</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_191"> <id>34</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_192"> <id>3</id> <operations> <count>9</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_193"> <id>36</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_194"> <id>37</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_195"> <id>38</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_196"> <id>39</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_197"> <id>40</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_198"> <id>42</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_199"> <id>43</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_200"> <id>44</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_201"> <id>82</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_202"> <id>4</id> <operations> <count>5</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_203"> <id>46</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_204"> <id>47</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_205"> <id>48</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_206"> <id>49</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_207"> <id>50</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_208"> <id>5</id> <operations> <count>6</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_209"> <id>55</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_210"> <id>56</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_211"> <id>57</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_212"> <id>58</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_213"> <id>59</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_214"> <id>60</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_215"> <id>6</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_216"> <id>61</id> <stage>3</stage> <latency>3</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_217"> <id>7</id> <operations> <count>2</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_218"> <id>61</id> <stage>2</stage> <latency>3</latency> </item> <item class_id_reference="28" object_id="_219"> <id>64</id> <stage>3</stage> <latency>3</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_220"> <id>8</id> <operations> <count>4</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_221"> <id>61</id> <stage>1</stage> <latency>3</latency> </item> <item class_id_reference="28" object_id="_222"> <id>62</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_223"> <id>64</id> <stage>2</stage> <latency>3</latency> </item> <item class_id_reference="28" object_id="_224"> <id>67</id> <stage>3</stage> <latency>3</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_225"> <id>9</id> <operations> <count>3</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_226"> <id>64</id> <stage>1</stage> <latency>3</latency> </item> <item class_id_reference="28" object_id="_227"> <id>65</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_228"> <id>67</id> <stage>2</stage> <latency>3</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_229"> <id>10</id> <operations> <count>2</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_230"> <id>67</id> <stage>1</stage> <latency>3</latency> </item> <item class_id_reference="28" object_id="_231"> <id>68</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_232"> <id>11</id> <operations> <count>14</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_233"> <id>52</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_234"> <id>53</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_235"> <id>54</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_236"> <id>63</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_237"> <id>66</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_238"> <id>69</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_239"> <id>70</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_240"> <id>71</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_241"> <id>72</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_242"> <id>73</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_243"> <id>74</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_244"> <id>75</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_245"> <id>76</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_246"> <id>77</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_247"> <id>12</id> <operations> <count>2</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_248"> <id>79</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_249"> <id>80</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> </states> <transitions class_id="29" tracking_level="0" version="0"> <count>13</count> <item_version>0</item_version> <item class_id="30" tracking_level="1" version="0" object_id="_250"> <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="_251"> <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="_252"> <inState>3</inState> <outState>4</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>1</count> <item_version>0</item_version> <item class_id="34" tracking_level="0" version="0"> <first class_id="35" tracking_level="0" version="0"> <first>37</first> <second>0</second> </first> <second>1</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_253"> <inState>12</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="_254"> <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="_255"> <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="_256"> <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="_257"> <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="_258"> <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="_259"> <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="_260"> <inState>11</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="_261"> <inState>4</inState> <outState>12</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>1</count> <item_version>0</item_version> <item> <first> <first>47</first> <second>0</second> </first> <second>0</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_262"> <inState>4</inState> <outState>5</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>1</count> <item_version>0</item_version> <item> <first> <first>47</first> <second>0</second> </first> <second>1</second> </item> </item> </sop> </condition> </item> </transitions> </fsm> <res class_id="36" tracking_level="1" version="0" object_id="_263"> <dp_component_resource 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>hls_video_processibs_U40 (hls_video_processibs)</first> <second class_id="39" tracking_level="0" version="0"> <count>3</count> <item_version>0</item_version> <item class_id="40" tracking_level="0" version="0"> <first>DSP48E</first> <second>2</second> </item> <item> <first>FF</first> <second>166</second> </item> <item> <first>LUT</first> <second>49</second> </item> </second> </item> <item> <first>hls_video_processibs_U41 (hls_video_processibs)</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>DSP48E</first> <second>2</second> </item> <item> <first>FF</first> <second>166</second> </item> <item> <first>LUT</first> <second>49</second> </item> </second> </item> <item> <first>hls_video_processibs_U42 (hls_video_processibs)</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>DSP48E</first> <second>2</second> </item> <item> <first>FF</first> <second>166</second> </item> <item> <first>LUT</first> <second>49</second> </item> </second> </item> </dp_component_resource> <dp_expression_resource> <count>9</count> <item_version>0</item_version> <item> <first>ap_block_state1 ( or ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>ap_block_state11 ( 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_state5 ( 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>c_V_fu_263_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>6</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>15</second> </item> </second> </item> <item> <first>exitcond4_fu_245_p2 ( icmp ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>5</second> </item> <item> <first>(1P1)</first> <second>3</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>11</second> </item> </second> </item> <item> <first>exitcond_fu_257_p2 ( icmp ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>6</second> </item> <item> <first>(1P1)</first> <second>4</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>11</second> </item> </second> </item> <item> <first>r_V_fu_251_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>5</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>15</second> </item> </second> </item> <item> <first>scale_b2_fu_229_p3 ( select ) </first> <second> <count>5</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>9</second> </item> <item> <first>(2P2)</first> <second>9</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>scale_g2_fu_221_p3 ( select ) </first> <second> <count>5</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>9</second> </item> <item> <first>(2P2)</first> <second>9</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>9</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>3</count> <item_version>0</item_version> <item> <first>lut_perceptual_brigh_1_U</first> <second> <count>7</count> <item_version>0</item_version> <item> <first>(0Words)</first> <second>16</second> </item> <item> <first>(1Bits)</first> <second>9</second> </item> <item> <first>(2Banks)</first> <second>1</second> </item> <item> <first>(3W*Bits*Banks)</first> <second>144</second> </item> <item> <first>BRAM</first> <second>0</second> </item> <item> <first>FF</first> <second>9</second> </item> <item> <first>LUT</first> <second>3</second> </item> </second> </item> <item> <first>lut_perceptual_brigh_2_U</first> <second> <count>7</count> <item_version>0</item_version> <item> <first>(0Words)</first> <second>16</second> </item> <item> <first>(1Bits)</first> <second>8</second> </item> <item> <first>(2Banks)</first> <second>1</second> </item> <item> <first>(3W*Bits*Banks)</first> <second>128</second> </item> <item> <first>BRAM</first> <second>0</second> </item> <item> <first>FF</first> <second>8</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>lut_perceptual_brigh_U</first> <second> <count>7</count> <item_version>0</item_version> <item> <first>(0Words)</first> <second>16</second> </item> <item> <first>(1Bits)</first> <second>8</second> </item> <item> <first>(2Banks)</first> <second>1</second> </item> <item> <first>(3W*Bits*Banks)</first> <second>128</second> </item> <item> <first>BRAM</first> <second>0</second> </item> <item> <first>FF</first> <second>8</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> </dp_memory_resource> <dp_multiplexer_resource> <count>11</count> <item_version>0</item_version> <item> <first>ap_NS_fsm</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>13</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>13</second> </item> <item> <first>LUT</first> <second>56</second> </item> </second> </item> <item> <first>ap_done</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>dst_data_stream_0_V_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>dst_data_stream_1_V_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>dst_data_stream_2_V_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>real_start</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>src_data_stream_0_V_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>src_data_stream_1_V_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>src_data_stream_2_V_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>t_V_3_reg_191</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>6</second> </item> <item> <first>(2Count)</first> <second>12</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>t_V_reg_180</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>5</second> </item> <item> <first>(2Count)</first> <second>10</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> </dp_multiplexer_resource> <dp_register_resource> <count>16</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>12</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>12</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>c_V_reg_365</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>6</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>6</second> </item> </second> </item> <item> <first>r_V_reg_357</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>5</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>5</second> </item> </second> </item> <item> <first>scale_b2_cast_reg_348</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>32</second> </item> <item> <first>(Consts)</first> <second>23</second> </item> <item> <first>FF</first> <second>9</second> </item> </second> </item> <item> <first>scale_g2_cast_reg_343</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>32</second> </item> <item> <first>(Consts)</first> <second>23</second> </item> <item> <first>FF</first> <second>9</second> </item> </second> </item> <item> <first>scale_r_cast_reg_338</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>32</second> </item> <item> <first>(Consts)</first> <second>23</second> </item> <item> <first>FF</first> <second>9</second> </item> </second> </item> <item> <first>start_once_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>t_V_3_reg_191</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>6</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>6</second> </item> </second> </item> <item> <first>t_V_reg_180</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>5</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>5</second> </item> </second> </item> <item> <first>tmp_19_reg_385</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>24</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>24</second> </item> </second> </item> <item> <first>tmp_22_reg_390</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>24</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>24</second> </item> </second> </item> <item> <first>tmp_25_reg_395</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>24</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>24</second> </item> </second> </item> <item> <first>tmp_31_reg_380</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_32_reg_370</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_33_reg_375</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> </dp_register_resource> <dp_dsp_resource> <count>3</count> <item_version>0</item_version> <item> <first>hls_video_processibs_U40</first> <second> <count>0</count> <item_version>0</item_version> </second> </item> <item> <first>hls_video_processibs_U41</first> <second> <count>0</count> <item_version>0</item_version> </second> </item> <item> <first>hls_video_processibs_U42</first> <second> <count>0</count> <item_version>0</item_version> </second> </item> </dp_dsp_resource> <dp_component_map class_id="41" tracking_level="0" version="0"> <count>3</count> <item_version>0</item_version> <item class_id="42" tracking_level="0" version="0"> <first>hls_video_processibs_U40 (hls_video_processibs)</first> <second> <count>1</count> <item_version>0</item_version> <item>61</item> </second> </item> <item> <first>hls_video_processibs_U41 (hls_video_processibs)</first> <second> <count>1</count> <item_version>0</item_version> <item>64</item> </second> </item> <item> <first>hls_video_processibs_U42 (hls_video_processibs)</first> <second> <count>1</count> <item_version>0</item_version> <item>67</item> </second> </item> </dp_component_map> <dp_expression_map> <count>6</count> <item_version>0</item_version> <item> <first>c_V_fu_263_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>49</item> </second> </item> <item> <first>exitcond4_fu_245_p2 ( icmp ) </first> <second> <count>1</count> <item_version>0</item_version> <item>37</item> </second> </item> <item> <first>exitcond_fu_257_p2 ( icmp ) </first> <second> <count>1</count> <item_version>0</item_version> <item>47</item> </second> </item> <item> <first>r_V_fu_251_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>39</item> </second> </item> <item> <first>scale_b2_fu_229_p3 ( select ) </first> <second> <count>1</count> <item_version>0</item_version> <item>31</item> </second> </item> <item> <first>scale_g2_fu_221_p3 ( select ) </first> <second> <count>1</count> <item_version>0</item_version> <item>30</item> </second> </item> </dp_expression_map> <dp_fifo_map> <count>0</count> <item_version>0</item_version> </dp_fifo_map> <dp_memory_map> <count>3</count> <item_version>0</item_version> <item> <first>lut_perceptual_brigh_1_U</first> <second> <count>1</count> <item_version>0</item_version> <item>75</item> </second> </item> <item> <first>lut_perceptual_brigh_2_U</first> <second> <count>1</count> <item_version>0</item_version> <item>89</item> </second> </item> <item> <first>lut_perceptual_brigh_U</first> <second> <count>1</count> <item_version>0</item_version> <item>82</item> </second> </item> </dp_memory_map> </res> <node_label_latency class_id="43" tracking_level="0" version="0"> <count>44</count> <item_version>0</item_version> <item class_id="44" tracking_level="0" version="0"> <first>18</first> <second class_id="45" tracking_level="0" version="0"> <first>1</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>1</second> </second> </item> <item> <first>23</first> <second> <first>1</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>1</second> </second> </item> <item> <first>26</first> <second> <first>1</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>1</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>0</second> </second> </item> <item> <first>31</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>32</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>33</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>34</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>36</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>37</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>39</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>40</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>44</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>46</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>47</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>49</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>50</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>57</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>58</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>59</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>61</first> <second> <first>5</first> <second>2</second> </second> </item> <item> <first>62</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>63</first> <second> <first>10</first> <second>0</second> </second> </item> <item> <first>64</first> <second> <first>6</first> <second>2</second> </second> </item> <item> <first>65</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>66</first> <second> <first>10</first> <second>0</second> </second> </item> <item> <first>67</first> <second> <first>7</first> <second>2</second> </second> </item> <item> <first>68</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>69</first> <second> <first>10</first> <second>0</second> </second> </item> <item> <first>72</first> <second> <first>10</first> <second>0</second> </second> </item> <item> <first>73</first> <second> <first>10</first> <second>0</second> </second> </item> <item> <first>74</first> <second> <first>10</first> <second>0</second> </second> </item> <item> <first>77</first> <second> <first>10</first> <second>0</second> </second> </item> <item> <first>80</first> <second> <first>11</first> <second>0</second> </second> </item> <item> <first>82</first> <second> <first>2</first> <second>0</second> </second> </item> </node_label_latency> <bblk_ent_exit class_id="46" tracking_level="0" version="0"> <count>7</count> <item_version>0</item_version> <item class_id="47" tracking_level="0" version="0"> <first>35</first> <second class_id="48" tracking_level="0" version="0"> <first>0</first> <second>1</second> </second> </item> <item> <first>41</first> <second> <first>2</first> <second>2</second> </second> </item> <item> <first>45</first> <second> <first>2</first> <second>2</second> </second> </item> <item> <first>51</first> <second> <first>3</first> <second>3</second> </second> </item> <item> <first>78</first> <second> <first>4</first> <second>10</second> </second> </item> <item> <first>81</first> <second> <first>4</first> <second>4</second> </second> </item> <item> <first>83</first> <second> <first>2</first> <second>2</second> </second> </item> </bblk_ent_exit> <regions class_id="49" tracking_level="0" version="0"> <count>2</count> <item_version>0</item_version> <item class_id="50" tracking_level="1" version="0" object_id="_264"> <region_name>loop_width</region_name> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>51</item> <item>78</item> </basic_blocks> <nodes> <count>0</count> <item_version>0</item_version> </nodes> <anchor_node>-1</anchor_node> <region_type>8</region_type> <interval>8</interval> <pipe_depth>8</pipe_depth> </item> <item class_id_reference="50" object_id="_265"> <region_name>hls_label_2</region_name> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>78</item> </basic_blocks> <nodes> <count>6</count> <item_version>0</item_version> <item>70</item> <item>71</item> <item>72</item> <item>73</item> <item>74</item> <item>75</item> </nodes> <anchor_node>70</anchor_node> <region_type>1</region_type> <interval>0</interval> <pipe_depth>0</pipe_depth> </item> </regions> <dp_fu_nodes class_id="51" tracking_level="0" version="0"> <count>37</count> <item_version>0</item_version> <item class_id="52" tracking_level="0" version="0"> <first>90</first> <second> <count>1</count> <item_version>0</item_version> <item>19</item> </second> </item> <item> <first>96</first> <second> <count>1</count> <item_version>0</item_version> <item>18</item> </second> </item> <item> <first>102</first> <second> <count>1</count> <item_version>0</item_version> <item>57</item> </second> </item> <item> <first>108</first> <second> <count>1</count> <item_version>0</item_version> <item>58</item> </second> </item> <item> <first>114</first> <second> <count>1</count> <item_version>0</item_version> <item>59</item> </second> </item> <item> <first>120</first> <second> <count>1</count> <item_version>0</item_version> <item>72</item> </second> </item> <item> <first>127</first> <second> <count>1</count> <item_version>0</item_version> <item>73</item> </second> </item> <item> <first>134</first> <second> <count>1</count> <item_version>0</item_version> <item>74</item> </second> </item> <item> <first>141</first> <second> <count>1</count> <item_version>0</item_version> <item>21</item> </second> </item> <item> <first>148</first> <second> <count>2</count> <item_version>0</item_version> <item>22</item> <item>22</item> </second> </item> <item> <first>154</first> <second> <count>1</count> <item_version>0</item_version> <item>24</item> </second> </item> <item> <first>161</first> <second> <count>2</count> <item_version>0</item_version> <item>25</item> <item>25</item> </second> </item> <item> <first>167</first> <second> <count>1</count> <item_version>0</item_version> <item>27</item> </second> </item> <item> <first>174</first> <second> <count>2</count> <item_version>0</item_version> <item>28</item> <item>28</item> </second> </item> <item> <first>184</first> <second> <count>1</count> <item_version>0</item_version> <item>36</item> </second> </item> <item> <first>195</first> <second> <count>1</count> <item_version>0</item_version> <item>46</item> </second> </item> <item> <first>202</first> <second> <count>1</count> <item_version>0</item_version> <item>20</item> </second> </item> <item> <first>209</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>26</item> </second> </item> <item> <first>217</first> <second> <count>1</count> <item_version>0</item_version> <item>29</item> </second> </item> <item> <first>221</first> <second> <count>1</count> <item_version>0</item_version> <item>30</item> </second> </item> <item> <first>229</first> <second> <count>1</count> <item_version>0</item_version> <item>31</item> </second> </item> <item> <first>237</first> <second> <count>1</count> <item_version>0</item_version> <item>32</item> </second> </item> <item> <first>241</first> <second> <count>1</count> <item_version>0</item_version> <item>33</item> </second> </item> <item> <first>245</first> <second> <count>1</count> <item_version>0</item_version> <item>37</item> </second> </item> <item> <first>251</first> <second> <count>1</count> <item_version>0</item_version> <item>39</item> </second> </item> <item> <first>257</first> <second> <count>1</count> <item_version>0</item_version> <item>47</item> </second> </item> <item> <first>263</first> <second> <count>1</count> <item_version>0</item_version> <item>49</item> </second> </item> <item> <first>269</first> <second> <count>3</count> <item_version>0</item_version> <item>61</item> <item>61</item> <item>61</item> </second> </item> <item> <first>273</first> <second> <count>3</count> <item_version>0</item_version> <item>64</item> <item>64</item> <item>64</item> </second> </item> <item> <first>277</first> <second> <count>1</count> <item_version>0</item_version> <item>62</item> </second> </item> <item> <first>287</first> <second> <count>3</count> <item_version>0</item_version> <item>67</item> <item>67</item> <item>67</item> </second> </item> <item> <first>291</first> <second> <count>1</count> <item_version>0</item_version> <item>65</item> </second> </item> <item> <first>301</first> <second> <count>1</count> <item_version>0</item_version> <item>68</item> </second> </item> <item> <first>311</first> <second> <count>1</count> <item_version>0</item_version> <item>63</item> </second> </item> <item> <first>315</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>69</item> </second> </item> </dp_fu_nodes> <dp_fu_nodes_expression class_id="54" tracking_level="0" version="0"> <count>23</count> <item_version>0</item_version> <item class_id="55" tracking_level="0" version="0"> <first>c_V_fu_263</first> <second> <count>1</count> <item_version>0</item_version> <item>49</item> </second> </item> <item> <first>exitcond4_fu_245</first> <second> <count>1</count> <item_version>0</item_version> <item>37</item> </second> </item> <item> <first>exitcond_fu_257</first> <second> <count>1</count> <item_version>0</item_version> <item>47</item> </second> </item> <item> <first>lut_perceptual_brigh_3_gep_fu_141</first> <second> <count>1</count> <item_version>0</item_version> <item>21</item> </second> </item> <item> <first>lut_perceptual_brigh_4_gep_fu_154</first> <second> <count>1</count> <item_version>0</item_version> <item>24</item> </second> </item> <item> <first>lut_perceptual_brigh_5_gep_fu_167</first> <second> <count>1</count> <item_version>0</item_version> <item>27</item> </second> </item> <item> <first>r_V_fu_251</first> <second> <count>1</count> <item_version>0</item_version> <item>39</item> </second> </item> <item> <first>scale_b2_cast_fu_241</first> <second> <count>1</count> <item_version>0</item_version> <item>33</item> </second> </item> <item> <first>scale_b2_fu_229</first> <second> <count>1</count> <item_version>0</item_version> <item>31</item> </second> </item> <item> <first>scale_b_cast1_fu_217</first> <second> <count>1</count> <item_version>0</item_version> <item>29</item> </second> </item> <item> <first>scale_g2_cast_fu_237</first> <second> <count>1</count> <item_version>0</item_version> <item>32</item> </second> </item> <item> <first>scale_g2_fu_221</first> <second> <count>1</count> <item_version>0</item_version> <item>30</item> </second> </item> <item> <first>scale_g_cast2_fu_213</first> <second> <count>1</count> <item_version>0</item_version> <item>26</item> </second> </item> <item> <first>scale_r_cast_fu_209</first> <second> <count>1</count> <item_version>0</item_version> <item>23</item> </second> </item> <item> <first>t_V_3_phi_fu_195</first> <second> <count>1</count> <item_version>0</item_version> <item>46</item> </second> </item> <item> <first>t_V_phi_fu_184</first> <second> <count>1</count> <item_version>0</item_version> <item>36</item> </second> </item> <item> <first>tmp_19_fu_277</first> <second> <count>1</count> <item_version>0</item_version> <item>62</item> </second> </item> <item> <first>tmp_20_fu_311</first> <second> <count>1</count> <item_version>0</item_version> <item>63</item> </second> </item> <item> <first>tmp_22_fu_291</first> <second> <count>1</count> <item_version>0</item_version> <item>65</item> </second> </item> <item> <first>tmp_23_fu_315</first> <second> <count>1</count> <item_version>0</item_version> <item>66</item> </second> </item> <item> <first>tmp_25_fu_301</first> <second> <count>1</count> <item_version>0</item_version> <item>68</item> </second> </item> <item> <first>tmp_26_fu_319</first> <second> <count>1</count> <item_version>0</item_version> <item>69</item> </second> </item> <item> <first>tmp_fu_202</first> <second> <count>1</count> <item_version>0</item_version> <item>20</item> </second> </item> </dp_fu_nodes_expression> <dp_fu_nodes_module> <count>3</count> <item_version>0</item_version> <item> <first>grp_fu_269</first> <second> <count>3</count> <item_version>0</item_version> <item>61</item> <item>61</item> <item>61</item> </second> </item> <item> <first>grp_fu_273</first> <second> <count>3</count> <item_version>0</item_version> <item>64</item> <item>64</item> <item>64</item> </second> </item> <item> <first>grp_fu_287</first> <second> <count>3</count> <item_version>0</item_version> <item>67</item> <item>67</item> <item>67</item> </second> </item> </dp_fu_nodes_module> <dp_fu_nodes_io> <count>8</count> <item_version>0</item_version> <item> <first>StgValue_79_write_fu_120</first> <second> <count>1</count> <item_version>0</item_version> <item>72</item> </second> </item> <item> <first>StgValue_80_write_fu_127</first> <second> <count>1</count> <item_version>0</item_version> <item>73</item> </second> </item> <item> <first>StgValue_81_write_fu_134</first> <second> <count>1</count> <item_version>0</item_version> <item>74</item> </second> </item> <item> <first>brightness_index_V_r_read_fu_90</first> <second> <count>1</count> <item_version>0</item_version> <item>19</item> </second> </item> <item> <first>color_correct_V_read_read_fu_96</first> <second> <count>1</count> <item_version>0</item_version> <item>18</item> </second> </item> <item> <first>tmp_31_read_fu_114</first> <second> <count>1</count> <item_version>0</item_version> <item>59</item> </second> </item> <item> <first>tmp_32_read_fu_102</first> <second> <count>1</count> <item_version>0</item_version> <item>57</item> </second> </item> <item> <first>tmp_33_read_fu_108</first> <second> <count>1</count> <item_version>0</item_version> <item>58</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="56" tracking_level="0" version="0"> <count>3</count> <item_version>0</item_version> <item class_id="57" tracking_level="0" version="0"> <first class_id="58" tracking_level="0" version="0"> <first>lut_perceptual_brigh</first> <second>0</second> </first> <second> <count>2</count> <item_version>0</item_version> <item>25</item> <item>25</item> </second> </item> <item> <first> <first>lut_perceptual_brigh_1</first> <second>0</second> </first> <second> <count>2</count> <item_version>0</item_version> <item>22</item> <item>22</item> </second> </item> <item> <first> <first>lut_perceptual_brigh_2</first> <second>0</second> </first> <second> <count>2</count> <item_version>0</item_version> <item>28</item> <item>28</item> </second> </item> </dp_mem_port_nodes> <dp_reg_nodes> <count>17</count> <item_version>0</item_version> <item> <first>180</first> <second> <count>1</count> <item_version>0</item_version> <item>36</item> </second> </item> <item> <first>191</first> <second> <count>1</count> <item_version>0</item_version> <item>46</item> </second> </item> <item> <first>323</first> <second> <count>1</count> <item_version>0</item_version> <item>21</item> </second> </item> <item> <first>328</first> <second> <count>1</count> <item_version>0</item_version> <item>24</item> </second> </item> <item> <first>333</first> <second> <count>1</count> <item_version>0</item_version> <item>27</item> </second> </item> <item> <first>338</first> <second> <count>1</count> <item_version>0</item_version> <item>23</item> </second> </item> <item> <first>343</first> <second> <count>1</count> <item_version>0</item_version> <item>32</item> </second> </item> <item> <first>348</first> <second> <count>1</count> <item_version>0</item_version> <item>33</item> </second> </item> <item> <first>353</first> <second> <count>1</count> <item_version>0</item_version> <item>37</item> </second> </item> <item> <first>357</first> <second> <count>1</count> <item_version>0</item_version> <item>39</item> </second> </item> <item> <first>365</first> <second> <count>1</count> <item_version>0</item_version> <item>49</item> </second> </item> <item> <first>370</first> <second> <count>1</count> <item_version>0</item_version> <item>57</item> </second> </item> <item> <first>375</first> <second> <count>1</count> <item_version>0</item_version> <item>58</item> </second> </item> <item> <first>380</first> <second> <count>1</count> <item_version>0</item_version> <item>59</item> </second> </item> <item> <first>385</first> <second> <count>1</count> <item_version>0</item_version> <item>62</item> </second> </item> <item> <first>390</first> <second> <count>1</count> <item_version>0</item_version> <item>65</item> </second> </item> <item> <first>395</first> <second> <count>1</count> <item_version>0</item_version> <item>68</item> </second> </item> </dp_reg_nodes> <dp_regname_nodes> <count>17</count> <item_version>0</item_version> <item> <first>c_V_reg_365</first> <second> <count>1</count> <item_version>0</item_version> <item>49</item> </second> </item> <item> <first>exitcond4_reg_353</first> <second> <count>1</count> <item_version>0</item_version> <item>37</item> </second> </item> <item> <first>lut_perceptual_brigh_3_reg_323</first> <second> <count>1</count> <item_version>0</item_version> <item>21</item> </second> </item> <item> <first>lut_perceptual_brigh_4_reg_328</first> <second> <count>1</count> <item_version>0</item_version> <item>24</item> </second> </item> <item> <first>lut_perceptual_brigh_5_reg_333</first> <second> <count>1</count> <item_version>0</item_version> <item>27</item> </second> </item> <item> <first>r_V_reg_357</first> <second> <count>1</count> <item_version>0</item_version> <item>39</item> </second> </item> <item> <first>scale_b2_cast_reg_348</first> <second> <count>1</count> <item_version>0</item_version> <item>33</item> </second> </item> <item> <first>scale_g2_cast_reg_343</first> <second> <count>1</count> <item_version>0</item_version> <item>32</item> </second> </item> <item> <first>scale_r_cast_reg_338</first> <second> <count>1</count> <item_version>0</item_version> <item>23</item> </second> </item> <item> <first>t_V_3_reg_191</first> <second> <count>1</count> <item_version>0</item_version> <item>46</item> </second> </item> <item> <first>t_V_reg_180</first> <second> <count>1</count> <item_version>0</item_version> <item>36</item> </second> </item> <item> <first>tmp_19_reg_385</first> <second> <count>1</count> <item_version>0</item_version> <item>62</item> </second> </item> <item> <first>tmp_22_reg_390</first> <second> <count>1</count> <item_version>0</item_version> <item>65</item> </second> </item> <item> <first>tmp_25_reg_395</first> <second> <count>1</count> <item_version>0</item_version> <item>68</item> </second> </item> <item> <first>tmp_31_reg_380</first> <second> <count>1</count> <item_version>0</item_version> <item>59</item> </second> </item> <item> <first>tmp_32_reg_370</first> <second> <count>1</count> <item_version>0</item_version> <item>57</item> </second> </item> <item> <first>tmp_33_reg_375</first> <second> <count>1</count> <item_version>0</item_version> <item>58</item> </second> </item> </dp_regname_nodes> <dp_reg_phi> <count>2</count> <item_version>0</item_version> <item> <first>180</first> <second> <count>1</count> <item_version>0</item_version> <item>36</item> </second> </item> <item> <first>191</first> <second> <count>1</count> <item_version>0</item_version> <item>46</item> </second> </item> </dp_reg_phi> <dp_regname_phi> <count>2</count> <item_version>0</item_version> <item> <first>t_V_3_reg_191</first> <second> <count>1</count> <item_version>0</item_version> <item>46</item> </second> </item> <item> <first>t_V_reg_180</first> <second> <count>1</count> <item_version>0</item_version> <item>36</item> </second> </item> </dp_regname_phi> <dp_port_io_nodes class_id="59" tracking_level="0" version="0"> <count>8</count> <item_version>0</item_version> <item class_id="60" tracking_level="0" version="0"> <first>brightness_index_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>19</item> </second> </item> </second> </item> <item> <first>color_correct_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>18</item> </second> </item> </second> </item> <item> <first>dst_data_stream_0_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>write</first> <second> <count>1</count> <item_version>0</item_version> <item>72</item> </second> </item> </second> </item> <item> <first>dst_data_stream_1_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>write</first> <second> <count>1</count> <item_version>0</item_version> <item>73</item> </second> </item> </second> </item> <item> <first>dst_data_stream_2_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>write</first> <second> <count>1</count> <item_version>0</item_version> <item>74</item> </second> </item> </second> </item> <item> <first>src_data_stream_0_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>57</item> </second> </item> </second> </item> <item> <first>src_data_stream_1_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>58</item> </second> </item> </second> </item> <item> <first>src_data_stream_2_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>59</item> </second> </item> </second> </item> </dp_port_io_nodes> <port2core class_id="61" tracking_level="0" version="0"> <count>6</count> <item_version>0</item_version> <item class_id="62" tracking_level="0" version="0"> <first>1</first> <second>FIFO</second> </item> <item> <first>2</first> <second>FIFO</second> </item> <item> <first>3</first> <second>FIFO</second> </item> <item> <first>4</first> <second>FIFO</second> </item> <item> <first>5</first> <second>FIFO</second> </item> <item> <first>6</first> <second>FIFO</second> </item> </port2core> <node2core> <count>0</count> <item_version>0</item_version> </node2core> </syndb> </boost_serialization>
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- G N A T . W I D E _ S P E L L I N G _ C H E C K E R -- -- -- -- S p e c -- -- -- -- Copyright (C) 1998-2010, AdaCore -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- -- -- -- -- -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- Spelling checker -- This package provides a utility routine for checking for bad spellings -- for the case of Wide_String arguments. package GNAT.Wide_Spelling_Checker is pragma Pure; function Is_Bad_Spelling_Of (Found : Wide_String; Expect : Wide_String) return Boolean; -- Determines if the string Found is a plausible misspelling of the string -- Expect. Returns True for an exact match or a probably misspelling, False -- if no near match is detected. This routine is case sensitive, so the -- caller should fold both strings to get a case insensitive match. -- -- Note: the spec of this routine is deliberately rather vague. It is used -- by GNAT itself to detect misspelled keywords and identifiers, and is -- heuristically adjusted to be appropriate to this usage. It will work -- well in any similar case of named entities. end GNAT.Wide_Spelling_Checker;
-- Copyright (c) 2019 Maxim Reznik <reznikmm@gmail.com> -- -- SPDX-License-Identifier: MIT -- License-Filename: LICENSE ------------------------------------------------------------- with Program.Elements.Statements; with Program.Lexical_Elements; with Program.Elements.Expressions; with Program.Element_Vectors; with Program.Elements.Elsif_Paths; package Program.Elements.If_Statements is pragma Pure (Program.Elements.If_Statements); type If_Statement is limited interface and Program.Elements.Statements.Statement; type If_Statement_Access is access all If_Statement'Class with Storage_Size => 0; not overriding function Condition (Self : If_Statement) return not null Program.Elements.Expressions.Expression_Access is abstract; not overriding function Then_Statements (Self : If_Statement) return not null Program.Element_Vectors.Element_Vector_Access is abstract; not overriding function Elsif_Paths (Self : If_Statement) return Program.Elements.Elsif_Paths.Elsif_Path_Vector_Access is abstract; not overriding function Else_Statements (Self : If_Statement) return Program.Element_Vectors.Element_Vector_Access is abstract; type If_Statement_Text is limited interface; type If_Statement_Text_Access is access all If_Statement_Text'Class with Storage_Size => 0; not overriding function To_If_Statement_Text (Self : aliased in out If_Statement) return If_Statement_Text_Access is abstract; not overriding function If_Token (Self : If_Statement_Text) return not null Program.Lexical_Elements.Lexical_Element_Access is abstract; not overriding function Then_Token (Self : If_Statement_Text) return not null Program.Lexical_Elements.Lexical_Element_Access is abstract; not overriding function Else_Token (Self : If_Statement_Text) return Program.Lexical_Elements.Lexical_Element_Access is abstract; not overriding function End_Token (Self : If_Statement_Text) return not null Program.Lexical_Elements.Lexical_Element_Access is abstract; not overriding function If_Token_2 (Self : If_Statement_Text) return not null Program.Lexical_Elements.Lexical_Element_Access is abstract; not overriding function Semicolon_Token (Self : If_Statement_Text) return not null Program.Lexical_Elements.Lexical_Element_Access is abstract; end Program.Elements.If_Statements;
-- BinToAsc_Suite.Base85_Tests -- Unit tests for BinToAsc -- Copyright (c) 2015, James Humphry - see LICENSE file for details with AUnit.Assertions; with System.Storage_Elements; with Ada.Assertions; with Storage_Array_To_Hex_String; package body BinToAsc_Suite.Base85_Tests is use AUnit.Assertions; use System.Storage_Elements; use ASCII85; use type ASCII85.Codec_State; function SATHS (X : Storage_Array) return String renames Storage_Array_To_Hex_String; -------------------- -- Register_Tests -- -------------------- procedure Register_Tests (T: in out Base85_Test) is use AUnit.Test_Cases.Registration; begin Register_Routine (T, Check_Z85_Symmetry'Access, "Check the Z85 Encoder and Decoder are a symmetrical pair"); Register_Routine (T, Check_Z85_Length'Access, "Check the Z85 Encoder and Decoder handle variable-length input successfully"); Register_Routine (T, Check_Z85_Test_Vector'Access, "Check Z85 test vector can be encoded/decoded successfully"); Register_Routine (T, Check_Z85_Test_Vector_By_Char'Access, "Check Z85 test vector can be encoded/decoded incrementally by byte/char"); Register_Routine (T, Check_Z85_Junk_Rejection'Access, "Check Z85 rejects junk chars"); Register_Routine (T, Check_Z85_High_Group'Access, "Check Z85 correctly decodes strings that represent values around 2**32"); Register_Routine (T, Check_Z85_Length_Rejection'Access, "Check Z85 decoder rejects final character group of length 1"); end Register_Tests; ---------- -- Name -- ---------- function Name (T : Base85_Test) return Test_String is pragma Unreferenced (T); begin return Format ("Tests of ASCII85/Base85 codecs"); end Name; ------------ -- Set_Up -- ------------ procedure Set_Up (T : in out Base85_Test) is begin null; end Set_Up; --------------------------- -- Check_Z85_Test_Vector -- --------------------------- procedure Check_Z85_Test_Vector (T : in out Test_Cases.Test_Case'Class) is pragma Unreferenced (T); Z85_Test_Vector : constant Storage_Array := (16#86#, 16#4F#, 16#D2#, 16#6F#, 16#B5#, 16#59#, 16#F7#, 16#5B#); Z85_Encoded : constant String := "HelloWorld"; begin Assert(Z85.To_String(Z85_Test_Vector) = Z85_Encoded, "Z85 encoder on test vector produced " & Z85.To_String(Z85_Test_Vector) & " rather than 'HelloWorld'"); Assert(Z85.To_Bin(Z85_Encoded) = Z85_Test_Vector, "Z85 decoder on test vector produced " & SATHS(Z85.To_Bin(Z85_Encoded)) & " rather than " & SATHS(Z85_Test_Vector)); end Check_Z85_Test_Vector; ----------------------------------- -- Check_Z85_Test_Vector_By_Char -- ----------------------------------- procedure Check_Z85_Test_Vector_By_Char (T : in out Test_Cases.Test_Case'Class) is pragma Unreferenced (T); Z85_Test_Vector : constant Storage_Array := (16#86#, 16#4F#, 16#D2#, 16#6F#, 16#B5#, 16#59#, 16#F7#, 16#5B#); Z85_Encoded : constant String := "HelloWorld"; begin declare Z85_Encoder : Z85.Base85_To_String; Buffer_String : String(1..15); Buffer_Index : Integer := 1; Buffer_Used : Integer := 0; begin Z85_Encoder.Reset; for I of Z85_Test_Vector loop Z85_Encoder.Process(Input => I, Output => Buffer_String(Buffer_Index..Buffer_String'Last), Output_Length => Buffer_Used); Buffer_Index := Buffer_Index + Buffer_Used; end loop; Z85_Encoder.Complete(Output => Buffer_String(Buffer_Index..Buffer_String'Last), Output_Length => Buffer_Used); Buffer_Index := Buffer_Index + Buffer_Used; Assert(Buffer_String(1..Buffer_Index-1) = Z85_Encoded, "Z85 Encoder on test vector gave the wrong result when used " & "character-by-character"); end; declare Z85_Decoder : Z85.Base85_To_Bin; Buffer_Bin: Storage_Array(1..12); Buffer_Index : Storage_Offset := 1; Buffer_Used : Storage_Offset := 0; begin Z85_Decoder.Reset; for I of Z85_Encoded loop Z85_Decoder.Process(Input => I, Output => Buffer_Bin(Buffer_Index..Buffer_Bin'Last), Output_Length => Buffer_Used); Buffer_Index := Buffer_Index + Buffer_Used; end loop; Z85_Decoder.Complete(Output => Buffer_Bin(Buffer_Index..Buffer_Bin'Last), Output_Length => Buffer_Used); Buffer_Index := Buffer_Index + Buffer_Used; Assert(Buffer_Bin(1..Buffer_Index-1) = Z85_Test_Vector, "Z85 Decoder on test vector gave the wrong result when used " & "byte-by-byte"); end; end Check_Z85_Test_Vector_By_Char; ------------------------------ -- Check_Z85_Junk_Rejection -- ------------------------------ procedure Should_Raise_Exception_From_Junk is Discard : Storage_Array(1..8); begin Discard := Z85.To_Bin("Hel\oWorld"); end; procedure Check_Z85_Junk_Rejection (T : in out Test_Cases.Test_Case'Class) is pragma Unreferenced (T); Z85_Decoder : Z85.Base85_To_Bin; Buffer_Bin: Storage_Array(1..12); Buffer_Used : Storage_Offset := 0; begin Assert_Exception(Should_Raise_Exception_From_Junk'Access, "Z85 decoder did not reject junk input."); Z85_Decoder.Reset; Z85_Decoder.Process(Input => "Hel\oWorld", Output => Buffer_Bin, Output_Length => Buffer_Used ); Assert(Z85_Decoder.State = Failed, "Z85 decoder failed to reject junk input"); begin Z85_Decoder.Complete(Output => Buffer_Bin, Output_Length => Buffer_Used ); exception when Ada.Assertions.Assertion_Error => null; -- Preconditions (if active) will not allow Completed to be run -- on a codec with state /= Ready. end; Assert(Z85_Decoder.State = Failed, "Z85 decoder in failed state was reset by the Complete routine"); Z85_Decoder.Reset; Z85_Decoder.Process(Input => "Hel", Output => Buffer_Bin, Output_Length => Buffer_Used ); Assert(Z85_Decoder.State = Ready, "Z85 decoder rejecting valid input"); Z85_Decoder.Process(Input => "\oWorld", Output => Buffer_Bin, Output_Length => Buffer_Used ); Assert(Z85_Decoder.State = Failed, "Z85 decoder failed to reject junk input when introduced incrementally"); Z85_Decoder.Reset; Z85_Decoder.Process(Input => "Hel", Output => Buffer_Bin, Output_Length => Buffer_Used ); Assert(Z85_Decoder.State = Ready, "Z85 decoder rejecting valid input"); Z85_Decoder.Process(Input => '\', Output => Buffer_Bin, Output_Length => Buffer_Used ); Assert(Z85_Decoder.State = Failed, "Z85 decoder failed to reject junk input when introduced incrementally as a character"); end Check_Z85_Junk_Rejection; -------------------------- -- Check_Z85_High_Group -- -------------------------- procedure Check_Z85_High_Group (T : in out Test_Cases.Test_Case'Class) is pragma Unreferenced (T); Z85_Decoder : Z85.Base85_To_Bin; Buffer_Bin: Storage_Array(1..12); Buffer_Used : Storage_Offset := 0; begin Z85_Decoder.Reset; Z85_Decoder.Process(Input => "@####", Output => Buffer_Bin, Output_Length => Buffer_Used ); Assert(Z85_Decoder.State = Ready, "Z85 decoder rejected @#### which is a valid group"); Z85_Decoder.Reset; Z85_Decoder.Process(Input => "%####", Output => Buffer_Bin, Output_Length => Buffer_Used ); Assert(Z85_Decoder.State = Failed, "Z85 decoder failed to reject %#### which is a valid group (more than 2**32)"); Z85_Decoder.Reset; Z85_Decoder.Process(Input => "%nSc0", Output => Buffer_Bin, Output_Length => Buffer_Used ); Assert(Z85_Decoder.State = Ready, "Z85 decoder rejected @nSb0 which is the highest valid group"); Z85_Decoder.Reset; Z85_Decoder.Process(Input => "%nSc1", Output => Buffer_Bin, Output_Length => Buffer_Used ); Assert(Z85_Decoder.State = Failed, "Z85 decoder failed to reject @nSb1 which is the lowest invalid group"); Z85_Decoder.Reset; Z85_Decoder.Process(Input => "%nSc", Output => Buffer_Bin, Output_Length => Buffer_Used ); Z85_Decoder.Process(Input => '0', Output => Buffer_Bin, Output_Length => Buffer_Used ); Assert(Z85_Decoder.State = Ready, "Z85 decoder rejected @nSb0 which is the highest valid group " & "when the last character was presented separately"); Z85_Decoder.Reset; Z85_Decoder.Process(Input => "%nSc", Output => Buffer_Bin, Output_Length => Buffer_Used ); Z85_Decoder.Process(Input => '1', Output => Buffer_Bin, Output_Length => Buffer_Used ); Assert(Z85_Decoder.State = Failed, "Z85 decoder failed to reject @nSb1 which is the lowest invalid group " & "when the last character was presented separately"); Z85_Decoder.Reset; Z85_Decoder.Process(Input => "%nSb", Output => Buffer_Bin, Output_Length => Buffer_Used ); Assert(Z85_Decoder.State = Ready, "Z85 decoder rejected %nSb which could be the start of a valid group"); Z85_Decoder.Complete(Output => Buffer_Bin, Output_Length => Buffer_Used ); Assert(Z85_Decoder.State = Complete, "Z85 decoder rejected %nSb at the end of input which is a valid group"); Assert(Buffer_Used = 3, "Z85 decoder returned wrong length from %nSb at the end of input " & "(three FF bytes"); Assert(Buffer_Bin(1..3) = (16#FF#, 16#FF#, 16#FF#), "Z85 decoder did not correctly decode %nSb at the end of input " & "(three FF bytes"); Z85_Decoder.Reset; Z85_Decoder.Process(Input => "%nSc", Output => Buffer_Bin, Output_Length => Buffer_Used ); Assert(Z85_Decoder.State = Ready, "Z85 decoder rejected %nSc which could be the start of a valid group"); Z85_Decoder.Complete(Output => Buffer_Bin, Output_Length => Buffer_Used ); Assert(Z85_Decoder.State = Failed, "Z85 decoder did not reject %nSc at the end of input which is a invalid group"); end Check_Z85_High_Group; -------------------------------- -- Check_Z85_Length_Rejection -- -------------------------------- procedure Should_Raise_Exception_From_Length is Discard : Storage_Array(1..8); begin Discard := Z85.To_Bin("HelloW"); end; procedure Check_Z85_Length_Rejection (T : in out Test_Cases.Test_Case'Class) is pragma Unreferenced (T); Z85_Decoder : Z85.Base85_To_Bin; Buffer_Bin: Storage_Array(1..12); Buffer_Used : Storage_Offset := 0; begin Assert_Exception(Should_Raise_Exception_From_Length'Access, "Z85 decoder did not reject impossible 6-character input."); Z85_Decoder.Reset; Z85_Decoder.Process(Input => "HelloW", Output => Buffer_Bin, Output_Length => Buffer_Used ); Assert(Z85_Decoder.State = Ready, "Z85 decoder rejected 6-character input too early"); Z85_Decoder.Complete(Output => Buffer_Bin, Output_Length => Buffer_Used ); Assert(Z85_Decoder.State = Failed, "Z85 decoder failed to reject an impossible final input of 1 character"); end Check_Z85_Length_Rejection; end BinToAsc_Suite.Base85_Tests;
package openGL.Program.colored_textured -- -- Provides a program for colored, textured GL vertices. -- is type Item is new openGL.Program.item with null record; type View is access all Item'Class; overriding procedure set_Uniforms (Self : in Item); end openGL.Program.colored_textured;
-- This spec has been automatically generated from STM32F030.svd pragma Restrictions (No_Elaboration_Code); pragma Ada_2012; pragma Style_Checks (Off); with System; package STM32_SVD.RCC is pragma Preelaborate; --------------- -- Registers -- --------------- subtype CR_HSION_Field is STM32_SVD.Bit; subtype CR_HSIRDY_Field is STM32_SVD.Bit; subtype CR_HSITRIM_Field is STM32_SVD.UInt5; subtype CR_HSICAL_Field is STM32_SVD.Byte; subtype CR_HSEON_Field is STM32_SVD.Bit; subtype CR_HSERDY_Field is STM32_SVD.Bit; subtype CR_HSEBYP_Field is STM32_SVD.Bit; subtype CR_CSSON_Field is STM32_SVD.Bit; subtype CR_PLLON_Field is STM32_SVD.Bit; subtype CR_PLLRDY_Field is STM32_SVD.Bit; -- Clock control register type CR_Register is record -- Internal High Speed clock enable HSION : CR_HSION_Field := 16#1#; -- Read-only. Internal High Speed clock ready flag HSIRDY : CR_HSIRDY_Field := 16#1#; -- unspecified Reserved_2_2 : STM32_SVD.Bit := 16#0#; -- Internal High Speed clock trimming HSITRIM : CR_HSITRIM_Field := 16#10#; -- Read-only. Internal High Speed clock Calibration HSICAL : CR_HSICAL_Field := 16#0#; -- External High Speed clock enable HSEON : CR_HSEON_Field := 16#0#; -- Read-only. External High Speed clock ready flag HSERDY : CR_HSERDY_Field := 16#0#; -- External High Speed clock Bypass HSEBYP : CR_HSEBYP_Field := 16#0#; -- Clock Security System enable CSSON : CR_CSSON_Field := 16#0#; -- unspecified Reserved_20_23 : STM32_SVD.UInt4 := 16#0#; -- PLL enable PLLON : CR_PLLON_Field := 16#0#; -- Read-only. PLL clock ready flag PLLRDY : CR_PLLRDY_Field := 16#0#; -- unspecified Reserved_26_31 : STM32_SVD.UInt6 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for CR_Register use record HSION at 0 range 0 .. 0; HSIRDY at 0 range 1 .. 1; Reserved_2_2 at 0 range 2 .. 2; HSITRIM at 0 range 3 .. 7; HSICAL at 0 range 8 .. 15; HSEON at 0 range 16 .. 16; HSERDY at 0 range 17 .. 17; HSEBYP at 0 range 18 .. 18; CSSON at 0 range 19 .. 19; Reserved_20_23 at 0 range 20 .. 23; PLLON at 0 range 24 .. 24; PLLRDY at 0 range 25 .. 25; Reserved_26_31 at 0 range 26 .. 31; end record; subtype CFGR_SW_Field is STM32_SVD.UInt2; subtype CFGR_SWS_Field is STM32_SVD.UInt2; subtype CFGR_HPRE_Field is STM32_SVD.UInt4; subtype CFGR_PPRE_Field is STM32_SVD.UInt3; subtype CFGR_ADCPRE_Field is STM32_SVD.Bit; subtype CFGR_PLLSRC_Field is STM32_SVD.UInt2; subtype CFGR_PLLXTPRE_Field is STM32_SVD.Bit; subtype CFGR_PLLMUL_Field is STM32_SVD.UInt4; subtype CFGR_MCO_Field is STM32_SVD.UInt3; subtype CFGR_MCOPRE_Field is STM32_SVD.UInt3; subtype CFGR_PLLNODIV_Field is STM32_SVD.Bit; -- Clock configuration register (RCC_CFGR) type CFGR_Register is record -- System clock Switch SW : CFGR_SW_Field := 16#0#; -- Read-only. System Clock Switch Status SWS : CFGR_SWS_Field := 16#0#; -- AHB prescaler HPRE : CFGR_HPRE_Field := 16#0#; -- APB Low speed prescaler (APB1) PPRE : CFGR_PPRE_Field := 16#0#; -- unspecified Reserved_11_13 : STM32_SVD.UInt3 := 16#0#; -- ADC prescaler ADCPRE : CFGR_ADCPRE_Field := 16#0#; -- PLL input clock source PLLSRC : CFGR_PLLSRC_Field := 16#0#; -- HSE divider for PLL entry PLLXTPRE : CFGR_PLLXTPRE_Field := 16#0#; -- PLL Multiplication Factor PLLMUL : CFGR_PLLMUL_Field := 16#0#; -- unspecified Reserved_22_23 : STM32_SVD.UInt2 := 16#0#; -- Microcontroller clock output MCO : CFGR_MCO_Field := 16#0#; -- unspecified Reserved_27_27 : STM32_SVD.Bit := 16#0#; -- Microcontroller Clock Output Prescaler MCOPRE : CFGR_MCOPRE_Field := 16#0#; -- PLL clock not divided for MCO PLLNODIV : CFGR_PLLNODIV_Field := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for CFGR_Register use record SW at 0 range 0 .. 1; SWS at 0 range 2 .. 3; HPRE at 0 range 4 .. 7; PPRE at 0 range 8 .. 10; Reserved_11_13 at 0 range 11 .. 13; ADCPRE at 0 range 14 .. 14; PLLSRC at 0 range 15 .. 16; PLLXTPRE at 0 range 17 .. 17; PLLMUL at 0 range 18 .. 21; Reserved_22_23 at 0 range 22 .. 23; MCO at 0 range 24 .. 26; Reserved_27_27 at 0 range 27 .. 27; MCOPRE at 0 range 28 .. 30; PLLNODIV at 0 range 31 .. 31; end record; subtype CIR_LSIRDYF_Field is STM32_SVD.Bit; subtype CIR_LSERDYF_Field is STM32_SVD.Bit; subtype CIR_HSIRDYF_Field is STM32_SVD.Bit; subtype CIR_HSERDYF_Field is STM32_SVD.Bit; subtype CIR_PLLRDYF_Field is STM32_SVD.Bit; subtype CIR_HSI14RDYF_Field is STM32_SVD.Bit; subtype CIR_HSI48RDYF_Field is STM32_SVD.Bit; subtype CIR_CSSF_Field is STM32_SVD.Bit; subtype CIR_LSIRDYIE_Field is STM32_SVD.Bit; subtype CIR_LSERDYIE_Field is STM32_SVD.Bit; subtype CIR_HSIRDYIE_Field is STM32_SVD.Bit; subtype CIR_HSERDYIE_Field is STM32_SVD.Bit; subtype CIR_PLLRDYIE_Field is STM32_SVD.Bit; subtype CIR_HSI14RDYE_Field is STM32_SVD.Bit; subtype CIR_HSI48RDYIE_Field is STM32_SVD.Bit; subtype CIR_LSIRDYC_Field is STM32_SVD.Bit; subtype CIR_LSERDYC_Field is STM32_SVD.Bit; subtype CIR_HSIRDYC_Field is STM32_SVD.Bit; subtype CIR_HSERDYC_Field is STM32_SVD.Bit; subtype CIR_PLLRDYC_Field is STM32_SVD.Bit; subtype CIR_HSI14RDYC_Field is STM32_SVD.Bit; subtype CIR_HSI48RDYC_Field is STM32_SVD.Bit; subtype CIR_CSSC_Field is STM32_SVD.Bit; -- Clock interrupt register (RCC_CIR) type CIR_Register is record -- Read-only. LSI Ready Interrupt flag LSIRDYF : CIR_LSIRDYF_Field := 16#0#; -- Read-only. LSE Ready Interrupt flag LSERDYF : CIR_LSERDYF_Field := 16#0#; -- Read-only. HSI Ready Interrupt flag HSIRDYF : CIR_HSIRDYF_Field := 16#0#; -- Read-only. HSE Ready Interrupt flag HSERDYF : CIR_HSERDYF_Field := 16#0#; -- Read-only. PLL Ready Interrupt flag PLLRDYF : CIR_PLLRDYF_Field := 16#0#; -- Read-only. HSI14 ready interrupt flag HSI14RDYF : CIR_HSI14RDYF_Field := 16#0#; -- Read-only. HSI48 ready interrupt flag HSI48RDYF : CIR_HSI48RDYF_Field := 16#0#; -- Read-only. Clock Security System Interrupt flag CSSF : CIR_CSSF_Field := 16#0#; -- LSI Ready Interrupt Enable LSIRDYIE : CIR_LSIRDYIE_Field := 16#0#; -- LSE Ready Interrupt Enable LSERDYIE : CIR_LSERDYIE_Field := 16#0#; -- HSI Ready Interrupt Enable HSIRDYIE : CIR_HSIRDYIE_Field := 16#0#; -- HSE Ready Interrupt Enable HSERDYIE : CIR_HSERDYIE_Field := 16#0#; -- PLL Ready Interrupt Enable PLLRDYIE : CIR_PLLRDYIE_Field := 16#0#; -- HSI14 ready interrupt enable HSI14RDYE : CIR_HSI14RDYE_Field := 16#0#; -- HSI48 ready interrupt enable HSI48RDYIE : CIR_HSI48RDYIE_Field := 16#0#; -- unspecified Reserved_15_15 : STM32_SVD.Bit := 16#0#; -- Write-only. LSI Ready Interrupt Clear LSIRDYC : CIR_LSIRDYC_Field := 16#0#; -- Write-only. LSE Ready Interrupt Clear LSERDYC : CIR_LSERDYC_Field := 16#0#; -- Write-only. HSI Ready Interrupt Clear HSIRDYC : CIR_HSIRDYC_Field := 16#0#; -- Write-only. HSE Ready Interrupt Clear HSERDYC : CIR_HSERDYC_Field := 16#0#; -- Write-only. PLL Ready Interrupt Clear PLLRDYC : CIR_PLLRDYC_Field := 16#0#; -- Write-only. HSI 14 MHz Ready Interrupt Clear HSI14RDYC : CIR_HSI14RDYC_Field := 16#0#; -- Write-only. HSI48 Ready Interrupt Clear HSI48RDYC : CIR_HSI48RDYC_Field := 16#0#; -- Write-only. Clock security system interrupt clear CSSC : CIR_CSSC_Field := 16#0#; -- unspecified Reserved_24_31 : STM32_SVD.Byte := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for CIR_Register use record LSIRDYF at 0 range 0 .. 0; LSERDYF at 0 range 1 .. 1; HSIRDYF at 0 range 2 .. 2; HSERDYF at 0 range 3 .. 3; PLLRDYF at 0 range 4 .. 4; HSI14RDYF at 0 range 5 .. 5; HSI48RDYF at 0 range 6 .. 6; CSSF at 0 range 7 .. 7; LSIRDYIE at 0 range 8 .. 8; LSERDYIE at 0 range 9 .. 9; HSIRDYIE at 0 range 10 .. 10; HSERDYIE at 0 range 11 .. 11; PLLRDYIE at 0 range 12 .. 12; HSI14RDYE at 0 range 13 .. 13; HSI48RDYIE at 0 range 14 .. 14; Reserved_15_15 at 0 range 15 .. 15; LSIRDYC at 0 range 16 .. 16; LSERDYC at 0 range 17 .. 17; HSIRDYC at 0 range 18 .. 18; HSERDYC at 0 range 19 .. 19; PLLRDYC at 0 range 20 .. 20; HSI14RDYC at 0 range 21 .. 21; HSI48RDYC at 0 range 22 .. 22; CSSC at 0 range 23 .. 23; Reserved_24_31 at 0 range 24 .. 31; end record; subtype APB2RSTR_SYSCFGRST_Field is STM32_SVD.Bit; subtype APB2RSTR_ADCRST_Field is STM32_SVD.Bit; subtype APB2RSTR_TIM1RST_Field is STM32_SVD.Bit; subtype APB2RSTR_SPI1RST_Field is STM32_SVD.Bit; subtype APB2RSTR_USART1RST_Field is STM32_SVD.Bit; subtype APB2RSTR_TIM15RST_Field is STM32_SVD.Bit; subtype APB2RSTR_TIM16RST_Field is STM32_SVD.Bit; subtype APB2RSTR_TIM17RST_Field is STM32_SVD.Bit; subtype APB2RSTR_DBGMCURST_Field is STM32_SVD.Bit; -- APB2 peripheral reset register (RCC_APB2RSTR) type APB2RSTR_Register is record -- SYSCFG and COMP reset SYSCFGRST : APB2RSTR_SYSCFGRST_Field := 16#0#; -- unspecified Reserved_1_8 : STM32_SVD.Byte := 16#0#; -- ADC interface reset ADCRST : APB2RSTR_ADCRST_Field := 16#0#; -- unspecified Reserved_10_10 : STM32_SVD.Bit := 16#0#; -- TIM1 timer reset TIM1RST : APB2RSTR_TIM1RST_Field := 16#0#; -- SPI 1 reset SPI1RST : APB2RSTR_SPI1RST_Field := 16#0#; -- unspecified Reserved_13_13 : STM32_SVD.Bit := 16#0#; -- USART1 reset USART1RST : APB2RSTR_USART1RST_Field := 16#0#; -- unspecified Reserved_15_15 : STM32_SVD.Bit := 16#0#; -- TIM15 timer reset TIM15RST : APB2RSTR_TIM15RST_Field := 16#0#; -- TIM16 timer reset TIM16RST : APB2RSTR_TIM16RST_Field := 16#0#; -- TIM17 timer reset TIM17RST : APB2RSTR_TIM17RST_Field := 16#0#; -- unspecified Reserved_19_21 : STM32_SVD.UInt3 := 16#0#; -- Debug MCU reset DBGMCURST : APB2RSTR_DBGMCURST_Field := 16#0#; -- unspecified Reserved_23_31 : STM32_SVD.UInt9 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for APB2RSTR_Register use record SYSCFGRST at 0 range 0 .. 0; Reserved_1_8 at 0 range 1 .. 8; ADCRST at 0 range 9 .. 9; Reserved_10_10 at 0 range 10 .. 10; TIM1RST at 0 range 11 .. 11; SPI1RST at 0 range 12 .. 12; Reserved_13_13 at 0 range 13 .. 13; USART1RST at 0 range 14 .. 14; Reserved_15_15 at 0 range 15 .. 15; TIM15RST at 0 range 16 .. 16; TIM16RST at 0 range 17 .. 17; TIM17RST at 0 range 18 .. 18; Reserved_19_21 at 0 range 19 .. 21; DBGMCURST at 0 range 22 .. 22; Reserved_23_31 at 0 range 23 .. 31; end record; subtype APB1RSTR_TIM3RST_Field is STM32_SVD.Bit; subtype APB1RSTR_TIM6RST_Field is STM32_SVD.Bit; subtype APB1RSTR_TIM14RST_Field is STM32_SVD.Bit; subtype APB1RSTR_WWDGRST_Field is STM32_SVD.Bit; subtype APB1RSTR_SPI2RST_Field is STM32_SVD.Bit; subtype APB1RSTR_USART2RST_Field is STM32_SVD.Bit; subtype APB1RSTR_I2C1RST_Field is STM32_SVD.Bit; subtype APB1RSTR_I2C2RST_Field is STM32_SVD.Bit; subtype APB1RSTR_PWRRST_Field is STM32_SVD.Bit; -- APB1 peripheral reset register (RCC_APB1RSTR) type APB1RSTR_Register is record -- unspecified Reserved_0_0 : STM32_SVD.Bit := 16#0#; -- Timer 3 reset TIM3RST : APB1RSTR_TIM3RST_Field := 16#0#; -- unspecified Reserved_2_3 : STM32_SVD.UInt2 := 16#0#; -- Timer 6 reset TIM6RST : APB1RSTR_TIM6RST_Field := 16#0#; -- unspecified Reserved_5_7 : STM32_SVD.UInt3 := 16#0#; -- Timer 14 reset TIM14RST : APB1RSTR_TIM14RST_Field := 16#0#; -- unspecified Reserved_9_10 : STM32_SVD.UInt2 := 16#0#; -- Window watchdog reset WWDGRST : APB1RSTR_WWDGRST_Field := 16#0#; -- unspecified Reserved_12_13 : STM32_SVD.UInt2 := 16#0#; -- SPI2 reset SPI2RST : APB1RSTR_SPI2RST_Field := 16#0#; -- unspecified Reserved_15_16 : STM32_SVD.UInt2 := 16#0#; -- USART 2 reset USART2RST : APB1RSTR_USART2RST_Field := 16#0#; -- unspecified Reserved_18_20 : STM32_SVD.UInt3 := 16#0#; -- I2C1 reset I2C1RST : APB1RSTR_I2C1RST_Field := 16#0#; -- I2C2 reset I2C2RST : APB1RSTR_I2C2RST_Field := 16#0#; -- unspecified Reserved_23_27 : STM32_SVD.UInt5 := 16#0#; -- Power interface reset PWRRST : APB1RSTR_PWRRST_Field := 16#0#; -- unspecified Reserved_29_31 : STM32_SVD.UInt3 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for APB1RSTR_Register use record Reserved_0_0 at 0 range 0 .. 0; TIM3RST at 0 range 1 .. 1; Reserved_2_3 at 0 range 2 .. 3; TIM6RST at 0 range 4 .. 4; Reserved_5_7 at 0 range 5 .. 7; TIM14RST at 0 range 8 .. 8; Reserved_9_10 at 0 range 9 .. 10; WWDGRST at 0 range 11 .. 11; Reserved_12_13 at 0 range 12 .. 13; SPI2RST at 0 range 14 .. 14; Reserved_15_16 at 0 range 15 .. 16; USART2RST at 0 range 17 .. 17; Reserved_18_20 at 0 range 18 .. 20; I2C1RST at 0 range 21 .. 21; I2C2RST at 0 range 22 .. 22; Reserved_23_27 at 0 range 23 .. 27; PWRRST at 0 range 28 .. 28; Reserved_29_31 at 0 range 29 .. 31; end record; subtype AHBENR_DMAEN_Field is STM32_SVD.Bit; subtype AHBENR_SRAMEN_Field is STM32_SVD.Bit; subtype AHBENR_FLITFEN_Field is STM32_SVD.Bit; subtype AHBENR_CRCEN_Field is STM32_SVD.Bit; subtype AHBENR_IOPAEN_Field is STM32_SVD.Bit; subtype AHBENR_IOPBEN_Field is STM32_SVD.Bit; subtype AHBENR_IOPCEN_Field is STM32_SVD.Bit; subtype AHBENR_IOPDEN_Field is STM32_SVD.Bit; subtype AHBENR_IOPFEN_Field is STM32_SVD.Bit; -- AHB Peripheral Clock enable register (RCC_AHBENR) type AHBENR_Register is record -- DMA1 clock enable DMAEN : AHBENR_DMAEN_Field := 16#0#; -- unspecified Reserved_1_1 : STM32_SVD.Bit := 16#0#; -- SRAM interface clock enable SRAMEN : AHBENR_SRAMEN_Field := 16#1#; -- unspecified Reserved_3_3 : STM32_SVD.Bit := 16#0#; -- FLITF clock enable FLITFEN : AHBENR_FLITFEN_Field := 16#1#; -- unspecified Reserved_5_5 : STM32_SVD.Bit := 16#0#; -- CRC clock enable CRCEN : AHBENR_CRCEN_Field := 16#0#; -- unspecified Reserved_7_16 : STM32_SVD.UInt10 := 16#0#; -- I/O port A clock enable IOPAEN : AHBENR_IOPAEN_Field := 16#0#; -- I/O port B clock enable IOPBEN : AHBENR_IOPBEN_Field := 16#0#; -- I/O port C clock enable IOPCEN : AHBENR_IOPCEN_Field := 16#0#; -- I/O port D clock enable IOPDEN : AHBENR_IOPDEN_Field := 16#0#; -- unspecified Reserved_21_21 : STM32_SVD.Bit := 16#0#; -- I/O port F clock enable IOPFEN : AHBENR_IOPFEN_Field := 16#0#; -- unspecified Reserved_23_31 : STM32_SVD.UInt9 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for AHBENR_Register use record DMAEN at 0 range 0 .. 0; Reserved_1_1 at 0 range 1 .. 1; SRAMEN at 0 range 2 .. 2; Reserved_3_3 at 0 range 3 .. 3; FLITFEN at 0 range 4 .. 4; Reserved_5_5 at 0 range 5 .. 5; CRCEN at 0 range 6 .. 6; Reserved_7_16 at 0 range 7 .. 16; IOPAEN at 0 range 17 .. 17; IOPBEN at 0 range 18 .. 18; IOPCEN at 0 range 19 .. 19; IOPDEN at 0 range 20 .. 20; Reserved_21_21 at 0 range 21 .. 21; IOPFEN at 0 range 22 .. 22; Reserved_23_31 at 0 range 23 .. 31; end record; subtype APB2ENR_SYSCFGEN_Field is STM32_SVD.Bit; subtype APB2ENR_ADCEN_Field is STM32_SVD.Bit; subtype APB2ENR_TIM1EN_Field is STM32_SVD.Bit; subtype APB2ENR_SPI1EN_Field is STM32_SVD.Bit; subtype APB2ENR_USART1EN_Field is STM32_SVD.Bit; subtype APB2ENR_TIM15EN_Field is STM32_SVD.Bit; subtype APB2ENR_TIM16EN_Field is STM32_SVD.Bit; subtype APB2ENR_TIM17EN_Field is STM32_SVD.Bit; subtype APB2ENR_DBGMCUEN_Field is STM32_SVD.Bit; -- APB2 peripheral clock enable register (RCC_APB2ENR) type APB2ENR_Register is record -- SYSCFG clock enable SYSCFGEN : APB2ENR_SYSCFGEN_Field := 16#0#; -- unspecified Reserved_1_8 : STM32_SVD.Byte := 16#0#; -- ADC 1 interface clock enable ADCEN : APB2ENR_ADCEN_Field := 16#0#; -- unspecified Reserved_10_10 : STM32_SVD.Bit := 16#0#; -- TIM1 Timer clock enable TIM1EN : APB2ENR_TIM1EN_Field := 16#0#; -- SPI 1 clock enable SPI1EN : APB2ENR_SPI1EN_Field := 16#0#; -- unspecified Reserved_13_13 : STM32_SVD.Bit := 16#0#; -- USART1 clock enable USART1EN : APB2ENR_USART1EN_Field := 16#0#; -- unspecified Reserved_15_15 : STM32_SVD.Bit := 16#0#; -- TIM15 timer clock enable TIM15EN : APB2ENR_TIM15EN_Field := 16#0#; -- TIM16 timer clock enable TIM16EN : APB2ENR_TIM16EN_Field := 16#0#; -- TIM17 timer clock enable TIM17EN : APB2ENR_TIM17EN_Field := 16#0#; -- unspecified Reserved_19_21 : STM32_SVD.UInt3 := 16#0#; -- MCU debug module clock enable DBGMCUEN : APB2ENR_DBGMCUEN_Field := 16#0#; -- unspecified Reserved_23_31 : STM32_SVD.UInt9 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for APB2ENR_Register use record SYSCFGEN at 0 range 0 .. 0; Reserved_1_8 at 0 range 1 .. 8; ADCEN at 0 range 9 .. 9; Reserved_10_10 at 0 range 10 .. 10; TIM1EN at 0 range 11 .. 11; SPI1EN at 0 range 12 .. 12; Reserved_13_13 at 0 range 13 .. 13; USART1EN at 0 range 14 .. 14; Reserved_15_15 at 0 range 15 .. 15; TIM15EN at 0 range 16 .. 16; TIM16EN at 0 range 17 .. 17; TIM17EN at 0 range 18 .. 18; Reserved_19_21 at 0 range 19 .. 21; DBGMCUEN at 0 range 22 .. 22; Reserved_23_31 at 0 range 23 .. 31; end record; subtype APB1ENR_TIM3EN_Field is STM32_SVD.Bit; subtype APB1ENR_TIM6EN_Field is STM32_SVD.Bit; subtype APB1ENR_TIM14EN_Field is STM32_SVD.Bit; subtype APB1ENR_WWDGEN_Field is STM32_SVD.Bit; subtype APB1ENR_SPI2EN_Field is STM32_SVD.Bit; subtype APB1ENR_USART2EN_Field is STM32_SVD.Bit; subtype APB1ENR_I2C1EN_Field is STM32_SVD.Bit; subtype APB1ENR_I2C2EN_Field is STM32_SVD.Bit; subtype APB1ENR_PWREN_Field is STM32_SVD.Bit; -- APB1 peripheral clock enable register (RCC_APB1ENR) type APB1ENR_Register is record -- unspecified Reserved_0_0 : STM32_SVD.Bit := 16#0#; -- Timer 3 clock enable TIM3EN : APB1ENR_TIM3EN_Field := 16#0#; -- unspecified Reserved_2_3 : STM32_SVD.UInt2 := 16#0#; -- Timer 6 clock enable TIM6EN : APB1ENR_TIM6EN_Field := 16#0#; -- unspecified Reserved_5_7 : STM32_SVD.UInt3 := 16#0#; -- Timer 14 clock enable TIM14EN : APB1ENR_TIM14EN_Field := 16#0#; -- unspecified Reserved_9_10 : STM32_SVD.UInt2 := 16#0#; -- Window watchdog clock enable WWDGEN : APB1ENR_WWDGEN_Field := 16#0#; -- unspecified Reserved_12_13 : STM32_SVD.UInt2 := 16#0#; -- SPI 2 clock enable SPI2EN : APB1ENR_SPI2EN_Field := 16#0#; -- unspecified Reserved_15_16 : STM32_SVD.UInt2 := 16#0#; -- USART 2 clock enable USART2EN : APB1ENR_USART2EN_Field := 16#0#; -- unspecified Reserved_18_20 : STM32_SVD.UInt3 := 16#0#; -- I2C 1 clock enable I2C1EN : APB1ENR_I2C1EN_Field := 16#0#; -- I2C 2 clock enable I2C2EN : APB1ENR_I2C2EN_Field := 16#0#; -- unspecified Reserved_23_27 : STM32_SVD.UInt5 := 16#0#; -- Power interface clock enable PWREN : APB1ENR_PWREN_Field := 16#0#; -- unspecified Reserved_29_31 : STM32_SVD.UInt3 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for APB1ENR_Register use record Reserved_0_0 at 0 range 0 .. 0; TIM3EN at 0 range 1 .. 1; Reserved_2_3 at 0 range 2 .. 3; TIM6EN at 0 range 4 .. 4; Reserved_5_7 at 0 range 5 .. 7; TIM14EN at 0 range 8 .. 8; Reserved_9_10 at 0 range 9 .. 10; WWDGEN at 0 range 11 .. 11; Reserved_12_13 at 0 range 12 .. 13; SPI2EN at 0 range 14 .. 14; Reserved_15_16 at 0 range 15 .. 16; USART2EN at 0 range 17 .. 17; Reserved_18_20 at 0 range 18 .. 20; I2C1EN at 0 range 21 .. 21; I2C2EN at 0 range 22 .. 22; Reserved_23_27 at 0 range 23 .. 27; PWREN at 0 range 28 .. 28; Reserved_29_31 at 0 range 29 .. 31; end record; subtype BDCR_LSEON_Field is STM32_SVD.Bit; subtype BDCR_LSERDY_Field is STM32_SVD.Bit; subtype BDCR_LSEBYP_Field is STM32_SVD.Bit; subtype BDCR_LSEDRV_Field is STM32_SVD.UInt2; subtype BDCR_RTCSEL_Field is STM32_SVD.UInt2; subtype BDCR_RTCEN_Field is STM32_SVD.Bit; subtype BDCR_BDRST_Field is STM32_SVD.Bit; -- Backup domain control register (RCC_BDCR) type BDCR_Register is record -- External Low Speed oscillator enable LSEON : BDCR_LSEON_Field := 16#0#; -- Read-only. External Low Speed oscillator ready LSERDY : BDCR_LSERDY_Field := 16#0#; -- External Low Speed oscillator bypass LSEBYP : BDCR_LSEBYP_Field := 16#0#; -- LSE oscillator drive capability LSEDRV : BDCR_LSEDRV_Field := 16#0#; -- unspecified Reserved_5_7 : STM32_SVD.UInt3 := 16#0#; -- RTC clock source selection RTCSEL : BDCR_RTCSEL_Field := 16#0#; -- unspecified Reserved_10_14 : STM32_SVD.UInt5 := 16#0#; -- RTC clock enable RTCEN : BDCR_RTCEN_Field := 16#0#; -- Backup domain software reset BDRST : BDCR_BDRST_Field := 16#0#; -- unspecified Reserved_17_31 : STM32_SVD.UInt15 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for BDCR_Register use record LSEON at 0 range 0 .. 0; LSERDY at 0 range 1 .. 1; LSEBYP at 0 range 2 .. 2; LSEDRV at 0 range 3 .. 4; Reserved_5_7 at 0 range 5 .. 7; RTCSEL at 0 range 8 .. 9; Reserved_10_14 at 0 range 10 .. 14; RTCEN at 0 range 15 .. 15; BDRST at 0 range 16 .. 16; Reserved_17_31 at 0 range 17 .. 31; end record; subtype CSR_LSION_Field is STM32_SVD.Bit; subtype CSR_LSIRDY_Field is STM32_SVD.Bit; subtype CSR_RMVF_Field is STM32_SVD.Bit; subtype CSR_OBLRSTF_Field is STM32_SVD.Bit; subtype CSR_PINRSTF_Field is STM32_SVD.Bit; subtype CSR_PORRSTF_Field is STM32_SVD.Bit; subtype CSR_SFTRSTF_Field is STM32_SVD.Bit; subtype CSR_IWDGRSTF_Field is STM32_SVD.Bit; subtype CSR_WWDGRSTF_Field is STM32_SVD.Bit; subtype CSR_LPWRRSTF_Field is STM32_SVD.Bit; -- Control/status register (RCC_CSR) type CSR_Register is record -- Internal low speed oscillator enable LSION : CSR_LSION_Field := 16#0#; -- Read-only. Internal low speed oscillator ready LSIRDY : CSR_LSIRDY_Field := 16#0#; -- unspecified Reserved_2_23 : STM32_SVD.UInt22 := 16#0#; -- Remove reset flag RMVF : CSR_RMVF_Field := 16#0#; -- Option byte loader reset flag OBLRSTF : CSR_OBLRSTF_Field := 16#0#; -- PIN reset flag PINRSTF : CSR_PINRSTF_Field := 16#1#; -- POR/PDR reset flag PORRSTF : CSR_PORRSTF_Field := 16#1#; -- Software reset flag SFTRSTF : CSR_SFTRSTF_Field := 16#0#; -- Independent watchdog reset flag IWDGRSTF : CSR_IWDGRSTF_Field := 16#0#; -- Window watchdog reset flag WWDGRSTF : CSR_WWDGRSTF_Field := 16#0#; -- Low-power reset flag LPWRRSTF : CSR_LPWRRSTF_Field := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for CSR_Register use record LSION at 0 range 0 .. 0; LSIRDY at 0 range 1 .. 1; Reserved_2_23 at 0 range 2 .. 23; RMVF at 0 range 24 .. 24; OBLRSTF at 0 range 25 .. 25; PINRSTF at 0 range 26 .. 26; PORRSTF at 0 range 27 .. 27; SFTRSTF at 0 range 28 .. 28; IWDGRSTF at 0 range 29 .. 29; WWDGRSTF at 0 range 30 .. 30; LPWRRSTF at 0 range 31 .. 31; end record; subtype AHBRSTR_IOPARST_Field is STM32_SVD.Bit; subtype AHBRSTR_IOPBRST_Field is STM32_SVD.Bit; subtype AHBRSTR_IOPCRST_Field is STM32_SVD.Bit; subtype AHBRSTR_IOPDRST_Field is STM32_SVD.Bit; subtype AHBRSTR_IOPFRST_Field is STM32_SVD.Bit; -- AHB peripheral reset register type AHBRSTR_Register is record -- unspecified Reserved_0_16 : STM32_SVD.UInt17 := 16#0#; -- I/O port A reset IOPARST : AHBRSTR_IOPARST_Field := 16#0#; -- I/O port B reset IOPBRST : AHBRSTR_IOPBRST_Field := 16#0#; -- I/O port C reset IOPCRST : AHBRSTR_IOPCRST_Field := 16#0#; -- I/O port D reset IOPDRST : AHBRSTR_IOPDRST_Field := 16#0#; -- unspecified Reserved_21_21 : STM32_SVD.Bit := 16#0#; -- I/O port F reset IOPFRST : AHBRSTR_IOPFRST_Field := 16#0#; -- unspecified Reserved_23_31 : STM32_SVD.UInt9 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for AHBRSTR_Register use record Reserved_0_16 at 0 range 0 .. 16; IOPARST at 0 range 17 .. 17; IOPBRST at 0 range 18 .. 18; IOPCRST at 0 range 19 .. 19; IOPDRST at 0 range 20 .. 20; Reserved_21_21 at 0 range 21 .. 21; IOPFRST at 0 range 22 .. 22; Reserved_23_31 at 0 range 23 .. 31; end record; subtype CFGR2_PREDIV_Field is STM32_SVD.UInt4; -- Clock configuration register 2 type CFGR2_Register is record -- PREDIV division factor PREDIV : CFGR2_PREDIV_Field := 16#0#; -- unspecified Reserved_4_31 : STM32_SVD.UInt28 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for CFGR2_Register use record PREDIV at 0 range 0 .. 3; Reserved_4_31 at 0 range 4 .. 31; end record; subtype CFGR3_USART1SW_Field is STM32_SVD.UInt2; subtype CFGR3_I2C1SW_Field is STM32_SVD.Bit; subtype CFGR3_ADCSW_Field is STM32_SVD.Bit; subtype CFGR3_USART2SW_Field is STM32_SVD.UInt2; -- Clock configuration register 3 type CFGR3_Register is record -- USART1 clock source selection USART1SW : CFGR3_USART1SW_Field := 16#0#; -- unspecified Reserved_2_3 : STM32_SVD.UInt2 := 16#0#; -- I2C1 clock source selection I2C1SW : CFGR3_I2C1SW_Field := 16#0#; -- unspecified Reserved_5_7 : STM32_SVD.UInt3 := 16#0#; -- ADC clock source selection ADCSW : CFGR3_ADCSW_Field := 16#0#; -- unspecified Reserved_9_15 : STM32_SVD.UInt7 := 16#0#; -- USART2 clock source selection USART2SW : CFGR3_USART2SW_Field := 16#0#; -- unspecified Reserved_18_31 : STM32_SVD.UInt14 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for CFGR3_Register use record USART1SW at 0 range 0 .. 1; Reserved_2_3 at 0 range 2 .. 3; I2C1SW at 0 range 4 .. 4; Reserved_5_7 at 0 range 5 .. 7; ADCSW at 0 range 8 .. 8; Reserved_9_15 at 0 range 9 .. 15; USART2SW at 0 range 16 .. 17; Reserved_18_31 at 0 range 18 .. 31; end record; subtype CR2_HSI14ON_Field is STM32_SVD.Bit; subtype CR2_HSI14RDY_Field is STM32_SVD.Bit; subtype CR2_HSI14DIS_Field is STM32_SVD.Bit; subtype CR2_HSI14TRIM_Field is STM32_SVD.UInt5; subtype CR2_HSI14CAL_Field is STM32_SVD.Byte; subtype CR2_HSI48ON_Field is STM32_SVD.Bit; subtype CR2_HSI48RDY_Field is STM32_SVD.Bit; subtype CR2_HSI48CAL_Field is STM32_SVD.Bit; -- Clock control register 2 type CR2_Register is record -- HSI14 clock enable HSI14ON : CR2_HSI14ON_Field := 16#0#; -- Read-only. HR14 clock ready flag HSI14RDY : CR2_HSI14RDY_Field := 16#0#; -- HSI14 clock request from ADC disable HSI14DIS : CR2_HSI14DIS_Field := 16#0#; -- HSI14 clock trimming HSI14TRIM : CR2_HSI14TRIM_Field := 16#10#; -- Read-only. HSI14 clock calibration HSI14CAL : CR2_HSI14CAL_Field := 16#0#; -- HSI48 clock enable HSI48ON : CR2_HSI48ON_Field := 16#0#; -- Read-only. HSI48 clock ready flag HSI48RDY : CR2_HSI48RDY_Field := 16#0#; -- unspecified Reserved_18_23 : STM32_SVD.UInt6 := 16#0#; -- Read-only. HSI48 factory clock calibration HSI48CAL : CR2_HSI48CAL_Field := 16#0#; -- unspecified Reserved_25_31 : STM32_SVD.UInt7 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for CR2_Register use record HSI14ON at 0 range 0 .. 0; HSI14RDY at 0 range 1 .. 1; HSI14DIS at 0 range 2 .. 2; HSI14TRIM at 0 range 3 .. 7; HSI14CAL at 0 range 8 .. 15; HSI48ON at 0 range 16 .. 16; HSI48RDY at 0 range 17 .. 17; Reserved_18_23 at 0 range 18 .. 23; HSI48CAL at 0 range 24 .. 24; Reserved_25_31 at 0 range 25 .. 31; end record; ----------------- -- Peripherals -- ----------------- -- Reset and clock control type RCC_Peripheral is record -- Clock control register CR : aliased CR_Register; -- Clock configuration register (RCC_CFGR) CFGR : aliased CFGR_Register; -- Clock interrupt register (RCC_CIR) CIR : aliased CIR_Register; -- APB2 peripheral reset register (RCC_APB2RSTR) APB2RSTR : aliased APB2RSTR_Register; -- APB1 peripheral reset register (RCC_APB1RSTR) APB1RSTR : aliased APB1RSTR_Register; -- AHB Peripheral Clock enable register (RCC_AHBENR) AHBENR : aliased AHBENR_Register; -- APB2 peripheral clock enable register (RCC_APB2ENR) APB2ENR : aliased APB2ENR_Register; -- APB1 peripheral clock enable register (RCC_APB1ENR) APB1ENR : aliased APB1ENR_Register; -- Backup domain control register (RCC_BDCR) BDCR : aliased BDCR_Register; -- Control/status register (RCC_CSR) CSR : aliased CSR_Register; -- AHB peripheral reset register AHBRSTR : aliased AHBRSTR_Register; -- Clock configuration register 2 CFGR2 : aliased CFGR2_Register; -- Clock configuration register 3 CFGR3 : aliased CFGR3_Register; -- Clock control register 2 CR2 : aliased CR2_Register; end record with Volatile; for RCC_Peripheral use record CR at 16#0# range 0 .. 31; CFGR at 16#4# range 0 .. 31; CIR at 16#8# range 0 .. 31; APB2RSTR at 16#C# range 0 .. 31; APB1RSTR at 16#10# range 0 .. 31; AHBENR at 16#14# range 0 .. 31; APB2ENR at 16#18# range 0 .. 31; APB1ENR at 16#1C# range 0 .. 31; BDCR at 16#20# range 0 .. 31; CSR at 16#24# range 0 .. 31; AHBRSTR at 16#28# range 0 .. 31; CFGR2 at 16#2C# range 0 .. 31; CFGR3 at 16#30# range 0 .. 31; CR2 at 16#34# range 0 .. 31; end record; -- Reset and clock control RCC_Periph : aliased RCC_Peripheral with Import, Address => System'To_Address (16#40021000#); end STM32_SVD.RCC;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- A D A . W I D E _ W I D E _ C H A R A C T E R T S . U N I C O D E -- -- -- -- B o d y -- -- -- -- Copyright (C) 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. -- -- -- ------------------------------------------------------------------------------ package body Ada.Wide_Wide_Characters.Unicode is package G renames GNAT.UTF_32; ------------------ -- Get_Category -- ------------------ function Get_Category (U : Wide_Wide_Character) return Category is begin return Category (G.Get_Category (Wide_Wide_Character'Pos (U))); end Get_Category; -------------- -- Is_Digit -- -------------- function Is_Digit (U : Wide_Wide_Character) return Boolean is begin return G.Is_UTF_32_Digit (Wide_Wide_Character'Pos (U)); end Is_Digit; function Is_Digit (C : Category) return Boolean is begin return G.Is_UTF_32_Digit (G.Category (C)); end Is_Digit; --------------- -- Is_Letter -- --------------- function Is_Letter (U : Wide_Wide_Character) return Boolean is begin return G.Is_UTF_32_Letter (Wide_Wide_Character'Pos (U)); end Is_Letter; function Is_Letter (C : Category) return Boolean is begin return G.Is_UTF_32_Letter (G.Category (C)); end Is_Letter; ------------------------ -- Is_Line_Terminator -- ------------------------ function Is_Line_Terminator (U : Wide_Wide_Character) return Boolean is begin return G.Is_UTF_32_Line_Terminator (Wide_Wide_Character'Pos (U)); end Is_Line_Terminator; ------------- -- Is_Mark -- ------------- function Is_Mark (U : Wide_Wide_Character) return Boolean is begin return G.Is_UTF_32_Mark (Wide_Wide_Character'Pos (U)); end Is_Mark; function Is_Mark (C : Category) return Boolean is begin return G.Is_UTF_32_Mark (G.Category (C)); end Is_Mark; -------------------- -- Is_Non_Graphic -- -------------------- function Is_Non_Graphic (U : Wide_Wide_Character) return Boolean is begin return G.Is_UTF_32_Non_Graphic (Wide_Wide_Character'Pos (U)); end Is_Non_Graphic; function Is_Non_Graphic (C : Category) return Boolean is begin return G.Is_UTF_32_Non_Graphic (G.Category (C)); end Is_Non_Graphic; -------------- -- Is_Other -- -------------- function Is_Other (U : Wide_Wide_Character) return Boolean is begin return G.Is_UTF_32_Other (Wide_Wide_Character'Pos (U)); end Is_Other; function Is_Other (C : Category) return Boolean is begin return G.Is_UTF_32_Other (G.Category (C)); end Is_Other; -------------------- -- Is_Punctuation -- -------------------- function Is_Punctuation (U : Wide_Wide_Character) return Boolean is begin return G.Is_UTF_32_Punctuation (Wide_Wide_Character'Pos (U)); end Is_Punctuation; function Is_Punctuation (C : Category) return Boolean is begin return G.Is_UTF_32_Punctuation (G.Category (C)); end Is_Punctuation; -------------- -- Is_Space -- -------------- function Is_Space (U : Wide_Wide_Character) return Boolean is begin return G.Is_UTF_32_Space (Wide_Wide_Character'Pos (U)); end Is_Space; function Is_Space (C : Category) return Boolean is begin return G.Is_UTF_32_Space (G.Category (C)); end Is_Space; ------------------- -- To_Upper_Case -- ------------------- function To_Upper_Case (U : Wide_Wide_Character) return Wide_Wide_Character is begin return Wide_Wide_Character'Val (G.UTF_32_To_Upper_Case (Wide_Wide_Character'Pos (U))); end To_Upper_Case; end Ada.Wide_Wide_Characters.Unicode;
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- SQL Database Access -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 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 package provides set of options to configure database drivers. ------------------------------------------------------------------------------ private with Ada.Containers.Hashed_Maps; with League.Strings; private with League.Strings.Hash; package SQL.Options is pragma Preelaborate; type SQL_Options is tagged private; procedure Set (Self : in out SQL_Options; Name : League.Strings.Universal_String; Value : League.Strings.Universal_String); function Get (Self : SQL_Options; Name : League.Strings.Universal_String) return League.Strings.Universal_String; function Is_Set (Self : SQL_Options; Name : League.Strings.Universal_String) return Boolean; private package String_Maps is new Ada.Containers.Hashed_Maps (League.Strings.Universal_String, League.Strings.Universal_String, League.Strings.Hash, League.Strings."=", League.Strings."="); type SQL_Options is tagged record Set : String_Maps.Map; end record; end SQL.Options;
-- Auto generated file. Don't edit -- Read copyright and license at the end of this file package body Encodings.Maps.CP_863 is Forward : Forward_Map (Character'Val(16#80#) .. Character'Last) := (Wide_Character'Val( 16#C7#), Wide_Character'Val( 16#FC#), Wide_Character'Val( 16#E9#), Wide_Character'Val( 16#E2#), Wide_Character'Val( 16#C2#), Wide_Character'Val( 16#E0#), Wide_Character'Val( 16#B6#), Wide_Character'Val( 16#E7#), Wide_Character'Val( 16#EA#), Wide_Character'Val( 16#EB#), Wide_Character'Val( 16#E8#), Wide_Character'Val( 16#EF#), Wide_Character'Val( 16#EE#), Wide_Character'Val(16#2017#), Wide_Character'Val( 16#C0#), Wide_Character'Val( 16#A7#), Wide_Character'Val( 16#C9#), Wide_Character'Val( 16#C8#), Wide_Character'Val( 16#CA#), Wide_Character'Val( 16#F4#), Wide_Character'Val( 16#CB#), Wide_Character'Val( 16#CF#), Wide_Character'Val( 16#FB#), Wide_Character'Val( 16#F9#), Wide_Character'Val( 16#A4#), Wide_Character'Val( 16#D4#), Wide_Character'Val( 16#DC#), Wide_Character'Val( 16#A2#), Wide_Character'Val( 16#A3#), Wide_Character'Val( 16#D9#), Wide_Character'Val( 16#DB#), Wide_Character'Val( 16#192#), Wide_Character'Val( 16#A6#), Wide_Character'Val( 16#B4#), Wide_Character'Val( 16#F3#), Wide_Character'Val( 16#FA#), Wide_Character'Val( 16#A8#), Wide_Character'Val( 16#B8#), Wide_Character'Val( 16#B3#), Wide_Character'Val( 16#AF#), Wide_Character'Val( 16#CE#), Wide_Character'Val(16#2310#), Wide_Character'Val( 16#AC#), Wide_Character'Val( 16#BD#), Wide_Character'Val( 16#BC#), Wide_Character'Val( 16#BE#), Wide_Character'Val( 16#AB#), Wide_Character'Val( 16#BB#), Wide_Character'Val(16#2591#), Wide_Character'Val(16#2592#), Wide_Character'Val(16#2593#), Wide_Character'Val(16#2502#), Wide_Character'Val(16#2524#), Wide_Character'Val(16#2561#), Wide_Character'Val(16#2562#), Wide_Character'Val(16#2556#), Wide_Character'Val(16#2555#), Wide_Character'Val(16#2563#), Wide_Character'Val(16#2551#), Wide_Character'Val(16#2557#), Wide_Character'Val(16#255D#), Wide_Character'Val(16#255C#), Wide_Character'Val(16#255B#), Wide_Character'Val(16#2510#), Wide_Character'Val(16#2514#), Wide_Character'Val(16#2534#), Wide_Character'Val(16#252C#), Wide_Character'Val(16#251C#), Wide_Character'Val(16#2500#), Wide_Character'Val(16#253C#), Wide_Character'Val(16#255E#), Wide_Character'Val(16#255F#), Wide_Character'Val(16#255A#), Wide_Character'Val(16#2554#), Wide_Character'Val(16#2569#), Wide_Character'Val(16#2566#), Wide_Character'Val(16#2560#), Wide_Character'Val(16#2550#), Wide_Character'Val(16#256C#), Wide_Character'Val(16#2567#), Wide_Character'Val(16#2568#), Wide_Character'Val(16#2564#), Wide_Character'Val(16#2565#), Wide_Character'Val(16#2559#), Wide_Character'Val(16#2558#), Wide_Character'Val(16#2552#), Wide_Character'Val(16#2553#), Wide_Character'Val(16#256B#), Wide_Character'Val(16#256A#), Wide_Character'Val(16#2518#), Wide_Character'Val(16#250C#), Wide_Character'Val(16#2588#), Wide_Character'Val(16#2584#), Wide_Character'Val(16#258C#), Wide_Character'Val(16#2590#), Wide_Character'Val(16#2580#), Wide_Character'Val( 16#3B1#), Wide_Character'Val( 16#DF#), Wide_Character'Val( 16#393#), Wide_Character'Val( 16#3C0#), Wide_Character'Val( 16#3A3#), Wide_Character'Val( 16#3C3#), Wide_Character'Val( 16#B5#), Wide_Character'Val( 16#3C4#), Wide_Character'Val( 16#3A6#), Wide_Character'Val( 16#398#), Wide_Character'Val( 16#3A9#), Wide_Character'Val( 16#3B4#), Wide_Character'Val(16#221E#), Wide_Character'Val( 16#3C6#), Wide_Character'Val( 16#3B5#), Wide_Character'Val(16#2229#), Wide_Character'Val(16#2261#), Wide_Character'Val( 16#B1#), Wide_Character'Val(16#2265#), Wide_Character'Val(16#2264#), Wide_Character'Val(16#2320#), Wide_Character'Val(16#2321#), Wide_Character'Val( 16#F7#), Wide_Character'Val(16#2248#), Wide_Character'Val( 16#B0#), Wide_Character'Val(16#2219#), Wide_Character'Val( 16#B7#), Wide_Character'Val(16#221A#), Wide_Character'Val(16#207F#), Wide_Character'Val( 16#B2#), Wide_Character'Val(16#25A0#), Wide_Character'Val( 16#A0#)); Ranges : Maps.Wide_Ranges (1 .. 60) := ((Wide_Character'Val( 16#0#),Wide_Character'Val( 16#7F#), 1), (Wide_Character'Val( 16#A0#),Wide_Character'Val( 16#A0#), 129), (Wide_Character'Val( 16#A2#),Wide_Character'Val( 16#A4#), 130), (Wide_Character'Val( 16#A6#),Wide_Character'Val( 16#A8#), 133), (Wide_Character'Val( 16#AB#),Wide_Character'Val( 16#AC#), 136), (Wide_Character'Val( 16#AF#),Wide_Character'Val( 16#B8#), 138), (Wide_Character'Val( 16#BB#),Wide_Character'Val( 16#BE#), 148), (Wide_Character'Val( 16#C0#),Wide_Character'Val( 16#C0#), 152), (Wide_Character'Val( 16#C2#),Wide_Character'Val( 16#C2#), 153), (Wide_Character'Val( 16#C7#),Wide_Character'Val( 16#CB#), 154), (Wide_Character'Val( 16#CE#),Wide_Character'Val( 16#CF#), 159), (Wide_Character'Val( 16#D4#),Wide_Character'Val( 16#D4#), 161), (Wide_Character'Val( 16#D9#),Wide_Character'Val( 16#D9#), 162), (Wide_Character'Val( 16#DB#),Wide_Character'Val( 16#DC#), 163), (Wide_Character'Val( 16#DF#),Wide_Character'Val( 16#E0#), 165), (Wide_Character'Val( 16#E2#),Wide_Character'Val( 16#E2#), 167), (Wide_Character'Val( 16#E7#),Wide_Character'Val( 16#EB#), 168), (Wide_Character'Val( 16#EE#),Wide_Character'Val( 16#EF#), 173), (Wide_Character'Val( 16#F3#),Wide_Character'Val( 16#F4#), 175), (Wide_Character'Val( 16#F7#),Wide_Character'Val( 16#F7#), 177), (Wide_Character'Val( 16#F9#),Wide_Character'Val( 16#FC#), 178), (Wide_Character'Val( 16#192#),Wide_Character'Val( 16#192#), 182), (Wide_Character'Val( 16#393#),Wide_Character'Val( 16#393#), 183), (Wide_Character'Val( 16#398#),Wide_Character'Val( 16#398#), 184), (Wide_Character'Val( 16#3A3#),Wide_Character'Val( 16#3A3#), 185), (Wide_Character'Val( 16#3A6#),Wide_Character'Val( 16#3A6#), 186), (Wide_Character'Val( 16#3A9#),Wide_Character'Val( 16#3A9#), 187), (Wide_Character'Val( 16#3B1#),Wide_Character'Val( 16#3B1#), 188), (Wide_Character'Val( 16#3B4#),Wide_Character'Val( 16#3B5#), 189), (Wide_Character'Val( 16#3C0#),Wide_Character'Val( 16#3C0#), 191), (Wide_Character'Val( 16#3C3#),Wide_Character'Val( 16#3C4#), 192), (Wide_Character'Val( 16#3C6#),Wide_Character'Val( 16#3C6#), 194), (Wide_Character'Val(16#2017#),Wide_Character'Val(16#2017#), 195), (Wide_Character'Val(16#207F#),Wide_Character'Val(16#207F#), 196), (Wide_Character'Val(16#2219#),Wide_Character'Val(16#221A#), 197), (Wide_Character'Val(16#221E#),Wide_Character'Val(16#221E#), 199), (Wide_Character'Val(16#2229#),Wide_Character'Val(16#2229#), 200), (Wide_Character'Val(16#2248#),Wide_Character'Val(16#2248#), 201), (Wide_Character'Val(16#2261#),Wide_Character'Val(16#2261#), 202), (Wide_Character'Val(16#2264#),Wide_Character'Val(16#2265#), 203), (Wide_Character'Val(16#2310#),Wide_Character'Val(16#2310#), 205), (Wide_Character'Val(16#2320#),Wide_Character'Val(16#2321#), 206), (Wide_Character'Val(16#2500#),Wide_Character'Val(16#2500#), 208), (Wide_Character'Val(16#2502#),Wide_Character'Val(16#2502#), 209), (Wide_Character'Val(16#250C#),Wide_Character'Val(16#250C#), 210), (Wide_Character'Val(16#2510#),Wide_Character'Val(16#2510#), 211), (Wide_Character'Val(16#2514#),Wide_Character'Val(16#2514#), 212), (Wide_Character'Val(16#2518#),Wide_Character'Val(16#2518#), 213), (Wide_Character'Val(16#251C#),Wide_Character'Val(16#251C#), 214), (Wide_Character'Val(16#2524#),Wide_Character'Val(16#2524#), 215), (Wide_Character'Val(16#252C#),Wide_Character'Val(16#252C#), 216), (Wide_Character'Val(16#2534#),Wide_Character'Val(16#2534#), 217), (Wide_Character'Val(16#253C#),Wide_Character'Val(16#253C#), 218), (Wide_Character'Val(16#2550#),Wide_Character'Val(16#256C#), 219), (Wide_Character'Val(16#2580#),Wide_Character'Val(16#2580#), 248), (Wide_Character'Val(16#2584#),Wide_Character'Val(16#2584#), 249), (Wide_Character'Val(16#2588#),Wide_Character'Val(16#2588#), 250), (Wide_Character'Val(16#258C#),Wide_Character'Val(16#258C#), 251), (Wide_Character'Val(16#2590#),Wide_Character'Val(16#2593#), 252), (Wide_Character'Val(16#25A0#),Wide_Character'Val(16#25A0#), 256)); Backward : Maps.Backward_Map (1 .. 256) := (Character'Val( 16#0#), Character'Val( 16#1#), Character'Val( 16#2#), Character'Val( 16#3#), Character'Val( 16#4#), Character'Val( 16#5#), Character'Val( 16#6#), Character'Val( 16#7#), Character'Val( 16#8#), Character'Val( 16#9#), Character'Val( 16#A#), Character'Val( 16#B#), Character'Val( 16#C#), Character'Val( 16#D#), Character'Val( 16#E#), Character'Val( 16#F#), Character'Val(16#10#), Character'Val(16#11#), Character'Val(16#12#), Character'Val(16#13#), Character'Val(16#14#), Character'Val(16#15#), Character'Val(16#16#), Character'Val(16#17#), Character'Val(16#18#), Character'Val(16#19#), Character'Val(16#1A#), Character'Val(16#1B#), Character'Val(16#1C#), Character'Val(16#1D#), Character'Val(16#1E#), Character'Val(16#1F#), Character'Val(16#20#), Character'Val(16#21#), Character'Val(16#22#), Character'Val(16#23#), Character'Val(16#24#), Character'Val(16#25#), Character'Val(16#26#), Character'Val(16#27#), Character'Val(16#28#), Character'Val(16#29#), Character'Val(16#2A#), Character'Val(16#2B#), Character'Val(16#2C#), Character'Val(16#2D#), Character'Val(16#2E#), Character'Val(16#2F#), Character'Val(16#30#), Character'Val(16#31#), Character'Val(16#32#), Character'Val(16#33#), Character'Val(16#34#), Character'Val(16#35#), Character'Val(16#36#), Character'Val(16#37#), Character'Val(16#38#), Character'Val(16#39#), Character'Val(16#3A#), Character'Val(16#3B#), Character'Val(16#3C#), Character'Val(16#3D#), Character'Val(16#3E#), Character'Val(16#3F#), Character'Val(16#40#), Character'Val(16#41#), Character'Val(16#42#), Character'Val(16#43#), Character'Val(16#44#), Character'Val(16#45#), Character'Val(16#46#), Character'Val(16#47#), Character'Val(16#48#), Character'Val(16#49#), Character'Val(16#4A#), Character'Val(16#4B#), Character'Val(16#4C#), Character'Val(16#4D#), Character'Val(16#4E#), Character'Val(16#4F#), Character'Val(16#50#), Character'Val(16#51#), Character'Val(16#52#), Character'Val(16#53#), Character'Val(16#54#), Character'Val(16#55#), Character'Val(16#56#), Character'Val(16#57#), Character'Val(16#58#), Character'Val(16#59#), Character'Val(16#5A#), Character'Val(16#5B#), Character'Val(16#5C#), Character'Val(16#5D#), Character'Val(16#5E#), Character'Val(16#5F#), Character'Val(16#60#), Character'Val(16#61#), Character'Val(16#62#), Character'Val(16#63#), Character'Val(16#64#), Character'Val(16#65#), Character'Val(16#66#), Character'Val(16#67#), Character'Val(16#68#), Character'Val(16#69#), Character'Val(16#6A#), Character'Val(16#6B#), Character'Val(16#6C#), Character'Val(16#6D#), Character'Val(16#6E#), Character'Val(16#6F#), Character'Val(16#70#), Character'Val(16#71#), Character'Val(16#72#), Character'Val(16#73#), Character'Val(16#74#), Character'Val(16#75#), Character'Val(16#76#), Character'Val(16#77#), Character'Val(16#78#), Character'Val(16#79#), Character'Val(16#7A#), Character'Val(16#7B#), Character'Val(16#7C#), Character'Val(16#7D#), Character'Val(16#7E#), Character'Val(16#7F#), Character'Val(16#FF#), Character'Val(16#9B#), Character'Val(16#9C#), Character'Val(16#98#), Character'Val(16#A0#), Character'Val(16#8F#), Character'Val(16#A4#), Character'Val(16#AE#), Character'Val(16#AA#), Character'Val(16#A7#), Character'Val(16#F8#), Character'Val(16#F1#), Character'Val(16#FD#), Character'Val(16#A6#), Character'Val(16#A1#), Character'Val(16#E6#), Character'Val(16#86#), Character'Val(16#FA#), Character'Val(16#A5#), Character'Val(16#AF#), Character'Val(16#AC#), Character'Val(16#AB#), Character'Val(16#AD#), Character'Val(16#8E#), Character'Val(16#84#), Character'Val(16#80#), Character'Val(16#91#), Character'Val(16#90#), Character'Val(16#92#), Character'Val(16#94#), Character'Val(16#A8#), Character'Val(16#95#), Character'Val(16#99#), Character'Val(16#9D#), Character'Val(16#9E#), Character'Val(16#9A#), Character'Val(16#E1#), Character'Val(16#85#), Character'Val(16#83#), Character'Val(16#87#), Character'Val(16#8A#), Character'Val(16#82#), Character'Val(16#88#), Character'Val(16#89#), Character'Val(16#8C#), Character'Val(16#8B#), Character'Val(16#A2#), Character'Val(16#93#), Character'Val(16#F6#), Character'Val(16#97#), Character'Val(16#A3#), Character'Val(16#96#), Character'Val(16#81#), Character'Val(16#9F#), Character'Val(16#E2#), Character'Val(16#E9#), Character'Val(16#E4#), Character'Val(16#E8#), Character'Val(16#EA#), Character'Val(16#E0#), Character'Val(16#EB#), Character'Val(16#EE#), Character'Val(16#E3#), Character'Val(16#E5#), Character'Val(16#E7#), Character'Val(16#ED#), Character'Val(16#8D#), Character'Val(16#FC#), Character'Val(16#F9#), Character'Val(16#FB#), Character'Val(16#EC#), Character'Val(16#EF#), Character'Val(16#F7#), Character'Val(16#F0#), Character'Val(16#F3#), Character'Val(16#F2#), Character'Val(16#A9#), Character'Val(16#F4#), Character'Val(16#F5#), Character'Val(16#C4#), Character'Val(16#B3#), Character'Val(16#DA#), Character'Val(16#BF#), Character'Val(16#C0#), Character'Val(16#D9#), Character'Val(16#C3#), Character'Val(16#B4#), Character'Val(16#C2#), Character'Val(16#C1#), Character'Val(16#C5#), Character'Val(16#CD#), Character'Val(16#BA#), Character'Val(16#D5#), Character'Val(16#D6#), Character'Val(16#C9#), Character'Val(16#B8#), Character'Val(16#B7#), Character'Val(16#BB#), Character'Val(16#D4#), Character'Val(16#D3#), Character'Val(16#C8#), Character'Val(16#BE#), Character'Val(16#BD#), Character'Val(16#BC#), Character'Val(16#C6#), Character'Val(16#C7#), Character'Val(16#CC#), Character'Val(16#B5#), Character'Val(16#B6#), Character'Val(16#B9#), Character'Val(16#D1#), Character'Val(16#D2#), Character'Val(16#CB#), Character'Val(16#CF#), Character'Val(16#D0#), Character'Val(16#CA#), Character'Val(16#D8#), Character'Val(16#D7#), Character'Val(16#CE#), Character'Val(16#DF#), Character'Val(16#DC#), Character'Val(16#DB#), Character'Val(16#DD#), Character'Val(16#DE#), Character'Val(16#B0#), Character'Val(16#B1#), Character'Val(16#B2#), Character'Val(16#FE#)); function Decode (Char : Character) return Wide_Character is begin return Decode (Char, Forward); end Decode; procedure Decode (Text : in Raw_String; Text_Last : out Natural; Result : out Wide_String; Result_Last : out Natural; Map : in Encoding := Encodings.CP_863) is begin Decode (Text, Text_Last, Result, Result_Last, Forward); end Decode; procedure Encode (Text : in Wide_String; Text_Last : out Natural; Result : out Raw_String; Result_Last : out Natural; Map : in Encoding := Encodings.CP_863) is begin Encode (Text, Text_Last, Result, Result_Last, Ranges, Backward); end Encode; begin Encoder_List (Encodings.CP_863) := Encode'Access; Decoder_List (Encodings.CP_863) := Decode'Access; end Encodings.Maps.CP_863; ------------------------------------------------------------------------------ -- Copyright (c) 2006-2013, 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. ------------------------------------------------------------------------------
<?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>bobj</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>6</id> <name>resizedKeyLength_V</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>FIFO</coreName> </Obj> <bitwidth>32</bitwidth> </Value> <direction>0</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs class_id="7" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_2"> <Value> <Obj> <type>1</type> <id>7</id> <name>resizedInitValue_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName>FIFO</coreName> </Obj> <bitwidth>32</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="_3"> <Value> <Obj> <type>1</type> <id>8</id> <name>resizedKey_V_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName>FIFO</coreName> </Obj> <bitwidth>96</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="_4"> <Value> <Obj> <type>1</type> <id>9</id> <name>hash2cc_V_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName>FIFO</coreName> </Obj> <bitwidth>32</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> </ports> <nodes class_id="8" tracking_level="0" version="0"> <count>262</count> <item_version>0</item_version> <item class_id="9" tracking_level="1" version="0" object_id="_5"> <Value> <Obj> <type>0</type> <id>17</id> <name>hashState_load</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>44</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item class_id="10" tracking_level="0" version="0"> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</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>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>44</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>314</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_6"> <Value> <Obj> <type>0</type> <id>18</id> <name>length_load</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>83</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>83</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>315</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_7"> <Value> <Obj> <type>0</type> <id>19</id> <name>tmp_V_69</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>62</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>62</second> </item> </second> </item> </inlineStackInfo> <originalName>val</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>316</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_8"> <Value> <Obj> <type>0</type> <id>20</id> <name>b_load</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>61</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>61</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>317</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_9"> <Value> <Obj> <type>0</type> <id>21</id> <name>a_load</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>60</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>60</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>318</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_10"> <Value> <Obj> <type>0</type> <id>22</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>44</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>44</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>22</count> <item_version>0</item_version> <item>319</item> <item>320</item> <item>322</item> <item>323</item> <item>325</item> <item>326</item> <item>328</item> <item>329</item> <item>331</item> <item>332</item> <item>334</item> <item>335</item> <item>337</item> <item>338</item> <item>340</item> <item>341</item> <item>343</item> <item>344</item> <item>346</item> <item>347</item> <item>349</item> <item>350</item> </oprand_edges> <opcode>switch</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.87</m_delay> </item> <item class_id_reference="9" object_id="_11"> <Value> <Obj> <type>0</type> <id>24</id> <name>tmp_346_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>186</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>186</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_346_i_fu_582_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>943</item> <item>944</item> </oprand_edges> <opcode>xor</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_12"> <Value> <Obj> <type>0</type> <id>25</id> <name>tmp_632</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>61</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>61</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_632_fu_588_p1</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>945</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_13"> <Value> <Obj> <type>0</type> <id>26</id> <name>tmp_348_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>186</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>186</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_348_i_fu_592_p4</rtlName> <coreName/> </Obj> <bitwidth>24</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>947</item> <item>948</item> <item>950</item> <item>951</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_14"> <Value> <Obj> <type>0</type> <id>27</id> <name>tmp_349_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>186</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>186</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_349_i_fu_602_p3</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>953</item> <item>954</item> <item>955</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_15"> <Value> <Obj> <type>0</type> <id>28</id> <name>tmp_V</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>186</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>186</second> </item> </second> </item> </inlineStackInfo> <originalName>val</originalName> <rtlName>tmp_V_fu_610_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>956</item> <item>957</item> </oprand_edges> <opcode>sub</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.51</m_delay> </item> <item class_id_reference="9" object_id="_16"> <Value> <Obj> <type>0</type> <id>29</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>186</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>186</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>958</item> <item>959</item> <item>1183</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.28</m_delay> </item> <item class_id_reference="9" object_id="_17"> <Value> <Obj> <type>0</type> <id>30</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>187</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>187</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>960</item> <item>961</item> <item>962</item> </oprand_edges> <opcode>write</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>2.39</m_delay> </item> <item class_id_reference="9" object_id="_18"> <Value> <Obj> <type>0</type> <id>31</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>188</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>188</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>963</item> <item>964</item> <item>1182</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.24</m_delay> </item> <item class_id_reference="9" object_id="_19"> <Value> <Obj> <type>0</type> <id>32</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>189</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>189</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>965</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_20"> <Value> <Obj> <type>0</type> <id>34</id> <name>tmp_336_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>180</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>180</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_336_i_fu_623_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>912</item> <item>913</item> </oprand_edges> <opcode>xor</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_21"> <Value> <Obj> <type>0</type> <id>35</id> <name>tmp_630</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>62</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>62</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_630_fu_629_p1</rtlName> <coreName/> </Obj> <bitwidth>28</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>914</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_22"> <Value> <Obj> <type>0</type> <id>36</id> <name>tmp_338_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>180</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>180</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_338_i_fu_633_p4</rtlName> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>915</item> <item>916</item> <item>917</item> <item>918</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_23"> <Value> <Obj> <type>0</type> <id>37</id> <name>tmp_339_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>180</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>180</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_339_i_fu_643_p3</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>919</item> <item>920</item> <item>921</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_24"> <Value> <Obj> <type>0</type> <id>38</id> <name>tmp_340_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>180</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>180</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_340_i_fu_651_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>922</item> <item>923</item> </oprand_edges> <opcode>sub</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.51</m_delay> </item> <item class_id_reference="9" object_id="_25"> <Value> <Obj> <type>0</type> <id>39</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>180</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>180</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>924</item> <item>925</item> <item>1181</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.43</m_delay> </item> <item class_id_reference="9" object_id="_26"> <Value> <Obj> <type>0</type> <id>40</id> <name>tmp_341_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>181</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>181</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_341_i_fu_663_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>926</item> <item>927</item> </oprand_edges> <opcode>xor</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_27"> <Value> <Obj> <type>0</type> <id>41</id> <name>tmp_631</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>180</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>180</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_631_fu_669_p1</rtlName> <coreName/> </Obj> <bitwidth>18</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>928</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_28"> <Value> <Obj> <type>0</type> <id>42</id> <name>tmp_343_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>181</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>181</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_343_i_fu_673_p4</rtlName> <coreName/> </Obj> <bitwidth>14</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>929</item> <item>930</item> <item>931</item> <item>932</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_29"> <Value> <Obj> <type>0</type> <id>43</id> <name>tmp_344_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>181</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>181</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_344_i_fu_683_p3</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>933</item> <item>934</item> <item>935</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_30"> <Value> <Obj> <type>0</type> <id>44</id> <name>tmp_345_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>181</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>181</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_345_i_fu_691_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>936</item> <item>937</item> </oprand_edges> <opcode>sub</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.51</m_delay> </item> <item class_id_reference="9" object_id="_31"> <Value> <Obj> <type>0</type> <id>45</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>181</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>181</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>938</item> <item>939</item> <item>1180</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.35</m_delay> </item> <item class_id_reference="9" object_id="_32"> <Value> <Obj> <type>0</type> <id>46</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>182</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>182</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>940</item> <item>941</item> <item>1179</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.24</m_delay> </item> <item class_id_reference="9" object_id="_33"> <Value> <Obj> <type>0</type> <id>47</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>183</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>183</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>942</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_34"> <Value> <Obj> <type>0</type> <id>49</id> <name>tmp_326_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>174</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>174</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_326_i_fu_703_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>878</item> <item>879</item> </oprand_edges> <opcode>xor</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_35"> <Value> <Obj> <type>0</type> <id>50</id> <name>tmp_628</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>60</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>60</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_628_fu_709_p1</rtlName> <coreName/> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>880</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_36"> <Value> <Obj> <type>0</type> <id>51</id> <name>tmp_328_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>174</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>174</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_328_i_fu_713_p4</rtlName> <coreName/> </Obj> <bitwidth>25</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>882</item> <item>883</item> <item>885</item> <item>886</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_37"> <Value> <Obj> <type>0</type> <id>52</id> <name>tmp_329_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>174</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>174</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_329_i_fu_723_p3</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>888</item> <item>889</item> <item>890</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_38"> <Value> <Obj> <type>0</type> <id>53</id> <name>tmp_330_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>174</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>174</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_330_i_fu_731_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>891</item> <item>892</item> </oprand_edges> <opcode>sub</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.51</m_delay> </item> <item class_id_reference="9" object_id="_39"> <Value> <Obj> <type>0</type> <id>54</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>174</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>174</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>893</item> <item>894</item> <item>1178</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.35</m_delay> </item> <item class_id_reference="9" object_id="_40"> <Value> <Obj> <type>0</type> <id>55</id> <name>tmp_331_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>175</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>175</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_331_i_fu_743_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>895</item> <item>896</item> </oprand_edges> <opcode>xor</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_41"> <Value> <Obj> <type>0</type> <id>56</id> <name>tmp_629</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>174</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>174</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_629_fu_749_p1</rtlName> <coreName/> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>897</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_42"> <Value> <Obj> <type>0</type> <id>57</id> <name>tmp_333_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>175</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>175</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_333_i_fu_753_p4</rtlName> <coreName/> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>898</item> <item>899</item> <item>900</item> <item>901</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_43"> <Value> <Obj> <type>0</type> <id>58</id> <name>tmp_334_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>175</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>175</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_334_i_fu_763_p3</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>902</item> <item>903</item> <item>904</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_44"> <Value> <Obj> <type>0</type> <id>59</id> <name>tmp_335_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>175</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>175</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_335_i_fu_771_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>905</item> <item>906</item> </oprand_edges> <opcode>sub</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.51</m_delay> </item> <item class_id_reference="9" object_id="_45"> <Value> <Obj> <type>0</type> <id>60</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>175</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>175</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>907</item> <item>908</item> <item>1177</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.28</m_delay> </item> <item class_id_reference="9" object_id="_46"> <Value> <Obj> <type>0</type> <id>61</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>176</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>176</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>909</item> <item>910</item> <item>1176</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.24</m_delay> </item> <item class_id_reference="9" object_id="_47"> <Value> <Obj> <type>0</type> <id>62</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>177</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>177</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>911</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_48"> <Value> <Obj> <type>0</type> <id>64</id> <name>tmp_316_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>160</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>160</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_316_i_fu_783_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>841</item> <item>842</item> </oprand_edges> <opcode>xor</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_49"> <Value> <Obj> <type>0</type> <id>65</id> <name>tmp_626</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>61</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>61</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_626_fu_789_p1</rtlName> <coreName/> </Obj> <bitwidth>18</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>843</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_50"> <Value> <Obj> <type>0</type> <id>66</id> <name>tmp_318_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>160</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>160</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_318_i_fu_793_p4</rtlName> <coreName/> </Obj> <bitwidth>14</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>845</item> <item>846</item> <item>848</item> <item>849</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_51"> <Value> <Obj> <type>0</type> <id>67</id> <name>tmp_319_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>160</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>160</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_319_i_fu_803_p3</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>851</item> <item>852</item> <item>853</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_52"> <Value> <Obj> <type>0</type> <id>68</id> <name>tmp_320_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>160</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>160</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_320_i_fu_811_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>854</item> <item>855</item> </oprand_edges> <opcode>sub</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.51</m_delay> </item> <item class_id_reference="9" object_id="_53"> <Value> <Obj> <type>0</type> <id>69</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>160</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>160</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>856</item> <item>857</item> <item>1174</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.28</m_delay> </item> <item class_id_reference="9" object_id="_54"> <Value> <Obj> <type>0</type> <id>70</id> <name>tmp_321_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>161</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>161</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_321_i_fu_823_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>858</item> <item>859</item> </oprand_edges> <opcode>xor</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_55"> <Value> <Obj> <type>0</type> <id>71</id> <name>tmp_627</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>160</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>160</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_627_fu_829_p1</rtlName> <coreName/> </Obj> <bitwidth>21</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>860</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_56"> <Value> <Obj> <type>0</type> <id>72</id> <name>tmp_323_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>161</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>161</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_323_i_fu_833_p4</rtlName> <coreName/> </Obj> <bitwidth>11</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>862</item> <item>863</item> <item>865</item> <item>866</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_57"> <Value> <Obj> <type>0</type> <id>73</id> <name>tmp_324_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>161</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>161</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_324_i_fu_843_p3</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>868</item> <item>869</item> <item>870</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_58"> <Value> <Obj> <type>0</type> <id>74</id> <name>tmp_325_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>161</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>161</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_325_i_fu_851_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>871</item> <item>872</item> </oprand_edges> <opcode>sub</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.51</m_delay> </item> <item class_id_reference="9" object_id="_59"> <Value> <Obj> <type>0</type> <id>75</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>161</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>161</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>873</item> <item>874</item> <item>1175</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.43</m_delay> </item> <item class_id_reference="9" object_id="_60"> <Value> <Obj> <type>0</type> <id>76</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>170</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>170</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>875</item> <item>876</item> <item>1173</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.24</m_delay> </item> <item class_id_reference="9" object_id="_61"> <Value> <Obj> <type>0</type> <id>77</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>171</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>171</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>877</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_62"> <Value> <Obj> <type>0</type> <id>79</id> <name>tmp_315_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>92</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>92</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_315_i_fu_352_p2</rtlName> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>570</item> <item>572</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.40</m_delay> </item> <item class_id_reference="9" object_id="_63"> <Value> <Obj> <type>0</type> <id>80</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>92</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>92</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>573</item> <item>574</item> <item>575</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_64"> <Value> <Obj> <type>0</type> <id>82</id> <name>tmp_636</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>97</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>97</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>583</item> <item>584</item> <item>585</item> </oprand_edges> <opcode>nbreadreq</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_65"> <Value> <Obj> <type>0</type> <id>83</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>97</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>97</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>586</item> <item>587</item> <item>588</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_66"> <Value> <Obj> <type>0</type> <id>85</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>98</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>98</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>26</count> <item_version>0</item_version> <item>589</item> <item>590</item> <item>591</item> <item>592</item> <item>594</item> <item>595</item> <item>597</item> <item>598</item> <item>600</item> <item>601</item> <item>603</item> <item>604</item> <item>606</item> <item>607</item> <item>609</item> <item>610</item> <item>612</item> <item>613</item> <item>615</item> <item>616</item> <item>618</item> <item>619</item> <item>621</item> <item>622</item> <item>624</item> <item>625</item> </oprand_edges> <opcode>switch</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.87</m_delay> </item> <item class_id_reference="9" object_id="_67"> <Value> <Obj> <type>0</type> <id>87</id> <name>tmp_V_94</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>150</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>150</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.V</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>96</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>827</item> <item>828</item> <item>1230</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>2.39</m_delay> </item> <item class_id_reference="9" object_id="_68"> <Value> <Obj> <type>0</type> <id>88</id> <name>tmp_650</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>151</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>151</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_650_fu_358_p1</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>829</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_69"> <Value> <Obj> <type>0</type> <id>89</id> <name>tmp_394_cast_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>151</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>151</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_394_cast_i_fu_863_p1</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>830</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_70"> <Value> <Obj> <type>0</type> <id>90</id> <name>tmp_395_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>151</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>151</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_395_i_fu_866_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>831</item> <item>832</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.51</m_delay> </item> <item class_id_reference="9" object_id="_71"> <Value> <Obj> <type>0</type> <id>91</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>151</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>151</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>833</item> <item>834</item> <item>1218</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.43</m_delay> </item> <item class_id_reference="9" object_id="_72"> <Value> <Obj> <type>0</type> <id>92</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>151</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>151</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>835</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_73"> <Value> <Obj> <type>0</type> <id>94</id> <name>tmp_V_93</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>146</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>146</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.V</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>96</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>818</item> <item>819</item> <item>1229</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>2.39</m_delay> </item> <item class_id_reference="9" object_id="_74"> <Value> <Obj> <type>0</type> <id>95</id> <name>tmp_649</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>147</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>147</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_649_fu_362_p1</rtlName> <coreName/> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>820</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_75"> <Value> <Obj> <type>0</type> <id>96</id> <name>tmp_392_cast_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>147</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>147</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_392_cast_i_fu_878_p1</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>821</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_76"> <Value> <Obj> <type>0</type> <id>97</id> <name>tmp_393_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>147</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>147</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_393_i_fu_881_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>822</item> <item>823</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.51</m_delay> </item> <item class_id_reference="9" object_id="_77"> <Value> <Obj> <type>0</type> <id>98</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>147</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>147</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>824</item> <item>825</item> <item>1217</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.43</m_delay> </item> <item class_id_reference="9" object_id="_78"> <Value> <Obj> <type>0</type> <id>99</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>147</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>147</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>826</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_79"> <Value> <Obj> <type>0</type> <id>101</id> <name>tmp_V_92</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>142</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>142</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.V</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>96</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>809</item> <item>810</item> <item>1228</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>2.39</m_delay> </item> <item class_id_reference="9" object_id="_80"> <Value> <Obj> <type>0</type> <id>102</id> <name>tmp_648</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>143</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>143</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_648_fu_366_p1</rtlName> <coreName/> </Obj> <bitwidth>24</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>811</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_81"> <Value> <Obj> <type>0</type> <id>103</id> <name>tmp_390_cast_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>143</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>143</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_390_cast_i_fu_893_p1</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>812</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_82"> <Value> <Obj> <type>0</type> <id>104</id> <name>tmp_391_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>143</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>143</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_391_i_fu_896_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>813</item> <item>814</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.51</m_delay> </item> <item class_id_reference="9" object_id="_83"> <Value> <Obj> <type>0</type> <id>105</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>143</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>143</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>815</item> <item>816</item> <item>1216</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.43</m_delay> </item> <item class_id_reference="9" object_id="_84"> <Value> <Obj> <type>0</type> <id>106</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>143</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>143</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>817</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_85"> <Value> <Obj> <type>0</type> <id>108</id> <name>tmp_V_91</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>138</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>138</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.V</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>96</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>801</item> <item>802</item> <item>1227</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>2.39</m_delay> </item> <item class_id_reference="9" object_id="_86"> <Value> <Obj> <type>0</type> <id>109</id> <name>tmp_647</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>139</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>139</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_647_fu_370_p1</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>803</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_87"> <Value> <Obj> <type>0</type> <id>110</id> <name>tmp_389_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>139</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>139</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_389_i_fu_908_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>804</item> <item>805</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.51</m_delay> </item> <item class_id_reference="9" object_id="_88"> <Value> <Obj> <type>0</type> <id>111</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>139</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>139</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>806</item> <item>807</item> <item>1215</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.43</m_delay> </item> <item class_id_reference="9" object_id="_89"> <Value> <Obj> <type>0</type> <id>112</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>139</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>139</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>808</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_90"> <Value> <Obj> <type>0</type> <id>114</id> <name>tmp_V_90</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>133</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>133</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.V</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>96</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>783</item> <item>784</item> <item>1226</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>2.39</m_delay> </item> <item class_id_reference="9" object_id="_91"> <Value> <Obj> <type>0</type> <id>115</id> <name>tmp_646</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>134</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>134</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_646_fu_374_p1</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>785</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_92"> <Value> <Obj> <type>0</type> <id>116</id> <name>tmp_386_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>134</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>134</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_386_i_fu_919_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>786</item> <item>787</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.51</m_delay> </item> <item class_id_reference="9" object_id="_93"> <Value> <Obj> <type>0</type> <id>117</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>134</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>134</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>788</item> <item>789</item> <item>1214</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.43</m_delay> </item> <item class_id_reference="9" object_id="_94"> <Value> <Obj> <type>0</type> <id>118</id> <name>temp_5_cast_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>135</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>135</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>temp_5_cast_i_reg_1488</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>790</item> <item>791</item> <item>792</item> <item>794</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_95"> <Value> <Obj> <type>0</type> <id>119</id> <name>tmp_387_cast_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>135</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>135</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_387_cast_i_fu_930_p1</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>795</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_96"> <Value> <Obj> <type>0</type> <id>120</id> <name>tmp_388_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>135</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>135</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_388_i_fu_933_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>796</item> <item>797</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.51</m_delay> </item> <item class_id_reference="9" object_id="_97"> <Value> <Obj> <type>0</type> <id>121</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>135</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>135</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>798</item> <item>799</item> <item>1213</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.35</m_delay> </item> <item class_id_reference="9" object_id="_98"> <Value> <Obj> <type>0</type> <id>122</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>135</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>135</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>800</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_99"> <Value> <Obj> <type>0</type> <id>124</id> <name>tmp_V_89</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>128</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>128</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.V</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>96</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>765</item> <item>766</item> <item>1225</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>2.39</m_delay> </item> <item class_id_reference="9" object_id="_100"> <Value> <Obj> <type>0</type> <id>125</id> <name>tmp_645</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>129</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>129</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_645_fu_388_p1</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>767</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_101"> <Value> <Obj> <type>0</type> <id>126</id> <name>tmp_383_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>129</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>129</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_383_i_fu_945_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>768</item> <item>769</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.51</m_delay> </item> <item class_id_reference="9" object_id="_102"> <Value> <Obj> <type>0</type> <id>127</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>129</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>129</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>770</item> <item>771</item> <item>1212</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.43</m_delay> </item> <item class_id_reference="9" object_id="_103"> <Value> <Obj> <type>0</type> <id>128</id> <name>temp_4_cast_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>130</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>130</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>temp_4_cast_i_reg_1498</rtlName> <coreName/> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>772</item> <item>773</item> <item>774</item> <item>776</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_104"> <Value> <Obj> <type>0</type> <id>129</id> <name>tmp_384_cast_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>130</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>130</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_384_cast_i_fu_956_p1</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>777</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_105"> <Value> <Obj> <type>0</type> <id>130</id> <name>tmp_385_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>130</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>130</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_385_i_fu_959_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>778</item> <item>779</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.51</m_delay> </item> <item class_id_reference="9" object_id="_106"> <Value> <Obj> <type>0</type> <id>131</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>130</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>130</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>780</item> <item>781</item> <item>1211</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.35</m_delay> </item> <item class_id_reference="9" object_id="_107"> <Value> <Obj> <type>0</type> <id>132</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>130</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</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>782</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_108"> <Value> <Obj> <type>0</type> <id>134</id> <name>tmp_V_88</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>123</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>123</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.V</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>96</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>747</item> <item>748</item> <item>1224</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>2.39</m_delay> </item> <item class_id_reference="9" object_id="_109"> <Value> <Obj> <type>0</type> <id>135</id> <name>tmp_644</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>124</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>124</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_644_fu_402_p1</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>749</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_110"> <Value> <Obj> <type>0</type> <id>136</id> <name>tmp_380_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>124</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>124</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_380_i_fu_971_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>750</item> <item>751</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.51</m_delay> </item> <item class_id_reference="9" object_id="_111"> <Value> <Obj> <type>0</type> <id>137</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>124</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>124</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>752</item> <item>753</item> <item>1210</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.43</m_delay> </item> <item class_id_reference="9" object_id="_112"> <Value> <Obj> <type>0</type> <id>138</id> <name>temp_3_cast_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>125</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>125</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>temp_3_cast_i_reg_1508</rtlName> <coreName/> </Obj> <bitwidth>24</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>754</item> <item>755</item> <item>756</item> <item>758</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_113"> <Value> <Obj> <type>0</type> <id>139</id> <name>tmp_381_cast_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>125</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>125</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_381_cast_i_fu_982_p1</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>759</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_114"> <Value> <Obj> <type>0</type> <id>140</id> <name>tmp_382_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>125</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>125</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_382_i_fu_985_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>760</item> <item>761</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.51</m_delay> </item> <item class_id_reference="9" object_id="_115"> <Value> <Obj> <type>0</type> <id>141</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>125</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>125</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>762</item> <item>763</item> <item>1209</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.35</m_delay> </item> <item class_id_reference="9" object_id="_116"> <Value> <Obj> <type>0</type> <id>142</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>125</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>125</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>764</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_117"> <Value> <Obj> <type>0</type> <id>144</id> <name>tmp_V_87</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>119</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>119</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.V</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>96</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>731</item> <item>732</item> <item>1223</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>2.39</m_delay> </item> <item class_id_reference="9" object_id="_118"> <Value> <Obj> <type>0</type> <id>145</id> <name>tmp_643</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>120</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>120</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_643_fu_416_p1</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>733</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_119"> <Value> <Obj> <type>0</type> <id>146</id> <name>tmp_378_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>120</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>120</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_378_i_fu_997_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>734</item> <item>735</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.51</m_delay> </item> <item class_id_reference="9" object_id="_120"> <Value> <Obj> <type>0</type> <id>147</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>120</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>120</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>736</item> <item>737</item> <item>1208</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.43</m_delay> </item> <item class_id_reference="9" object_id="_121"> <Value> <Obj> <type>0</type> <id>148</id> <name>p_Result_92_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>120</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>120</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>reg_307</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>738</item> <item>739</item> <item>740</item> <item>741</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_122"> <Value> <Obj> <type>0</type> <id>149</id> <name>tmp_379_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>120</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>120</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>grp_fu_315_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>742</item> <item>743</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.51</m_delay> </item> <item class_id_reference="9" object_id="_123"> <Value> <Obj> <type>0</type> <id>150</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>120</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>120</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>744</item> <item>745</item> <item>1207</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.35</m_delay> </item> <item class_id_reference="9" object_id="_124"> <Value> <Obj> <type>0</type> <id>151</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>120</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>120</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>746</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_125"> <Value> <Obj> <type>0</type> <id>153</id> <name>tmp_V_86</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>114</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>114</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.V</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>96</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>704</item> <item>705</item> <item>1222</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>2.39</m_delay> </item> <item class_id_reference="9" object_id="_126"> <Value> <Obj> <type>0</type> <id>154</id> <name>tmp_642</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>115</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>115</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_642_fu_420_p1</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>706</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_127"> <Value> <Obj> <type>0</type> <id>155</id> <name>tmp_374_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>115</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>115</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_374_i_fu_1008_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>707</item> <item>708</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.51</m_delay> </item> <item class_id_reference="9" object_id="_128"> <Value> <Obj> <type>0</type> <id>156</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>115</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>115</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>709</item> <item>710</item> <item>1206</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.43</m_delay> </item> <item class_id_reference="9" object_id="_129"> <Value> <Obj> <type>0</type> <id>157</id> <name>p_Result_89_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>115</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>115</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>reg_307</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>711</item> <item>712</item> <item>713</item> <item>714</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_130"> <Value> <Obj> <type>0</type> <id>158</id> <name>tmp_375_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>115</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>115</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>grp_fu_315_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>715</item> <item>716</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.51</m_delay> </item> <item class_id_reference="9" object_id="_131"> <Value> <Obj> <type>0</type> <id>159</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>115</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>115</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>717</item> <item>718</item> <item>1205</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.35</m_delay> </item> <item class_id_reference="9" object_id="_132"> <Value> <Obj> <type>0</type> <id>160</id> <name>temp_2_cast_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>116</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>116</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>temp_2_cast_i_reg_1523</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>720</item> <item>721</item> <item>722</item> <item>724</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_133"> <Value> <Obj> <type>0</type> <id>161</id> <name>tmp_376_cast_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>116</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>116</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_376_cast_i_fu_1019_p1</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>725</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_134"> <Value> <Obj> <type>0</type> <id>162</id> <name>tmp_377_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>116</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>116</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_377_i_fu_1022_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>726</item> <item>727</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.51</m_delay> </item> <item class_id_reference="9" object_id="_135"> <Value> <Obj> <type>0</type> <id>163</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>116</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>116</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>728</item> <item>729</item> <item>1204</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.28</m_delay> </item> <item class_id_reference="9" object_id="_136"> <Value> <Obj> <type>0</type> <id>164</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>116</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>116</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>730</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_137"> <Value> <Obj> <type>0</type> <id>166</id> <name>tmp_V_85</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>109</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>109</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.V</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>96</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>677</item> <item>678</item> <item>1221</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>2.39</m_delay> </item> <item class_id_reference="9" object_id="_138"> <Value> <Obj> <type>0</type> <id>167</id> <name>tmp_641</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>110</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>110</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_641_fu_434_p1</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>679</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_139"> <Value> <Obj> <type>0</type> <id>168</id> <name>tmp_370_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>110</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>110</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_370_i_fu_1034_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>680</item> <item>681</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.51</m_delay> </item> <item class_id_reference="9" object_id="_140"> <Value> <Obj> <type>0</type> <id>169</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>110</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>110</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>682</item> <item>683</item> <item>1203</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.43</m_delay> </item> <item class_id_reference="9" object_id="_141"> <Value> <Obj> <type>0</type> <id>170</id> <name>p_Result_86_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>110</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>110</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>reg_307</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>684</item> <item>685</item> <item>686</item> <item>687</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_142"> <Value> <Obj> <type>0</type> <id>171</id> <name>tmp_371_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>110</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>110</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>grp_fu_315_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>688</item> <item>689</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.51</m_delay> </item> <item class_id_reference="9" object_id="_143"> <Value> <Obj> <type>0</type> <id>172</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>110</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>110</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>690</item> <item>691</item> <item>1202</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.35</m_delay> </item> <item class_id_reference="9" object_id="_144"> <Value> <Obj> <type>0</type> <id>173</id> <name>temp_1_cast_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>111</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>111</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>temp_1_cast_i_reg_1533</rtlName> <coreName/> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>693</item> <item>694</item> <item>695</item> <item>697</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_145"> <Value> <Obj> <type>0</type> <id>174</id> <name>tmp_372_cast_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>111</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>111</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_372_cast_i_fu_1045_p1</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>698</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_146"> <Value> <Obj> <type>0</type> <id>175</id> <name>tmp_373_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>111</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>111</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_373_i_fu_1048_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>699</item> <item>700</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.51</m_delay> </item> <item class_id_reference="9" object_id="_147"> <Value> <Obj> <type>0</type> <id>176</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>111</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>111</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>701</item> <item>702</item> <item>1201</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.28</m_delay> </item> <item class_id_reference="9" object_id="_148"> <Value> <Obj> <type>0</type> <id>177</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>111</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>111</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>703</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_149"> <Value> <Obj> <type>0</type> <id>179</id> <name>tmp_V_84</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>104</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>104</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.V</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>96</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>650</item> <item>651</item> <item>1220</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>2.39</m_delay> </item> <item class_id_reference="9" object_id="_150"> <Value> <Obj> <type>0</type> <id>180</id> <name>tmp_640</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>105</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>105</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_640_fu_448_p1</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>652</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_151"> <Value> <Obj> <type>0</type> <id>181</id> <name>tmp_366_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>105</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>105</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_366_i_fu_1060_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>653</item> <item>654</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.51</m_delay> </item> <item class_id_reference="9" object_id="_152"> <Value> <Obj> <type>0</type> <id>182</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>105</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>105</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>655</item> <item>656</item> <item>1200</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.43</m_delay> </item> <item class_id_reference="9" object_id="_153"> <Value> <Obj> <type>0</type> <id>183</id> <name>p_Result_83_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>105</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>105</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>reg_307</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>657</item> <item>658</item> <item>659</item> <item>660</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_154"> <Value> <Obj> <type>0</type> <id>184</id> <name>tmp_367_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>105</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>105</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>grp_fu_315_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>661</item> <item>662</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.51</m_delay> </item> <item class_id_reference="9" object_id="_155"> <Value> <Obj> <type>0</type> <id>185</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>105</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>105</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>663</item> <item>664</item> <item>1199</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.35</m_delay> </item> <item class_id_reference="9" object_id="_156"> <Value> <Obj> <type>0</type> <id>186</id> <name>temp_cast_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>106</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>106</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>temp_cast_i_reg_1543</rtlName> <coreName/> </Obj> <bitwidth>24</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>666</item> <item>667</item> <item>668</item> <item>670</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_157"> <Value> <Obj> <type>0</type> <id>187</id> <name>tmp_368_cast_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>106</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>106</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_368_cast_i_fu_1071_p1</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>671</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_158"> <Value> <Obj> <type>0</type> <id>188</id> <name>tmp_369_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>106</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>106</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_369_i_fu_1074_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>672</item> <item>673</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.51</m_delay> </item> <item class_id_reference="9" object_id="_159"> <Value> <Obj> <type>0</type> <id>189</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>106</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>106</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>674</item> <item>675</item> <item>1198</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.28</m_delay> </item> <item class_id_reference="9" object_id="_160"> <Value> <Obj> <type>0</type> <id>190</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>106</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>106</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>676</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_161"> <Value> <Obj> <type>0</type> <id>192</id> <name>tmp_V_83</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>100</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>100</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.V</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>96</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>626</item> <item>627</item> <item>1219</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>2.39</m_delay> </item> <item class_id_reference="9" object_id="_162"> <Value> <Obj> <type>0</type> <id>193</id> <name>tmp_639</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>101</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>101</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_639_fu_462_p1</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>628</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_163"> <Value> <Obj> <type>0</type> <id>194</id> <name>tmp_363_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>101</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>101</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_363_i_fu_1086_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>629</item> <item>630</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.51</m_delay> </item> <item class_id_reference="9" object_id="_164"> <Value> <Obj> <type>0</type> <id>195</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>101</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>101</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>631</item> <item>632</item> <item>1197</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.43</m_delay> </item> <item class_id_reference="9" object_id="_165"> <Value> <Obj> <type>0</type> <id>196</id> <name>p_Result_80_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>101</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>101</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>reg_307</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>633</item> <item>634</item> <item>635</item> <item>636</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_166"> <Value> <Obj> <type>0</type> <id>197</id> <name>tmp_364_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>101</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>101</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>grp_fu_315_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>637</item> <item>638</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.51</m_delay> </item> <item class_id_reference="9" object_id="_167"> <Value> <Obj> <type>0</type> <id>198</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>101</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>101</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>639</item> <item>640</item> <item>1196</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.35</m_delay> </item> <item class_id_reference="9" object_id="_168"> <Value> <Obj> <type>0</type> <id>199</id> <name>p_Result_81_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>101</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>101</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>reg_311</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>641</item> <item>642</item> <item>643</item> <item>644</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_169"> <Value> <Obj> <type>0</type> <id>200</id> <name>tmp_365_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>101</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>101</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_365_i_fu_1097_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>645</item> <item>646</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.51</m_delay> </item> <item class_id_reference="9" object_id="_170"> <Value> <Obj> <type>0</type> <id>201</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>101</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>101</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>647</item> <item>648</item> <item>1195</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.28</m_delay> </item> <item class_id_reference="9" object_id="_171"> <Value> <Obj> <type>0</type> <id>202</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>101</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>101</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>649</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_172"> <Value> <Obj> <type>0</type> <id>204</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>154</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>154</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>836</item> <item>837</item> <item>1194</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.24</m_delay> </item> <item class_id_reference="9" object_id="_173"> <Value> <Obj> <type>0</type> <id>205</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>155</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>155</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>838</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_174"> <Value> <Obj> <type>0</type> <id>207</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>839</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_175"> <Value> <Obj> <type>0</type> <id>209</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>93</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>93</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>577</item> <item>578</item> <item>579</item> </oprand_edges> <opcode>write</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>2.39</m_delay> </item> <item class_id_reference="9" object_id="_176"> <Value> <Obj> <type>0</type> <id>210</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>94</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>94</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>580</item> <item>581</item> <item>1188</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.24</m_delay> </item> <item class_id_reference="9" object_id="_177"> <Value> <Obj> <type>0</type> <id>211</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>95</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>95</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>582</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_178"> <Value> <Obj> <type>0</type> <id>213</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>157</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>157</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>840</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_179"> <Value> <Obj> <type>0</type> <id>215</id> <name>tmp_307_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>82</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>82</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_307_i_fu_1109_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>538</item> <item>539</item> </oprand_edges> <opcode>sub</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.51</m_delay> </item> <item class_id_reference="9" object_id="_180"> <Value> <Obj> <type>0</type> <id>216</id> <name>tmp_625</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>61</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>61</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_625_fu_1115_p1</rtlName> <coreName/> </Obj> <bitwidth>28</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>540</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_181"> <Value> <Obj> <type>0</type> <id>217</id> <name>tmp_309_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>82</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>82</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_309_i_fu_1119_p4</rtlName> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>541</item> <item>542</item> <item>543</item> <item>544</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_182"> <Value> <Obj> <type>0</type> <id>218</id> <name>tmp_310_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>82</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>82</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_310_i_fu_1129_p3</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>545</item> <item>546</item> <item>547</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_183"> <Value> <Obj> <type>0</type> <id>219</id> <name>tmp_311_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>82</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>82</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_311_i_fu_1137_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>548</item> <item>549</item> </oprand_edges> <opcode>xor</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.52</m_delay> </item> <item class_id_reference="9" object_id="_184"> <Value> <Obj> <type>0</type> <id>220</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>82</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>82</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>550</item> <item>551</item> <item>1171</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.28</m_delay> </item> <item class_id_reference="9" object_id="_185"> <Value> <Obj> <type>0</type> <id>221</id> <name>tmp_312_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>82</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>82</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_312_i_fu_1149_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>552</item> <item>553</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.51</m_delay> </item> <item class_id_reference="9" object_id="_186"> <Value> <Obj> <type>0</type> <id>222</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>82</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>82</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>554</item> <item>555</item> <item>1172</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.35</m_delay> </item> <item class_id_reference="9" object_id="_187"> <Value> <Obj> <type>0</type> <id>223</id> <name>tmp_313_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>83</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>83</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_313_i_fu_472_p2</rtlName> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>557</item> <item>558</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.81</m_delay> </item> <item class_id_reference="9" object_id="_188"> <Value> <Obj> <type>0</type> <id>224</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>83</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>83</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>559</item> <item>560</item> <item>1170</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.85</m_delay> </item> <item class_id_reference="9" object_id="_189"> <Value> <Obj> <type>0</type> <id>225</id> <name>tmp_314_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>84</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>84</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_314_i_fu_484_p2</rtlName> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>561</item> <item>563</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.40</m_delay> </item> <item class_id_reference="9" object_id="_190"> <Value> <Obj> <type>0</type> <id>226</id> <name>storemerge_cast_i_ca</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>84</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>84</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>storemerge_cast_i_ca_fu_490_p3</rtlName> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>564</item> <item>565</item> <item>566</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.58</m_delay> </item> <item class_id_reference="9" object_id="_191"> <Value> <Obj> <type>0</type> <id>227</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>85</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>85</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>567</item> <item>568</item> <item>1169</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.24</m_delay> </item> <item class_id_reference="9" object_id="_192"> <Value> <Obj> <type>0</type> <id>228</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>88</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>88</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>569</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_193"> <Value> <Obj> <type>0</type> <id>230</id> <name>tmp_295_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>76</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>76</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_295_i_fu_1161_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>495</item> <item>496</item> </oprand_edges> <opcode>sub</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.51</m_delay> </item> <item class_id_reference="9" object_id="_194"> <Value> <Obj> <type>0</type> <id>231</id> <name>tmp_623</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>62</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>62</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_623_fu_1167_p1</rtlName> <coreName/> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>497</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_195"> <Value> <Obj> <type>0</type> <id>232</id> <name>tmp_297_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>76</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>76</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_297_i_fu_1171_p4</rtlName> <coreName/> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>499</item> <item>500</item> <item>502</item> <item>503</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_196"> <Value> <Obj> <type>0</type> <id>233</id> <name>tmp_298_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>76</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>76</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_298_i_fu_1181_p3</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>505</item> <item>506</item> <item>507</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_197"> <Value> <Obj> <type>0</type> <id>234</id> <name>tmp_299_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>76</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>76</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_299_i_fu_1189_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>508</item> <item>509</item> </oprand_edges> <opcode>xor</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.52</m_delay> </item> <item class_id_reference="9" object_id="_198"> <Value> <Obj> <type>0</type> <id>235</id> <name>tmp_300_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>76</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>76</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_300_i_fu_1195_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>510</item> <item>511</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.51</m_delay> </item> <item class_id_reference="9" object_id="_199"> <Value> <Obj> <type>0</type> <id>236</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>76</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>76</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>512</item> <item>513</item> <item>1166</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.28</m_delay> </item> <item class_id_reference="9" object_id="_200"> <Value> <Obj> <type>0</type> <id>237</id> <name>tmp_301_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>77</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>77</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_301_i_fu_1207_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>514</item> <item>515</item> </oprand_edges> <opcode>sub</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.51</m_delay> </item> <item class_id_reference="9" object_id="_201"> <Value> <Obj> <type>0</type> <id>238</id> <name>tmp_624</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>76</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>76</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_624_fu_1213_p1</rtlName> <coreName/> </Obj> <bitwidth>13</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>516</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_202"> <Value> <Obj> <type>0</type> <id>239</id> <name>tmp_303_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>77</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>77</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_303_i_fu_1217_p4</rtlName> <coreName/> </Obj> <bitwidth>19</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>518</item> <item>519</item> <item>521</item> <item>522</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_203"> <Value> <Obj> <type>0</type> <id>240</id> <name>tmp_304_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>77</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>77</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_304_i_fu_1227_p3</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>524</item> <item>525</item> <item>526</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_204"> <Value> <Obj> <type>0</type> <id>241</id> <name>tmp_305_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>77</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>77</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_305_i_fu_1235_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>527</item> <item>528</item> </oprand_edges> <opcode>xor</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.52</m_delay> </item> <item class_id_reference="9" object_id="_205"> <Value> <Obj> <type>0</type> <id>242</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>77</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>77</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>529</item> <item>530</item> <item>1167</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.35</m_delay> </item> <item class_id_reference="9" object_id="_206"> <Value> <Obj> <type>0</type> <id>243</id> <name>tmp_306_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>77</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>77</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_306_i_fu_1247_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>531</item> <item>532</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.51</m_delay> </item> <item class_id_reference="9" object_id="_207"> <Value> <Obj> <type>0</type> <id>244</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>77</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>77</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>533</item> <item>534</item> <item>1168</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.43</m_delay> </item> <item class_id_reference="9" object_id="_208"> <Value> <Obj> <type>0</type> <id>245</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>78</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>78</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>535</item> <item>536</item> <item>1165</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.24</m_delay> </item> <item class_id_reference="9" object_id="_209"> <Value> <Obj> <type>0</type> <id>246</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>79</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>79</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>537</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_210"> <Value> <Obj> <type>0</type> <id>248</id> <name>tmp_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>70</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>70</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_i_fu_1259_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>452</item> <item>453</item> </oprand_edges> <opcode>sub</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.51</m_delay> </item> <item class_id_reference="9" object_id="_211"> <Value> <Obj> <type>0</type> <id>249</id> <name>tmp_621</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>60</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>60</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_621_fu_1265_p1</rtlName> <coreName/> </Obj> <bitwidth>26</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>454</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_212"> <Value> <Obj> <type>0</type> <id>250</id> <name>tmp_285_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>70</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>70</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_285_i_fu_1269_p4</rtlName> <coreName/> </Obj> <bitwidth>6</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>456</item> <item>457</item> <item>459</item> <item>460</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_213"> <Value> <Obj> <type>0</type> <id>251</id> <name>tmp_286_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>70</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>70</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_286_i_fu_1279_p3</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>462</item> <item>463</item> <item>464</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_214"> <Value> <Obj> <type>0</type> <id>252</id> <name>tmp_287_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>70</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>70</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_287_i_fu_1287_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>465</item> <item>466</item> </oprand_edges> <opcode>xor</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.52</m_delay> </item> <item class_id_reference="9" object_id="_215"> <Value> <Obj> <type>0</type> <id>253</id> <name>tmp_288_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>70</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>70</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_288_i_fu_1293_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>467</item> <item>468</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.51</m_delay> </item> <item class_id_reference="9" object_id="_216"> <Value> <Obj> <type>0</type> <id>254</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>70</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>70</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>469</item> <item>470</item> <item>1164</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.43</m_delay> </item> <item class_id_reference="9" object_id="_217"> <Value> <Obj> <type>0</type> <id>255</id> <name>tmp_289_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>71</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>71</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_289_i_fu_1305_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>471</item> <item>472</item> </oprand_edges> <opcode>sub</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.51</m_delay> </item> <item class_id_reference="9" object_id="_218"> <Value> <Obj> <type>0</type> <id>256</id> <name>tmp_622</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>70</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>70</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_622_fu_1311_p1</rtlName> <coreName/> </Obj> <bitwidth>24</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>473</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_219"> <Value> <Obj> <type>0</type> <id>257</id> <name>tmp_291_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>71</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>71</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_291_i_fu_1315_p4</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>475</item> <item>476</item> <item>478</item> <item>479</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_220"> <Value> <Obj> <type>0</type> <id>258</id> <name>tmp_292_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>71</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>71</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_292_i_fu_1325_p3</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>481</item> <item>482</item> <item>483</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_221"> <Value> <Obj> <type>0</type> <id>259</id> <name>tmp_293_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>71</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>71</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_293_i_fu_1333_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>484</item> <item>485</item> </oprand_edges> <opcode>xor</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.52</m_delay> </item> <item class_id_reference="9" object_id="_222"> <Value> <Obj> <type>0</type> <id>260</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>71</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>71</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>486</item> <item>487</item> <item>1162</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.28</m_delay> </item> <item class_id_reference="9" object_id="_223"> <Value> <Obj> <type>0</type> <id>261</id> <name>tmp_294_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>71</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>71</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_294_i_fu_1345_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>488</item> <item>489</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.51</m_delay> </item> <item class_id_reference="9" object_id="_224"> <Value> <Obj> <type>0</type> <id>262</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>71</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>71</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>490</item> <item>491</item> <item>1163</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.35</m_delay> </item> <item class_id_reference="9" object_id="_225"> <Value> <Obj> <type>0</type> <id>263</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>72</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>72</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>492</item> <item>493</item> <item>1161</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.24</m_delay> </item> <item class_id_reference="9" object_id="_226"> <Value> <Obj> <type>0</type> <id>264</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>73</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>73</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>494</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_227"> <Value> <Obj> <type>0</type> <id>266</id> <name>tmp_620</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>58</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>58</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>395</item> <item>396</item> <item>397</item> </oprand_edges> <opcode>nbreadreq</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_228"> <Value> <Obj> <type>0</type> <id>267</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>58</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>58</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>398</item> <item>399</item> <item>400</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_229"> <Value> <Obj> <type>0</type> <id>269</id> <name>tmp_V_82</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>59</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>59</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.V</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>96</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>402</item> <item>403</item> <item>1231</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>2.39</m_delay> </item> <item class_id_reference="9" object_id="_230"> <Value> <Obj> <type>0</type> <id>270</id> <name>tmp_634</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>60</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>60</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_634_fu_516_p1</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>404</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_231"> <Value> <Obj> <type>0</type> <id>271</id> <name>p_Result_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>61</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>61</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>reg_307</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>406</item> <item>407</item> <item>409</item> <item>411</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_232"> <Value> <Obj> <type>0</type> <id>272</id> <name>tmp_350_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>61</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>61</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_350_i_fu_1357_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>412</item> <item>413</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.51</m_delay> </item> <item class_id_reference="9" object_id="_233"> <Value> <Obj> <type>0</type> <id>273</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>61</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>61</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>414</item> <item>415</item> <item>1186</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.35</m_delay> </item> <item class_id_reference="9" object_id="_234"> <Value> <Obj> <type>0</type> <id>274</id> <name>p_Result_78_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>62</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>62</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>reg_311</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>416</item> <item>417</item> <item>419</item> <item>421</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_235"> <Value> <Obj> <type>0</type> <id>275</id> <name>tmp_351_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>62</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>62</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_351_i_fu_1369_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>422</item> <item>423</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.51</m_delay> </item> <item class_id_reference="9" object_id="_236"> <Value> <Obj> <type>0</type> <id>276</id> <name>tmp_352_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>60</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>60</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_352_i_fu_1375_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>424</item> <item>425</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_237"> <Value> <Obj> <type>0</type> <id>277</id> <name>tmp_353_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>64</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>64</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_353_i_fu_1380_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>426</item> <item>427</item> </oprand_edges> <opcode>sub</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>2.25</m_delay> </item> <item class_id_reference="9" object_id="_238"> <Value> <Obj> <type>0</type> <id>278</id> <name>tmp_635</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>62</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>62</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_635_fu_1386_p1</rtlName> <coreName/> </Obj> <bitwidth>28</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>428</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_239"> <Value> <Obj> <type>0</type> <id>279</id> <name>tmp_355_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>64</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>64</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_355_i_fu_1390_p4</rtlName> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>430</item> <item>431</item> <item>433</item> <item>435</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_240"> <Value> <Obj> <type>0</type> <id>280</id> <name>tmp_356_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>64</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>64</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_356_i_fu_1400_p3</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>437</item> <item>438</item> <item>439</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_241"> <Value> <Obj> <type>0</type> <id>281</id> <name>tmp_357_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>64</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>64</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_357_i_fu_1408_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>440</item> <item>441</item> </oprand_edges> <opcode>xor</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.52</m_delay> </item> <item class_id_reference="9" object_id="_242"> <Value> <Obj> <type>0</type> <id>282</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>64</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>64</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>442</item> <item>443</item> <item>1187</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.43</m_delay> </item> <item class_id_reference="9" object_id="_243"> <Value> <Obj> <type>0</type> <id>283</id> <name>tmp_358_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>64</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>64</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_358_i_fu_1420_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>444</item> <item>445</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.51</m_delay> </item> <item class_id_reference="9" object_id="_244"> <Value> <Obj> <type>0</type> <id>284</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>64</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>64</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>446</item> <item>447</item> <item>1185</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.28</m_delay> </item> <item class_id_reference="9" object_id="_245"> <Value> <Obj> <type>0</type> <id>285</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>65</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>65</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>448</item> <item>449</item> <item>1184</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.24</m_delay> </item> <item class_id_reference="9" object_id="_246"> <Value> <Obj> <type>0</type> <id>286</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>450</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_247"> <Value> <Obj> <type>0</type> <id>288</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>451</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_248"> <Value> <Obj> <type>0</type> <id>290</id> <name>tmp</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>46</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>46</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>352</item> <item>353</item> <item>355</item> </oprand_edges> <opcode>nbreadreq</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_249"> <Value> <Obj> <type>0</type> <id>291</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>46</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>46</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>356</item> <item>357</item> <item>358</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_250"> <Value> <Obj> <type>0</type> <id>293</id> <name>tmp_633</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>46</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>46</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>359</item> <item>360</item> <item>361</item> </oprand_edges> <opcode>nbreadreq</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_251"> <Value> <Obj> <type>0</type> <id>294</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>46</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>46</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>362</item> <item>363</item> <item>364</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_252"> <Value> <Obj> <type>0</type> <id>296</id> <name>tmp_637</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>47</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>47</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>366</item> <item>367</item> <item>1232</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>2.39</m_delay> </item> <item class_id_reference="9" object_id="_253"> <Value> <Obj> <type>0</type> <id>297</id> <name>tmp_359_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>47</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>47</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_359_i_fu_526_p1</rtlName> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>368</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_254"> <Value> <Obj> <type>0</type> <id>298</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>47</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>47</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>369</item> <item>370</item> <item>1190</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.85</m_delay> </item> <item class_id_reference="9" object_id="_255"> <Value> <Obj> <type>0</type> <id>299</id> <name>tmp_651</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>48</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>48</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>371</item> <item>372</item> <item>1233</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>2.39</m_delay> </item> <item class_id_reference="9" object_id="_256"> <Value> <Obj> <type>0</type> <id>300</id> <name>tmp1</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>49</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp1_fu_536_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>373</item> <item>375</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_257"> <Value> <Obj> <type>0</type> <id>301</id> <name>tmp_361_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>49</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_361_i_fu_542_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>376</item> <item>377</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>2.25</m_delay> </item> <item class_id_reference="9" object_id="_258"> <Value> <Obj> <type>0</type> <id>302</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>49</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>378</item> <item>379</item> <item>1191</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.28</m_delay> </item> <item class_id_reference="9" object_id="_259"> <Value> <Obj> <type>0</type> <id>303</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>49</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>380</item> <item>381</item> <item>1192</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.35</m_delay> </item> <item class_id_reference="9" object_id="_260"> <Value> <Obj> <type>0</type> <id>304</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>49</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>382</item> <item>383</item> <item>1193</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.43</m_delay> </item> <item class_id_reference="9" object_id="_261"> <Value> <Obj> <type>0</type> <id>305</id> <name>tmp_362_i</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>50</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>50</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_362_i_fu_548_p2</rtlName> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>384</item> <item>386</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.26</m_delay> </item> <item class_id_reference="9" object_id="_262"> <Value> <Obj> <type>0</type> <id>306</id> <name>storemerge29_cast_i_s</name> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>50</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>50</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>storemerge29_cast_i_s_fu_554_p3</rtlName> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>387</item> <item>388</item> <item>389</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.58</m_delay> </item> <item class_id_reference="9" object_id="_263"> <Value> <Obj> <type>0</type> <id>307</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>51</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>390</item> <item>391</item> <item>1189</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.24</m_delay> </item> <item class_id_reference="9" object_id="_264"> <Value> <Obj> <type>0</type> <id>308</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>54</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>54</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>392</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_265"> <Value> <Obj> <type>0</type> <id>310</id> <name/> <fileName>sources/hashTable/hash.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>55</lineNumber> <contextFuncName>bobj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/hashTable/hash.cpp</first> <second>bobj</second> </first> <second>55</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>393</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_266"> <Value> <Obj> <type>0</type> <id>312</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>0</count> <item_version>0</item_version> </oprand_edges> <opcode>ret</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> </nodes> <consts class_id="15" tracking_level="0" version="0"> <count>47</count> <item_version>0</item_version> <item class_id="16" tracking_level="1" version="0" object_id="_267"> <Value> <Obj> <type>2</type> <id>321</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_268"> <Value> <Obj> <type>2</type> <id>324</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_269"> <Value> <Obj> <type>2</type> <id>327</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <const_type>0</const_type> <content>2</content> </item> <item class_id_reference="16" object_id="_270"> <Value> <Obj> <type>2</type> <id>330</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <const_type>0</const_type> <content>3</content> </item> <item class_id_reference="16" object_id="_271"> <Value> <Obj> <type>2</type> <id>333</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <const_type>0</const_type> <content>4</content> </item> <item class_id_reference="16" object_id="_272"> <Value> <Obj> <type>2</type> <id>336</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <const_type>0</const_type> <content>5</content> </item> <item class_id_reference="16" object_id="_273"> <Value> <Obj> <type>2</type> <id>339</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <const_type>0</const_type> <content>6</content> </item> <item class_id_reference="16" object_id="_274"> <Value> <Obj> <type>2</type> <id>342</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <const_type>0</const_type> <content>7</content> </item> <item class_id_reference="16" object_id="_275"> <Value> <Obj> <type>2</type> <id>345</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <const_type>0</const_type> <content>8</content> </item> <item class_id_reference="16" object_id="_276"> <Value> <Obj> <type>2</type> <id>348</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <const_type>0</const_type> <content>9</content> </item> <item class_id_reference="16" object_id="_277"> <Value> <Obj> <type>2</type> <id>354</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>1</content> </item> <item class_id_reference="16" object_id="_278"> <Value> <Obj> <type>2</type> <id>374</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>3735928559</content> </item> <item class_id_reference="16" object_id="_279"> <Value> <Obj> <type>2</type> <id>385</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> <item class_id_reference="16" object_id="_280"> <Value> <Obj> <type>2</type> <id>408</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>32</content> </item> <item class_id_reference="16" object_id="_281"> <Value> <Obj> <type>2</type> <id>410</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>63</content> </item> <item class_id_reference="16" object_id="_282"> <Value> <Obj> <type>2</type> <id>418</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>64</content> </item> <item class_id_reference="16" object_id="_283"> <Value> <Obj> <type>2</type> <id>420</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>95</content> </item> <item class_id_reference="16" object_id="_284"> <Value> <Obj> <type>2</type> <id>432</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>28</content> </item> <item class_id_reference="16" object_id="_285"> <Value> <Obj> <type>2</type> <id>434</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>31</content> </item> <item class_id_reference="16" object_id="_286"> <Value> <Obj> <type>2</type> <id>458</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>26</content> </item> <item class_id_reference="16" object_id="_287"> <Value> <Obj> <type>2</type> <id>477</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>24</content> </item> <item class_id_reference="16" object_id="_288"> <Value> <Obj> <type>2</type> <id>501</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>16</content> </item> <item class_id_reference="16" object_id="_289"> <Value> <Obj> <type>2</type> <id>520</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>13</content> </item> <item class_id_reference="16" object_id="_290"> <Value> <Obj> <type>2</type> <id>556</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>18446744073709551604</content> </item> <item class_id_reference="16" object_id="_291"> <Value> <Obj> <type>2</type> <id>562</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>12</content> </item> <item class_id_reference="16" object_id="_292"> <Value> <Obj> <type>2</type> <id>571</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="_293"> <Value> <Obj> <type>2</type> <id>593</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>11</content> </item> <item class_id_reference="16" object_id="_294"> <Value> <Obj> <type>2</type> <id>596</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>10</content> </item> <item class_id_reference="16" object_id="_295"> <Value> <Obj> <type>2</type> <id>599</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>9</content> </item> <item class_id_reference="16" object_id="_296"> <Value> <Obj> <type>2</type> <id>602</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>8</content> </item> <item class_id_reference="16" object_id="_297"> <Value> <Obj> <type>2</type> <id>605</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>7</content> </item> <item class_id_reference="16" object_id="_298"> <Value> <Obj> <type>2</type> <id>608</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>6</content> </item> <item class_id_reference="16" object_id="_299"> <Value> <Obj> <type>2</type> <id>611</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>5</content> </item> <item class_id_reference="16" object_id="_300"> <Value> <Obj> <type>2</type> <id>614</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>4</content> </item> <item class_id_reference="16" object_id="_301"> <Value> <Obj> <type>2</type> <id>617</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>3</content> </item> <item class_id_reference="16" object_id="_302"> <Value> <Obj> <type>2</type> <id>620</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>2</content> </item> <item class_id_reference="16" object_id="_303"> <Value> <Obj> <type>2</type> <id>623</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="_304"> <Value> <Obj> <type>2</type> <id>669</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>87</content> </item> <item class_id_reference="16" object_id="_305"> <Value> <Obj> <type>2</type> <id>696</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>79</content> </item> <item class_id_reference="16" object_id="_306"> <Value> <Obj> <type>2</type> <id>723</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>71</content> </item> <item class_id_reference="16" object_id="_307"> <Value> <Obj> <type>2</type> <id>757</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>55</content> </item> <item class_id_reference="16" object_id="_308"> <Value> <Obj> <type>2</type> <id>775</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>47</content> </item> <item class_id_reference="16" object_id="_309"> <Value> <Obj> <type>2</type> <id>793</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>39</content> </item> <item class_id_reference="16" object_id="_310"> <Value> <Obj> <type>2</type> <id>847</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>18</content> </item> <item class_id_reference="16" object_id="_311"> <Value> <Obj> <type>2</type> <id>864</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>21</content> </item> <item class_id_reference="16" object_id="_312"> <Value> <Obj> <type>2</type> <id>884</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>7</content> </item> <item class_id_reference="16" object_id="_313"> <Value> <Obj> <type>2</type> <id>949</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> </consts> <blocks class_id="17" tracking_level="0" version="0"> <count>35</count> <item_version>0</item_version> <item class_id="18" tracking_level="1" version="0" object_id="_314"> <Obj> <type>3</type> <id>23</id> <name>entry</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>6</count> <item_version>0</item_version> <item>17</item> <item>18</item> <item>19</item> <item>20</item> <item>21</item> <item>22</item> </node_objs> </item> <item class_id_reference="18" object_id="_315"> <Obj> <type>3</type> <id>33</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>9</count> <item_version>0</item_version> <item>24</item> <item>25</item> <item>26</item> <item>27</item> <item>28</item> <item>29</item> <item>30</item> <item>31</item> <item>32</item> </node_objs> </item> <item class_id_reference="18" object_id="_316"> <Obj> <type>3</type> <id>48</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>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> </node_objs> </item> <item class_id_reference="18" object_id="_317"> <Obj> <type>3</type> <id>63</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>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> </node_objs> </item> <item class_id_reference="18" object_id="_318"> <Obj> <type>3</type> <id>78</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>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> <item>77</item> </node_objs> </item> <item class_id_reference="18" object_id="_319"> <Obj> <type>3</type> <id>81</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>2</count> <item_version>0</item_version> <item>79</item> <item>80</item> </node_objs> </item> <item class_id_reference="18" object_id="_320"> <Obj> <type>3</type> <id>84</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>2</count> <item_version>0</item_version> <item>82</item> <item>83</item> </node_objs> </item> <item class_id_reference="18" object_id="_321"> <Obj> <type>3</type> <id>86</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>85</item> </node_objs> </item> <item class_id_reference="18" object_id="_322"> <Obj> <type>3</type> <id>93</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>6</count> <item_version>0</item_version> <item>87</item> <item>88</item> <item>89</item> <item>90</item> <item>91</item> <item>92</item> </node_objs> </item> <item class_id_reference="18" object_id="_323"> <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>6</count> <item_version>0</item_version> <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="_324"> <Obj> <type>3</type> <id>107</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>6</count> <item_version>0</item_version> <item>101</item> <item>102</item> <item>103</item> <item>104</item> <item>105</item> <item>106</item> </node_objs> </item> <item class_id_reference="18" object_id="_325"> <Obj> <type>3</type> <id>113</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>5</count> <item_version>0</item_version> <item>108</item> <item>109</item> <item>110</item> <item>111</item> <item>112</item> </node_objs> </item> <item class_id_reference="18" object_id="_326"> <Obj> <type>3</type> <id>123</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>9</count> <item_version>0</item_version> <item>114</item> <item>115</item> <item>116</item> <item>117</item> <item>118</item> <item>119</item> <item>120</item> <item>121</item> <item>122</item> </node_objs> </item> <item class_id_reference="18" object_id="_327"> <Obj> <type>3</type> <id>133</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>9</count> <item_version>0</item_version> <item>124</item> <item>125</item> <item>126</item> <item>127</item> <item>128</item> <item>129</item> <item>130</item> <item>131</item> <item>132</item> </node_objs> </item> <item class_id_reference="18" object_id="_328"> <Obj> <type>3</type> <id>143</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>9</count> <item_version>0</item_version> <item>134</item> <item>135</item> <item>136</item> <item>137</item> <item>138</item> <item>139</item> <item>140</item> <item>141</item> <item>142</item> </node_objs> </item> <item class_id_reference="18" object_id="_329"> <Obj> <type>3</type> <id>152</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>8</count> <item_version>0</item_version> <item>144</item> <item>145</item> <item>146</item> <item>147</item> <item>148</item> <item>149</item> <item>150</item> <item>151</item> </node_objs> </item> <item class_id_reference="18" object_id="_330"> <Obj> <type>3</type> <id>165</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>153</item> <item>154</item> <item>155</item> <item>156</item> <item>157</item> <item>158</item> <item>159</item> <item>160</item> <item>161</item> <item>162</item> <item>163</item> <item>164</item> </node_objs> </item> <item class_id_reference="18" object_id="_331"> <Obj> <type>3</type> <id>178</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>166</item> <item>167</item> <item>168</item> <item>169</item> <item>170</item> <item>171</item> <item>172</item> <item>173</item> <item>174</item> <item>175</item> <item>176</item> <item>177</item> </node_objs> </item> <item class_id_reference="18" object_id="_332"> <Obj> <type>3</type> <id>191</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>179</item> <item>180</item> <item>181</item> <item>182</item> <item>183</item> <item>184</item> <item>185</item> <item>186</item> <item>187</item> <item>188</item> <item>189</item> <item>190</item> </node_objs> </item> <item class_id_reference="18" object_id="_333"> <Obj> <type>3</type> <id>203</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>11</count> <item_version>0</item_version> <item>192</item> <item>193</item> <item>194</item> <item>195</item> <item>196</item> <item>197</item> <item>198</item> <item>199</item> <item>200</item> <item>201</item> <item>202</item> </node_objs> </item> <item class_id_reference="18" object_id="_334"> <Obj> <type>3</type> <id>206</id> <name>._crit_edge5.i</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>204</item> <item>205</item> </node_objs> </item> <item class_id_reference="18" object_id="_335"> <Obj> <type>3</type> <id>208</id> <name>._crit_edge4.i</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>207</item> </node_objs> </item> <item class_id_reference="18" object_id="_336"> <Obj> <type>3</type> <id>212</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>3</count> <item_version>0</item_version> <item>209</item> <item>210</item> <item>211</item> </node_objs> </item> <item class_id_reference="18" object_id="_337"> <Obj> <type>3</type> <id>214</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>213</item> </node_objs> </item> <item class_id_reference="18" object_id="_338"> <Obj> <type>3</type> <id>229</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>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> <item>225</item> <item>226</item> <item>227</item> <item>228</item> </node_objs> </item> <item class_id_reference="18" object_id="_339"> <Obj> <type>3</type> <id>247</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>17</count> <item_version>0</item_version> <item>230</item> <item>231</item> <item>232</item> <item>233</item> <item>234</item> <item>235</item> <item>236</item> <item>237</item> <item>238</item> <item>239</item> <item>240</item> <item>241</item> <item>242</item> <item>243</item> <item>244</item> <item>245</item> <item>246</item> </node_objs> </item> <item class_id_reference="18" object_id="_340"> <Obj> <type>3</type> <id>265</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>17</count> <item_version>0</item_version> <item>248</item> <item>249</item> <item>250</item> <item>251</item> <item>252</item> <item>253</item> <item>254</item> <item>255</item> <item>256</item> <item>257</item> <item>258</item> <item>259</item> <item>260</item> <item>261</item> <item>262</item> <item>263</item> <item>264</item> </node_objs> </item> <item class_id_reference="18" object_id="_341"> <Obj> <type>3</type> <id>268</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>2</count> <item_version>0</item_version> <item>266</item> <item>267</item> </node_objs> </item> <item class_id_reference="18" object_id="_342"> <Obj> <type>3</type> <id>287</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>18</count> <item_version>0</item_version> <item>269</item> <item>270</item> <item>271</item> <item>272</item> <item>273</item> <item>274</item> <item>275</item> <item>276</item> <item>277</item> <item>278</item> <item>279</item> <item>280</item> <item>281</item> <item>282</item> <item>283</item> <item>284</item> <item>285</item> <item>286</item> </node_objs> </item> <item class_id_reference="18" object_id="_343"> <Obj> <type>3</type> <id>289</id> <name>._crit_edge3.i</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>288</item> </node_objs> </item> <item class_id_reference="18" object_id="_344"> <Obj> <type>3</type> <id>292</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>2</count> <item_version>0</item_version> <item>290</item> <item>291</item> </node_objs> </item> <item class_id_reference="18" object_id="_345"> <Obj> <type>3</type> <id>295</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>2</count> <item_version>0</item_version> <item>293</item> <item>294</item> </node_objs> </item> <item class_id_reference="18" object_id="_346"> <Obj> <type>3</type> <id>309</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>296</item> <item>297</item> <item>298</item> <item>299</item> <item>300</item> <item>301</item> <item>302</item> <item>303</item> <item>304</item> <item>305</item> <item>306</item> <item>307</item> <item>308</item> </node_objs> </item> <item class_id_reference="18" object_id="_347"> <Obj> <type>3</type> <id>311</id> <name>._crit_edge1.i</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>310</item> </node_objs> </item> <item class_id_reference="18" object_id="_348"> <Obj> <type>3</type> <id>313</id> <name>bobj.exit</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>312</item> </node_objs> </item> </blocks> <edges class_id="19" tracking_level="0" version="0"> <count>651</count> <item_version>0</item_version> <item class_id="20" tracking_level="1" version="0" object_id="_349"> <id>314</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>17</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_350"> <id>315</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>18</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_351"> <id>316</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>19</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_352"> <id>317</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>20</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_353"> <id>318</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>21</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_354"> <id>319</id> <edge_type>1</edge_type> <source_obj>17</source_obj> <sink_obj>22</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_355"> <id>320</id> <edge_type>2</edge_type> <source_obj>313</source_obj> <sink_obj>22</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_356"> <id>322</id> <edge_type>1</edge_type> <source_obj>321</source_obj> <sink_obj>22</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_357"> <id>323</id> <edge_type>2</edge_type> <source_obj>292</source_obj> <sink_obj>22</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_358"> <id>325</id> <edge_type>1</edge_type> <source_obj>324</source_obj> <sink_obj>22</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_359"> <id>326</id> <edge_type>2</edge_type> <source_obj>268</source_obj> <sink_obj>22</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_360"> <id>328</id> <edge_type>1</edge_type> <source_obj>327</source_obj> <sink_obj>22</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_361"> <id>329</id> <edge_type>2</edge_type> <source_obj>265</source_obj> <sink_obj>22</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_362"> <id>331</id> <edge_type>1</edge_type> <source_obj>330</source_obj> <sink_obj>22</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_363"> <id>332</id> <edge_type>2</edge_type> <source_obj>247</source_obj> <sink_obj>22</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_364"> <id>334</id> <edge_type>1</edge_type> <source_obj>333</source_obj> <sink_obj>22</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_365"> <id>335</id> <edge_type>2</edge_type> <source_obj>229</source_obj> <sink_obj>22</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_366"> <id>337</id> <edge_type>1</edge_type> <source_obj>336</source_obj> <sink_obj>22</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_367"> <id>338</id> <edge_type>2</edge_type> <source_obj>81</source_obj> <sink_obj>22</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_368"> <id>340</id> <edge_type>1</edge_type> <source_obj>339</source_obj> <sink_obj>22</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_369"> <id>341</id> <edge_type>2</edge_type> <source_obj>78</source_obj> <sink_obj>22</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_370"> <id>343</id> <edge_type>1</edge_type> <source_obj>342</source_obj> <sink_obj>22</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_371"> <id>344</id> <edge_type>2</edge_type> <source_obj>63</source_obj> <sink_obj>22</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_372"> <id>346</id> <edge_type>1</edge_type> <source_obj>345</source_obj> <sink_obj>22</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_373"> <id>347</id> <edge_type>2</edge_type> <source_obj>48</source_obj> <sink_obj>22</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_374"> <id>349</id> <edge_type>1</edge_type> <source_obj>348</source_obj> <sink_obj>22</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_375"> <id>350</id> <edge_type>2</edge_type> <source_obj>33</source_obj> <sink_obj>22</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_376"> <id>353</id> <edge_type>1</edge_type> <source_obj>6</source_obj> <sink_obj>290</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_377"> <id>355</id> <edge_type>1</edge_type> <source_obj>354</source_obj> <sink_obj>290</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_378"> <id>356</id> <edge_type>1</edge_type> <source_obj>290</source_obj> <sink_obj>291</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_379"> <id>357</id> <edge_type>2</edge_type> <source_obj>311</source_obj> <sink_obj>291</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_380"> <id>358</id> <edge_type>2</edge_type> <source_obj>295</source_obj> <sink_obj>291</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_381"> <id>360</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>293</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_382"> <id>361</id> <edge_type>1</edge_type> <source_obj>354</source_obj> <sink_obj>293</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_383"> <id>362</id> <edge_type>1</edge_type> <source_obj>293</source_obj> <sink_obj>294</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_384"> <id>363</id> <edge_type>2</edge_type> <source_obj>311</source_obj> <sink_obj>294</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_385"> <id>364</id> <edge_type>2</edge_type> <source_obj>309</source_obj> <sink_obj>294</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_386"> <id>367</id> <edge_type>1</edge_type> <source_obj>6</source_obj> <sink_obj>296</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_387"> <id>368</id> <edge_type>1</edge_type> <source_obj>296</source_obj> <sink_obj>297</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_388"> <id>369</id> <edge_type>1</edge_type> <source_obj>297</source_obj> <sink_obj>298</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_389"> <id>370</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>298</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_390"> <id>372</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>299</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_391"> <id>373</id> <edge_type>1</edge_type> <source_obj>296</source_obj> <sink_obj>300</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_392"> <id>375</id> <edge_type>1</edge_type> <source_obj>374</source_obj> <sink_obj>300</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_393"> <id>376</id> <edge_type>1</edge_type> <source_obj>299</source_obj> <sink_obj>301</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_394"> <id>377</id> <edge_type>1</edge_type> <source_obj>300</source_obj> <sink_obj>301</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_395"> <id>378</id> <edge_type>1</edge_type> <source_obj>301</source_obj> <sink_obj>302</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_396"> <id>379</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>302</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_397"> <id>380</id> <edge_type>1</edge_type> <source_obj>301</source_obj> <sink_obj>303</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_398"> <id>381</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>303</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_399"> <id>382</id> <edge_type>1</edge_type> <source_obj>301</source_obj> <sink_obj>304</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_400"> <id>383</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>304</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_401"> <id>384</id> <edge_type>1</edge_type> <source_obj>296</source_obj> <sink_obj>305</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_402"> <id>386</id> <edge_type>1</edge_type> <source_obj>385</source_obj> <sink_obj>305</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_403"> <id>387</id> <edge_type>1</edge_type> <source_obj>305</source_obj> <sink_obj>306</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_404"> <id>388</id> <edge_type>1</edge_type> <source_obj>324</source_obj> <sink_obj>306</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_405"> <id>389</id> <edge_type>1</edge_type> <source_obj>336</source_obj> <sink_obj>306</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_406"> <id>390</id> <edge_type>1</edge_type> <source_obj>306</source_obj> <sink_obj>307</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_407"> <id>391</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>307</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_408"> <id>392</id> <edge_type>2</edge_type> <source_obj>311</source_obj> <sink_obj>308</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_409"> <id>393</id> <edge_type>2</edge_type> <source_obj>313</source_obj> <sink_obj>310</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_410"> <id>396</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>266</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_411"> <id>397</id> <edge_type>1</edge_type> <source_obj>354</source_obj> <sink_obj>266</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_412"> <id>398</id> <edge_type>1</edge_type> <source_obj>266</source_obj> <sink_obj>267</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_413"> <id>399</id> <edge_type>2</edge_type> <source_obj>289</source_obj> <sink_obj>267</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_414"> <id>400</id> <edge_type>2</edge_type> <source_obj>287</source_obj> <sink_obj>267</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_415"> <id>403</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>269</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_416"> <id>404</id> <edge_type>1</edge_type> <source_obj>269</source_obj> <sink_obj>270</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_417"> <id>407</id> <edge_type>1</edge_type> <source_obj>269</source_obj> <sink_obj>271</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_418"> <id>409</id> <edge_type>1</edge_type> <source_obj>408</source_obj> <sink_obj>271</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_419"> <id>411</id> <edge_type>1</edge_type> <source_obj>410</source_obj> <sink_obj>271</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_420"> <id>412</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>272</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_421"> <id>413</id> <edge_type>1</edge_type> <source_obj>271</source_obj> <sink_obj>272</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_422"> <id>414</id> <edge_type>1</edge_type> <source_obj>272</source_obj> <sink_obj>273</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_423"> <id>415</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>273</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_424"> <id>417</id> <edge_type>1</edge_type> <source_obj>269</source_obj> <sink_obj>274</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_425"> <id>419</id> <edge_type>1</edge_type> <source_obj>418</source_obj> <sink_obj>274</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_426"> <id>421</id> <edge_type>1</edge_type> <source_obj>420</source_obj> <sink_obj>274</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_427"> <id>422</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>275</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_428"> <id>423</id> <edge_type>1</edge_type> <source_obj>274</source_obj> <sink_obj>275</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_429"> <id>424</id> <edge_type>1</edge_type> <source_obj>21</source_obj> <sink_obj>276</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_430"> <id>425</id> <edge_type>1</edge_type> <source_obj>270</source_obj> <sink_obj>276</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_431"> <id>426</id> <edge_type>1</edge_type> <source_obj>276</source_obj> <sink_obj>277</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_432"> <id>427</id> <edge_type>1</edge_type> <source_obj>275</source_obj> <sink_obj>277</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_433"> <id>428</id> <edge_type>1</edge_type> <source_obj>275</source_obj> <sink_obj>278</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_434"> <id>431</id> <edge_type>1</edge_type> <source_obj>275</source_obj> <sink_obj>279</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_435"> <id>433</id> <edge_type>1</edge_type> <source_obj>432</source_obj> <sink_obj>279</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_436"> <id>435</id> <edge_type>1</edge_type> <source_obj>434</source_obj> <sink_obj>279</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_437"> <id>438</id> <edge_type>1</edge_type> <source_obj>278</source_obj> <sink_obj>280</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_438"> <id>439</id> <edge_type>1</edge_type> <source_obj>279</source_obj> <sink_obj>280</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_439"> <id>440</id> <edge_type>1</edge_type> <source_obj>280</source_obj> <sink_obj>281</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_440"> <id>441</id> <edge_type>1</edge_type> <source_obj>277</source_obj> <sink_obj>281</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_441"> <id>442</id> <edge_type>1</edge_type> <source_obj>281</source_obj> <sink_obj>282</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_442"> <id>443</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>282</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_443"> <id>444</id> <edge_type>1</edge_type> <source_obj>275</source_obj> <sink_obj>283</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_444"> <id>445</id> <edge_type>1</edge_type> <source_obj>272</source_obj> <sink_obj>283</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_445"> <id>446</id> <edge_type>1</edge_type> <source_obj>283</source_obj> <sink_obj>284</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_446"> <id>447</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>284</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_447"> <id>448</id> <edge_type>1</edge_type> <source_obj>327</source_obj> <sink_obj>285</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_448"> <id>449</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>285</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_449"> <id>450</id> <edge_type>2</edge_type> <source_obj>289</source_obj> <sink_obj>286</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_450"> <id>451</id> <edge_type>2</edge_type> <source_obj>313</source_obj> <sink_obj>288</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_451"> <id>452</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>248</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_452"> <id>453</id> <edge_type>1</edge_type> <source_obj>21</source_obj> <sink_obj>248</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_453"> <id>454</id> <edge_type>1</edge_type> <source_obj>21</source_obj> <sink_obj>249</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_454"> <id>457</id> <edge_type>1</edge_type> <source_obj>21</source_obj> <sink_obj>250</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_455"> <id>459</id> <edge_type>1</edge_type> <source_obj>458</source_obj> <sink_obj>250</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_456"> <id>460</id> <edge_type>1</edge_type> <source_obj>434</source_obj> <sink_obj>250</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_457"> <id>463</id> <edge_type>1</edge_type> <source_obj>249</source_obj> <sink_obj>251</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_458"> <id>464</id> <edge_type>1</edge_type> <source_obj>250</source_obj> <sink_obj>251</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_459"> <id>465</id> <edge_type>1</edge_type> <source_obj>248</source_obj> <sink_obj>252</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_460"> <id>466</id> <edge_type>1</edge_type> <source_obj>251</source_obj> <sink_obj>252</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_461"> <id>467</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>253</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_462"> <id>468</id> <edge_type>1</edge_type> <source_obj>21</source_obj> <sink_obj>253</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_463"> <id>469</id> <edge_type>1</edge_type> <source_obj>253</source_obj> <sink_obj>254</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_464"> <id>470</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>254</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_465"> <id>471</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>255</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_466"> <id>472</id> <edge_type>1</edge_type> <source_obj>252</source_obj> <sink_obj>255</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_467"> <id>473</id> <edge_type>1</edge_type> <source_obj>252</source_obj> <sink_obj>256</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_468"> <id>476</id> <edge_type>1</edge_type> <source_obj>252</source_obj> <sink_obj>257</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_469"> <id>478</id> <edge_type>1</edge_type> <source_obj>477</source_obj> <sink_obj>257</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_470"> <id>479</id> <edge_type>1</edge_type> <source_obj>434</source_obj> <sink_obj>257</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_471"> <id>482</id> <edge_type>1</edge_type> <source_obj>256</source_obj> <sink_obj>258</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_472"> <id>483</id> <edge_type>1</edge_type> <source_obj>257</source_obj> <sink_obj>258</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_473"> <id>484</id> <edge_type>1</edge_type> <source_obj>258</source_obj> <sink_obj>259</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_474"> <id>485</id> <edge_type>1</edge_type> <source_obj>255</source_obj> <sink_obj>259</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_475"> <id>486</id> <edge_type>1</edge_type> <source_obj>259</source_obj> <sink_obj>260</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_476"> <id>487</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>260</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_477"> <id>488</id> <edge_type>1</edge_type> <source_obj>252</source_obj> <sink_obj>261</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_478"> <id>489</id> <edge_type>1</edge_type> <source_obj>253</source_obj> <sink_obj>261</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_479"> <id>490</id> <edge_type>1</edge_type> <source_obj>261</source_obj> <sink_obj>262</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_480"> <id>491</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>262</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_481"> <id>492</id> <edge_type>1</edge_type> <source_obj>330</source_obj> <sink_obj>263</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_482"> <id>493</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>263</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_483"> <id>494</id> <edge_type>2</edge_type> <source_obj>313</source_obj> <sink_obj>264</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_484"> <id>495</id> <edge_type>1</edge_type> <source_obj>21</source_obj> <sink_obj>230</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_485"> <id>496</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>230</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_486"> <id>497</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>231</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_487"> <id>500</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>232</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_488"> <id>502</id> <edge_type>1</edge_type> <source_obj>501</source_obj> <sink_obj>232</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_489"> <id>503</id> <edge_type>1</edge_type> <source_obj>434</source_obj> <sink_obj>232</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_490"> <id>506</id> <edge_type>1</edge_type> <source_obj>231</source_obj> <sink_obj>233</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_491"> <id>507</id> <edge_type>1</edge_type> <source_obj>232</source_obj> <sink_obj>233</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_492"> <id>508</id> <edge_type>1</edge_type> <source_obj>230</source_obj> <sink_obj>234</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_493"> <id>509</id> <edge_type>1</edge_type> <source_obj>233</source_obj> <sink_obj>234</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_494"> <id>510</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>235</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_495"> <id>511</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>235</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_496"> <id>512</id> <edge_type>1</edge_type> <source_obj>235</source_obj> <sink_obj>236</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_497"> <id>513</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>236</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_498"> <id>514</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>237</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_499"> <id>515</id> <edge_type>1</edge_type> <source_obj>234</source_obj> <sink_obj>237</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_500"> <id>516</id> <edge_type>1</edge_type> <source_obj>234</source_obj> <sink_obj>238</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_501"> <id>519</id> <edge_type>1</edge_type> <source_obj>234</source_obj> <sink_obj>239</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_502"> <id>521</id> <edge_type>1</edge_type> <source_obj>520</source_obj> <sink_obj>239</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_503"> <id>522</id> <edge_type>1</edge_type> <source_obj>434</source_obj> <sink_obj>239</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_504"> <id>525</id> <edge_type>1</edge_type> <source_obj>238</source_obj> <sink_obj>240</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_505"> <id>526</id> <edge_type>1</edge_type> <source_obj>239</source_obj> <sink_obj>240</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_506"> <id>527</id> <edge_type>1</edge_type> <source_obj>240</source_obj> <sink_obj>241</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_507"> <id>528</id> <edge_type>1</edge_type> <source_obj>237</source_obj> <sink_obj>241</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_508"> <id>529</id> <edge_type>1</edge_type> <source_obj>241</source_obj> <sink_obj>242</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_509"> <id>530</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>242</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_510"> <id>531</id> <edge_type>1</edge_type> <source_obj>234</source_obj> <sink_obj>243</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_511"> <id>532</id> <edge_type>1</edge_type> <source_obj>235</source_obj> <sink_obj>243</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_512"> <id>533</id> <edge_type>1</edge_type> <source_obj>243</source_obj> <sink_obj>244</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_513"> <id>534</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>244</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_514"> <id>535</id> <edge_type>1</edge_type> <source_obj>333</source_obj> <sink_obj>245</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_515"> <id>536</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>245</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_516"> <id>537</id> <edge_type>2</edge_type> <source_obj>313</source_obj> <sink_obj>246</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_517"> <id>538</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>215</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_518"> <id>539</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>215</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_519"> <id>540</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>216</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_520"> <id>542</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>217</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_521"> <id>543</id> <edge_type>1</edge_type> <source_obj>432</source_obj> <sink_obj>217</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_522"> <id>544</id> <edge_type>1</edge_type> <source_obj>434</source_obj> <sink_obj>217</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_523"> <id>546</id> <edge_type>1</edge_type> <source_obj>216</source_obj> <sink_obj>218</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_524"> <id>547</id> <edge_type>1</edge_type> <source_obj>217</source_obj> <sink_obj>218</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_525"> <id>548</id> <edge_type>1</edge_type> <source_obj>215</source_obj> <sink_obj>219</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_526"> <id>549</id> <edge_type>1</edge_type> <source_obj>218</source_obj> <sink_obj>219</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_527"> <id>550</id> <edge_type>1</edge_type> <source_obj>219</source_obj> <sink_obj>220</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_528"> <id>551</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>220</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_529"> <id>552</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>221</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_530"> <id>553</id> <edge_type>1</edge_type> <source_obj>21</source_obj> <sink_obj>221</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_531"> <id>554</id> <edge_type>1</edge_type> <source_obj>221</source_obj> <sink_obj>222</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_532"> <id>555</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>222</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_533"> <id>557</id> <edge_type>1</edge_type> <source_obj>556</source_obj> <sink_obj>223</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_534"> <id>558</id> <edge_type>1</edge_type> <source_obj>18</source_obj> <sink_obj>223</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_535"> <id>559</id> <edge_type>1</edge_type> <source_obj>223</source_obj> <sink_obj>224</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_536"> <id>560</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>224</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_537"> <id>561</id> <edge_type>1</edge_type> <source_obj>223</source_obj> <sink_obj>225</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_538"> <id>563</id> <edge_type>1</edge_type> <source_obj>562</source_obj> <sink_obj>225</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_539"> <id>564</id> <edge_type>1</edge_type> <source_obj>225</source_obj> <sink_obj>226</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_540"> <id>565</id> <edge_type>1</edge_type> <source_obj>324</source_obj> <sink_obj>226</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_541"> <id>566</id> <edge_type>1</edge_type> <source_obj>336</source_obj> <sink_obj>226</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_542"> <id>567</id> <edge_type>1</edge_type> <source_obj>226</source_obj> <sink_obj>227</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_543"> <id>568</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>227</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_544"> <id>569</id> <edge_type>2</edge_type> <source_obj>313</source_obj> <sink_obj>228</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_545"> <id>570</id> <edge_type>1</edge_type> <source_obj>18</source_obj> <sink_obj>79</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_546"> <id>572</id> <edge_type>1</edge_type> <source_obj>571</source_obj> <sink_obj>79</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_547"> <id>573</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="_548"> <id>574</id> <edge_type>2</edge_type> <source_obj>84</source_obj> <sink_obj>80</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_549"> <id>575</id> <edge_type>2</edge_type> <source_obj>212</source_obj> <sink_obj>80</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_550"> <id>578</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>209</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_551"> <id>579</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>209</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_552"> <id>580</id> <edge_type>1</edge_type> <source_obj>321</source_obj> <sink_obj>210</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_553"> <id>581</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>210</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_554"> <id>582</id> <edge_type>2</edge_type> <source_obj>214</source_obj> <sink_obj>211</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_555"> <id>584</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>82</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_556"> <id>585</id> <edge_type>1</edge_type> <source_obj>354</source_obj> <sink_obj>82</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_557"> <id>586</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="_558"> <id>587</id> <edge_type>2</edge_type> <source_obj>208</source_obj> <sink_obj>83</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_559"> <id>588</id> <edge_type>2</edge_type> <source_obj>86</source_obj> <sink_obj>83</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_560"> <id>589</id> <edge_type>1</edge_type> <source_obj>18</source_obj> <sink_obj>85</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_561"> <id>590</id> <edge_type>2</edge_type> <source_obj>206</source_obj> <sink_obj>85</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_562"> <id>591</id> <edge_type>1</edge_type> <source_obj>562</source_obj> <sink_obj>85</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_563"> <id>592</id> <edge_type>2</edge_type> <source_obj>203</source_obj> <sink_obj>85</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_564"> <id>594</id> <edge_type>1</edge_type> <source_obj>593</source_obj> <sink_obj>85</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_565"> <id>595</id> <edge_type>2</edge_type> <source_obj>191</source_obj> <sink_obj>85</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_566"> <id>597</id> <edge_type>1</edge_type> <source_obj>596</source_obj> <sink_obj>85</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_567"> <id>598</id> <edge_type>2</edge_type> <source_obj>178</source_obj> <sink_obj>85</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_568"> <id>600</id> <edge_type>1</edge_type> <source_obj>599</source_obj> <sink_obj>85</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_569"> <id>601</id> <edge_type>2</edge_type> <source_obj>165</source_obj> <sink_obj>85</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_570"> <id>603</id> <edge_type>1</edge_type> <source_obj>602</source_obj> <sink_obj>85</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_571"> <id>604</id> <edge_type>2</edge_type> <source_obj>152</source_obj> <sink_obj>85</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_572"> <id>606</id> <edge_type>1</edge_type> <source_obj>605</source_obj> <sink_obj>85</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_573"> <id>607</id> <edge_type>2</edge_type> <source_obj>143</source_obj> <sink_obj>85</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_574"> <id>609</id> <edge_type>1</edge_type> <source_obj>608</source_obj> <sink_obj>85</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_575"> <id>610</id> <edge_type>2</edge_type> <source_obj>133</source_obj> <sink_obj>85</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_576"> <id>612</id> <edge_type>1</edge_type> <source_obj>611</source_obj> <sink_obj>85</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_577"> <id>613</id> <edge_type>2</edge_type> <source_obj>123</source_obj> <sink_obj>85</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_578"> <id>615</id> <edge_type>1</edge_type> <source_obj>614</source_obj> <sink_obj>85</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_579"> <id>616</id> <edge_type>2</edge_type> <source_obj>113</source_obj> <sink_obj>85</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_580"> <id>618</id> <edge_type>1</edge_type> <source_obj>617</source_obj> <sink_obj>85</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_581"> <id>619</id> <edge_type>2</edge_type> <source_obj>107</source_obj> <sink_obj>85</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_582"> <id>621</id> <edge_type>1</edge_type> <source_obj>620</source_obj> <sink_obj>85</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_583"> <id>622</id> <edge_type>2</edge_type> <source_obj>100</source_obj> <sink_obj>85</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_584"> <id>624</id> <edge_type>1</edge_type> <source_obj>623</source_obj> <sink_obj>85</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_585"> <id>625</id> <edge_type>2</edge_type> <source_obj>93</source_obj> <sink_obj>85</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_586"> <id>627</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>192</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_587"> <id>628</id> <edge_type>1</edge_type> <source_obj>192</source_obj> <sink_obj>193</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_588"> <id>629</id> <edge_type>1</edge_type> <source_obj>193</source_obj> <sink_obj>194</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_589"> <id>630</id> <edge_type>1</edge_type> <source_obj>21</source_obj> <sink_obj>194</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_590"> <id>631</id> <edge_type>1</edge_type> <source_obj>194</source_obj> <sink_obj>195</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_591"> <id>632</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>195</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_592"> <id>634</id> <edge_type>1</edge_type> <source_obj>192</source_obj> <sink_obj>196</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_593"> <id>635</id> <edge_type>1</edge_type> <source_obj>408</source_obj> <sink_obj>196</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_594"> <id>636</id> <edge_type>1</edge_type> <source_obj>410</source_obj> <sink_obj>196</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_595"> <id>637</id> <edge_type>1</edge_type> <source_obj>196</source_obj> <sink_obj>197</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_596"> <id>638</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>197</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_597"> <id>639</id> <edge_type>1</edge_type> <source_obj>197</source_obj> <sink_obj>198</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_598"> <id>640</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>198</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_599"> <id>642</id> <edge_type>1</edge_type> <source_obj>192</source_obj> <sink_obj>199</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_600"> <id>643</id> <edge_type>1</edge_type> <source_obj>418</source_obj> <sink_obj>199</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_601"> <id>644</id> <edge_type>1</edge_type> <source_obj>420</source_obj> <sink_obj>199</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_602"> <id>645</id> <edge_type>1</edge_type> <source_obj>199</source_obj> <sink_obj>200</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_603"> <id>646</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>200</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_604"> <id>647</id> <edge_type>1</edge_type> <source_obj>200</source_obj> <sink_obj>201</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_605"> <id>648</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>201</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_606"> <id>649</id> <edge_type>2</edge_type> <source_obj>206</source_obj> <sink_obj>202</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_607"> <id>651</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>179</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_608"> <id>652</id> <edge_type>1</edge_type> <source_obj>179</source_obj> <sink_obj>180</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_609"> <id>653</id> <edge_type>1</edge_type> <source_obj>180</source_obj> <sink_obj>181</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_610"> <id>654</id> <edge_type>1</edge_type> <source_obj>21</source_obj> <sink_obj>181</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_611"> <id>655</id> <edge_type>1</edge_type> <source_obj>181</source_obj> <sink_obj>182</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_612"> <id>656</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>182</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_613"> <id>658</id> <edge_type>1</edge_type> <source_obj>179</source_obj> <sink_obj>183</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_614"> <id>659</id> <edge_type>1</edge_type> <source_obj>408</source_obj> <sink_obj>183</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_615"> <id>660</id> <edge_type>1</edge_type> <source_obj>410</source_obj> <sink_obj>183</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_616"> <id>661</id> <edge_type>1</edge_type> <source_obj>183</source_obj> <sink_obj>184</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_617"> <id>662</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>184</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_618"> <id>663</id> <edge_type>1</edge_type> <source_obj>184</source_obj> <sink_obj>185</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_619"> <id>664</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>185</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_620"> <id>667</id> <edge_type>1</edge_type> <source_obj>179</source_obj> <sink_obj>186</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_621"> <id>668</id> <edge_type>1</edge_type> <source_obj>418</source_obj> <sink_obj>186</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_622"> <id>670</id> <edge_type>1</edge_type> <source_obj>669</source_obj> <sink_obj>186</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_623"> <id>671</id> <edge_type>1</edge_type> <source_obj>186</source_obj> <sink_obj>187</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_624"> <id>672</id> <edge_type>1</edge_type> <source_obj>187</source_obj> <sink_obj>188</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_625"> <id>673</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>188</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_626"> <id>674</id> <edge_type>1</edge_type> <source_obj>188</source_obj> <sink_obj>189</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_627"> <id>675</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>189</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_628"> <id>676</id> <edge_type>2</edge_type> <source_obj>206</source_obj> <sink_obj>190</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_629"> <id>678</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>166</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_630"> <id>679</id> <edge_type>1</edge_type> <source_obj>166</source_obj> <sink_obj>167</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_631"> <id>680</id> <edge_type>1</edge_type> <source_obj>167</source_obj> <sink_obj>168</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_632"> <id>681</id> <edge_type>1</edge_type> <source_obj>21</source_obj> <sink_obj>168</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_633"> <id>682</id> <edge_type>1</edge_type> <source_obj>168</source_obj> <sink_obj>169</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_634"> <id>683</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>169</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_635"> <id>685</id> <edge_type>1</edge_type> <source_obj>166</source_obj> <sink_obj>170</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_636"> <id>686</id> <edge_type>1</edge_type> <source_obj>408</source_obj> <sink_obj>170</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_637"> <id>687</id> <edge_type>1</edge_type> <source_obj>410</source_obj> <sink_obj>170</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_638"> <id>688</id> <edge_type>1</edge_type> <source_obj>170</source_obj> <sink_obj>171</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_639"> <id>689</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>171</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_640"> <id>690</id> <edge_type>1</edge_type> <source_obj>171</source_obj> <sink_obj>172</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_641"> <id>691</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>172</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_642"> <id>694</id> <edge_type>1</edge_type> <source_obj>166</source_obj> <sink_obj>173</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_643"> <id>695</id> <edge_type>1</edge_type> <source_obj>418</source_obj> <sink_obj>173</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_644"> <id>697</id> <edge_type>1</edge_type> <source_obj>696</source_obj> <sink_obj>173</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_645"> <id>698</id> <edge_type>1</edge_type> <source_obj>173</source_obj> <sink_obj>174</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_646"> <id>699</id> <edge_type>1</edge_type> <source_obj>174</source_obj> <sink_obj>175</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_647"> <id>700</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>175</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_648"> <id>701</id> <edge_type>1</edge_type> <source_obj>175</source_obj> <sink_obj>176</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_649"> <id>702</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>176</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_650"> <id>703</id> <edge_type>2</edge_type> <source_obj>206</source_obj> <sink_obj>177</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_651"> <id>705</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>153</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_652"> <id>706</id> <edge_type>1</edge_type> <source_obj>153</source_obj> <sink_obj>154</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_653"> <id>707</id> <edge_type>1</edge_type> <source_obj>154</source_obj> <sink_obj>155</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_654"> <id>708</id> <edge_type>1</edge_type> <source_obj>21</source_obj> <sink_obj>155</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_655"> <id>709</id> <edge_type>1</edge_type> <source_obj>155</source_obj> <sink_obj>156</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_656"> <id>710</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>156</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_657"> <id>712</id> <edge_type>1</edge_type> <source_obj>153</source_obj> <sink_obj>157</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_658"> <id>713</id> <edge_type>1</edge_type> <source_obj>408</source_obj> <sink_obj>157</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_659"> <id>714</id> <edge_type>1</edge_type> <source_obj>410</source_obj> <sink_obj>157</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_660"> <id>715</id> <edge_type>1</edge_type> <source_obj>157</source_obj> <sink_obj>158</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_661"> <id>716</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>158</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_662"> <id>717</id> <edge_type>1</edge_type> <source_obj>158</source_obj> <sink_obj>159</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_663"> <id>718</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>159</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_664"> <id>721</id> <edge_type>1</edge_type> <source_obj>153</source_obj> <sink_obj>160</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_665"> <id>722</id> <edge_type>1</edge_type> <source_obj>418</source_obj> <sink_obj>160</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_666"> <id>724</id> <edge_type>1</edge_type> <source_obj>723</source_obj> <sink_obj>160</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_667"> <id>725</id> <edge_type>1</edge_type> <source_obj>160</source_obj> <sink_obj>161</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_668"> <id>726</id> <edge_type>1</edge_type> <source_obj>161</source_obj> <sink_obj>162</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_669"> <id>727</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>162</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_670"> <id>728</id> <edge_type>1</edge_type> <source_obj>162</source_obj> <sink_obj>163</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_671"> <id>729</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>163</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_672"> <id>730</id> <edge_type>2</edge_type> <source_obj>206</source_obj> <sink_obj>164</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_673"> <id>732</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>144</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_674"> <id>733</id> <edge_type>1</edge_type> <source_obj>144</source_obj> <sink_obj>145</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_675"> <id>734</id> <edge_type>1</edge_type> <source_obj>145</source_obj> <sink_obj>146</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_676"> <id>735</id> <edge_type>1</edge_type> <source_obj>21</source_obj> <sink_obj>146</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_677"> <id>736</id> <edge_type>1</edge_type> <source_obj>146</source_obj> <sink_obj>147</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_678"> <id>737</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>147</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_679"> <id>739</id> <edge_type>1</edge_type> <source_obj>144</source_obj> <sink_obj>148</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_680"> <id>740</id> <edge_type>1</edge_type> <source_obj>408</source_obj> <sink_obj>148</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_681"> <id>741</id> <edge_type>1</edge_type> <source_obj>410</source_obj> <sink_obj>148</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_682"> <id>742</id> <edge_type>1</edge_type> <source_obj>148</source_obj> <sink_obj>149</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_683"> <id>743</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>149</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_684"> <id>744</id> <edge_type>1</edge_type> <source_obj>149</source_obj> <sink_obj>150</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_685"> <id>745</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>150</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_686"> <id>746</id> <edge_type>2</edge_type> <source_obj>206</source_obj> <sink_obj>151</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_687"> <id>748</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>134</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_688"> <id>749</id> <edge_type>1</edge_type> <source_obj>134</source_obj> <sink_obj>135</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_689"> <id>750</id> <edge_type>1</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="_690"> <id>751</id> <edge_type>1</edge_type> <source_obj>21</source_obj> <sink_obj>136</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_691"> <id>752</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="_692"> <id>753</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>137</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_693"> <id>755</id> <edge_type>1</edge_type> <source_obj>134</source_obj> <sink_obj>138</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_694"> <id>756</id> <edge_type>1</edge_type> <source_obj>408</source_obj> <sink_obj>138</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_695"> <id>758</id> <edge_type>1</edge_type> <source_obj>757</source_obj> <sink_obj>138</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_696"> <id>759</id> <edge_type>1</edge_type> <source_obj>138</source_obj> <sink_obj>139</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_697"> <id>760</id> <edge_type>1</edge_type> <source_obj>139</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_698"> <id>761</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_699"> <id>762</id> <edge_type>1</edge_type> <source_obj>140</source_obj> <sink_obj>141</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_700"> <id>763</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>141</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_701"> <id>764</id> <edge_type>2</edge_type> <source_obj>206</source_obj> <sink_obj>142</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_702"> <id>766</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>124</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_703"> <id>767</id> <edge_type>1</edge_type> <source_obj>124</source_obj> <sink_obj>125</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_704"> <id>768</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="_705"> <id>769</id> <edge_type>1</edge_type> <source_obj>21</source_obj> <sink_obj>126</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_706"> <id>770</id> <edge_type>1</edge_type> <source_obj>126</source_obj> <sink_obj>127</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_707"> <id>771</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>127</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_708"> <id>773</id> <edge_type>1</edge_type> <source_obj>124</source_obj> <sink_obj>128</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_709"> <id>774</id> <edge_type>1</edge_type> <source_obj>408</source_obj> <sink_obj>128</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_710"> <id>776</id> <edge_type>1</edge_type> <source_obj>775</source_obj> <sink_obj>128</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_711"> <id>777</id> <edge_type>1</edge_type> <source_obj>128</source_obj> <sink_obj>129</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_712"> <id>778</id> <edge_type>1</edge_type> <source_obj>129</source_obj> <sink_obj>130</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_713"> <id>779</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>130</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_714"> <id>780</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="_715"> <id>781</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>131</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_716"> <id>782</id> <edge_type>2</edge_type> <source_obj>206</source_obj> <sink_obj>132</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_717"> <id>784</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>114</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_718"> <id>785</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="_719"> <id>786</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="_720"> <id>787</id> <edge_type>1</edge_type> <source_obj>21</source_obj> <sink_obj>116</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_721"> <id>788</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="_722"> <id>789</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>117</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_723"> <id>791</id> <edge_type>1</edge_type> <source_obj>114</source_obj> <sink_obj>118</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_724"> <id>792</id> <edge_type>1</edge_type> <source_obj>408</source_obj> <sink_obj>118</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_725"> <id>794</id> <edge_type>1</edge_type> <source_obj>793</source_obj> <sink_obj>118</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_726"> <id>795</id> <edge_type>1</edge_type> <source_obj>118</source_obj> <sink_obj>119</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_727"> <id>796</id> <edge_type>1</edge_type> <source_obj>119</source_obj> <sink_obj>120</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_728"> <id>797</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>120</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_729"> <id>798</id> <edge_type>1</edge_type> <source_obj>120</source_obj> <sink_obj>121</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_730"> <id>799</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>121</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_731"> <id>800</id> <edge_type>2</edge_type> <source_obj>206</source_obj> <sink_obj>122</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_732"> <id>802</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>108</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_733"> <id>803</id> <edge_type>1</edge_type> <source_obj>108</source_obj> <sink_obj>109</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_734"> <id>804</id> <edge_type>1</edge_type> <source_obj>109</source_obj> <sink_obj>110</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_735"> <id>805</id> <edge_type>1</edge_type> <source_obj>21</source_obj> <sink_obj>110</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_736"> <id>806</id> <edge_type>1</edge_type> <source_obj>110</source_obj> <sink_obj>111</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_737"> <id>807</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>111</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_738"> <id>808</id> <edge_type>2</edge_type> <source_obj>206</source_obj> <sink_obj>112</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_739"> <id>810</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>101</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_740"> <id>811</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="_741"> <id>812</id> <edge_type>1</edge_type> <source_obj>102</source_obj> <sink_obj>103</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_742"> <id>813</id> <edge_type>1</edge_type> <source_obj>103</source_obj> <sink_obj>104</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_743"> <id>814</id> <edge_type>1</edge_type> <source_obj>21</source_obj> <sink_obj>104</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_744"> <id>815</id> <edge_type>1</edge_type> <source_obj>104</source_obj> <sink_obj>105</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_745"> <id>816</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>105</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_746"> <id>817</id> <edge_type>2</edge_type> <source_obj>206</source_obj> <sink_obj>106</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_747"> <id>819</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>94</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_748"> <id>820</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="_749"> <id>821</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="_750"> <id>822</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="_751"> <id>823</id> <edge_type>1</edge_type> <source_obj>21</source_obj> <sink_obj>97</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_752"> <id>824</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="_753"> <id>825</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>98</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_754"> <id>826</id> <edge_type>2</edge_type> <source_obj>206</source_obj> <sink_obj>99</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_755"> <id>828</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>87</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_756"> <id>829</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="_757"> <id>830</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="_758"> <id>831</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="_759"> <id>832</id> <edge_type>1</edge_type> <source_obj>21</source_obj> <sink_obj>90</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_760"> <id>833</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="_761"> <id>834</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>91</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_762"> <id>835</id> <edge_type>2</edge_type> <source_obj>206</source_obj> <sink_obj>92</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_763"> <id>836</id> <edge_type>1</edge_type> <source_obj>339</source_obj> <sink_obj>204</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_764"> <id>837</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>204</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_765"> <id>838</id> <edge_type>2</edge_type> <source_obj>208</source_obj> <sink_obj>205</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_766"> <id>839</id> <edge_type>2</edge_type> <source_obj>214</source_obj> <sink_obj>207</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_767"> <id>840</id> <edge_type>2</edge_type> <source_obj>313</source_obj> <sink_obj>213</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_768"> <id>841</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>64</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_769"> <id>842</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>64</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_770"> <id>843</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>65</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_771"> <id>846</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>66</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_772"> <id>848</id> <edge_type>1</edge_type> <source_obj>847</source_obj> <sink_obj>66</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_773"> <id>849</id> <edge_type>1</edge_type> <source_obj>434</source_obj> <sink_obj>66</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_774"> <id>852</id> <edge_type>1</edge_type> <source_obj>65</source_obj> <sink_obj>67</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_775"> <id>853</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="_776"> <id>854</id> <edge_type>1</edge_type> <source_obj>64</source_obj> <sink_obj>68</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_777"> <id>855</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="_778"> <id>856</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="_779"> <id>857</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>69</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_780"> <id>858</id> <edge_type>1</edge_type> <source_obj>21</source_obj> <sink_obj>70</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_781"> <id>859</id> <edge_type>1</edge_type> <source_obj>68</source_obj> <sink_obj>70</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_782"> <id>860</id> <edge_type>1</edge_type> <source_obj>68</source_obj> <sink_obj>71</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_783"> <id>863</id> <edge_type>1</edge_type> <source_obj>68</source_obj> <sink_obj>72</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_784"> <id>865</id> <edge_type>1</edge_type> <source_obj>864</source_obj> <sink_obj>72</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_785"> <id>866</id> <edge_type>1</edge_type> <source_obj>434</source_obj> <sink_obj>72</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_786"> <id>869</id> <edge_type>1</edge_type> <source_obj>71</source_obj> <sink_obj>73</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_787"> <id>870</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="_788"> <id>871</id> <edge_type>1</edge_type> <source_obj>70</source_obj> <sink_obj>74</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_789"> <id>872</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="_790"> <id>873</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="_791"> <id>874</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>75</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_792"> <id>875</id> <edge_type>1</edge_type> <source_obj>342</source_obj> <sink_obj>76</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_793"> <id>876</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>76</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_794"> <id>877</id> <edge_type>2</edge_type> <source_obj>313</source_obj> <sink_obj>77</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_795"> <id>878</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>49</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_796"> <id>879</id> <edge_type>1</edge_type> <source_obj>21</source_obj> <sink_obj>49</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_797"> <id>880</id> <edge_type>1</edge_type> <source_obj>21</source_obj> <sink_obj>50</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_798"> <id>883</id> <edge_type>1</edge_type> <source_obj>21</source_obj> <sink_obj>51</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_799"> <id>885</id> <edge_type>1</edge_type> <source_obj>884</source_obj> <sink_obj>51</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_800"> <id>886</id> <edge_type>1</edge_type> <source_obj>434</source_obj> <sink_obj>51</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_801"> <id>889</id> <edge_type>1</edge_type> <source_obj>50</source_obj> <sink_obj>52</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_802"> <id>890</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="_803"> <id>891</id> <edge_type>1</edge_type> <source_obj>49</source_obj> <sink_obj>53</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_804"> <id>892</id> <edge_type>1</edge_type> <source_obj>52</source_obj> <sink_obj>53</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_805"> <id>893</id> <edge_type>1</edge_type> <source_obj>53</source_obj> <sink_obj>54</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_806"> <id>894</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>54</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_807"> <id>895</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>55</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_808"> <id>896</id> <edge_type>1</edge_type> <source_obj>53</source_obj> <sink_obj>55</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_809"> <id>897</id> <edge_type>1</edge_type> <source_obj>53</source_obj> <sink_obj>56</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_810"> <id>899</id> <edge_type>1</edge_type> <source_obj>53</source_obj> <sink_obj>57</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_811"> <id>900</id> <edge_type>1</edge_type> <source_obj>501</source_obj> <sink_obj>57</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_812"> <id>901</id> <edge_type>1</edge_type> <source_obj>434</source_obj> <sink_obj>57</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_813"> <id>903</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="_814"> <id>904</id> <edge_type>1</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="_815"> <id>905</id> <edge_type>1</edge_type> <source_obj>55</source_obj> <sink_obj>59</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_816"> <id>906</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="_817"> <id>907</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="_818"> <id>908</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>60</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_819"> <id>909</id> <edge_type>1</edge_type> <source_obj>345</source_obj> <sink_obj>61</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_820"> <id>910</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>61</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_821"> <id>911</id> <edge_type>2</edge_type> <source_obj>313</source_obj> <sink_obj>62</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_822"> <id>912</id> <edge_type>1</edge_type> <source_obj>21</source_obj> <sink_obj>34</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_823"> <id>913</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>34</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_824"> <id>914</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>35</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_825"> <id>916</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>36</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_826"> <id>917</id> <edge_type>1</edge_type> <source_obj>432</source_obj> <sink_obj>36</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_827"> <id>918</id> <edge_type>1</edge_type> <source_obj>434</source_obj> <sink_obj>36</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_828"> <id>920</id> <edge_type>1</edge_type> <source_obj>35</source_obj> <sink_obj>37</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_829"> <id>921</id> <edge_type>1</edge_type> <source_obj>36</source_obj> <sink_obj>37</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_830"> <id>922</id> <edge_type>1</edge_type> <source_obj>34</source_obj> <sink_obj>38</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_831"> <id>923</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="_832"> <id>924</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="_833"> <id>925</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>39</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_834"> <id>926</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>40</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_835"> <id>927</id> <edge_type>1</edge_type> <source_obj>38</source_obj> <sink_obj>40</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_836"> <id>928</id> <edge_type>1</edge_type> <source_obj>38</source_obj> <sink_obj>41</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_837"> <id>930</id> <edge_type>1</edge_type> <source_obj>38</source_obj> <sink_obj>42</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_838"> <id>931</id> <edge_type>1</edge_type> <source_obj>847</source_obj> <sink_obj>42</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_839"> <id>932</id> <edge_type>1</edge_type> <source_obj>434</source_obj> <sink_obj>42</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_840"> <id>934</id> <edge_type>1</edge_type> <source_obj>41</source_obj> <sink_obj>43</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_841"> <id>935</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="_842"> <id>936</id> <edge_type>1</edge_type> <source_obj>40</source_obj> <sink_obj>44</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_843"> <id>937</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="_844"> <id>938</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="_845"> <id>939</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>45</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_846"> <id>940</id> <edge_type>1</edge_type> <source_obj>348</source_obj> <sink_obj>46</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_847"> <id>941</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>46</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_848"> <id>942</id> <edge_type>2</edge_type> <source_obj>313</source_obj> <sink_obj>47</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_849"> <id>943</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_850"> <id>944</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_851"> <id>945</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>25</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_852"> <id>948</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>26</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_853"> <id>950</id> <edge_type>1</edge_type> <source_obj>949</source_obj> <sink_obj>26</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_854"> <id>951</id> <edge_type>1</edge_type> <source_obj>434</source_obj> <sink_obj>26</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_855"> <id>954</id> <edge_type>1</edge_type> <source_obj>25</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_856"> <id>955</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="_857"> <id>956</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="_858"> <id>957</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="_859"> <id>958</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="_860"> <id>959</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>29</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_861"> <id>961</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_862"> <id>962</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="_863"> <id>963</id> <edge_type>1</edge_type> <source_obj>321</source_obj> <sink_obj>31</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_864"> <id>964</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>31</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_865"> <id>965</id> <edge_type>2</edge_type> <source_obj>313</source_obj> <sink_obj>32</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_866"> <id>1094</id> <edge_type>2</edge_type> <source_obj>23</source_obj> <sink_obj>313</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_867"> <id>1095</id> <edge_type>2</edge_type> <source_obj>23</source_obj> <sink_obj>292</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_868"> <id>1096</id> <edge_type>2</edge_type> <source_obj>23</source_obj> <sink_obj>268</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_869"> <id>1097</id> <edge_type>2</edge_type> <source_obj>23</source_obj> <sink_obj>265</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_870"> <id>1098</id> <edge_type>2</edge_type> <source_obj>23</source_obj> <sink_obj>247</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_871"> <id>1099</id> <edge_type>2</edge_type> <source_obj>23</source_obj> <sink_obj>229</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_872"> <id>1100</id> <edge_type>2</edge_type> <source_obj>23</source_obj> <sink_obj>81</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_873"> <id>1101</id> <edge_type>2</edge_type> <source_obj>23</source_obj> <sink_obj>78</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_874"> <id>1102</id> <edge_type>2</edge_type> <source_obj>23</source_obj> <sink_obj>63</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_875"> <id>1103</id> <edge_type>2</edge_type> <source_obj>23</source_obj> <sink_obj>48</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_876"> <id>1104</id> <edge_type>2</edge_type> <source_obj>23</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_877"> <id>1105</id> <edge_type>2</edge_type> <source_obj>33</source_obj> <sink_obj>313</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_878"> <id>1106</id> <edge_type>2</edge_type> <source_obj>48</source_obj> <sink_obj>313</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_879"> <id>1107</id> <edge_type>2</edge_type> <source_obj>63</source_obj> <sink_obj>313</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_880"> <id>1108</id> <edge_type>2</edge_type> <source_obj>78</source_obj> <sink_obj>313</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_881"> <id>1109</id> <edge_type>2</edge_type> <source_obj>81</source_obj> <sink_obj>212</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_882"> <id>1110</id> <edge_type>2</edge_type> <source_obj>81</source_obj> <sink_obj>84</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_883"> <id>1111</id> <edge_type>2</edge_type> <source_obj>84</source_obj> <sink_obj>86</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_884"> <id>1112</id> <edge_type>2</edge_type> <source_obj>84</source_obj> <sink_obj>208</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_885"> <id>1113</id> <edge_type>2</edge_type> <source_obj>86</source_obj> <sink_obj>206</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_886"> <id>1114</id> <edge_type>2</edge_type> <source_obj>86</source_obj> <sink_obj>203</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_887"> <id>1115</id> <edge_type>2</edge_type> <source_obj>86</source_obj> <sink_obj>191</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_888"> <id>1116</id> <edge_type>2</edge_type> <source_obj>86</source_obj> <sink_obj>178</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_889"> <id>1117</id> <edge_type>2</edge_type> <source_obj>86</source_obj> <sink_obj>165</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_890"> <id>1118</id> <edge_type>2</edge_type> <source_obj>86</source_obj> <sink_obj>152</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_891"> <id>1119</id> <edge_type>2</edge_type> <source_obj>86</source_obj> <sink_obj>143</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_892"> <id>1120</id> <edge_type>2</edge_type> <source_obj>86</source_obj> <sink_obj>133</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_893"> <id>1121</id> <edge_type>2</edge_type> <source_obj>86</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_894"> <id>1122</id> <edge_type>2</edge_type> <source_obj>86</source_obj> <sink_obj>113</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_895"> <id>1123</id> <edge_type>2</edge_type> <source_obj>86</source_obj> <sink_obj>107</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_896"> <id>1124</id> <edge_type>2</edge_type> <source_obj>86</source_obj> <sink_obj>100</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_897"> <id>1125</id> <edge_type>2</edge_type> <source_obj>86</source_obj> <sink_obj>93</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_898"> <id>1126</id> <edge_type>2</edge_type> <source_obj>93</source_obj> <sink_obj>206</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_899"> <id>1127</id> <edge_type>2</edge_type> <source_obj>100</source_obj> <sink_obj>206</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_900"> <id>1128</id> <edge_type>2</edge_type> <source_obj>107</source_obj> <sink_obj>206</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_901"> <id>1129</id> <edge_type>2</edge_type> <source_obj>113</source_obj> <sink_obj>206</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_902"> <id>1130</id> <edge_type>2</edge_type> <source_obj>123</source_obj> <sink_obj>206</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_903"> <id>1131</id> <edge_type>2</edge_type> <source_obj>133</source_obj> <sink_obj>206</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_904"> <id>1132</id> <edge_type>2</edge_type> <source_obj>143</source_obj> <sink_obj>206</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_905"> <id>1133</id> <edge_type>2</edge_type> <source_obj>152</source_obj> <sink_obj>206</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_906"> <id>1134</id> <edge_type>2</edge_type> <source_obj>165</source_obj> <sink_obj>206</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_907"> <id>1135</id> <edge_type>2</edge_type> <source_obj>178</source_obj> <sink_obj>206</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_908"> <id>1136</id> <edge_type>2</edge_type> <source_obj>191</source_obj> <sink_obj>206</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_909"> <id>1137</id> <edge_type>2</edge_type> <source_obj>203</source_obj> <sink_obj>206</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_910"> <id>1138</id> <edge_type>2</edge_type> <source_obj>206</source_obj> <sink_obj>208</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_911"> <id>1139</id> <edge_type>2</edge_type> <source_obj>208</source_obj> <sink_obj>214</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_912"> <id>1140</id> <edge_type>2</edge_type> <source_obj>212</source_obj> <sink_obj>214</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_913"> <id>1141</id> <edge_type>2</edge_type> <source_obj>214</source_obj> <sink_obj>313</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_914"> <id>1142</id> <edge_type>2</edge_type> <source_obj>229</source_obj> <sink_obj>313</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_915"> <id>1143</id> <edge_type>2</edge_type> <source_obj>247</source_obj> <sink_obj>313</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_916"> <id>1144</id> <edge_type>2</edge_type> <source_obj>265</source_obj> <sink_obj>313</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_917"> <id>1145</id> <edge_type>2</edge_type> <source_obj>268</source_obj> <sink_obj>287</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_918"> <id>1146</id> <edge_type>2</edge_type> <source_obj>268</source_obj> <sink_obj>289</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_919"> <id>1147</id> <edge_type>2</edge_type> <source_obj>287</source_obj> <sink_obj>289</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_920"> <id>1148</id> <edge_type>2</edge_type> <source_obj>289</source_obj> <sink_obj>313</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_921"> <id>1149</id> <edge_type>2</edge_type> <source_obj>292</source_obj> <sink_obj>295</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_922"> <id>1150</id> <edge_type>2</edge_type> <source_obj>292</source_obj> <sink_obj>311</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_923"> <id>1151</id> <edge_type>2</edge_type> <source_obj>295</source_obj> <sink_obj>309</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_924"> <id>1152</id> <edge_type>2</edge_type> <source_obj>295</source_obj> <sink_obj>311</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_925"> <id>1153</id> <edge_type>2</edge_type> <source_obj>309</source_obj> <sink_obj>311</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_926"> <id>1154</id> <edge_type>2</edge_type> <source_obj>311</source_obj> <sink_obj>313</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_927"> <id>1161</id> <edge_type>4</edge_type> <source_obj>17</source_obj> <sink_obj>263</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_928"> <id>1162</id> <edge_type>4</edge_type> <source_obj>19</source_obj> <sink_obj>260</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_929"> <id>1163</id> <edge_type>4</edge_type> <source_obj>20</source_obj> <sink_obj>262</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_930"> <id>1164</id> <edge_type>4</edge_type> <source_obj>21</source_obj> <sink_obj>254</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_931"> <id>1165</id> <edge_type>4</edge_type> <source_obj>17</source_obj> <sink_obj>245</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_932"> <id>1166</id> <edge_type>4</edge_type> <source_obj>19</source_obj> <sink_obj>236</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_933"> <id>1167</id> <edge_type>4</edge_type> <source_obj>20</source_obj> <sink_obj>242</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_934"> <id>1168</id> <edge_type>4</edge_type> <source_obj>21</source_obj> <sink_obj>244</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_935"> <id>1169</id> <edge_type>4</edge_type> <source_obj>17</source_obj> <sink_obj>227</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_936"> <id>1170</id> <edge_type>4</edge_type> <source_obj>18</source_obj> <sink_obj>224</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_937"> <id>1171</id> <edge_type>4</edge_type> <source_obj>19</source_obj> <sink_obj>220</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_938"> <id>1172</id> <edge_type>4</edge_type> <source_obj>20</source_obj> <sink_obj>222</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_939"> <id>1173</id> <edge_type>4</edge_type> <source_obj>17</source_obj> <sink_obj>76</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_940"> <id>1174</id> <edge_type>4</edge_type> <source_obj>19</source_obj> <sink_obj>69</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_941"> <id>1175</id> <edge_type>4</edge_type> <source_obj>21</source_obj> <sink_obj>75</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_942"> <id>1176</id> <edge_type>4</edge_type> <source_obj>17</source_obj> <sink_obj>61</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_943"> <id>1177</id> <edge_type>4</edge_type> <source_obj>19</source_obj> <sink_obj>60</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_944"> <id>1178</id> <edge_type>4</edge_type> <source_obj>20</source_obj> <sink_obj>54</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_945"> <id>1179</id> <edge_type>4</edge_type> <source_obj>17</source_obj> <sink_obj>46</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_946"> <id>1180</id> <edge_type>4</edge_type> <source_obj>20</source_obj> <sink_obj>45</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_947"> <id>1181</id> <edge_type>4</edge_type> <source_obj>21</source_obj> <sink_obj>39</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_948"> <id>1182</id> <edge_type>4</edge_type> <source_obj>17</source_obj> <sink_obj>31</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_949"> <id>1183</id> <edge_type>4</edge_type> <source_obj>19</source_obj> <sink_obj>29</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_950"> <id>1184</id> <edge_type>4</edge_type> <source_obj>17</source_obj> <sink_obj>285</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_951"> <id>1185</id> <edge_type>4</edge_type> <source_obj>19</source_obj> <sink_obj>284</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_952"> <id>1186</id> <edge_type>4</edge_type> <source_obj>20</source_obj> <sink_obj>273</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_953"> <id>1187</id> <edge_type>4</edge_type> <source_obj>21</source_obj> <sink_obj>282</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_954"> <id>1188</id> <edge_type>4</edge_type> <source_obj>17</source_obj> <sink_obj>210</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_955"> <id>1189</id> <edge_type>4</edge_type> <source_obj>17</source_obj> <sink_obj>307</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_956"> <id>1190</id> <edge_type>4</edge_type> <source_obj>18</source_obj> <sink_obj>298</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_957"> <id>1191</id> <edge_type>4</edge_type> <source_obj>19</source_obj> <sink_obj>302</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_958"> <id>1192</id> <edge_type>4</edge_type> <source_obj>20</source_obj> <sink_obj>303</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_959"> <id>1193</id> <edge_type>4</edge_type> <source_obj>21</source_obj> <sink_obj>304</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_960"> <id>1194</id> <edge_type>4</edge_type> <source_obj>17</source_obj> <sink_obj>204</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_961"> <id>1195</id> <edge_type>4</edge_type> <source_obj>19</source_obj> <sink_obj>201</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_962"> <id>1196</id> <edge_type>4</edge_type> <source_obj>20</source_obj> <sink_obj>198</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_963"> <id>1197</id> <edge_type>4</edge_type> <source_obj>21</source_obj> <sink_obj>195</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_964"> <id>1198</id> <edge_type>4</edge_type> <source_obj>19</source_obj> <sink_obj>189</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_965"> <id>1199</id> <edge_type>4</edge_type> <source_obj>20</source_obj> <sink_obj>185</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_966"> <id>1200</id> <edge_type>4</edge_type> <source_obj>21</source_obj> <sink_obj>182</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_967"> <id>1201</id> <edge_type>4</edge_type> <source_obj>19</source_obj> <sink_obj>176</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_968"> <id>1202</id> <edge_type>4</edge_type> <source_obj>20</source_obj> <sink_obj>172</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_969"> <id>1203</id> <edge_type>4</edge_type> <source_obj>21</source_obj> <sink_obj>169</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_970"> <id>1204</id> <edge_type>4</edge_type> <source_obj>19</source_obj> <sink_obj>163</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_971"> <id>1205</id> <edge_type>4</edge_type> <source_obj>20</source_obj> <sink_obj>159</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_972"> <id>1206</id> <edge_type>4</edge_type> <source_obj>21</source_obj> <sink_obj>156</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_973"> <id>1207</id> <edge_type>4</edge_type> <source_obj>20</source_obj> <sink_obj>150</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_974"> <id>1208</id> <edge_type>4</edge_type> <source_obj>21</source_obj> <sink_obj>147</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_975"> <id>1209</id> <edge_type>4</edge_type> <source_obj>20</source_obj> <sink_obj>141</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_976"> <id>1210</id> <edge_type>4</edge_type> <source_obj>21</source_obj> <sink_obj>137</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_977"> <id>1211</id> <edge_type>4</edge_type> <source_obj>20</source_obj> <sink_obj>131</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_978"> <id>1212</id> <edge_type>4</edge_type> <source_obj>21</source_obj> <sink_obj>127</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_979"> <id>1213</id> <edge_type>4</edge_type> <source_obj>20</source_obj> <sink_obj>121</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_980"> <id>1214</id> <edge_type>4</edge_type> <source_obj>21</source_obj> <sink_obj>117</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_981"> <id>1215</id> <edge_type>4</edge_type> <source_obj>21</source_obj> <sink_obj>111</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_982"> <id>1216</id> <edge_type>4</edge_type> <source_obj>21</source_obj> <sink_obj>105</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_983"> <id>1217</id> <edge_type>4</edge_type> <source_obj>21</source_obj> <sink_obj>98</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_984"> <id>1218</id> <edge_type>4</edge_type> <source_obj>21</source_obj> <sink_obj>91</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_985"> <id>1219</id> <edge_type>4</edge_type> <source_obj>82</source_obj> <sink_obj>192</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_986"> <id>1220</id> <edge_type>4</edge_type> <source_obj>82</source_obj> <sink_obj>179</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_987"> <id>1221</id> <edge_type>4</edge_type> <source_obj>82</source_obj> <sink_obj>166</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_988"> <id>1222</id> <edge_type>4</edge_type> <source_obj>82</source_obj> <sink_obj>153</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_989"> <id>1223</id> <edge_type>4</edge_type> <source_obj>82</source_obj> <sink_obj>144</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_990"> <id>1224</id> <edge_type>4</edge_type> <source_obj>82</source_obj> <sink_obj>134</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_991"> <id>1225</id> <edge_type>4</edge_type> <source_obj>82</source_obj> <sink_obj>124</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_992"> <id>1226</id> <edge_type>4</edge_type> <source_obj>82</source_obj> <sink_obj>114</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_993"> <id>1227</id> <edge_type>4</edge_type> <source_obj>82</source_obj> <sink_obj>108</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_994"> <id>1228</id> <edge_type>4</edge_type> <source_obj>82</source_obj> <sink_obj>101</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_995"> <id>1229</id> <edge_type>4</edge_type> <source_obj>82</source_obj> <sink_obj>94</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_996"> <id>1230</id> <edge_type>4</edge_type> <source_obj>82</source_obj> <sink_obj>87</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_997"> <id>1231</id> <edge_type>4</edge_type> <source_obj>266</source_obj> <sink_obj>269</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_998"> <id>1232</id> <edge_type>4</edge_type> <source_obj>290</source_obj> <sink_obj>296</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_999"> <id>1233</id> <edge_type>4</edge_type> <source_obj>293</source_obj> <sink_obj>299</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="_1000"> <mId>1</mId> <mTag>bobj</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>35</count> <item_version>0</item_version> <item>23</item> <item>33</item> <item>48</item> <item>63</item> <item>78</item> <item>81</item> <item>84</item> <item>86</item> <item>93</item> <item>100</item> <item>107</item> <item>113</item> <item>123</item> <item>133</item> <item>143</item> <item>152</item> <item>165</item> <item>178</item> <item>191</item> <item>203</item> <item>206</item> <item>208</item> <item>212</item> <item>214</item> <item>229</item> <item>247</item> <item>265</item> <item>268</item> <item>287</item> <item>289</item> <item>292</item> <item>295</item> <item>309</item> <item>311</item> <item>313</item> </basic_blocks> <mII>1</mII> <mDepth>2</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>1</mMinLatency> <mMaxLatency>1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> </cdfg_regions> <fsm class_id="24" tracking_level="1" version="0" object_id="_1001"> <states class_id="25" tracking_level="0" version="0"> <count>2</count> <item_version>0</item_version> <item class_id="26" tracking_level="1" version="0" object_id="_1002"> <id>1</id> <operations class_id="27" tracking_level="0" version="0"> <count>85</count> <item_version>0</item_version> <item class_id="28" tracking_level="1" version="0" object_id="_1003"> <id>17</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1004"> <id>18</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1005"> <id>22</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1006"> <id>31</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1007"> <id>32</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1008"> <id>46</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1009"> <id>47</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1010"> <id>61</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1011"> <id>62</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1012"> <id>76</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1013"> <id>77</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1014"> <id>79</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1015"> <id>80</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1016"> <id>82</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1017"> <id>85</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1018"> <id>87</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1019"> <id>88</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1020"> <id>94</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1021"> <id>95</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1022"> <id>101</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1023"> <id>102</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1024"> <id>108</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1025"> <id>109</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1026"> <id>114</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1027"> <id>115</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1028"> <id>118</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1029"> <id>124</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1030"> <id>125</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1031"> <id>128</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1032"> <id>134</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1033"> <id>135</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1034"> <id>138</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1035"> <id>144</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1036"> <id>145</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1037"> <id>148</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1038"> <id>153</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1039"> <id>154</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1040"> <id>157</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1041"> <id>160</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1042"> <id>166</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1043"> <id>167</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1044"> <id>170</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1045"> <id>173</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1046"> <id>179</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1047"> <id>180</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1048"> <id>183</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1049"> <id>186</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1050"> <id>192</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1051"> <id>193</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1052"> <id>196</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1053"> <id>199</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1054"> <id>204</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1055"> <id>210</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1056"> <id>213</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1057"> <id>223</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1058"> <id>224</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1059"> <id>225</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1060"> <id>226</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1061"> <id>227</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1062"> <id>228</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1063"> <id>245</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1064"> <id>246</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1065"> <id>263</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1066"> <id>264</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1067"> <id>266</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1068"> <id>269</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1069"> <id>270</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1070"> <id>271</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1071"> <id>274</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1072"> <id>285</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1073"> <id>288</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1074"> <id>290</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1075"> <id>291</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1076"> <id>293</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1077"> <id>294</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1078"> <id>296</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1079"> <id>297</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1080"> <id>298</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1081"> <id>299</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1082"> <id>300</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1083"> <id>301</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1084"> <id>305</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1085"> <id>306</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1086"> <id>307</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1087"> <id>310</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_1088"> <id>2</id> <operations> <count>184</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_1089"> <id>10</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1090"> <id>11</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1091"> <id>12</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1092"> <id>13</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1093"> <id>14</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1094"> <id>15</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1095"> <id>16</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1096"> <id>19</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1097"> <id>20</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1098"> <id>21</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1099"> <id>24</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1100"> <id>25</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1101"> <id>26</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1102"> <id>27</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1103"> <id>28</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1104"> <id>29</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1105"> <id>30</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1106"> <id>34</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1107"> <id>35</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1108"> <id>36</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1109"> <id>37</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1110"> <id>38</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1111"> <id>39</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1112"> <id>40</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1113"> <id>41</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1114"> <id>42</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1115"> <id>43</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1116"> <id>44</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1117"> <id>45</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1118"> <id>49</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1119"> <id>50</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1120"> <id>51</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1121"> <id>52</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1122"> <id>53</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1123"> <id>54</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1124"> <id>55</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1125"> <id>56</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1126"> <id>57</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1127"> <id>58</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1128"> <id>59</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1129"> <id>60</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1130"> <id>64</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1131"> <id>65</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1132"> <id>66</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1133"> <id>67</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1134"> <id>68</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1135"> <id>69</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1136"> <id>70</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1137"> <id>71</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1138"> <id>72</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1139"> <id>73</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1140"> <id>74</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1141"> <id>75</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1142"> <id>83</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1143"> <id>89</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1144"> <id>90</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1145"> <id>91</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1146"> <id>92</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1147"> <id>96</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1148"> <id>97</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1149"> <id>98</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1150"> <id>99</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1151"> <id>103</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1152"> <id>104</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1153"> <id>105</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1154"> <id>106</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1155"> <id>110</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1156"> <id>111</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1157"> <id>112</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1158"> <id>116</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1159"> <id>117</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1160"> <id>119</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1161"> <id>120</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1162"> <id>121</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1163"> <id>122</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1164"> <id>126</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1165"> <id>127</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1166"> <id>129</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1167"> <id>130</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1168"> <id>131</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1169"> <id>132</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1170"> <id>136</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1171"> <id>137</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1172"> <id>139</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1173"> <id>140</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1174"> <id>141</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1175"> <id>142</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1176"> <id>146</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1177"> <id>147</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1178"> <id>149</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1179"> <id>150</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1180"> <id>151</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1181"> <id>155</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1182"> <id>156</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1183"> <id>158</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1184"> <id>159</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1185"> <id>161</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1186"> <id>162</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1187"> <id>163</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1188"> <id>164</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1189"> <id>168</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1190"> <id>169</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1191"> <id>171</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1192"> <id>172</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1193"> <id>174</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1194"> <id>175</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1195"> <id>176</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1196"> <id>177</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1197"> <id>181</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1198"> <id>182</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1199"> <id>184</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1200"> <id>185</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1201"> <id>187</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1202"> <id>188</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1203"> <id>189</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1204"> <id>190</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1205"> <id>194</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1206"> <id>195</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1207"> <id>197</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1208"> <id>198</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1209"> <id>200</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1210"> <id>201</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1211"> <id>202</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1212"> <id>205</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1213"> <id>207</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1214"> <id>209</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1215"> <id>211</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1216"> <id>215</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1217"> <id>216</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1218"> <id>217</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1219"> <id>218</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1220"> <id>219</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1221"> <id>220</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1222"> <id>221</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1223"> <id>222</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1224"> <id>230</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1225"> <id>231</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1226"> <id>232</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1227"> <id>233</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1228"> <id>234</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1229"> <id>235</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1230"> <id>236</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1231"> <id>237</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1232"> <id>238</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1233"> <id>239</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1234"> <id>240</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1235"> <id>241</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1236"> <id>242</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1237"> <id>243</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1238"> <id>244</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1239"> <id>248</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1240"> <id>249</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1241"> <id>250</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1242"> <id>251</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1243"> <id>252</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1244"> <id>253</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1245"> <id>254</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1246"> <id>255</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1247"> <id>256</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1248"> <id>257</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1249"> <id>258</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1250"> <id>259</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1251"> <id>260</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1252"> <id>261</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1253"> <id>262</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1254"> <id>267</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1255"> <id>272</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1256"> <id>273</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1257"> <id>275</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1258"> <id>276</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1259"> <id>277</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1260"> <id>278</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1261"> <id>279</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1262"> <id>280</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1263"> <id>281</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1264"> <id>282</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1265"> <id>283</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1266"> <id>284</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1267"> <id>286</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1268"> <id>302</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1269"> <id>303</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1270"> <id>304</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1271"> <id>308</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1272"> <id>312</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> </states> <transitions class_id="29" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="30" tracking_level="1" version="0" object_id="_1273"> <inState>1</inState> <outState>2</outState> <condition class_id="31" tracking_level="0" version="0"> <id>155</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> </transitions> </fsm> <res class_id="34" tracking_level="1" version="0" object_id="_1274"> <dp_component_resource class_id="35" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_component_resource> <dp_expression_resource> <count>95</count> <item_version>0</item_version> <item class_id="36" tracking_level="0" version="0"> <first>ap_block_state1_pp0_stage0_iter0 ( or ) </first> <second class_id="37" tracking_level="0" version="0"> <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_state2_pp0_stage0_iter1 ( 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_195 ( 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_399 ( 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_448 ( 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_452 ( 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_456 ( 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_460 ( 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_480 ( 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_489 ( 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_493 ( 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_497 ( 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_501 ( 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_517 ( 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_521 ( 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_525 ( 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_529 ( 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_op18_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_op20_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_op213_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_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_op24_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_op26_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_op29_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_op32_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_op35_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_op38_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_op42_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_op46_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_op50_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_op68_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_op78_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>grp_fu_315_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>39</second> </item> </second> </item> <item> <first>storemerge29_cast_i_s_fu_554_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>3</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>3</second> </item> </second> </item> <item> <first>storemerge_cast_i_ca_fu_490_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>3</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>3</second> </item> </second> </item> <item> <first>tmp1_fu_536_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>32</second> </item> <item> <first>(1P1)</first> <second>31</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>32</second> </item> </second> </item> <item> <first>tmp_287_i_fu_1287_p2 ( xor ) </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>tmp_288_i_fu_1293_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>39</second> </item> </second> </item> <item> <first>tmp_289_i_fu_1305_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>39</second> </item> </second> </item> <item> <first>tmp_293_i_fu_1333_p2 ( xor ) </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>tmp_294_i_fu_1345_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>39</second> </item> </second> </item> <item> <first>tmp_295_i_fu_1161_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>39</second> </item> </second> </item> <item> <first>tmp_299_i_fu_1189_p2 ( xor ) </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>tmp_300_i_fu_1195_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>39</second> </item> </second> </item> <item> <first>tmp_301_i_fu_1207_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>39</second> </item> </second> </item> <item> <first>tmp_305_i_fu_1235_p2 ( xor ) </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>tmp_306_i_fu_1247_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>39</second> </item> </second> </item> <item> <first>tmp_307_i_fu_1109_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>39</second> </item> </second> </item> <item> <first>tmp_311_i_fu_1137_p2 ( xor ) </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>tmp_312_i_fu_1149_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>39</second> </item> </second> </item> <item> <first>tmp_313_i_fu_472_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>5</second> </item> <item> <first>(1P1)</first> <second>64</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>71</second> </item> </second> </item> <item> <first>tmp_314_i_fu_484_p2 ( icmp ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>64</second> </item> <item> <first>(1P1)</first> <second>4</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>29</second> </item> </second> </item> <item> <first>tmp_315_i_fu_352_p2 ( icmp ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>64</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>29</second> </item> </second> </item> <item> <first>tmp_316_i_fu_783_p2 ( xor ) </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>tmp_320_i_fu_811_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>39</second> </item> </second> </item> <item> <first>tmp_321_i_fu_823_p2 ( xor ) </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>tmp_325_i_fu_851_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>39</second> </item> </second> </item> <item> <first>tmp_326_i_fu_703_p2 ( xor ) </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>tmp_330_i_fu_731_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>39</second> </item> </second> </item> <item> <first>tmp_331_i_fu_743_p2 ( xor ) </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>tmp_335_i_fu_771_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>39</second> </item> </second> </item> <item> <first>tmp_336_i_fu_623_p2 ( xor ) </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>tmp_340_i_fu_651_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>39</second> </item> </second> </item> <item> <first>tmp_341_i_fu_663_p2 ( xor ) </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>tmp_345_i_fu_691_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>39</second> </item> </second> </item> <item> <first>tmp_346_i_fu_582_p2 ( xor ) </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>tmp_350_i_fu_1357_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>39</second> </item> </second> </item> <item> <first>tmp_351_i_fu_1369_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>39</second> </item> </second> </item> <item> <first>tmp_352_i_fu_1375_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>tmp_353_i_fu_1380_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>tmp_357_i_fu_1408_p2 ( xor ) </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>tmp_358_i_fu_1420_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>39</second> </item> </second> </item> <item> <first>tmp_361_i_fu_542_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>tmp_362_i_fu_548_p2 ( icmp ) </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>18</second> </item> </second> </item> <item> <first>tmp_363_i_fu_1086_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>39</second> </item> </second> </item> <item> <first>tmp_365_i_fu_1097_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>39</second> </item> </second> </item> <item> <first>tmp_366_i_fu_1060_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>39</second> </item> </second> </item> <item> <first>tmp_369_i_fu_1074_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>39</second> </item> </second> </item> <item> <first>tmp_370_i_fu_1034_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>39</second> </item> </second> </item> <item> <first>tmp_373_i_fu_1048_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>39</second> </item> </second> </item> <item> <first>tmp_374_i_fu_1008_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>39</second> </item> </second> </item> <item> <first>tmp_377_i_fu_1022_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>39</second> </item> </second> </item> <item> <first>tmp_378_i_fu_997_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>39</second> </item> </second> </item> <item> <first>tmp_380_i_fu_971_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>39</second> </item> </second> </item> <item> <first>tmp_382_i_fu_985_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>39</second> </item> </second> </item> <item> <first>tmp_383_i_fu_945_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>39</second> </item> </second> </item> <item> <first>tmp_385_i_fu_959_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>39</second> </item> </second> </item> <item> <first>tmp_386_i_fu_919_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>39</second> </item> </second> </item> <item> <first>tmp_388_i_fu_933_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>39</second> </item> </second> </item> <item> <first>tmp_389_i_fu_908_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>39</second> </item> </second> </item> <item> <first>tmp_391_i_fu_896_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>39</second> </item> </second> </item> <item> <first>tmp_393_i_fu_881_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>39</second> </item> </second> </item> <item> <first>tmp_395_i_fu_866_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>39</second> </item> </second> </item> <item> <first>tmp_V_fu_610_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>39</second> </item> </second> </item> <item> <first>tmp_i_fu_1259_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>39</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>12</count> <item_version>0</item_version> <item> <first>a</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>18</second> </item> <item> <first>(1Bits)</first> <second>32</second> </item> <item> <first>(2Count)</first> <second>576</second> </item> <item> <first>LUT</first> <second>89</second> </item> </second> </item> <item> <first>ap_NS_iter1_fsm</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>15</second> </item> </second> </item> <item> <first>ap_done</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>b</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>11</second> </item> <item> <first>(1Bits)</first> <second>32</second> </item> <item> <first>(2Count)</first> <second>352</second> </item> <item> <first>LUT</first> <second>50</second> </item> </second> </item> <item> <first>c</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>12</second> </item> <item> <first>(1Bits)</first> <second>32</second> </item> <item> <first>(2Count)</first> <second>384</second> </item> <item> <first>LUT</first> <second>53</second> </item> </second> </item> <item> <first>hash2cc_V_V_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>hash2cc_V_V_din</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>32</second> </item> <item> <first>(2Count)</first> <second>96</second> </item> <item> <first>LUT</first> <second>15</second> </item> </second> </item> <item> <first>hashState</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>10</second> </item> <item> <first>(1Bits)</first> <second>4</second> </item> <item> <first>(2Count)</first> <second>40</second> </item> <item> <first>LUT</first> <second>47</second> </item> </second> </item> <item> <first>length_r</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>9</second> </item> </second> </item> <item> <first>resizedInitValue_V_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>resizedKeyLength_V_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>resizedKey_V_V_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> </dp_multiplexer_resource> <dp_register_resource> <count>37</count> <item_version>0</item_version> <item> <first>a</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>ap_CS_iter0_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_CS_iter1_fsm</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>2</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>2</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>b</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>c</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>hashState</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>4</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>4</second> </item> </second> </item> <item> <first>hashState_load_reg_1447</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>4</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>4</second> </item> </second> </item> <item> <first>length_load_reg_1451</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>length_r</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>reg_307</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_311</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>temp_1_cast_i_reg_1533</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>16</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>16</second> </item> </second> </item> <item> <first>temp_2_cast_i_reg_1523</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>8</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>8</second> </item> </second> </item> <item> <first>temp_3_cast_i_reg_1508</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>24</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>24</second> </item> </second> </item> <item> <first>temp_4_cast_i_reg_1498</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>16</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>16</second> </item> </second> </item> <item> <first>temp_5_cast_i_reg_1488</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>8</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>8</second> </item> </second> </item> <item> <first>temp_cast_i_reg_1543</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>24</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>24</second> </item> </second> </item> <item> <first>tmp_315_i_reg_1455</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_361_i_reg_1570</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_620_reg_1553</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_633_reg_1566</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_634_reg_1557</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_636_reg_1459</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_639_reg_1548</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_640_reg_1538</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_641_reg_1528</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_642_reg_1518</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_643_reg_1513</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_644_reg_1503</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_645_reg_1493</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_646_reg_1483</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_647_reg_1478</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_648_reg_1473</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>24</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>24</second> </item> </second> </item> <item> <first>tmp_649_reg_1468</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>16</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>16</second> </item> </second> </item> <item> <first>tmp_650_reg_1463</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>8</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>8</second> </item> </second> </item> <item> <first>tmp_reg_1562</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>0</count> <item_version>0</item_version> </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>63</count> <item_version>0</item_version> <item class_id="40" tracking_level="0" version="0"> <first>grp_fu_315_p2 ( + ) </first> <second> <count>5</count> <item_version>0</item_version> <item>149</item> <item>158</item> <item>171</item> <item>184</item> <item>197</item> </second> </item> <item> <first>storemerge29_cast_i_s_fu_554_p3 ( select ) </first> <second> <count>1</count> <item_version>0</item_version> <item>306</item> </second> </item> <item> <first>storemerge_cast_i_ca_fu_490_p3 ( select ) </first> <second> <count>1</count> <item_version>0</item_version> <item>226</item> </second> </item> <item> <first>tmp1_fu_536_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>300</item> </second> </item> <item> <first>tmp_287_i_fu_1287_p2 ( xor ) </first> <second> <count>1</count> <item_version>0</item_version> <item>252</item> </second> </item> <item> <first>tmp_288_i_fu_1293_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>253</item> </second> </item> <item> <first>tmp_289_i_fu_1305_p2 ( - ) </first> <second> <count>1</count> <item_version>0</item_version> <item>255</item> </second> </item> <item> <first>tmp_293_i_fu_1333_p2 ( xor ) </first> <second> <count>1</count> <item_version>0</item_version> <item>259</item> </second> </item> <item> <first>tmp_294_i_fu_1345_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>261</item> </second> </item> <item> <first>tmp_295_i_fu_1161_p2 ( - ) </first> <second> <count>1</count> <item_version>0</item_version> <item>230</item> </second> </item> <item> <first>tmp_299_i_fu_1189_p2 ( xor ) </first> <second> <count>1</count> <item_version>0</item_version> <item>234</item> </second> </item> <item> <first>tmp_300_i_fu_1195_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>235</item> </second> </item> <item> <first>tmp_301_i_fu_1207_p2 ( - ) </first> <second> <count>1</count> <item_version>0</item_version> <item>237</item> </second> </item> <item> <first>tmp_305_i_fu_1235_p2 ( xor ) </first> <second> <count>1</count> <item_version>0</item_version> <item>241</item> </second> </item> <item> <first>tmp_306_i_fu_1247_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>243</item> </second> </item> <item> <first>tmp_307_i_fu_1109_p2 ( - ) </first> <second> <count>1</count> <item_version>0</item_version> <item>215</item> </second> </item> <item> <first>tmp_311_i_fu_1137_p2 ( xor ) </first> <second> <count>1</count> <item_version>0</item_version> <item>219</item> </second> </item> <item> <first>tmp_312_i_fu_1149_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>221</item> </second> </item> <item> <first>tmp_313_i_fu_472_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>223</item> </second> </item> <item> <first>tmp_314_i_fu_484_p2 ( icmp ) </first> <second> <count>1</count> <item_version>0</item_version> <item>225</item> </second> </item> <item> <first>tmp_315_i_fu_352_p2 ( icmp ) </first> <second> <count>1</count> <item_version>0</item_version> <item>79</item> </second> </item> <item> <first>tmp_316_i_fu_783_p2 ( xor ) </first> <second> <count>1</count> <item_version>0</item_version> <item>64</item> </second> </item> <item> <first>tmp_320_i_fu_811_p2 ( - ) </first> <second> <count>1</count> <item_version>0</item_version> <item>68</item> </second> </item> <item> <first>tmp_321_i_fu_823_p2 ( xor ) </first> <second> <count>1</count> <item_version>0</item_version> <item>70</item> </second> </item> <item> <first>tmp_325_i_fu_851_p2 ( - ) </first> <second> <count>1</count> <item_version>0</item_version> <item>74</item> </second> </item> <item> <first>tmp_326_i_fu_703_p2 ( xor ) </first> <second> <count>1</count> <item_version>0</item_version> <item>49</item> </second> </item> <item> <first>tmp_330_i_fu_731_p2 ( - ) </first> <second> <count>1</count> <item_version>0</item_version> <item>53</item> </second> </item> <item> <first>tmp_331_i_fu_743_p2 ( xor ) </first> <second> <count>1</count> <item_version>0</item_version> <item>55</item> </second> </item> <item> <first>tmp_335_i_fu_771_p2 ( - ) </first> <second> <count>1</count> <item_version>0</item_version> <item>59</item> </second> </item> <item> <first>tmp_336_i_fu_623_p2 ( xor ) </first> <second> <count>1</count> <item_version>0</item_version> <item>34</item> </second> </item> <item> <first>tmp_340_i_fu_651_p2 ( - ) </first> <second> <count>1</count> <item_version>0</item_version> <item>38</item> </second> </item> <item> <first>tmp_341_i_fu_663_p2 ( xor ) </first> <second> <count>1</count> <item_version>0</item_version> <item>40</item> </second> </item> <item> <first>tmp_345_i_fu_691_p2 ( - ) </first> <second> <count>1</count> <item_version>0</item_version> <item>44</item> </second> </item> <item> <first>tmp_346_i_fu_582_p2 ( xor ) </first> <second> <count>1</count> <item_version>0</item_version> <item>24</item> </second> </item> <item> <first>tmp_350_i_fu_1357_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>272</item> </second> </item> <item> <first>tmp_351_i_fu_1369_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>275</item> </second> </item> <item> <first>tmp_352_i_fu_1375_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>276</item> </second> </item> <item> <first>tmp_353_i_fu_1380_p2 ( - ) </first> <second> <count>1</count> <item_version>0</item_version> <item>277</item> </second> </item> <item> <first>tmp_357_i_fu_1408_p2 ( xor ) </first> <second> <count>1</count> <item_version>0</item_version> <item>281</item> </second> </item> <item> <first>tmp_358_i_fu_1420_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>283</item> </second> </item> <item> <first>tmp_361_i_fu_542_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>301</item> </second> </item> <item> <first>tmp_362_i_fu_548_p2 ( icmp ) </first> <second> <count>1</count> <item_version>0</item_version> <item>305</item> </second> </item> <item> <first>tmp_363_i_fu_1086_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>194</item> </second> </item> <item> <first>tmp_365_i_fu_1097_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>200</item> </second> </item> <item> <first>tmp_366_i_fu_1060_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>181</item> </second> </item> <item> <first>tmp_369_i_fu_1074_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>188</item> </second> </item> <item> <first>tmp_370_i_fu_1034_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>168</item> </second> </item> <item> <first>tmp_373_i_fu_1048_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>175</item> </second> </item> <item> <first>tmp_374_i_fu_1008_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>155</item> </second> </item> <item> <first>tmp_377_i_fu_1022_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>162</item> </second> </item> <item> <first>tmp_378_i_fu_997_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>146</item> </second> </item> <item> <first>tmp_380_i_fu_971_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>136</item> </second> </item> <item> <first>tmp_382_i_fu_985_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>140</item> </second> </item> <item> <first>tmp_383_i_fu_945_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>126</item> </second> </item> <item> <first>tmp_385_i_fu_959_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>130</item> </second> </item> <item> <first>tmp_386_i_fu_919_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>116</item> </second> </item> <item> <first>tmp_388_i_fu_933_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>120</item> </second> </item> <item> <first>tmp_389_i_fu_908_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>110</item> </second> </item> <item> <first>tmp_391_i_fu_896_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>104</item> </second> </item> <item> <first>tmp_393_i_fu_881_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>97</item> </second> </item> <item> <first>tmp_395_i_fu_866_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>90</item> </second> </item> <item> <first>tmp_V_fu_610_p2 ( - ) </first> <second> <count>1</count> <item_version>0</item_version> <item>28</item> </second> </item> <item> <first>tmp_i_fu_1259_p2 ( - ) </first> <second> <count>1</count> <item_version>0</item_version> <item>248</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>262</count> <item_version>0</item_version> <item class_id="42" tracking_level="0" version="0"> <first>17</first> <second class_id="43" tracking_level="0" version="0"> <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>1</first> <second>0</second> </second> </item> <item> <first>20</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>21</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>22</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>24</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>25</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>26</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>27</first> <second> <first>1</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>0</second> </second> </item> <item> <first>31</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>32</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>34</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>35</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>36</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>37</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>38</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>39</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>40</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>41</first> <second> <first>1</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>1</first> <second>0</second> </second> </item> <item> <first>44</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>45</first> <second> <first>1</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>1</first> <second>0</second> </second> </item> <item> <first>50</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>51</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>52</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>53</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>54</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>55</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>56</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>57</first> <second> <first>1</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>0</second> </second> </item> <item> <first>60</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>61</first> <second> <first>0</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>1</first> <second>0</second> </second> </item> <item> <first>65</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>66</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>67</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>68</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>69</first> <second> <first>1</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>1</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>1</first> <second>0</second> </second> </item> <item> <first>74</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>75</first> <second> <first>1</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>1</first> <second>0</second> </second> </item> <item> <first>85</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>88</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>89</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>90</first> <second> <first>1</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>0</second> </second> </item> <item> <first>94</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>95</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>96</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>97</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>98</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>99</first> <second> <first>1</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>103</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>104</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>105</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>106</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>108</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>110</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>111</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>112</first> <second> <first>1</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>1</first> <second>0</second> </second> </item> <item> <first>117</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>118</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>119</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>120</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>121</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>122</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>124</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>1</first> <second>0</second> </second> </item> <item> <first>127</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>128</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>129</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>130</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>131</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>132</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>134</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>136</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>137</first> <second> <first>1</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>1</first> <second>0</second> </second> </item> <item> <first>140</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>141</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>142</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>144</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>146</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>147</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>148</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>149</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>150</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>151</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>153</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>154</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>155</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>156</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>157</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>158</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>159</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>160</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>161</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>162</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>163</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>164</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>166</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>167</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>168</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>169</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>170</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>171</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>172</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>173</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>174</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>175</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>176</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>177</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>179</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>180</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>181</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>182</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>183</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>184</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>185</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>186</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>187</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>188</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>189</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>190</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>192</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>193</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>194</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>195</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>196</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>197</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>198</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>199</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>200</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>201</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>202</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>204</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>205</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>207</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>209</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>210</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>211</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>213</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>215</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>216</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>217</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>218</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>219</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>220</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>221</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>222</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>223</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>224</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>225</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>226</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>227</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>228</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>230</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>231</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>232</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>233</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>234</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>235</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>236</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>237</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>238</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>239</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>240</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>241</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>242</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>243</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>244</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>245</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>246</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>248</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>249</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>250</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>251</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>252</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>253</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>254</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>255</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>256</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>257</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>258</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>259</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>260</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>261</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>262</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>263</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>264</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>266</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>267</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>269</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>270</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>271</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>272</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>273</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>274</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>275</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>276</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>277</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>278</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>279</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>280</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>281</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>282</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>283</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>284</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>285</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>286</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>288</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>290</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>291</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>293</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>294</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>296</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>297</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>298</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>299</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>300</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>301</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>302</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>303</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>304</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>305</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>306</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>307</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>308</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>310</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>312</first> <second> <first>1</first> <second>0</second> </second> </item> </node_label_latency> <bblk_ent_exit class_id="44" tracking_level="0" version="0"> <count>35</count> <item_version>0</item_version> <item class_id="45" tracking_level="0" version="0"> <first>23</first> <second class_id="46" tracking_level="0" version="0"> <first>0</first> <second>1</second> </second> </item> <item> <first>33</first> <second> <first>0</first> <second>1</second> </second> </item> <item> <first>48</first> <second> <first>0</first> <second>1</second> </second> </item> <item> <first>63</first> <second> <first>0</first> <second>1</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>1</second> </second> </item> <item> <first>86</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>93</first> <second> <first>0</first> <second>1</second> </second> </item> <item> <first>100</first> <second> <first>0</first> <second>1</second> </second> </item> <item> <first>107</first> <second> <first>0</first> <second>1</second> </second> </item> <item> <first>113</first> <second> <first>0</first> <second>1</second> </second> </item> <item> <first>123</first> <second> <first>0</first> <second>1</second> </second> </item> <item> <first>133</first> <second> <first>0</first> <second>1</second> </second> </item> <item> <first>143</first> <second> <first>0</first> <second>1</second> </second> </item> <item> <first>152</first> <second> <first>0</first> <second>1</second> </second> </item> <item> <first>165</first> <second> <first>0</first> <second>1</second> </second> </item> <item> <first>178</first> <second> <first>0</first> <second>1</second> </second> </item> <item> <first>191</first> <second> <first>0</first> <second>1</second> </second> </item> <item> <first>203</first> <second> <first>0</first> <second>1</second> </second> </item> <item> <first>206</first> <second> <first>0</first> <second>1</second> </second> </item> <item> <first>208</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>212</first> <second> <first>0</first> <second>1</second> </second> </item> <item> <first>214</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>229</first> <second> <first>0</first> <second>1</second> </second> </item> <item> <first>247</first> <second> <first>0</first> <second>1</second> </second> </item> <item> <first>265</first> <second> <first>0</first> <second>1</second> </second> </item> <item> <first>268</first> <second> <first>0</first> <second>1</second> </second> </item> <item> <first>287</first> <second> <first>0</first> <second>1</second> </second> </item> <item> <first>289</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>292</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>295</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>309</first> <second> <first>0</first> <second>1</second> </second> </item> <item> <first>311</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>313</first> <second> <first>1</first> <second>1</second> </second> </item> </bblk_ent_exit> <regions class_id="47" tracking_level="0" version="0"> <count>2</count> <item_version>0</item_version> <item class_id="48" tracking_level="1" version="0" object_id="_1275"> <region_name>bobj</region_name> <basic_blocks> <count>35</count> <item_version>0</item_version> <item>23</item> <item>292</item> <item>295</item> <item>309</item> <item>311</item> <item>268</item> <item>287</item> <item>289</item> <item>265</item> <item>247</item> <item>229</item> <item>81</item> <item>212</item> <item>84</item> <item>86</item> <item>203</item> <item>191</item> <item>178</item> <item>165</item> <item>152</item> <item>143</item> <item>133</item> <item>123</item> <item>113</item> <item>107</item> <item>100</item> <item>93</item> <item>206</item> <item>208</item> <item>214</item> <item>78</item> <item>63</item> <item>48</item> <item>33</item> <item>313</item> </basic_blocks> <nodes> <count>269</count> <item_version>0</item_version> <item>10</item> <item>11</item> <item>12</item> <item>13</item> <item>14</item> <item>15</item> <item>16</item> <item>17</item> <item>18</item> <item>19</item> <item>20</item> <item>21</item> <item>22</item> <item>290</item> <item>291</item> <item>293</item> <item>294</item> <item>296</item> <item>297</item> <item>298</item> <item>299</item> <item>300</item> <item>301</item> <item>302</item> <item>303</item> <item>304</item> <item>305</item> <item>306</item> <item>307</item> <item>308</item> <item>310</item> <item>266</item> <item>267</item> <item>269</item> <item>270</item> <item>271</item> <item>272</item> <item>273</item> <item>274</item> <item>275</item> <item>276</item> <item>277</item> <item>278</item> <item>279</item> <item>280</item> <item>281</item> <item>282</item> <item>283</item> <item>284</item> <item>285</item> <item>286</item> <item>288</item> <item>248</item> <item>249</item> <item>250</item> <item>251</item> <item>252</item> <item>253</item> <item>254</item> <item>255</item> <item>256</item> <item>257</item> <item>258</item> <item>259</item> <item>260</item> <item>261</item> <item>262</item> <item>263</item> <item>264</item> <item>230</item> <item>231</item> <item>232</item> <item>233</item> <item>234</item> <item>235</item> <item>236</item> <item>237</item> <item>238</item> <item>239</item> <item>240</item> <item>241</item> <item>242</item> <item>243</item> <item>244</item> <item>245</item> <item>246</item> <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> <item>225</item> <item>226</item> <item>227</item> <item>228</item> <item>79</item> <item>80</item> <item>209</item> <item>210</item> <item>211</item> <item>82</item> <item>83</item> <item>85</item> <item>192</item> <item>193</item> <item>194</item> <item>195</item> <item>196</item> <item>197</item> <item>198</item> <item>199</item> <item>200</item> <item>201</item> <item>202</item> <item>179</item> <item>180</item> <item>181</item> <item>182</item> <item>183</item> <item>184</item> <item>185</item> <item>186</item> <item>187</item> <item>188</item> <item>189</item> <item>190</item> <item>166</item> <item>167</item> <item>168</item> <item>169</item> <item>170</item> <item>171</item> <item>172</item> <item>173</item> <item>174</item> <item>175</item> <item>176</item> <item>177</item> <item>153</item> <item>154</item> <item>155</item> <item>156</item> <item>157</item> <item>158</item> <item>159</item> <item>160</item> <item>161</item> <item>162</item> <item>163</item> <item>164</item> <item>144</item> <item>145</item> <item>146</item> <item>147</item> <item>148</item> <item>149</item> <item>150</item> <item>151</item> <item>134</item> <item>135</item> <item>136</item> <item>137</item> <item>138</item> <item>139</item> <item>140</item> <item>141</item> <item>142</item> <item>124</item> <item>125</item> <item>126</item> <item>127</item> <item>128</item> <item>129</item> <item>130</item> <item>131</item> <item>132</item> <item>114</item> <item>115</item> <item>116</item> <item>117</item> <item>118</item> <item>119</item> <item>120</item> <item>121</item> <item>122</item> <item>108</item> <item>109</item> <item>110</item> <item>111</item> <item>112</item> <item>101</item> <item>102</item> <item>103</item> <item>104</item> <item>105</item> <item>106</item> <item>94</item> <item>95</item> <item>96</item> <item>97</item> <item>98</item> <item>99</item> <item>87</item> <item>88</item> <item>89</item> <item>90</item> <item>91</item> <item>92</item> <item>204</item> <item>205</item> <item>207</item> <item>213</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> <item>77</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>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>24</item> <item>25</item> <item>26</item> <item>27</item> <item>28</item> <item>29</item> <item>30</item> <item>31</item> <item>32</item> <item>312</item> </nodes> <anchor_node>-1</anchor_node> <region_type>2</region_type> <interval>0</interval> <pipe_depth>0</pipe_depth> </item> <item class_id_reference="48" object_id="_1276"> <region_name>bobj</region_name> <basic_blocks> <count>35</count> <item_version>0</item_version> <item>23</item> <item>33</item> <item>48</item> <item>63</item> <item>78</item> <item>81</item> <item>84</item> <item>86</item> <item>93</item> <item>100</item> <item>107</item> <item>113</item> <item>123</item> <item>133</item> <item>143</item> <item>152</item> <item>165</item> <item>178</item> <item>191</item> <item>203</item> <item>206</item> <item>208</item> <item>212</item> <item>214</item> <item>229</item> <item>247</item> <item>265</item> <item>268</item> <item>287</item> <item>289</item> <item>292</item> <item>295</item> <item>309</item> <item>311</item> <item>313</item> </basic_blocks> <nodes> <count>0</count> <item_version>0</item_version> </nodes> <anchor_node>-1</anchor_node> <region_type>8</region_type> <interval>1</interval> <pipe_depth>2</pipe_depth> </item> </regions> <dp_fu_nodes class_id="49" tracking_level="0" version="0"> <count>198</count> <item_version>0</item_version> <item class_id="50" tracking_level="0" version="0"> <first>232</first> <second> <count>2</count> <item_version>0</item_version> <item>82</item> <item>266</item> </second> </item> <item> <first>240</first> <second> <count>13</count> <item_version>0</item_version> <item>87</item> <item>94</item> <item>101</item> <item>108</item> <item>114</item> <item>124</item> <item>134</item> <item>144</item> <item>153</item> <item>166</item> <item>179</item> <item>192</item> <item>269</item> </second> </item> <item> <first>246</first> <second> <count>1</count> <item_version>0</item_version> <item>290</item> </second> </item> <item> <first>254</first> <second> <count>1</count> <item_version>0</item_version> <item>293</item> </second> </item> <item> <first>262</first> <second> <count>1</count> <item_version>0</item_version> <item>296</item> </second> </item> <item> <first>268</first> <second> <count>1</count> <item_version>0</item_version> <item>299</item> </second> </item> <item> <first>274</first> <second> <count>2</count> <item_version>0</item_version> <item>30</item> <item>209</item> </second> </item> <item> <first>281</first> <second> <count>2</count> <item_version>0</item_version> <item>31</item> <item>210</item> </second> </item> <item> <first>287</first> <second> <count>6</count> <item_version>0</item_version> <item>148</item> <item>157</item> <item>170</item> <item>183</item> <item>196</item> <item>271</item> </second> </item> <item> <first>297</first> <second> <count>2</count> <item_version>0</item_version> <item>199</item> <item>274</item> </second> </item> <item> <first>315</first> <second> <count>5</count> <item_version>0</item_version> <item>149</item> <item>158</item> <item>171</item> <item>184</item> <item>197</item> </second> </item> <item> <first>320</first> <second> <count>5</count> <item_version>0</item_version> <item>150</item> <item>159</item> <item>172</item> <item>185</item> <item>198</item> </second> </item> <item> <first>326</first> <second> <count>1</count> <item_version>0</item_version> <item>17</item> </second> </item> <item> <first>330</first> <second> <count>1</count> <item_version>0</item_version> <item>18</item> </second> </item> <item> <first>334</first> <second> <count>1</count> <item_version>0</item_version> <item>46</item> </second> </item> <item> <first>340</first> <second> <count>1</count> <item_version>0</item_version> <item>61</item> </second> </item> <item> <first>346</first> <second> <count>1</count> <item_version>0</item_version> <item>76</item> </second> </item> <item> <first>352</first> <second> <count>1</count> <item_version>0</item_version> <item>79</item> </second> </item> <item> <first>358</first> <second> <count>1</count> <item_version>0</item_version> <item>88</item> </second> </item> <item> <first>362</first> <second> <count>1</count> <item_version>0</item_version> <item>95</item> </second> </item> <item> <first>366</first> <second> <count>1</count> <item_version>0</item_version> <item>102</item> </second> </item> <item> <first>370</first> <second> <count>1</count> <item_version>0</item_version> <item>109</item> </second> </item> <item> <first>374</first> <second> <count>1</count> <item_version>0</item_version> <item>115</item> </second> </item> <item> <first>378</first> <second> <count>1</count> <item_version>0</item_version> <item>118</item> </second> </item> <item> <first>388</first> <second> <count>1</count> <item_version>0</item_version> <item>125</item> </second> </item> <item> <first>392</first> <second> <count>1</count> <item_version>0</item_version> <item>128</item> </second> </item> <item> <first>402</first> <second> <count>1</count> <item_version>0</item_version> <item>135</item> </second> </item> <item> <first>406</first> <second> <count>1</count> <item_version>0</item_version> <item>138</item> </second> </item> <item> <first>416</first> <second> <count>1</count> <item_version>0</item_version> <item>145</item> </second> </item> <item> <first>420</first> <second> <count>1</count> <item_version>0</item_version> <item>154</item> </second> </item> <item> <first>424</first> <second> <count>1</count> <item_version>0</item_version> <item>160</item> </second> </item> <item> <first>434</first> <second> <count>1</count> <item_version>0</item_version> <item>167</item> </second> </item> <item> <first>438</first> <second> <count>1</count> <item_version>0</item_version> <item>173</item> </second> </item> <item> <first>448</first> <second> <count>1</count> <item_version>0</item_version> <item>180</item> </second> </item> <item> <first>452</first> <second> <count>1</count> <item_version>0</item_version> <item>186</item> </second> </item> <item> <first>462</first> <second> <count>1</count> <item_version>0</item_version> <item>193</item> </second> </item> <item> <first>466</first> <second> <count>1</count> <item_version>0</item_version> <item>204</item> </second> </item> <item> <first>472</first> <second> <count>1</count> <item_version>0</item_version> <item>223</item> </second> </item> <item> <first>478</first> <second> <count>1</count> <item_version>0</item_version> <item>224</item> </second> </item> <item> <first>484</first> <second> <count>1</count> <item_version>0</item_version> <item>225</item> </second> </item> <item> <first>490</first> <second> <count>1</count> <item_version>0</item_version> <item>226</item> </second> </item> <item> <first>498</first> <second> <count>1</count> <item_version>0</item_version> <item>227</item> </second> </item> <item> <first>504</first> <second> <count>1</count> <item_version>0</item_version> <item>245</item> </second> </item> <item> <first>510</first> <second> <count>1</count> <item_version>0</item_version> <item>263</item> </second> </item> <item> <first>516</first> <second> <count>1</count> <item_version>0</item_version> <item>270</item> </second> </item> <item> <first>520</first> <second> <count>1</count> <item_version>0</item_version> <item>285</item> </second> </item> <item> <first>526</first> <second> <count>1</count> <item_version>0</item_version> <item>297</item> </second> </item> <item> <first>530</first> <second> <count>1</count> <item_version>0</item_version> <item>298</item> </second> </item> <item> <first>536</first> <second> <count>1</count> <item_version>0</item_version> <item>300</item> </second> </item> <item> <first>542</first> <second> <count>1</count> <item_version>0</item_version> <item>301</item> </second> </item> <item> <first>548</first> <second> <count>1</count> <item_version>0</item_version> <item>305</item> </second> </item> <item> <first>554</first> <second> <count>1</count> <item_version>0</item_version> <item>306</item> </second> </item> <item> <first>562</first> <second> <count>1</count> <item_version>0</item_version> <item>307</item> </second> </item> <item> <first>568</first> <second> <count>1</count> <item_version>0</item_version> <item>19</item> </second> </item> <item> <first>573</first> <second> <count>1</count> <item_version>0</item_version> <item>20</item> </second> </item> <item> <first>578</first> <second> <count>1</count> <item_version>0</item_version> <item>21</item> </second> </item> <item> <first>582</first> <second> <count>1</count> <item_version>0</item_version> <item>24</item> </second> </item> <item> <first>588</first> <second> <count>1</count> <item_version>0</item_version> <item>25</item> </second> </item> <item> <first>592</first> <second> <count>1</count> <item_version>0</item_version> <item>26</item> </second> </item> <item> <first>602</first> <second> <count>1</count> <item_version>0</item_version> <item>27</item> </second> </item> <item> <first>610</first> <second> <count>1</count> <item_version>0</item_version> <item>28</item> </second> </item> <item> <first>617</first> <second> <count>1</count> <item_version>0</item_version> <item>29</item> </second> </item> <item> <first>623</first> <second> <count>1</count> <item_version>0</item_version> <item>34</item> </second> </item> <item> <first>629</first> <second> <count>1</count> <item_version>0</item_version> <item>35</item> </second> </item> <item> <first>633</first> <second> <count>1</count> <item_version>0</item_version> <item>36</item> </second> </item> <item> <first>643</first> <second> <count>1</count> <item_version>0</item_version> <item>37</item> </second> </item> <item> <first>651</first> <second> <count>1</count> <item_version>0</item_version> <item>38</item> </second> </item> <item> <first>657</first> <second> <count>1</count> <item_version>0</item_version> <item>39</item> </second> </item> <item> <first>663</first> <second> <count>1</count> <item_version>0</item_version> <item>40</item> </second> </item> <item> <first>669</first> <second> <count>1</count> <item_version>0</item_version> <item>41</item> </second> </item> <item> <first>673</first> <second> <count>1</count> <item_version>0</item_version> <item>42</item> </second> </item> <item> <first>683</first> <second> <count>1</count> <item_version>0</item_version> <item>43</item> </second> </item> <item> <first>691</first> <second> <count>1</count> <item_version>0</item_version> <item>44</item> </second> </item> <item> <first>697</first> <second> <count>1</count> <item_version>0</item_version> <item>45</item> </second> </item> <item> <first>703</first> <second> <count>1</count> <item_version>0</item_version> <item>49</item> </second> </item> <item> <first>709</first> <second> <count>1</count> <item_version>0</item_version> <item>50</item> </second> </item> <item> <first>713</first> <second> <count>1</count> <item_version>0</item_version> <item>51</item> </second> </item> <item> <first>723</first> <second> <count>1</count> <item_version>0</item_version> <item>52</item> </second> </item> <item> <first>731</first> <second> <count>1</count> <item_version>0</item_version> <item>53</item> </second> </item> <item> <first>737</first> <second> <count>1</count> <item_version>0</item_version> <item>54</item> </second> </item> <item> <first>743</first> <second> <count>1</count> <item_version>0</item_version> <item>55</item> </second> </item> <item> <first>749</first> <second> <count>1</count> <item_version>0</item_version> <item>56</item> </second> </item> <item> <first>753</first> <second> <count>1</count> <item_version>0</item_version> <item>57</item> </second> </item> <item> <first>763</first> <second> <count>1</count> <item_version>0</item_version> <item>58</item> </second> </item> <item> <first>771</first> <second> <count>1</count> <item_version>0</item_version> <item>59</item> </second> </item> <item> <first>777</first> <second> <count>1</count> <item_version>0</item_version> <item>60</item> </second> </item> <item> <first>783</first> <second> <count>1</count> <item_version>0</item_version> <item>64</item> </second> </item> <item> <first>789</first> <second> <count>1</count> <item_version>0</item_version> <item>65</item> </second> </item> <item> <first>793</first> <second> <count>1</count> <item_version>0</item_version> <item>66</item> </second> </item> <item> <first>803</first> <second> <count>1</count> <item_version>0</item_version> <item>67</item> </second> </item> <item> <first>811</first> <second> <count>1</count> <item_version>0</item_version> <item>68</item> </second> </item> <item> <first>817</first> <second> <count>1</count> <item_version>0</item_version> <item>69</item> </second> </item> <item> <first>823</first> <second> <count>1</count> <item_version>0</item_version> <item>70</item> </second> </item> <item> <first>829</first> <second> <count>1</count> <item_version>0</item_version> <item>71</item> </second> </item> <item> <first>833</first> <second> <count>1</count> <item_version>0</item_version> <item>72</item> </second> </item> <item> <first>843</first> <second> <count>1</count> <item_version>0</item_version> <item>73</item> </second> </item> <item> <first>851</first> <second> <count>1</count> <item_version>0</item_version> <item>74</item> </second> </item> <item> <first>857</first> <second> <count>1</count> <item_version>0</item_version> <item>75</item> </second> </item> <item> <first>863</first> <second> <count>1</count> <item_version>0</item_version> <item>89</item> </second> </item> <item> <first>866</first> <second> <count>1</count> <item_version>0</item_version> <item>90</item> </second> </item> <item> <first>872</first> <second> <count>1</count> <item_version>0</item_version> <item>91</item> </second> </item> <item> <first>878</first> <second> <count>1</count> <item_version>0</item_version> <item>96</item> </second> </item> <item> <first>881</first> <second> <count>1</count> <item_version>0</item_version> <item>97</item> </second> </item> <item> <first>887</first> <second> <count>1</count> <item_version>0</item_version> <item>98</item> </second> </item> <item> <first>893</first> <second> <count>1</count> <item_version>0</item_version> <item>103</item> </second> </item> <item> <first>896</first> <second> <count>1</count> <item_version>0</item_version> <item>104</item> </second> </item> <item> <first>902</first> <second> <count>1</count> <item_version>0</item_version> <item>105</item> </second> </item> <item> <first>908</first> <second> <count>1</count> <item_version>0</item_version> <item>110</item> </second> </item> <item> <first>913</first> <second> <count>1</count> <item_version>0</item_version> <item>111</item> </second> </item> <item> <first>919</first> <second> <count>1</count> <item_version>0</item_version> <item>116</item> </second> </item> <item> <first>924</first> <second> <count>1</count> <item_version>0</item_version> <item>117</item> </second> </item> <item> <first>930</first> <second> <count>1</count> <item_version>0</item_version> <item>119</item> </second> </item> <item> <first>933</first> <second> <count>1</count> <item_version>0</item_version> <item>120</item> </second> </item> <item> <first>939</first> <second> <count>1</count> <item_version>0</item_version> <item>121</item> </second> </item> <item> <first>945</first> <second> <count>1</count> <item_version>0</item_version> <item>126</item> </second> </item> <item> <first>950</first> <second> <count>1</count> <item_version>0</item_version> <item>127</item> </second> </item> <item> <first>956</first> <second> <count>1</count> <item_version>0</item_version> <item>129</item> </second> </item> <item> <first>959</first> <second> <count>1</count> <item_version>0</item_version> <item>130</item> </second> </item> <item> <first>965</first> <second> <count>1</count> <item_version>0</item_version> <item>131</item> </second> </item> <item> <first>971</first> <second> <count>1</count> <item_version>0</item_version> <item>136</item> </second> </item> <item> <first>976</first> <second> <count>1</count> <item_version>0</item_version> <item>137</item> </second> </item> <item> <first>982</first> <second> <count>1</count> <item_version>0</item_version> <item>139</item> </second> </item> <item> <first>985</first> <second> <count>1</count> <item_version>0</item_version> <item>140</item> </second> </item> <item> <first>991</first> <second> <count>1</count> <item_version>0</item_version> <item>141</item> </second> </item> <item> <first>997</first> <second> <count>1</count> <item_version>0</item_version> <item>146</item> </second> </item> <item> <first>1002</first> <second> <count>1</count> <item_version>0</item_version> <item>147</item> </second> </item> <item> <first>1008</first> <second> <count>1</count> <item_version>0</item_version> <item>155</item> </second> </item> <item> <first>1013</first> <second> <count>1</count> <item_version>0</item_version> <item>156</item> </second> </item> <item> <first>1019</first> <second> <count>1</count> <item_version>0</item_version> <item>161</item> </second> </item> <item> <first>1022</first> <second> <count>1</count> <item_version>0</item_version> <item>162</item> </second> </item> <item> <first>1028</first> <second> <count>1</count> <item_version>0</item_version> <item>163</item> </second> </item> <item> <first>1034</first> <second> <count>1</count> <item_version>0</item_version> <item>168</item> </second> </item> <item> <first>1039</first> <second> <count>1</count> <item_version>0</item_version> <item>169</item> </second> </item> <item> <first>1045</first> <second> <count>1</count> <item_version>0</item_version> <item>174</item> </second> </item> <item> <first>1048</first> <second> <count>1</count> <item_version>0</item_version> <item>175</item> </second> </item> <item> <first>1054</first> <second> <count>1</count> <item_version>0</item_version> <item>176</item> </second> </item> <item> <first>1060</first> <second> <count>1</count> <item_version>0</item_version> <item>181</item> </second> </item> <item> <first>1065</first> <second> <count>1</count> <item_version>0</item_version> <item>182</item> </second> </item> <item> <first>1071</first> <second> <count>1</count> <item_version>0</item_version> <item>187</item> </second> </item> <item> <first>1074</first> <second> <count>1</count> <item_version>0</item_version> <item>188</item> </second> </item> <item> <first>1080</first> <second> <count>1</count> <item_version>0</item_version> <item>189</item> </second> </item> <item> <first>1086</first> <second> <count>1</count> <item_version>0</item_version> <item>194</item> </second> </item> <item> <first>1091</first> <second> <count>1</count> <item_version>0</item_version> <item>195</item> </second> </item> <item> <first>1097</first> <second> <count>1</count> <item_version>0</item_version> <item>200</item> </second> </item> <item> <first>1103</first> <second> <count>1</count> <item_version>0</item_version> <item>201</item> </second> </item> <item> <first>1109</first> <second> <count>1</count> <item_version>0</item_version> <item>215</item> </second> </item> <item> <first>1115</first> <second> <count>1</count> <item_version>0</item_version> <item>216</item> </second> </item> <item> <first>1119</first> <second> <count>1</count> <item_version>0</item_version> <item>217</item> </second> </item> <item> <first>1129</first> <second> <count>1</count> <item_version>0</item_version> <item>218</item> </second> </item> <item> <first>1137</first> <second> <count>1</count> <item_version>0</item_version> <item>219</item> </second> </item> <item> <first>1143</first> <second> <count>1</count> <item_version>0</item_version> <item>220</item> </second> </item> <item> <first>1149</first> <second> <count>1</count> <item_version>0</item_version> <item>221</item> </second> </item> <item> <first>1155</first> <second> <count>1</count> <item_version>0</item_version> <item>222</item> </second> </item> <item> <first>1161</first> <second> <count>1</count> <item_version>0</item_version> <item>230</item> </second> </item> <item> <first>1167</first> <second> <count>1</count> <item_version>0</item_version> <item>231</item> </second> </item> <item> <first>1171</first> <second> <count>1</count> <item_version>0</item_version> <item>232</item> </second> </item> <item> <first>1181</first> <second> <count>1</count> <item_version>0</item_version> <item>233</item> </second> </item> <item> <first>1189</first> <second> <count>1</count> <item_version>0</item_version> <item>234</item> </second> </item> <item> <first>1195</first> <second> <count>1</count> <item_version>0</item_version> <item>235</item> </second> </item> <item> <first>1201</first> <second> <count>1</count> <item_version>0</item_version> <item>236</item> </second> </item> <item> <first>1207</first> <second> <count>1</count> <item_version>0</item_version> <item>237</item> </second> </item> <item> <first>1213</first> <second> <count>1</count> <item_version>0</item_version> <item>238</item> </second> </item> <item> <first>1217</first> <second> <count>1</count> <item_version>0</item_version> <item>239</item> </second> </item> <item> <first>1227</first> <second> <count>1</count> <item_version>0</item_version> <item>240</item> </second> </item> <item> <first>1235</first> <second> <count>1</count> <item_version>0</item_version> <item>241</item> </second> </item> <item> <first>1241</first> <second> <count>1</count> <item_version>0</item_version> <item>242</item> </second> </item> <item> <first>1247</first> <second> <count>1</count> <item_version>0</item_version> <item>243</item> </second> </item> <item> <first>1253</first> <second> <count>1</count> <item_version>0</item_version> <item>244</item> </second> </item> <item> <first>1259</first> <second> <count>1</count> <item_version>0</item_version> <item>248</item> </second> </item> <item> <first>1265</first> <second> <count>1</count> <item_version>0</item_version> <item>249</item> </second> </item> <item> <first>1269</first> <second> <count>1</count> <item_version>0</item_version> <item>250</item> </second> </item> <item> <first>1279</first> <second> <count>1</count> <item_version>0</item_version> <item>251</item> </second> </item> <item> <first>1287</first> <second> <count>1</count> <item_version>0</item_version> <item>252</item> </second> </item> <item> <first>1293</first> <second> <count>1</count> <item_version>0</item_version> <item>253</item> </second> </item> <item> <first>1299</first> <second> <count>1</count> <item_version>0</item_version> <item>254</item> </second> </item> <item> <first>1305</first> <second> <count>1</count> <item_version>0</item_version> <item>255</item> </second> </item> <item> <first>1311</first> <second> <count>1</count> <item_version>0</item_version> <item>256</item> </second> </item> <item> <first>1315</first> <second> <count>1</count> <item_version>0</item_version> <item>257</item> </second> </item> <item> <first>1325</first> <second> <count>1</count> <item_version>0</item_version> <item>258</item> </second> </item> <item> <first>1333</first> <second> <count>1</count> <item_version>0</item_version> <item>259</item> </second> </item> <item> <first>1339</first> <second> <count>1</count> <item_version>0</item_version> <item>260</item> </second> </item> <item> <first>1345</first> <second> <count>1</count> <item_version>0</item_version> <item>261</item> </second> </item> <item> <first>1351</first> <second> <count>1</count> <item_version>0</item_version> <item>262</item> </second> </item> <item> <first>1357</first> <second> <count>1</count> <item_version>0</item_version> <item>272</item> </second> </item> <item> <first>1363</first> <second> <count>1</count> <item_version>0</item_version> <item>273</item> </second> </item> <item> <first>1369</first> <second> <count>1</count> <item_version>0</item_version> <item>275</item> </second> </item> <item> <first>1375</first> <second> <count>1</count> <item_version>0</item_version> <item>276</item> </second> </item> <item> <first>1380</first> <second> <count>1</count> <item_version>0</item_version> <item>277</item> </second> </item> <item> <first>1386</first> <second> <count>1</count> <item_version>0</item_version> <item>278</item> </second> </item> <item> <first>1390</first> <second> <count>1</count> <item_version>0</item_version> <item>279</item> </second> </item> <item> <first>1400</first> <second> <count>1</count> <item_version>0</item_version> <item>280</item> </second> </item> <item> <first>1408</first> <second> <count>1</count> <item_version>0</item_version> <item>281</item> </second> </item> <item> <first>1414</first> <second> <count>1</count> <item_version>0</item_version> <item>282</item> </second> </item> <item> <first>1420</first> <second> <count>1</count> <item_version>0</item_version> <item>283</item> </second> </item> <item> <first>1426</first> <second> <count>1</count> <item_version>0</item_version> <item>284</item> </second> </item> <item> <first>1432</first> <second> <count>1</count> <item_version>0</item_version> <item>302</item> </second> </item> <item> <first>1437</first> <second> <count>1</count> <item_version>0</item_version> <item>303</item> </second> </item> <item> <first>1442</first> <second> <count>1</count> <item_version>0</item_version> <item>304</item> </second> </item> </dp_fu_nodes> <dp_fu_nodes_expression class_id="52" tracking_level="0" version="0"> <count>133</count> <item_version>0</item_version> <item class_id="53" tracking_level="0" version="0"> <first>grp_fu_287</first> <second> <count>6</count> <item_version>0</item_version> <item>148</item> <item>157</item> <item>170</item> <item>183</item> <item>196</item> <item>271</item> </second> </item> <item> <first>grp_fu_297</first> <second> <count>2</count> <item_version>0</item_version> <item>199</item> <item>274</item> </second> </item> <item> <first>grp_fu_315</first> <second> <count>5</count> <item_version>0</item_version> <item>149</item> <item>158</item> <item>171</item> <item>184</item> <item>197</item> </second> </item> <item> <first>storemerge29_cast_i_s_fu_554</first> <second> <count>1</count> <item_version>0</item_version> <item>306</item> </second> </item> <item> <first>storemerge_cast_i_ca_fu_490</first> <second> <count>1</count> <item_version>0</item_version> <item>226</item> </second> </item> <item> <first>temp_1_cast_i_fu_438</first> <second> <count>1</count> <item_version>0</item_version> <item>173</item> </second> </item> <item> <first>temp_2_cast_i_fu_424</first> <second> <count>1</count> <item_version>0</item_version> <item>160</item> </second> </item> <item> <first>temp_3_cast_i_fu_406</first> <second> <count>1</count> <item_version>0</item_version> <item>138</item> </second> </item> <item> <first>temp_4_cast_i_fu_392</first> <second> <count>1</count> <item_version>0</item_version> <item>128</item> </second> </item> <item> <first>temp_5_cast_i_fu_378</first> <second> <count>1</count> <item_version>0</item_version> <item>118</item> </second> </item> <item> <first>temp_cast_i_fu_452</first> <second> <count>1</count> <item_version>0</item_version> <item>186</item> </second> </item> <item> <first>tmp1_fu_536</first> <second> <count>1</count> <item_version>0</item_version> <item>300</item> </second> </item> <item> <first>tmp_285_i_fu_1269</first> <second> <count>1</count> <item_version>0</item_version> <item>250</item> </second> </item> <item> <first>tmp_286_i_fu_1279</first> <second> <count>1</count> <item_version>0</item_version> <item>251</item> </second> </item> <item> <first>tmp_287_i_fu_1287</first> <second> <count>1</count> <item_version>0</item_version> <item>252</item> </second> </item> <item> <first>tmp_288_i_fu_1293</first> <second> <count>1</count> <item_version>0</item_version> <item>253</item> </second> </item> <item> <first>tmp_289_i_fu_1305</first> <second> <count>1</count> <item_version>0</item_version> <item>255</item> </second> </item> <item> <first>tmp_291_i_fu_1315</first> <second> <count>1</count> <item_version>0</item_version> <item>257</item> </second> </item> <item> <first>tmp_292_i_fu_1325</first> <second> <count>1</count> <item_version>0</item_version> <item>258</item> </second> </item> <item> <first>tmp_293_i_fu_1333</first> <second> <count>1</count> <item_version>0</item_version> <item>259</item> </second> </item> <item> <first>tmp_294_i_fu_1345</first> <second> <count>1</count> <item_version>0</item_version> <item>261</item> </second> </item> <item> <first>tmp_295_i_fu_1161</first> <second> <count>1</count> <item_version>0</item_version> <item>230</item> </second> </item> <item> <first>tmp_297_i_fu_1171</first> <second> <count>1</count> <item_version>0</item_version> <item>232</item> </second> </item> <item> <first>tmp_298_i_fu_1181</first> <second> <count>1</count> <item_version>0</item_version> <item>233</item> </second> </item> <item> <first>tmp_299_i_fu_1189</first> <second> <count>1</count> <item_version>0</item_version> <item>234</item> </second> </item> <item> <first>tmp_300_i_fu_1195</first> <second> <count>1</count> <item_version>0</item_version> <item>235</item> </second> </item> <item> <first>tmp_301_i_fu_1207</first> <second> <count>1</count> <item_version>0</item_version> <item>237</item> </second> </item> <item> <first>tmp_303_i_fu_1217</first> <second> <count>1</count> <item_version>0</item_version> <item>239</item> </second> </item> <item> <first>tmp_304_i_fu_1227</first> <second> <count>1</count> <item_version>0</item_version> <item>240</item> </second> </item> <item> <first>tmp_305_i_fu_1235</first> <second> <count>1</count> <item_version>0</item_version> <item>241</item> </second> </item> <item> <first>tmp_306_i_fu_1247</first> <second> <count>1</count> <item_version>0</item_version> <item>243</item> </second> </item> <item> <first>tmp_307_i_fu_1109</first> <second> <count>1</count> <item_version>0</item_version> <item>215</item> </second> </item> <item> <first>tmp_309_i_fu_1119</first> <second> <count>1</count> <item_version>0</item_version> <item>217</item> </second> </item> <item> <first>tmp_310_i_fu_1129</first> <second> <count>1</count> <item_version>0</item_version> <item>218</item> </second> </item> <item> <first>tmp_311_i_fu_1137</first> <second> <count>1</count> <item_version>0</item_version> <item>219</item> </second> </item> <item> <first>tmp_312_i_fu_1149</first> <second> <count>1</count> <item_version>0</item_version> <item>221</item> </second> </item> <item> <first>tmp_313_i_fu_472</first> <second> <count>1</count> <item_version>0</item_version> <item>223</item> </second> </item> <item> <first>tmp_314_i_fu_484</first> <second> <count>1</count> <item_version>0</item_version> <item>225</item> </second> </item> <item> <first>tmp_315_i_fu_352</first> <second> <count>1</count> <item_version>0</item_version> <item>79</item> </second> </item> <item> <first>tmp_316_i_fu_783</first> <second> <count>1</count> <item_version>0</item_version> <item>64</item> </second> </item> <item> <first>tmp_318_i_fu_793</first> <second> <count>1</count> <item_version>0</item_version> <item>66</item> </second> </item> <item> <first>tmp_319_i_fu_803</first> <second> <count>1</count> <item_version>0</item_version> <item>67</item> </second> </item> <item> <first>tmp_320_i_fu_811</first> <second> <count>1</count> <item_version>0</item_version> <item>68</item> </second> </item> <item> <first>tmp_321_i_fu_823</first> <second> <count>1</count> <item_version>0</item_version> <item>70</item> </second> </item> <item> <first>tmp_323_i_fu_833</first> <second> <count>1</count> <item_version>0</item_version> <item>72</item> </second> </item> <item> <first>tmp_324_i_fu_843</first> <second> <count>1</count> <item_version>0</item_version> <item>73</item> </second> </item> <item> <first>tmp_325_i_fu_851</first> <second> <count>1</count> <item_version>0</item_version> <item>74</item> </second> </item> <item> <first>tmp_326_i_fu_703</first> <second> <count>1</count> <item_version>0</item_version> <item>49</item> </second> </item> <item> <first>tmp_328_i_fu_713</first> <second> <count>1</count> <item_version>0</item_version> <item>51</item> </second> </item> <item> <first>tmp_329_i_fu_723</first> <second> <count>1</count> <item_version>0</item_version> <item>52</item> </second> </item> <item> <first>tmp_330_i_fu_731</first> <second> <count>1</count> <item_version>0</item_version> <item>53</item> </second> </item> <item> <first>tmp_331_i_fu_743</first> <second> <count>1</count> <item_version>0</item_version> <item>55</item> </second> </item> <item> <first>tmp_333_i_fu_753</first> <second> <count>1</count> <item_version>0</item_version> <item>57</item> </second> </item> <item> <first>tmp_334_i_fu_763</first> <second> <count>1</count> <item_version>0</item_version> <item>58</item> </second> </item> <item> <first>tmp_335_i_fu_771</first> <second> <count>1</count> <item_version>0</item_version> <item>59</item> </second> </item> <item> <first>tmp_336_i_fu_623</first> <second> <count>1</count> <item_version>0</item_version> <item>34</item> </second> </item> <item> <first>tmp_338_i_fu_633</first> <second> <count>1</count> <item_version>0</item_version> <item>36</item> </second> </item> <item> <first>tmp_339_i_fu_643</first> <second> <count>1</count> <item_version>0</item_version> <item>37</item> </second> </item> <item> <first>tmp_340_i_fu_651</first> <second> <count>1</count> <item_version>0</item_version> <item>38</item> </second> </item> <item> <first>tmp_341_i_fu_663</first> <second> <count>1</count> <item_version>0</item_version> <item>40</item> </second> </item> <item> <first>tmp_343_i_fu_673</first> <second> <count>1</count> <item_version>0</item_version> <item>42</item> </second> </item> <item> <first>tmp_344_i_fu_683</first> <second> <count>1</count> <item_version>0</item_version> <item>43</item> </second> </item> <item> <first>tmp_345_i_fu_691</first> <second> <count>1</count> <item_version>0</item_version> <item>44</item> </second> </item> <item> <first>tmp_346_i_fu_582</first> <second> <count>1</count> <item_version>0</item_version> <item>24</item> </second> </item> <item> <first>tmp_348_i_fu_592</first> <second> <count>1</count> <item_version>0</item_version> <item>26</item> </second> </item> <item> <first>tmp_349_i_fu_602</first> <second> <count>1</count> <item_version>0</item_version> <item>27</item> </second> </item> <item> <first>tmp_350_i_fu_1357</first> <second> <count>1</count> <item_version>0</item_version> <item>272</item> </second> </item> <item> <first>tmp_351_i_fu_1369</first> <second> <count>1</count> <item_version>0</item_version> <item>275</item> </second> </item> <item> <first>tmp_352_i_fu_1375</first> <second> <count>1</count> <item_version>0</item_version> <item>276</item> </second> </item> <item> <first>tmp_353_i_fu_1380</first> <second> <count>1</count> <item_version>0</item_version> <item>277</item> </second> </item> <item> <first>tmp_355_i_fu_1390</first> <second> <count>1</count> <item_version>0</item_version> <item>279</item> </second> </item> <item> <first>tmp_356_i_fu_1400</first> <second> <count>1</count> <item_version>0</item_version> <item>280</item> </second> </item> <item> <first>tmp_357_i_fu_1408</first> <second> <count>1</count> <item_version>0</item_version> <item>281</item> </second> </item> <item> <first>tmp_358_i_fu_1420</first> <second> <count>1</count> <item_version>0</item_version> <item>283</item> </second> </item> <item> <first>tmp_359_i_fu_526</first> <second> <count>1</count> <item_version>0</item_version> <item>297</item> </second> </item> <item> <first>tmp_361_i_fu_542</first> <second> <count>1</count> <item_version>0</item_version> <item>301</item> </second> </item> <item> <first>tmp_362_i_fu_548</first> <second> <count>1</count> <item_version>0</item_version> <item>305</item> </second> </item> <item> <first>tmp_363_i_fu_1086</first> <second> <count>1</count> <item_version>0</item_version> <item>194</item> </second> </item> <item> <first>tmp_365_i_fu_1097</first> <second> <count>1</count> <item_version>0</item_version> <item>200</item> </second> </item> <item> <first>tmp_366_i_fu_1060</first> <second> <count>1</count> <item_version>0</item_version> <item>181</item> </second> </item> <item> <first>tmp_368_cast_i_fu_1071</first> <second> <count>1</count> <item_version>0</item_version> <item>187</item> </second> </item> <item> <first>tmp_369_i_fu_1074</first> <second> <count>1</count> <item_version>0</item_version> <item>188</item> </second> </item> <item> <first>tmp_370_i_fu_1034</first> <second> <count>1</count> <item_version>0</item_version> <item>168</item> </second> </item> <item> <first>tmp_372_cast_i_fu_1045</first> <second> <count>1</count> <item_version>0</item_version> <item>174</item> </second> </item> <item> <first>tmp_373_i_fu_1048</first> <second> <count>1</count> <item_version>0</item_version> <item>175</item> </second> </item> <item> <first>tmp_374_i_fu_1008</first> <second> <count>1</count> <item_version>0</item_version> <item>155</item> </second> </item> <item> <first>tmp_376_cast_i_fu_1019</first> <second> <count>1</count> <item_version>0</item_version> <item>161</item> </second> </item> <item> <first>tmp_377_i_fu_1022</first> <second> <count>1</count> <item_version>0</item_version> <item>162</item> </second> </item> <item> <first>tmp_378_i_fu_997</first> <second> <count>1</count> <item_version>0</item_version> <item>146</item> </second> </item> <item> <first>tmp_380_i_fu_971</first> <second> <count>1</count> <item_version>0</item_version> <item>136</item> </second> </item> <item> <first>tmp_381_cast_i_fu_982</first> <second> <count>1</count> <item_version>0</item_version> <item>139</item> </second> </item> <item> <first>tmp_382_i_fu_985</first> <second> <count>1</count> <item_version>0</item_version> <item>140</item> </second> </item> <item> <first>tmp_383_i_fu_945</first> <second> <count>1</count> <item_version>0</item_version> <item>126</item> </second> </item> <item> <first>tmp_384_cast_i_fu_956</first> <second> <count>1</count> <item_version>0</item_version> <item>129</item> </second> </item> <item> <first>tmp_385_i_fu_959</first> <second> <count>1</count> <item_version>0</item_version> <item>130</item> </second> </item> <item> <first>tmp_386_i_fu_919</first> <second> <count>1</count> <item_version>0</item_version> <item>116</item> </second> </item> <item> <first>tmp_387_cast_i_fu_930</first> <second> <count>1</count> <item_version>0</item_version> <item>119</item> </second> </item> <item> <first>tmp_388_i_fu_933</first> <second> <count>1</count> <item_version>0</item_version> <item>120</item> </second> </item> <item> <first>tmp_389_i_fu_908</first> <second> <count>1</count> <item_version>0</item_version> <item>110</item> </second> </item> <item> <first>tmp_390_cast_i_fu_893</first> <second> <count>1</count> <item_version>0</item_version> <item>103</item> </second> </item> <item> <first>tmp_391_i_fu_896</first> <second> <count>1</count> <item_version>0</item_version> <item>104</item> </second> </item> <item> <first>tmp_392_cast_i_fu_878</first> <second> <count>1</count> <item_version>0</item_version> <item>96</item> </second> </item> <item> <first>tmp_393_i_fu_881</first> <second> <count>1</count> <item_version>0</item_version> <item>97</item> </second> </item> <item> <first>tmp_394_cast_i_fu_863</first> <second> <count>1</count> <item_version>0</item_version> <item>89</item> </second> </item> <item> <first>tmp_395_i_fu_866</first> <second> <count>1</count> <item_version>0</item_version> <item>90</item> </second> </item> <item> <first>tmp_621_fu_1265</first> <second> <count>1</count> <item_version>0</item_version> <item>249</item> </second> </item> <item> <first>tmp_622_fu_1311</first> <second> <count>1</count> <item_version>0</item_version> <item>256</item> </second> </item> <item> <first>tmp_623_fu_1167</first> <second> <count>1</count> <item_version>0</item_version> <item>231</item> </second> </item> <item> <first>tmp_624_fu_1213</first> <second> <count>1</count> <item_version>0</item_version> <item>238</item> </second> </item> <item> <first>tmp_625_fu_1115</first> <second> <count>1</count> <item_version>0</item_version> <item>216</item> </second> </item> <item> <first>tmp_626_fu_789</first> <second> <count>1</count> <item_version>0</item_version> <item>65</item> </second> </item> <item> <first>tmp_627_fu_829</first> <second> <count>1</count> <item_version>0</item_version> <item>71</item> </second> </item> <item> <first>tmp_628_fu_709</first> <second> <count>1</count> <item_version>0</item_version> <item>50</item> </second> </item> <item> <first>tmp_629_fu_749</first> <second> <count>1</count> <item_version>0</item_version> <item>56</item> </second> </item> <item> <first>tmp_630_fu_629</first> <second> <count>1</count> <item_version>0</item_version> <item>35</item> </second> </item> <item> <first>tmp_631_fu_669</first> <second> <count>1</count> <item_version>0</item_version> <item>41</item> </second> </item> <item> <first>tmp_632_fu_588</first> <second> <count>1</count> <item_version>0</item_version> <item>25</item> </second> </item> <item> <first>tmp_634_fu_516</first> <second> <count>1</count> <item_version>0</item_version> <item>270</item> </second> </item> <item> <first>tmp_635_fu_1386</first> <second> <count>1</count> <item_version>0</item_version> <item>278</item> </second> </item> <item> <first>tmp_639_fu_462</first> <second> <count>1</count> <item_version>0</item_version> <item>193</item> </second> </item> <item> <first>tmp_640_fu_448</first> <second> <count>1</count> <item_version>0</item_version> <item>180</item> </second> </item> <item> <first>tmp_641_fu_434</first> <second> <count>1</count> <item_version>0</item_version> <item>167</item> </second> </item> <item> <first>tmp_642_fu_420</first> <second> <count>1</count> <item_version>0</item_version> <item>154</item> </second> </item> <item> <first>tmp_643_fu_416</first> <second> <count>1</count> <item_version>0</item_version> <item>145</item> </second> </item> <item> <first>tmp_644_fu_402</first> <second> <count>1</count> <item_version>0</item_version> <item>135</item> </second> </item> <item> <first>tmp_645_fu_388</first> <second> <count>1</count> <item_version>0</item_version> <item>125</item> </second> </item> <item> <first>tmp_646_fu_374</first> <second> <count>1</count> <item_version>0</item_version> <item>115</item> </second> </item> <item> <first>tmp_647_fu_370</first> <second> <count>1</count> <item_version>0</item_version> <item>109</item> </second> </item> <item> <first>tmp_648_fu_366</first> <second> <count>1</count> <item_version>0</item_version> <item>102</item> </second> </item> <item> <first>tmp_649_fu_362</first> <second> <count>1</count> <item_version>0</item_version> <item>95</item> </second> </item> <item> <first>tmp_650_fu_358</first> <second> <count>1</count> <item_version>0</item_version> <item>88</item> </second> </item> <item> <first>tmp_V_fu_610</first> <second> <count>1</count> <item_version>0</item_version> <item>28</item> </second> </item> <item> <first>tmp_i_fu_1259</first> <second> <count>1</count> <item_version>0</item_version> <item>248</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>65</count> <item_version>0</item_version> <item> <first>StgValue_103_store_fu_617</first> <second> <count>1</count> <item_version>0</item_version> <item>29</item> </second> </item> <item> <first>StgValue_10_store_fu_340</first> <second> <count>1</count> <item_version>0</item_version> <item>61</item> </second> </item> <item> <first>StgValue_110_store_fu_657</first> <second> <count>1</count> <item_version>0</item_version> <item>39</item> </second> </item> <item> <first>StgValue_116_store_fu_697</first> <second> <count>1</count> <item_version>0</item_version> <item>45</item> </second> </item> <item> <first>StgValue_122_store_fu_737</first> <second> <count>1</count> <item_version>0</item_version> <item>54</item> </second> </item> <item> <first>StgValue_128_store_fu_777</first> <second> <count>1</count> <item_version>0</item_version> <item>60</item> </second> </item> <item> <first>StgValue_12_store_fu_346</first> <second> <count>1</count> <item_version>0</item_version> <item>76</item> </second> </item> <item> <first>StgValue_134_store_fu_817</first> <second> <count>1</count> <item_version>0</item_version> <item>69</item> </second> </item> <item> <first>StgValue_140_store_fu_857</first> <second> <count>1</count> <item_version>0</item_version> <item>75</item> </second> </item> <item> <first>StgValue_144_store_fu_872</first> <second> <count>1</count> <item_version>0</item_version> <item>91</item> </second> </item> <item> <first>StgValue_148_store_fu_887</first> <second> <count>1</count> <item_version>0</item_version> <item>98</item> </second> </item> <item> <first>StgValue_152_store_fu_902</first> <second> <count>1</count> <item_version>0</item_version> <item>105</item> </second> </item> <item> <first>StgValue_155_store_fu_913</first> <second> <count>1</count> <item_version>0</item_version> <item>111</item> </second> </item> <item> <first>StgValue_158_store_fu_924</first> <second> <count>1</count> <item_version>0</item_version> <item>117</item> </second> </item> <item> <first>StgValue_161_store_fu_939</first> <second> <count>1</count> <item_version>0</item_version> <item>121</item> </second> </item> <item> <first>StgValue_164_store_fu_950</first> <second> <count>1</count> <item_version>0</item_version> <item>127</item> </second> </item> <item> <first>StgValue_167_store_fu_965</first> <second> <count>1</count> <item_version>0</item_version> <item>131</item> </second> </item> <item> <first>StgValue_170_store_fu_976</first> <second> <count>1</count> <item_version>0</item_version> <item>137</item> </second> </item> <item> <first>StgValue_173_store_fu_991</first> <second> <count>1</count> <item_version>0</item_version> <item>141</item> </second> </item> <item> <first>StgValue_176_store_fu_1002</first> <second> <count>1</count> <item_version>0</item_version> <item>147</item> </second> </item> <item> <first>StgValue_181_store_fu_1013</first> <second> <count>1</count> <item_version>0</item_version> <item>156</item> </second> </item> <item> <first>StgValue_186_store_fu_1028</first> <second> <count>1</count> <item_version>0</item_version> <item>163</item> </second> </item> <item> <first>StgValue_189_store_fu_1039</first> <second> <count>1</count> <item_version>0</item_version> <item>169</item> </second> </item> <item> <first>StgValue_194_store_fu_1054</first> <second> <count>1</count> <item_version>0</item_version> <item>176</item> </second> </item> <item> <first>StgValue_197_store_fu_1065</first> <second> <count>1</count> <item_version>0</item_version> <item>182</item> </second> </item> <item> <first>StgValue_202_store_fu_1080</first> <second> <count>1</count> <item_version>0</item_version> <item>189</item> </second> </item> <item> <first>StgValue_205_store_fu_1091</first> <second> <count>1</count> <item_version>0</item_version> <item>195</item> </second> </item> <item> <first>StgValue_209_store_fu_1103</first> <second> <count>1</count> <item_version>0</item_version> <item>201</item> </second> </item> <item> <first>StgValue_220_store_fu_1143</first> <second> <count>1</count> <item_version>0</item_version> <item>220</item> </second> </item> <item> <first>StgValue_222_store_fu_1155</first> <second> <count>1</count> <item_version>0</item_version> <item>222</item> </second> </item> <item> <first>StgValue_229_store_fu_1201</first> <second> <count>1</count> <item_version>0</item_version> <item>236</item> </second> </item> <item> <first>StgValue_235_store_fu_1241</first> <second> <count>1</count> <item_version>0</item_version> <item>242</item> </second> </item> <item> <first>StgValue_237_store_fu_1253</first> <second> <count>1</count> <item_version>0</item_version> <item>244</item> </second> </item> <item> <first>StgValue_244_store_fu_1299</first> <second> <count>1</count> <item_version>0</item_version> <item>254</item> </second> </item> <item> <first>StgValue_250_store_fu_1339</first> <second> <count>1</count> <item_version>0</item_version> <item>260</item> </second> </item> <item> <first>StgValue_252_store_fu_1351</first> <second> <count>1</count> <item_version>0</item_version> <item>262</item> </second> </item> <item> <first>StgValue_255_store_fu_1363</first> <second> <count>1</count> <item_version>0</item_version> <item>273</item> </second> </item> <item> <first>StgValue_263_store_fu_1414</first> <second> <count>1</count> <item_version>0</item_version> <item>282</item> </second> </item> <item> <first>StgValue_265_store_fu_1426</first> <second> <count>1</count> <item_version>0</item_version> <item>284</item> </second> </item> <item> <first>StgValue_267_store_fu_1432</first> <second> <count>1</count> <item_version>0</item_version> <item>302</item> </second> </item> <item> <first>StgValue_268_store_fu_1437</first> <second> <count>1</count> <item_version>0</item_version> <item>303</item> </second> </item> <item> <first>StgValue_269_store_fu_1442</first> <second> <count>1</count> <item_version>0</item_version> <item>304</item> </second> </item> <item> <first>StgValue_54_store_fu_466</first> <second> <count>1</count> <item_version>0</item_version> <item>204</item> </second> </item> <item> <first>StgValue_58_store_fu_478</first> <second> <count>1</count> <item_version>0</item_version> <item>224</item> </second> </item> <item> <first>StgValue_61_store_fu_498</first> <second> <count>1</count> <item_version>0</item_version> <item>227</item> </second> </item> <item> <first>StgValue_63_store_fu_504</first> <second> <count>1</count> <item_version>0</item_version> <item>245</item> </second> </item> <item> <first>StgValue_65_store_fu_510</first> <second> <count>1</count> <item_version>0</item_version> <item>263</item> </second> </item> <item> <first>StgValue_72_store_fu_520</first> <second> <count>1</count> <item_version>0</item_version> <item>285</item> </second> </item> <item> <first>StgValue_80_store_fu_530</first> <second> <count>1</count> <item_version>0</item_version> <item>298</item> </second> </item> <item> <first>StgValue_86_store_fu_562</first> <second> <count>1</count> <item_version>0</item_version> <item>307</item> </second> </item> <item> <first>StgValue_8_store_fu_334</first> <second> <count>1</count> <item_version>0</item_version> <item>46</item> </second> </item> <item> <first>a_load_load_fu_578</first> <second> <count>1</count> <item_version>0</item_version> <item>21</item> </second> </item> <item> <first>b_load_load_fu_573</first> <second> <count>1</count> <item_version>0</item_version> <item>20</item> </second> </item> <item> <first>grp_nbreadreq_fu_232</first> <second> <count>2</count> <item_version>0</item_version> <item>82</item> <item>266</item> </second> </item> <item> <first>grp_read_fu_240</first> <second> <count>13</count> <item_version>0</item_version> <item>87</item> <item>94</item> <item>101</item> <item>108</item> <item>114</item> <item>124</item> <item>134</item> <item>144</item> <item>153</item> <item>166</item> <item>179</item> <item>192</item> <item>269</item> </second> </item> <item> <first>grp_store_fu_281</first> <second> <count>2</count> <item_version>0</item_version> <item>31</item> <item>210</item> </second> </item> <item> <first>grp_store_fu_320</first> <second> <count>5</count> <item_version>0</item_version> <item>150</item> <item>159</item> <item>172</item> <item>185</item> <item>198</item> </second> </item> <item> <first>grp_write_fu_274</first> <second> <count>2</count> <item_version>0</item_version> <item>30</item> <item>209</item> </second> </item> <item> <first>hashState_load_load_fu_326</first> <second> <count>1</count> <item_version>0</item_version> <item>17</item> </second> </item> <item> <first>length_load_load_fu_330</first> <second> <count>1</count> <item_version>0</item_version> <item>18</item> </second> </item> <item> <first>tmp_633_nbreadreq_fu_254</first> <second> <count>1</count> <item_version>0</item_version> <item>293</item> </second> </item> <item> <first>tmp_637_read_fu_262</first> <second> <count>1</count> <item_version>0</item_version> <item>296</item> </second> </item> <item> <first>tmp_651_read_fu_268</first> <second> <count>1</count> <item_version>0</item_version> <item>299</item> </second> </item> <item> <first>tmp_V_69_load_fu_568</first> <second> <count>1</count> <item_version>0</item_version> <item>19</item> </second> </item> <item> <first>tmp_nbreadreq_fu_246</first> <second> <count>1</count> <item_version>0</item_version> <item>290</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="54" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_mem_port_nodes> <dp_reg_nodes> <count>29</count> <item_version>0</item_version> <item> <first>307</first> <second> <count>6</count> <item_version>0</item_version> <item>148</item> <item>157</item> <item>170</item> <item>183</item> <item>196</item> <item>271</item> </second> </item> <item> <first>311</first> <second> <count>2</count> <item_version>0</item_version> <item>199</item> <item>274</item> </second> </item> <item> <first>1447</first> <second> <count>1</count> <item_version>0</item_version> <item>17</item> </second> </item> <item> <first>1451</first> <second> <count>1</count> <item_version>0</item_version> <item>18</item> </second> </item> <item> <first>1455</first> <second> <count>1</count> <item_version>0</item_version> <item>79</item> </second> </item> <item> <first>1459</first> <second> <count>1</count> <item_version>0</item_version> <item>82</item> </second> </item> <item> <first>1463</first> <second> <count>1</count> <item_version>0</item_version> <item>88</item> </second> </item> <item> <first>1468</first> <second> <count>1</count> <item_version>0</item_version> <item>95</item> </second> </item> <item> <first>1473</first> <second> <count>1</count> <item_version>0</item_version> <item>102</item> </second> </item> <item> <first>1478</first> <second> <count>1</count> <item_version>0</item_version> <item>109</item> </second> </item> <item> <first>1483</first> <second> <count>1</count> <item_version>0</item_version> <item>115</item> </second> </item> <item> <first>1488</first> <second> <count>1</count> <item_version>0</item_version> <item>118</item> </second> </item> <item> <first>1493</first> <second> <count>1</count> <item_version>0</item_version> <item>125</item> </second> </item> <item> <first>1498</first> <second> <count>1</count> <item_version>0</item_version> <item>128</item> </second> </item> <item> <first>1503</first> <second> <count>1</count> <item_version>0</item_version> <item>135</item> </second> </item> <item> <first>1508</first> <second> <count>1</count> <item_version>0</item_version> <item>138</item> </second> </item> <item> <first>1513</first> <second> <count>1</count> <item_version>0</item_version> <item>145</item> </second> </item> <item> <first>1518</first> <second> <count>1</count> <item_version>0</item_version> <item>154</item> </second> </item> <item> <first>1523</first> <second> <count>1</count> <item_version>0</item_version> <item>160</item> </second> </item> <item> <first>1528</first> <second> <count>1</count> <item_version>0</item_version> <item>167</item> </second> </item> <item> <first>1533</first> <second> <count>1</count> <item_version>0</item_version> <item>173</item> </second> </item> <item> <first>1538</first> <second> <count>1</count> <item_version>0</item_version> <item>180</item> </second> </item> <item> <first>1543</first> <second> <count>1</count> <item_version>0</item_version> <item>186</item> </second> </item> <item> <first>1548</first> <second> <count>1</count> <item_version>0</item_version> <item>193</item> </second> </item> <item> <first>1553</first> <second> <count>1</count> <item_version>0</item_version> <item>266</item> </second> </item> <item> <first>1557</first> <second> <count>1</count> <item_version>0</item_version> <item>270</item> </second> </item> <item> <first>1562</first> <second> <count>1</count> <item_version>0</item_version> <item>290</item> </second> </item> <item> <first>1566</first> <second> <count>1</count> <item_version>0</item_version> <item>293</item> </second> </item> <item> <first>1570</first> <second> <count>1</count> <item_version>0</item_version> <item>301</item> </second> </item> </dp_reg_nodes> <dp_regname_nodes> <count>29</count> <item_version>0</item_version> <item> <first>hashState_load_reg_1447</first> <second> <count>1</count> <item_version>0</item_version> <item>17</item> </second> </item> <item> <first>length_load_reg_1451</first> <second> <count>1</count> <item_version>0</item_version> <item>18</item> </second> </item> <item> <first>reg_307</first> <second> <count>6</count> <item_version>0</item_version> <item>148</item> <item>157</item> <item>170</item> <item>183</item> <item>196</item> <item>271</item> </second> </item> <item> <first>reg_311</first> <second> <count>2</count> <item_version>0</item_version> <item>199</item> <item>274</item> </second> </item> <item> <first>temp_1_cast_i_reg_1533</first> <second> <count>1</count> <item_version>0</item_version> <item>173</item> </second> </item> <item> <first>temp_2_cast_i_reg_1523</first> <second> <count>1</count> <item_version>0</item_version> <item>160</item> </second> </item> <item> <first>temp_3_cast_i_reg_1508</first> <second> <count>1</count> <item_version>0</item_version> <item>138</item> </second> </item> <item> <first>temp_4_cast_i_reg_1498</first> <second> <count>1</count> <item_version>0</item_version> <item>128</item> </second> </item> <item> <first>temp_5_cast_i_reg_1488</first> <second> <count>1</count> <item_version>0</item_version> <item>118</item> </second> </item> <item> <first>temp_cast_i_reg_1543</first> <second> <count>1</count> <item_version>0</item_version> <item>186</item> </second> </item> <item> <first>tmp_315_i_reg_1455</first> <second> <count>1</count> <item_version>0</item_version> <item>79</item> </second> </item> <item> <first>tmp_361_i_reg_1570</first> <second> <count>1</count> <item_version>0</item_version> <item>301</item> </second> </item> <item> <first>tmp_620_reg_1553</first> <second> <count>1</count> <item_version>0</item_version> <item>266</item> </second> </item> <item> <first>tmp_633_reg_1566</first> <second> <count>1</count> <item_version>0</item_version> <item>293</item> </second> </item> <item> <first>tmp_634_reg_1557</first> <second> <count>1</count> <item_version>0</item_version> <item>270</item> </second> </item> <item> <first>tmp_636_reg_1459</first> <second> <count>1</count> <item_version>0</item_version> <item>82</item> </second> </item> <item> <first>tmp_639_reg_1548</first> <second> <count>1</count> <item_version>0</item_version> <item>193</item> </second> </item> <item> <first>tmp_640_reg_1538</first> <second> <count>1</count> <item_version>0</item_version> <item>180</item> </second> </item> <item> <first>tmp_641_reg_1528</first> <second> <count>1</count> <item_version>0</item_version> <item>167</item> </second> </item> <item> <first>tmp_642_reg_1518</first> <second> <count>1</count> <item_version>0</item_version> <item>154</item> </second> </item> <item> <first>tmp_643_reg_1513</first> <second> <count>1</count> <item_version>0</item_version> <item>145</item> </second> </item> <item> <first>tmp_644_reg_1503</first> <second> <count>1</count> <item_version>0</item_version> <item>135</item> </second> </item> <item> <first>tmp_645_reg_1493</first> <second> <count>1</count> <item_version>0</item_version> <item>125</item> </second> </item> <item> <first>tmp_646_reg_1483</first> <second> <count>1</count> <item_version>0</item_version> <item>115</item> </second> </item> <item> <first>tmp_647_reg_1478</first> <second> <count>1</count> <item_version>0</item_version> <item>109</item> </second> </item> <item> <first>tmp_648_reg_1473</first> <second> <count>1</count> <item_version>0</item_version> <item>102</item> </second> </item> <item> <first>tmp_649_reg_1468</first> <second> <count>1</count> <item_version>0</item_version> <item>95</item> </second> </item> <item> <first>tmp_650_reg_1463</first> <second> <count>1</count> <item_version>0</item_version> <item>88</item> </second> </item> <item> <first>tmp_reg_1562</first> <second> <count>1</count> <item_version>0</item_version> <item>290</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="55" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="56" tracking_level="0" version="0"> <first>hash2cc_V_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>write</first> <second> <count>2</count> <item_version>0</item_version> <item>209</item> <item>30</item> </second> </item> </second> </item> <item> <first>resizedInitValue_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>293</item> </second> </item> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>299</item> </second> </item> </second> </item> <item> <first>resizedKeyLength_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>290</item> </second> </item> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>296</item> </second> </item> </second> </item> <item> <first>resizedKey_V_V</first> <second> <count>2</count> <item_version>0</item_version> <item> <first>nbreadreq</first> <second> <count>2</count> <item_version>0</item_version> <item>266</item> <item>82</item> </second> </item> <item> <first>read</first> <second> <count>13</count> <item_version>0</item_version> <item>269</item> <item>192</item> <item>179</item> <item>166</item> <item>153</item> <item>144</item> <item>134</item> <item>124</item> <item>114</item> <item>108</item> <item>101</item> <item>94</item> <item>87</item> </second> </item> </second> </item> </dp_port_io_nodes> <port2core class_id="57" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="58" tracking_level="0" version="0"> <first>6</first> <second>FIFO</second> </item> <item> <first>7</first> <second>FIFO</second> </item> <item> <first>8</first> <second>FIFO</second> </item> <item> <first>9</first> <second>FIFO</second> </item> </port2core> <node2core> <count>0</count> <item_version>0</item_version> </node2core> </syndb> </boost_serialization>
-- This file is covered by the Internet Software Consortium (ISC) License -- Reference: ../../License.txt package body AdaBase.Driver.Base.SQLite is --------------- -- execute -- --------------- overriding function execute (driver : SQLite_Driver; sql : String) return Affected_Rows is trsql : String := CT.trim_sql (sql); nquery : Natural := CT.count_queries (trsql); aborted : constant Affected_Rows := 0; err1 : constant CT.Text := CT.SUS ("ACK! Execution attempted on inactive connection"); err2 : constant String := "Driver is configured to allow only one query at " & "time, but this SQL contains multiple queries: "; begin if not driver.connection_active then -- Fatal attempt to query an unccnnected database driver.log_problem (category => execution, message => err1, break => True); return aborted; end if; if nquery > 1 and then not driver.trait_multiquery_enabled then -- Fatal attempt to execute multiple queries when it's not permitted driver.log_problem (category => execution, message => CT.SUS (err2 & trsql), break => True); return aborted; end if; declare result : Affected_Rows; begin -- SQLITE3 execute supports multiquery in all cases, so it is not -- necessary to loop through subqueries. We send the trimmed -- compound query as it was received. driver.connection.execute (trsql); driver.log_nominal (execution, CT.SUS (trsql)); result := driver.connection.rows_affected_by_execution; return result; exception when ACS.QUERY_FAIL => driver.log_problem (category => execution, message => CT.SUS (trsql), pull_codes => True); return aborted; end; end execute; ------------------------------------------------------------------------ -- ROUTINES OF ALL DRIVERS NOT COVERED BY INTERFACES (TECH REASON) -- ------------------------------------------------------------------------ ------------- -- query -- ------------- function query (driver : SQLite_Driver; sql : String) return ASS.SQLite_statement is begin return driver.private_statement (sql => sql, prepared => False); end query; --------------- -- prepare -- --------------- function prepare (driver : SQLite_Driver; sql : String) return ASS.SQLite_statement is begin return driver.private_statement (sql => sql, prepared => True); end prepare; -------------------- -- query_select -- -------------------- function query_select (driver : SQLite_Driver; distinct : Boolean := False; tables : String; columns : String; conditions : String := blankstring; groupby : String := blankstring; having : String := blankstring; order : String := blankstring; null_sort : Null_Priority := native; limit : Trax_ID := 0; offset : Trax_ID := 0) return ASS.SQLite_statement is begin return driver.private_statement (prepared => False, sql => driver.sql_assemble (distinct => distinct, tables => tables, columns => columns, conditions => conditions, groupby => groupby, having => having, order => order, null_sort => null_sort, limit => limit, offset => offset)); end query_select; ---------------------- -- prepare_select -- ---------------------- function prepare_select (driver : SQLite_Driver; distinct : Boolean := False; tables : String; columns : String; conditions : String := blankstring; groupby : String := blankstring; having : String := blankstring; order : String := blankstring; null_sort : Null_Priority := native; limit : Trax_ID := 0; offset : Trax_ID := 0) return ASS.SQLite_statement is begin return driver.private_statement (prepared => True, sql => driver.sql_assemble (distinct => distinct, tables => tables, columns => columns, conditions => conditions, groupby => groupby, having => having, order => order, null_sort => null_sort, limit => limit, offset => offset)); end prepare_select; ------------------------------------------------------------------------ -- PRIVATE ROUTINES NOT COVERED BY INTERFACES -- ------------------------------------------------------------------------ ------------------ -- initialize -- ------------------ overriding procedure initialize (Object : in out SQLite_Driver) is begin Object.connection := Object.local_connection'Unchecked_Access; Object.dialect := driver_sqlite; end initialize; ----------------------- -- private_connect -- ----------------------- overriding procedure private_connect (driver : out SQLite_Driver; database : String; username : String; password : String; hostname : String := blankstring; socket : String := blankstring; port : Posix_Port := portless) is err1 : constant CT.Text := CT.SUS ("ACK! Reconnection attempted on active connection"); nom : constant CT.Text := CT.SUS ("Connection to " & database & " database succeeded."); begin if driver.connection_active then driver.log_problem (category => execution, message => err1); return; end if; driver.connection.connect (database => database, username => username, password => password, socket => socket, hostname => hostname, port => port); driver.connection_active := driver.connection.all.connected; driver.log_nominal (category => connecting, message => nom); exception when Error : others => driver.log_problem (category => connecting, break => True, message => CT.SUS (ACS.EX.Exception_Message (X => Error))); end private_connect; ------------------------- -- private_statement -- ------------------------- function private_statement (driver : SQLite_Driver; sql : String; prepared : Boolean) return ASS.SQLite_statement is stype : AID.ASB.Stmt_Type := AID.ASB.direct_statement; logcat : Log_Category := execution; err1 : constant CT.Text := CT.SUS ("ACK! Query attempted on inactive connection"); duplicate : aliased String := sql; begin if prepared then stype := AID.ASB.prepared_statement; logcat := statement_preparation; end if; if driver.connection_active then declare statement : ASS.SQLite_statement (type_of_statement => stype, log_handler => logger'Access, sqlite_conn => ACS.SQLite_Connection_Access (driver.connection), initial_sql => duplicate'Unchecked_Access, con_error_mode => driver.trait_error_mode, con_case_mode => driver.trait_column_case, con_max_blob => driver.trait_max_blob_size); begin if not prepared then if statement.successful then driver.log_nominal (category => logcat, message => CT.SUS ("query succeeded," & statement.rows_returned'Img & " rows returned")); else driver.log_nominal (category => execution, message => CT.SUS ("Query failed!")); end if; end if; return statement; exception when RES : others => -- Fatal attempt to prepare a statement -- Logged already by stmt initialization -- Should be internally marked as unsuccessful return statement; end; else -- Fatal attempt to query an unconnected database driver.log_problem (category => logcat, message => err1, break => True); end if; -- We never get here, the driver.log_problem throws exception first raise ACS.STMT_NOT_VALID with "failed to return SQLite statement"; end private_statement; ------------------------ -- query_drop_table -- ------------------------ overriding procedure query_drop_table (driver : SQLite_Driver; tables : String; when_exists : Boolean := False; cascade : Boolean := False) is sql : CT.Text; AR : Affected_Rows; begin if CT.contains (tables, ",") then driver.log_problem (category => execution, message => CT.SUS ("Multiple tables detected -- SQLite" & " can only drop one table at a time : " & tables)); return; end if; case when_exists is when True => sql := CT.SUS ("DROP TABLE IF EXISTS " & tables); when False => sql := CT.SUS ("DROP TABLE " & tables); end case; if cascade then driver.log_nominal (category => note, message => CT.SUS ("Requested CASCADE has no effect on SQLite")); end if; AR := driver.execute (sql => CT.USS (sql)); exception when ACS.QUERY_FAIL => driver.log_problem (category => execution, message => sql, pull_codes => True); end query_drop_table; ------------------------- -- query_clear_table -- ------------------------- overriding procedure query_clear_table (driver : SQLite_Driver; table : String) is -- SQLite has no "truncate" commands sql : constant String := "DELETE FROM " & table; AR : Affected_Rows; begin AR := driver.execute (sql => sql); exception when ACS.QUERY_FAIL => driver.log_problem (category => execution, message => CT.SUS (sql), pull_codes => True); end query_clear_table; -------------------- -- sql_assemble -- -------------------- function sql_assemble (driver : SQLite_Driver; distinct : Boolean := False; tables : String; columns : String; conditions : String := blankstring; groupby : String := blankstring; having : String := blankstring; order : String := blankstring; null_sort : Null_Priority := native; limit : Trax_ID := 0; offset : Trax_ID := 0) return String is vanilla : String := assembly_common_select (distinct, tables, columns, conditions, groupby, having, order); begin if null_sort /= native then driver.log_nominal (category => execution, message => CT.SUS ("Note that NULLS FIRST/LAST is not " & "supported by SQLite so the null_sort setting is ignored")); end if; if limit > 0 then if offset > 0 then return vanilla & " LIMIT" & limit'Img & " OFFSET" & offset'Img; else return vanilla & " LIMIT" & limit'Img; end if; end if; return vanilla; end sql_assemble; ----------------------------- -- call_stored_procedure -- ----------------------------- function call_stored_procedure (driver : SQLite_Driver; stored_procedure : String; proc_arguments : String) return ASS.SQLite_statement is begin raise ACS.UNSUPPORTED_BY_SQLITE with "SQLite does not have the capability of stored procedures"; return driver.query ("this never runs."); end call_stored_procedure; end AdaBase.Driver.Base.SQLite;
pragma License (Unrestricted); with Ada.Numerics.Generic_Complex_Elementary_Functions; with Ada.Numerics.Long_Long_Complex_Types; package Ada.Numerics.Long_Long_Complex_Elementary_Functions is new Generic_Complex_Elementary_Functions (Long_Long_Complex_Types); pragma Pure (Ada.Numerics.Long_Long_Complex_Elementary_Functions);
with SDL; with SDL.Error; with SDL.Events.Events; with SDL.Events.Keyboards; with SDL.Inputs.Mice; with SDL.Log; with SDL.Video.Palettes; with SDL.Video.Pixel_Formats; with SDL.Video.Renderers.Makers; with SDL.Video.Textures.Makers; with SDL.Video.Windows.Makers; with SDL.Versions; procedure Mouse is use type SDL.Dimension; use type SDL.Positive_Sizes; Window_Size : constant SDL.Positive_Sizes := SDL.Positive_Sizes'(800, 640); W : SDL.Video.Windows.Window; Renderer : SDL.Video.Renderers.Renderer; Texture : SDL.Video.Textures.Texture; begin SDL.Log.Set (Category => SDL.Log.Application, Priority => SDL.Log.Debug); if SDL.Initialise = True then SDL.Video.Windows.Makers.Create (Win => W, Title => "Mouse", Position => SDL.Natural_Coordinates'(X => 300, Y => 300), Size => Window_Size, Flags => SDL.Video.Windows.Resizable); SDL.Video.Renderers.Makers.Create (Renderer, W); SDL.Video.Textures.Makers.Create (Tex => Texture, Renderer => Renderer, Format => SDL.Video.Pixel_Formats.Pixel_Format_ARGB_8888, Kind => SDL.Video.Textures.Streaming, Size => Window_Size); -- Main loop. declare Event : SDL.Events.Events.Events; Finished : Boolean := False; Mouse_Shown : Boolean := True; Warp_Rel : Boolean := True; Warp_Screen : Boolean := False; use type SDL.Events.Event_Types; use type SDL.Events.Keyboards.Key_Codes; use type SDL.Events.Keyboards.Scan_Codes; begin loop while SDL.Events.Events.Poll (Event) loop case Event.Common.Event_Type is when SDL.Events.Quit => Finished := True; when SDL.Events.Keyboards.Key_Down => case Event.Keyboard.Key_Sym.Key_Code is when SDL.Events.Keyboards.Code_Escape => Finished := True; when SDL.Events.Keyboards.Code_M => Mouse_Shown := not Mouse_Shown; SDL.Inputs.Mice.Show_Cursor (Mouse_Shown); SDL.Log.Put_Debug ("Mouse Shown : " & Boolean'Image (Mouse_Shown)); when SDL.Events.Keyboards.Code_R => Warp_Rel := True; SDL.Log.Put_Debug ("Mouse warp relative: " & Boolean'Image (Warp_Rel)); when SDL.Events.Keyboards.Code_A => Warp_Rel := False; SDL.Log.Put_Debug ("Mouse warp relative: " & Boolean'Image (Warp_Rel)); when SDL.Events.Keyboards.Code_W => SDL.Log.Put_Debug ("Warping mouse!"); if Warp_Screen then SDL.Inputs.Mice.Warp ((0, 0)); else SDL.Inputs.Mice.Warp (W, (0, 0)); end if; when SDL.Events.Keyboards.Code_S => Warp_Screen := not Warp_Screen; SDL.Log.Put_Debug ("Mouse warp to " & (if Warp_Screen then "screen!" else "window!")); when others => null; end case; when others => null; end case; end loop; Renderer.Clear; Renderer.Copy (Texture); Renderer.Present; exit when Finished; end loop; end; W.Finalize; SDL.Finalise; end if; end Mouse;
-- RUN: %llvmgcc -S -O2 %s -I%p/Support -o - | grep 6899714 package body Element_Copy is function F return VariableSizedField is X : VariableSizedField; begin return X; end; end;
-- Copyright 2016-2019 NXP -- All rights reserved.SPDX-License-Identifier: BSD-3-Clause -- This spec has been automatically generated from LPC55S6x.svd pragma Restrictions (No_Elaboration_Code); pragma Ada_2012; pragma Style_Checks (Off); with HAL; with System; package NXP_SVD.USART is pragma Preelaborate; --------------- -- Registers -- --------------- -- USART Enable. type CFG_ENABLE_Field is ( -- Disabled. The USART is disabled and the internal state machine and -- counters are reset. While Enable = 0, all USART interrupts and DMA -- transfers are disabled. When Enable is set again, CFG and most other -- control bits remain unchanged. When re-enabled, the USART will -- immediately be ready to transmit because the transmitter has been -- reset and is therefore available. Disabled, -- Enabled. The USART is enabled for operation. Enabled) with Size => 1; for CFG_ENABLE_Field use (Disabled => 0, Enabled => 1); -- Selects the data size for the USART. type CFG_DATALEN_Field is ( -- 7 bit Data length. Bit_7, -- 8 bit Data length. Bit_8, -- 9 bit data length. The 9th bit is commonly used for addressing in -- multidrop mode. See the ADDRDET bit in the CTL register. Bit_9) with Size => 2; for CFG_DATALEN_Field use (Bit_7 => 0, Bit_8 => 1, Bit_9 => 2); -- Selects what type of parity is used by the USART. type CFG_PARITYSEL_Field is ( -- No parity. No_Parity, -- Even parity. Adds a bit to each character such that the number of 1s -- in a transmitted character is even, and the number of 1s in a -- received character is expected to be even. Even_Parity, -- Odd parity. Adds a bit to each character such that the number of 1s -- in a transmitted character is odd, and the number of 1s in a received -- character is expected to be odd. Odd_Parity) with Size => 2; for CFG_PARITYSEL_Field use (No_Parity => 0, Even_Parity => 2, Odd_Parity => 3); -- Number of stop bits appended to transmitted data. Only a single stop bit -- is required for received data. type CFG_STOPLEN_Field is ( -- 1 stop bit. Bit_1, -- 2 stop bits. This setting should only be used for asynchronous -- communication. Bits_2) with Size => 1; for CFG_STOPLEN_Field use (Bit_1 => 0, Bits_2 => 1); -- Selects standard or 32 kHz clocking mode. type CFG_MODE32K_Field is ( -- Disabled. USART uses standard clocking. Disabled, -- Enabled. USART uses the 32 kHz clock from the RTC oscillator as the -- clock source to the BRG, and uses a special bit clocking scheme. Enabled) with Size => 1; for CFG_MODE32K_Field use (Disabled => 0, Enabled => 1); -- LIN break mode enable. type CFG_LINMODE_Field is ( -- Disabled. Break detect and generate is configured for normal -- operation. Disabled, -- Enabled. Break detect and generate is configured for LIN bus -- operation. Enabled) with Size => 1; for CFG_LINMODE_Field use (Disabled => 0, Enabled => 1); -- CTS Enable. Determines whether CTS is used for flow control. CTS can be -- from the input pin, or from the USART's own RTS if loopback mode is -- enabled. type CFG_CTSEN_Field is ( -- No flow control. The transmitter does not receive any automatic flow -- control signal. Disabled, -- Flow control enabled. The transmitter uses the CTS input (or RTS -- output in loopback mode) for flow control purposes. Enabled) with Size => 1; for CFG_CTSEN_Field use (Disabled => 0, Enabled => 1); -- Selects synchronous or asynchronous operation. type CFG_SYNCEN_Field is ( -- Asynchronous mode. Asynchronous_Mode, -- Synchronous mode. Synchronous_Mode) with Size => 1; for CFG_SYNCEN_Field use (Asynchronous_Mode => 0, Synchronous_Mode => 1); -- Selects the clock polarity and sampling edge of received data in -- synchronous mode. type CFG_CLKPOL_Field is ( -- Falling edge. Un_RXD is sampled on the falling edge of SCLK. Falling_Edge, -- Rising edge. Un_RXD is sampled on the rising edge of SCLK. Rising_Edge) with Size => 1; for CFG_CLKPOL_Field use (Falling_Edge => 0, Rising_Edge => 1); -- Synchronous mode Master select. type CFG_SYNCMST_Field is ( -- Slave. When synchronous mode is enabled, the USART is a slave. Slave, -- Master. When synchronous mode is enabled, the USART is a master. Master) with Size => 1; for CFG_SYNCMST_Field use (Slave => 0, Master => 1); -- Selects data loopback mode. type CFG_LOOP_Field is ( -- Normal operation. Normal, -- Loopback mode. This provides a mechanism to perform diagnostic -- loopback testing for USART data. Serial data from the transmitter -- (Un_TXD) is connected internally to serial input of the receive -- (Un_RXD). Un_TXD and Un_RTS activity will also appear on external -- pins if these functions are configured to appear on device pins. The -- receiver RTS signal is also looped back to CTS and performs flow -- control if enabled by CTSEN. Loopback) with Size => 1; for CFG_LOOP_Field use (Normal => 0, Loopback => 1); -- Output Enable Turnaround time enable for RS-485 operation. type CFG_OETA_Field is ( -- Disabled. If selected by OESEL, the Output Enable signal deasserted -- at the end of the last stop bit of a transmission. Disabled, -- Enabled. If selected by OESEL, the Output Enable signal remains -- asserted for one character time after the end of the last stop bit of -- a transmission. OE will also remain asserted if another transmit -- begins before it is deasserted. Enabled) with Size => 1; for CFG_OETA_Field use (Disabled => 0, Enabled => 1); -- Automatic Address matching enable. type CFG_AUTOADDR_Field is ( -- Disabled. When addressing is enabled by ADDRDET, address matching is -- done by software. This provides the possibility of versatile -- addressing (e.g. respond to more than one address). Disabled, -- Enabled. When addressing is enabled by ADDRDET, address matching is -- done by hardware, using the value in the ADDR register as the address -- to match. Enabled) with Size => 1; for CFG_AUTOADDR_Field use (Disabled => 0, Enabled => 1); -- Output Enable Select. type CFG_OESEL_Field is ( -- Standard. The RTS signal is used as the standard flow control -- function. Standard, -- RS-485. The RTS signal configured to provide an output enable signal -- to control an RS-485 transceiver. Rs_485) with Size => 1; for CFG_OESEL_Field use (Standard => 0, Rs_485 => 1); -- Output Enable Polarity. type CFG_OEPOL_Field is ( -- Low. If selected by OESEL, the output enable is active low. Low, -- High. If selected by OESEL, the output enable is active high. High) with Size => 1; for CFG_OEPOL_Field use (Low => 0, High => 1); -- Receive data polarity. type CFG_RXPOL_Field is ( -- Standard. The RX signal is used as it arrives from the pin. This -- means that the RX rest value is 1, start bit is 0, data is not -- inverted, and the stop bit is 1. Standard, -- Inverted. The RX signal is inverted before being used by the USART. -- This means that the RX rest value is 0, start bit is 1, data is -- inverted, and the stop bit is 0. Inverted) with Size => 1; for CFG_RXPOL_Field use (Standard => 0, Inverted => 1); -- Transmit data polarity. type CFG_TXPOL_Field is ( -- Standard. The TX signal is sent out without change. This means that -- the TX rest value is 1, start bit is 0, data is not inverted, and the -- stop bit is 1. Standard, -- Inverted. The TX signal is inverted by the USART before being sent -- out. This means that the TX rest value is 0, start bit is 1, data is -- inverted, and the stop bit is 0. Inverted) with Size => 1; for CFG_TXPOL_Field use (Standard => 0, Inverted => 1); -- USART Configuration register. Basic USART configuration settings that -- typically are not changed during operation. type CFG_Register is record -- USART Enable. ENABLE : CFG_ENABLE_Field := NXP_SVD.USART.Disabled; -- unspecified Reserved_1_1 : HAL.Bit := 16#0#; -- Selects the data size for the USART. DATALEN : CFG_DATALEN_Field := NXP_SVD.USART.Bit_7; -- Selects what type of parity is used by the USART. PARITYSEL : CFG_PARITYSEL_Field := NXP_SVD.USART.No_Parity; -- Number of stop bits appended to transmitted data. Only a single stop -- bit is required for received data. STOPLEN : CFG_STOPLEN_Field := NXP_SVD.USART.Bit_1; -- Selects standard or 32 kHz clocking mode. MODE32K : CFG_MODE32K_Field := NXP_SVD.USART.Disabled; -- LIN break mode enable. LINMODE : CFG_LINMODE_Field := NXP_SVD.USART.Disabled; -- CTS Enable. Determines whether CTS is used for flow control. CTS can -- be from the input pin, or from the USART's own RTS if loopback mode -- is enabled. CTSEN : CFG_CTSEN_Field := NXP_SVD.USART.Disabled; -- unspecified Reserved_10_10 : HAL.Bit := 16#0#; -- Selects synchronous or asynchronous operation. SYNCEN : CFG_SYNCEN_Field := NXP_SVD.USART.Asynchronous_Mode; -- Selects the clock polarity and sampling edge of received data in -- synchronous mode. CLKPOL : CFG_CLKPOL_Field := NXP_SVD.USART.Falling_Edge; -- unspecified Reserved_13_13 : HAL.Bit := 16#0#; -- Synchronous mode Master select. SYNCMST : CFG_SYNCMST_Field := NXP_SVD.USART.Slave; -- Selects data loopback mode. LOOP_k : CFG_LOOP_Field := NXP_SVD.USART.Normal; -- unspecified Reserved_16_17 : HAL.UInt2 := 16#0#; -- Output Enable Turnaround time enable for RS-485 operation. OETA : CFG_OETA_Field := NXP_SVD.USART.Disabled; -- Automatic Address matching enable. AUTOADDR : CFG_AUTOADDR_Field := NXP_SVD.USART.Disabled; -- Output Enable Select. OESEL : CFG_OESEL_Field := NXP_SVD.USART.Standard; -- Output Enable Polarity. OEPOL : CFG_OEPOL_Field := NXP_SVD.USART.Low; -- Receive data polarity. RXPOL : CFG_RXPOL_Field := NXP_SVD.USART.Standard; -- Transmit data polarity. TXPOL : CFG_TXPOL_Field := NXP_SVD.USART.Standard; -- unspecified Reserved_24_31 : HAL.UInt8 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for CFG_Register use record ENABLE at 0 range 0 .. 0; Reserved_1_1 at 0 range 1 .. 1; DATALEN at 0 range 2 .. 3; PARITYSEL at 0 range 4 .. 5; STOPLEN at 0 range 6 .. 6; MODE32K at 0 range 7 .. 7; LINMODE at 0 range 8 .. 8; CTSEN at 0 range 9 .. 9; Reserved_10_10 at 0 range 10 .. 10; SYNCEN at 0 range 11 .. 11; CLKPOL at 0 range 12 .. 12; Reserved_13_13 at 0 range 13 .. 13; SYNCMST at 0 range 14 .. 14; LOOP_k at 0 range 15 .. 15; Reserved_16_17 at 0 range 16 .. 17; OETA at 0 range 18 .. 18; AUTOADDR at 0 range 19 .. 19; OESEL at 0 range 20 .. 20; OEPOL at 0 range 21 .. 21; RXPOL at 0 range 22 .. 22; TXPOL at 0 range 23 .. 23; Reserved_24_31 at 0 range 24 .. 31; end record; -- Break Enable. type CTL_TXBRKEN_Field is ( -- Normal operation. Normal, -- Continuous break. Continuous break is sent immediately when this bit -- is set, and remains until this bit is cleared. A break may be sent -- without danger of corrupting any currently transmitting character if -- the transmitter is first disabled (TXDIS in CTL is set) and then -- waiting for the transmitter to be disabled (TXDISINT in STAT = 1) -- before writing 1 to TXBRKEN. Continous) with Size => 1; for CTL_TXBRKEN_Field use (Normal => 0, Continous => 1); -- Enable address detect mode. type CTL_ADDRDET_Field is ( -- Disabled. The USART presents all incoming data. Disabled, -- Enabled. The USART receiver ignores incoming data that does not have -- the most significant bit of the data (typically the 9th bit) = 1. -- When the data MSB bit = 1, the receiver treats the incoming data -- normally, generating a received data interrupt. Software can then -- check the data to see if this is an address that should be handled. -- If it is, the ADDRDET bit is cleared by software and further incoming -- data is handled normally. Enabled) with Size => 1; for CTL_ADDRDET_Field use (Disabled => 0, Enabled => 1); -- Transmit Disable. type CTL_TXDIS_Field is ( -- Not disabled. USART transmitter is not disabled. Enabled, -- Disabled. USART transmitter is disabled after any character currently -- being transmitted is complete. This feature can be used to facilitate -- software flow control. Disabled) with Size => 1; for CTL_TXDIS_Field use (Enabled => 0, Disabled => 1); -- Continuous Clock generation. By default, SCLK is only output while data -- is being transmitted in synchronous mode. type CTL_CC_Field is ( -- Clock on character. In synchronous mode, SCLK cycles only when -- characters are being sent on Un_TXD or to complete a character that -- is being received. Clock_On_Character, -- Continuous clock. SCLK runs continuously in synchronous mode, -- allowing characters to be received on Un_RxD independently from -- transmission on Un_TXD). Continous_Clock) with Size => 1; for CTL_CC_Field use (Clock_On_Character => 0, Continous_Clock => 1); -- Clear Continuous Clock. type CTL_CLRCCONRX_Field is ( -- No effect. No effect on the CC bit. No_Effect, -- Auto-clear. The CC bit is automatically cleared when a complete -- character has been received. This bit is cleared at the same time. Auto_Clear) with Size => 1; for CTL_CLRCCONRX_Field use (No_Effect => 0, Auto_Clear => 1); -- Autobaud enable. type CTL_AUTOBAUD_Field is ( -- Disabled. USART is in normal operating mode. Disabled, -- Enabled. USART is in autobaud mode. This bit should only be set when -- the USART receiver is idle. The first start bit of RX is measured and -- used the update the BRG register to match the received data rate. -- AUTOBAUD is cleared once this process is complete, or if there is an -- AERR. Enabled) with Size => 1; for CTL_AUTOBAUD_Field use (Disabled => 0, Enabled => 1); -- USART Control register. USART control settings that are more likely to -- change during operation. type CTL_Register is record -- unspecified Reserved_0_0 : HAL.Bit := 16#0#; -- Break Enable. TXBRKEN : CTL_TXBRKEN_Field := NXP_SVD.USART.Normal; -- Enable address detect mode. ADDRDET : CTL_ADDRDET_Field := NXP_SVD.USART.Disabled; -- unspecified Reserved_3_5 : HAL.UInt3 := 16#0#; -- Transmit Disable. TXDIS : CTL_TXDIS_Field := NXP_SVD.USART.Enabled; -- unspecified Reserved_7_7 : HAL.Bit := 16#0#; -- Continuous Clock generation. By default, SCLK is only output while -- data is being transmitted in synchronous mode. CC : CTL_CC_Field := NXP_SVD.USART.Clock_On_Character; -- Clear Continuous Clock. CLRCCONRX : CTL_CLRCCONRX_Field := NXP_SVD.USART.No_Effect; -- unspecified Reserved_10_15 : HAL.UInt6 := 16#0#; -- Autobaud enable. AUTOBAUD : CTL_AUTOBAUD_Field := NXP_SVD.USART.Disabled; -- unspecified Reserved_17_31 : HAL.UInt15 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for CTL_Register use record Reserved_0_0 at 0 range 0 .. 0; TXBRKEN at 0 range 1 .. 1; ADDRDET at 0 range 2 .. 2; Reserved_3_5 at 0 range 3 .. 5; TXDIS at 0 range 6 .. 6; Reserved_7_7 at 0 range 7 .. 7; CC at 0 range 8 .. 8; CLRCCONRX at 0 range 9 .. 9; Reserved_10_15 at 0 range 10 .. 15; AUTOBAUD at 0 range 16 .. 16; Reserved_17_31 at 0 range 17 .. 31; end record; -- USART Status register. The complete status value can be read here. -- Writing ones clears some bits in the register. Some bits can be cleared -- by writing a 1 to them. type STAT_Register is record -- unspecified Reserved_0_0 : HAL.Bit := 16#0#; -- Read-only. Receiver Idle. When 0, indicates that the receiver is -- currently in the process of receiving data. When 1, indicates that -- the receiver is not currently in the process of receiving data. RXIDLE : Boolean := True; -- unspecified Reserved_2_2 : HAL.Bit := 16#0#; -- Read-only. Transmitter Idle. When 0, indicates that the transmitter -- is currently in the process of sending data.When 1, indicate that the -- transmitter is not currently in the process of sending data. TXIDLE : Boolean := True; -- Read-only. This bit reflects the current state of the CTS signal, -- regardless of the setting of the CTSEN bit in the CFG register. This -- will be the value of the CTS input pin unless loopback mode is -- enabled. CTS : Boolean := False; -- Write-only. This bit is set when a change in the state is detected -- for the CTS flag above. This bit is cleared by software. DELTACTS : Boolean := False; -- Read-only. Transmitter Disabled Status flag. When 1, this bit -- indicates that the USART transmitter is fully idle after being -- disabled via the TXDIS bit in the CFG register (TXDIS = 1). TXDISSTAT : Boolean := False; -- unspecified Reserved_7_9 : HAL.UInt3 := 16#0#; -- Read-only. Received Break. This bit reflects the current state of the -- receiver break detection logic. It is set when the Un_RXD pin remains -- low for 16 bit times. Note that FRAMERRINT will also be set when this -- condition occurs because the stop bit(s) for the character would be -- missing. RXBRK is cleared when the Un_RXD pin goes high. RXBRK : Boolean := False; -- Write-only. This bit is set when a change in the state of receiver -- break detection occurs. Cleared by software. DELTARXBRK : Boolean := False; -- Write-only. This bit is set when a start is detected on the receiver -- input. Its purpose is primarily to allow wake-up from Deep-sleep or -- Power-down mode immediately when a start is detected. Cleared by -- software. START : Boolean := False; -- Write-only. Framing Error interrupt flag. This flag is set when a -- character is received with a missing stop bit at the expected -- location. This could be an indication of a baud rate or configuration -- mismatch with the transmitting source. FRAMERRINT : Boolean := False; -- Write-only. Parity Error interrupt flag. This flag is set when a -- parity error is detected in a received character. PARITYERRINT : Boolean := False; -- Write-only. Received Noise interrupt flag. Three samples of received -- data are taken in order to determine the value of each received data -- bit, except in synchronous mode. This acts as a noise filter if one -- sample disagrees. This flag is set when a received data bit contains -- one disagreeing sample. This could indicate line noise, a baud rate -- or character format mismatch, or loss of synchronization during data -- reception. RXNOISEINT : Boolean := False; -- Write-only. Auto baud Error. An auto baud error can occur if the BRG -- counts to its limit before the end of the start bit that is being -- measured, essentially an auto baud time-out. ABERR : 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 STAT_Register use record Reserved_0_0 at 0 range 0 .. 0; RXIDLE at 0 range 1 .. 1; Reserved_2_2 at 0 range 2 .. 2; TXIDLE at 0 range 3 .. 3; CTS at 0 range 4 .. 4; DELTACTS at 0 range 5 .. 5; TXDISSTAT at 0 range 6 .. 6; Reserved_7_9 at 0 range 7 .. 9; RXBRK at 0 range 10 .. 10; DELTARXBRK at 0 range 11 .. 11; START at 0 range 12 .. 12; FRAMERRINT at 0 range 13 .. 13; PARITYERRINT at 0 range 14 .. 14; RXNOISEINT at 0 range 15 .. 15; ABERR at 0 range 16 .. 16; Reserved_17_31 at 0 range 17 .. 31; end record; -- Interrupt Enable read and Set register for USART (not FIFO) status. -- Contains individual interrupt enable bits for each potential USART -- interrupt. A complete value may be read from this register. Writing a 1 -- to any implemented bit position causes that bit to be set. type INTENSET_Register is record -- unspecified Reserved_0_2 : HAL.UInt3 := 16#0#; -- When 1, enables an interrupt when the transmitter becomes idle -- (TXIDLE = 1). TXIDLEEN : Boolean := False; -- unspecified Reserved_4_4 : HAL.Bit := 16#0#; -- When 1, enables an interrupt when there is a change in the state of -- the CTS input. DELTACTSEN : Boolean := False; -- When 1, enables an interrupt when the transmitter is fully disabled -- as indicated by the TXDISINT flag in STAT. See description of the -- TXDISINT bit for details. TXDISEN : Boolean := False; -- unspecified Reserved_7_10 : HAL.UInt4 := 16#0#; -- When 1, enables an interrupt when a change of state has occurred in -- the detection of a received break condition (break condition asserted -- or deasserted). DELTARXBRKEN : Boolean := False; -- When 1, enables an interrupt when a received start bit has been -- detected. STARTEN : Boolean := False; -- When 1, enables an interrupt when a framing error has been detected. FRAMERREN : Boolean := False; -- When 1, enables an interrupt when a parity error has been detected. PARITYERREN : Boolean := False; -- When 1, enables an interrupt when noise is detected. See description -- of the RXNOISEINT bit in Table 354. RXNOISEEN : Boolean := False; -- When 1, enables an interrupt when an auto baud error occurs. ABERREN : 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 INTENSET_Register use record Reserved_0_2 at 0 range 0 .. 2; TXIDLEEN at 0 range 3 .. 3; Reserved_4_4 at 0 range 4 .. 4; DELTACTSEN at 0 range 5 .. 5; TXDISEN at 0 range 6 .. 6; Reserved_7_10 at 0 range 7 .. 10; DELTARXBRKEN at 0 range 11 .. 11; STARTEN at 0 range 12 .. 12; FRAMERREN at 0 range 13 .. 13; PARITYERREN at 0 range 14 .. 14; RXNOISEEN at 0 range 15 .. 15; ABERREN at 0 range 16 .. 16; Reserved_17_31 at 0 range 17 .. 31; end record; -- Interrupt Enable Clear register. Allows clearing any combination of bits -- in the INTENSET register. Writing a 1 to any implemented bit position -- causes the corresponding bit to be cleared. type INTENCLR_Register is record -- unspecified Reserved_0_2 : HAL.UInt3 := 16#0#; -- Write-only. Writing 1 clears the corresponding bit in the INTENSET -- register. TXIDLECLR : Boolean := False; -- unspecified Reserved_4_4 : HAL.Bit := 16#0#; -- Write-only. Writing 1 clears the corresponding bit in the INTENSET -- register. DELTACTSCLR : Boolean := False; -- Write-only. Writing 1 clears the corresponding bit in the INTENSET -- register. TXDISCLR : Boolean := False; -- unspecified Reserved_7_10 : HAL.UInt4 := 16#0#; -- Write-only. Writing 1 clears the corresponding bit in the INTENSET -- register. DELTARXBRKCLR : Boolean := False; -- Write-only. Writing 1 clears the corresponding bit in the INTENSET -- register. STARTCLR : Boolean := False; -- Write-only. Writing 1 clears the corresponding bit in the INTENSET -- register. FRAMERRCLR : Boolean := False; -- Write-only. Writing 1 clears the corresponding bit in the INTENSET -- register. PARITYERRCLR : Boolean := False; -- Write-only. Writing 1 clears the corresponding bit in the INTENSET -- register. RXNOISECLR : Boolean := False; -- Write-only. Writing 1 clears the corresponding bit in the INTENSET -- register. ABERRCLR : 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 INTENCLR_Register use record Reserved_0_2 at 0 range 0 .. 2; TXIDLECLR at 0 range 3 .. 3; Reserved_4_4 at 0 range 4 .. 4; DELTACTSCLR at 0 range 5 .. 5; TXDISCLR at 0 range 6 .. 6; Reserved_7_10 at 0 range 7 .. 10; DELTARXBRKCLR at 0 range 11 .. 11; STARTCLR at 0 range 12 .. 12; FRAMERRCLR at 0 range 13 .. 13; PARITYERRCLR at 0 range 14 .. 14; RXNOISECLR at 0 range 15 .. 15; ABERRCLR at 0 range 16 .. 16; Reserved_17_31 at 0 range 17 .. 31; end record; subtype BRG_BRGVAL_Field is HAL.UInt16; -- Baud Rate Generator register. 16-bit integer baud rate divisor value. type BRG_Register is record -- This value is used to divide the USART input clock to determine the -- baud rate, based on the input clock from the FRG. 0 = FCLK is used -- directly by the USART function. 1 = FCLK is divided by 2 before use -- by the USART function. 2 = FCLK is divided by 3 before use by the -- USART function. 0xFFFF = FCLK is divided by 65,536 before use by the -- USART function. BRGVAL : BRG_BRGVAL_Field := 16#0#; -- unspecified Reserved_16_31 : HAL.UInt16 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for BRG_Register use record BRGVAL at 0 range 0 .. 15; Reserved_16_31 at 0 range 16 .. 31; end record; -- Interrupt status register. Reflects interrupts that are currently -- enabled. type INTSTAT_Register is record -- unspecified Reserved_0_2 : HAL.UInt3; -- Read-only. Transmitter Idle status. TXIDLE : Boolean; -- unspecified Reserved_4_4 : HAL.Bit; -- Read-only. This bit is set when a change in the state of the CTS -- input is detected. DELTACTS : Boolean; -- Read-only. Transmitter Disabled Interrupt flag. TXDISINT : Boolean; -- unspecified Reserved_7_10 : HAL.UInt4; -- Read-only. This bit is set when a change in the state of receiver -- break detection occurs. DELTARXBRK : Boolean; -- Read-only. This bit is set when a start is detected on the receiver -- input. START : Boolean; -- Read-only. Framing Error interrupt flag. FRAMERRINT : Boolean; -- Read-only. Parity Error interrupt flag. PARITYERRINT : Boolean; -- Read-only. Received Noise interrupt flag. RXNOISEINT : Boolean; -- Read-only. Auto baud Error Interrupt flag. ABERRINT : Boolean; -- unspecified Reserved_17_31 : HAL.UInt15; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for INTSTAT_Register use record Reserved_0_2 at 0 range 0 .. 2; TXIDLE at 0 range 3 .. 3; Reserved_4_4 at 0 range 4 .. 4; DELTACTS at 0 range 5 .. 5; TXDISINT at 0 range 6 .. 6; Reserved_7_10 at 0 range 7 .. 10; DELTARXBRK at 0 range 11 .. 11; START at 0 range 12 .. 12; FRAMERRINT at 0 range 13 .. 13; PARITYERRINT at 0 range 14 .. 14; RXNOISEINT at 0 range 15 .. 15; ABERRINT at 0 range 16 .. 16; Reserved_17_31 at 0 range 17 .. 31; end record; subtype OSR_OSRVAL_Field is HAL.UInt4; -- Oversample selection register for asynchronous communication. type OSR_Register is record -- Oversample Selection Value. 0 to 3 = not supported 0x4 = 5 function -- clocks are used to transmit and receive each data bit. 0x5 = 6 -- function clocks are used to transmit and receive each data bit. 0xF= -- 16 function clocks are used to transmit and receive each data bit. OSRVAL : OSR_OSRVAL_Field := 16#F#; -- unspecified Reserved_4_31 : HAL.UInt28 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for OSR_Register use record OSRVAL at 0 range 0 .. 3; Reserved_4_31 at 0 range 4 .. 31; end record; subtype ADDR_ADDRESS_Field is HAL.UInt8; -- Address register for automatic address matching. type ADDR_Register is record -- 8-bit address used with automatic address matching. Used when address -- detection is enabled (ADDRDET in CTL = 1) and automatic address -- matching is enabled (AUTOADDR in CFG = 1). ADDRESS : ADDR_ADDRESS_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 ADDR_Register use record ADDRESS at 0 range 0 .. 7; Reserved_8_31 at 0 range 8 .. 31; end record; -- Enable the transmit FIFO. type FIFOCFG_ENABLETX_Field is ( -- The transmit FIFO is not enabled. Disabled, -- The transmit FIFO is enabled. Enabled) with Size => 1; for FIFOCFG_ENABLETX_Field use (Disabled => 0, Enabled => 1); -- Enable the receive FIFO. type FIFOCFG_ENABLERX_Field is ( -- The receive FIFO is not enabled. Disabled, -- The receive FIFO is enabled. Enabled) with Size => 1; for FIFOCFG_ENABLERX_Field use (Disabled => 0, Enabled => 1); subtype FIFOCFG_SIZE_Field is HAL.UInt2; -- DMA configuration for transmit. type FIFOCFG_DMATX_Field is ( -- DMA is not used for the transmit function. Disabled, -- Trigger DMA for the transmit function if the FIFO is not full. -- Generally, data interrupts would be disabled if DMA is enabled. Enabled) with Size => 1; for FIFOCFG_DMATX_Field use (Disabled => 0, Enabled => 1); -- DMA configuration for receive. type FIFOCFG_DMARX_Field is ( -- DMA is not used for the receive function. Disabled, -- Trigger DMA for the receive function if the FIFO is not empty. -- Generally, data interrupts would be disabled if DMA is enabled. Enabled) with Size => 1; for FIFOCFG_DMARX_Field use (Disabled => 0, Enabled => 1); -- Wake-up for transmit FIFO level. This allows the device to be woken from -- reduced power modes (up to power-down, as long as the peripheral -- function works in that power mode) without enabling the TXLVL interrupt. -- Only DMA wakes up, processes data, and goes back to sleep. The CPU will -- remain stopped until woken by another cause, such as DMA completion. See -- Hardware Wake-up control register. type FIFOCFG_WAKETX_Field is ( -- Only enabled interrupts will wake up the device form reduced power -- modes. Disabled, -- A device wake-up for DMA will occur if the transmit FIFO level -- reaches the value specified by TXLVL in FIFOTRIG, even when the TXLVL -- interrupt is not enabled. Enabled) with Size => 1; for FIFOCFG_WAKETX_Field use (Disabled => 0, Enabled => 1); -- Wake-up for receive FIFO level. This allows the device to be woken from -- reduced power modes (up to power-down, as long as the peripheral -- function works in that power mode) without enabling the TXLVL interrupt. -- Only DMA wakes up, processes data, and goes back to sleep. The CPU will -- remain stopped until woken by another cause, such as DMA completion. See -- Hardware Wake-up control register. type FIFOCFG_WAKERX_Field is ( -- Only enabled interrupts will wake up the device form reduced power -- modes. Disabled, -- A device wake-up for DMA will occur if the receive FIFO level reaches -- the value specified by RXLVL in FIFOTRIG, even when the RXLVL -- interrupt is not enabled. Enabled) with Size => 1; for FIFOCFG_WAKERX_Field use (Disabled => 0, Enabled => 1); -- FIFO configuration and enable register. type FIFOCFG_Register is record -- Enable the transmit FIFO. ENABLETX : FIFOCFG_ENABLETX_Field := NXP_SVD.USART.Disabled; -- Enable the receive FIFO. ENABLERX : FIFOCFG_ENABLERX_Field := NXP_SVD.USART.Disabled; -- unspecified Reserved_2_3 : HAL.UInt2 := 16#0#; -- Read-only. FIFO size configuration. This is a read-only field. 0x0 = -- FIFO is configured as 16 entries of 8 bits. 0x1, 0x2, 0x3 = not -- applicable to USART. SIZE : FIFOCFG_SIZE_Field := 16#0#; -- unspecified Reserved_6_11 : HAL.UInt6 := 16#0#; -- DMA configuration for transmit. DMATX : FIFOCFG_DMATX_Field := NXP_SVD.USART.Disabled; -- DMA configuration for receive. DMARX : FIFOCFG_DMARX_Field := NXP_SVD.USART.Disabled; -- Wake-up for transmit FIFO level. This allows the device to be woken -- from reduced power modes (up to power-down, as long as the peripheral -- function works in that power mode) without enabling the TXLVL -- interrupt. Only DMA wakes up, processes data, and goes back to sleep. -- The CPU will remain stopped until woken by another cause, such as DMA -- completion. See Hardware Wake-up control register. WAKETX : FIFOCFG_WAKETX_Field := NXP_SVD.USART.Disabled; -- Wake-up for receive FIFO level. This allows the device to be woken -- from reduced power modes (up to power-down, as long as the peripheral -- function works in that power mode) without enabling the TXLVL -- interrupt. Only DMA wakes up, processes data, and goes back to sleep. -- The CPU will remain stopped until woken by another cause, such as DMA -- completion. See Hardware Wake-up control register. WAKERX : FIFOCFG_WAKERX_Field := NXP_SVD.USART.Disabled; -- Empty command for the transmit FIFO. When a 1 is written to this bit, -- the TX FIFO is emptied. EMPTYTX : Boolean := False; -- Empty command for the receive FIFO. When a 1 is written to this bit, -- the RX FIFO is emptied. EMPTYRX : Boolean := False; -- unspecified Reserved_18_31 : HAL.UInt14 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for FIFOCFG_Register use record ENABLETX at 0 range 0 .. 0; ENABLERX at 0 range 1 .. 1; Reserved_2_3 at 0 range 2 .. 3; SIZE at 0 range 4 .. 5; Reserved_6_11 at 0 range 6 .. 11; DMATX at 0 range 12 .. 12; DMARX at 0 range 13 .. 13; WAKETX at 0 range 14 .. 14; WAKERX at 0 range 15 .. 15; EMPTYTX at 0 range 16 .. 16; EMPTYRX at 0 range 17 .. 17; Reserved_18_31 at 0 range 18 .. 31; end record; subtype FIFOSTAT_TXLVL_Field is HAL.UInt5; subtype FIFOSTAT_RXLVL_Field is HAL.UInt5; -- FIFO status register. type FIFOSTAT_Register is record -- TX FIFO error. Will be set if a transmit FIFO error occurs. This -- could be an overflow caused by pushing data into a full FIFO, or by -- an underflow if the FIFO is empty when data is needed. Cleared by -- writing a 1 to this bit. TXERR : Boolean := False; -- RX FIFO error. Will be set if a receive FIFO overflow occurs, caused -- by software or DMA not emptying the FIFO fast enough. Cleared by -- writing a 1 to this bit. RXERR : Boolean := False; -- unspecified Reserved_2_2 : HAL.Bit := 16#0#; -- Read-only. Peripheral interrupt. When 1, this indicates that the -- peripheral function has asserted an interrupt. The details can be -- found by reading the peripheral's STAT register. PERINT : Boolean := False; -- Read-only. Transmit FIFO empty. When 1, the transmit FIFO is empty. -- The peripheral may still be processing the last piece of data. TXEMPTY : Boolean := True; -- Read-only. Transmit FIFO not full. When 1, the transmit FIFO is not -- full, so more data can be written. When 0, the transmit FIFO is full -- and another write would cause it to overflow. TXNOTFULL : Boolean := True; -- Read-only. Receive FIFO not empty. When 1, the receive FIFO is not -- empty, so data can be read. When 0, the receive FIFO is empty. RXNOTEMPTY : Boolean := False; -- Read-only. Receive FIFO full. When 1, the receive FIFO is full. Data -- needs to be read out to prevent the peripheral from causing an -- overflow. RXFULL : Boolean := False; -- Read-only. Transmit FIFO current level. A 0 means the TX FIFO is -- currently empty, and the TXEMPTY and TXNOTFULL flags will be 1. Other -- values tell how much data is actually in the TX FIFO at the point -- where the read occurs. If the TX FIFO is full, the TXEMPTY and -- TXNOTFULL flags will be 0. TXLVL : FIFOSTAT_TXLVL_Field := 16#0#; -- unspecified Reserved_13_15 : HAL.UInt3 := 16#0#; -- Read-only. Receive FIFO current level. A 0 means the RX FIFO is -- currently empty, and the RXFULL and RXNOTEMPTY flags will be 0. Other -- values tell how much data is actually in the RX FIFO at the point -- where the read occurs. If the RX FIFO is full, the RXFULL and -- RXNOTEMPTY flags will be 1. RXLVL : FIFOSTAT_RXLVL_Field := 16#0#; -- unspecified Reserved_21_31 : HAL.UInt11 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for FIFOSTAT_Register use record TXERR at 0 range 0 .. 0; RXERR at 0 range 1 .. 1; Reserved_2_2 at 0 range 2 .. 2; PERINT at 0 range 3 .. 3; TXEMPTY at 0 range 4 .. 4; TXNOTFULL at 0 range 5 .. 5; RXNOTEMPTY at 0 range 6 .. 6; RXFULL at 0 range 7 .. 7; TXLVL at 0 range 8 .. 12; Reserved_13_15 at 0 range 13 .. 15; RXLVL at 0 range 16 .. 20; Reserved_21_31 at 0 range 21 .. 31; end record; -- Transmit FIFO level trigger enable. This trigger will become an -- interrupt if enabled in FIFOINTENSET, or a DMA trigger if DMATX in -- FIFOCFG is set. type FIFOTRIG_TXLVLENA_Field is ( -- Transmit FIFO level does not generate a FIFO level trigger. Disabled, -- An trigger will be generated if the transmit FIFO level reaches the -- value specified by the TXLVL field in this register. Enabled) with Size => 1; for FIFOTRIG_TXLVLENA_Field use (Disabled => 0, Enabled => 1); -- Receive FIFO level trigger enable. This trigger will become an interrupt -- if enabled in FIFOINTENSET, or a DMA trigger if DMARX in FIFOCFG is set. type FIFOTRIG_RXLVLENA_Field is ( -- Receive FIFO level does not generate a FIFO level trigger. Disabled, -- An trigger will be generated if the receive FIFO level reaches the -- value specified by the RXLVL field in this register. Enabled) with Size => 1; for FIFOTRIG_RXLVLENA_Field use (Disabled => 0, Enabled => 1); subtype FIFOTRIG_TXLVL_Field is HAL.UInt4; subtype FIFOTRIG_RXLVL_Field is HAL.UInt4; -- FIFO trigger settings for interrupt and DMA request. type FIFOTRIG_Register is record -- Transmit FIFO level trigger enable. This trigger will become an -- interrupt if enabled in FIFOINTENSET, or a DMA trigger if DMATX in -- FIFOCFG is set. TXLVLENA : FIFOTRIG_TXLVLENA_Field := NXP_SVD.USART.Disabled; -- Receive FIFO level trigger enable. This trigger will become an -- interrupt if enabled in FIFOINTENSET, or a DMA trigger if DMARX in -- FIFOCFG is set. RXLVLENA : FIFOTRIG_RXLVLENA_Field := NXP_SVD.USART.Disabled; -- unspecified Reserved_2_7 : HAL.UInt6 := 16#0#; -- Transmit FIFO level trigger point. This field is used only when -- TXLVLENA = 1. If enabled to do so, the FIFO level can wake up the -- device just enough to perform DMA, then return to the reduced power -- mode. See Hardware Wake-up control register. 0 = trigger when the TX -- FIFO becomes empty. 1 = trigger when the TX FIFO level decreases to -- one entry. 15 = trigger when the TX FIFO level decreases to 15 -- entries (is no longer full). TXLVL : FIFOTRIG_TXLVL_Field := 16#0#; -- unspecified Reserved_12_15 : HAL.UInt4 := 16#0#; -- Receive FIFO level trigger point. The RX FIFO level is checked when a -- new piece of data is received. This field is used only when RXLVLENA -- = 1. If enabled to do so, the FIFO level can wake up the device just -- enough to perform DMA, then return to the reduced power mode. See -- Hardware Wake-up control register. 0 = trigger when the RX FIFO has -- received one entry (is no longer empty). 1 = trigger when the RX FIFO -- has received two entries. 15 = trigger when the RX FIFO has received -- 16 entries (has become full). RXLVL : FIFOTRIG_RXLVL_Field := 16#0#; -- unspecified Reserved_20_31 : HAL.UInt12 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for FIFOTRIG_Register use record TXLVLENA at 0 range 0 .. 0; RXLVLENA at 0 range 1 .. 1; Reserved_2_7 at 0 range 2 .. 7; TXLVL at 0 range 8 .. 11; Reserved_12_15 at 0 range 12 .. 15; RXLVL at 0 range 16 .. 19; Reserved_20_31 at 0 range 20 .. 31; end record; -- Determines whether an interrupt occurs when a transmit error occurs, -- based on the TXERR flag in the FIFOSTAT register. type FIFOINTENSET_TXERR_Field is ( -- No interrupt will be generated for a transmit error. Disabled, -- An interrupt will be generated when a transmit error occurs. Enabled) with Size => 1; for FIFOINTENSET_TXERR_Field use (Disabled => 0, Enabled => 1); -- Determines whether an interrupt occurs when a receive error occurs, -- based on the RXERR flag in the FIFOSTAT register. type FIFOINTENSET_RXERR_Field is ( -- No interrupt will be generated for a receive error. Disabled, -- An interrupt will be generated when a receive error occurs. Enabled) with Size => 1; for FIFOINTENSET_RXERR_Field use (Disabled => 0, Enabled => 1); -- Determines whether an interrupt occurs when a the transmit FIFO reaches -- the level specified by the TXLVL field in the FIFOTRIG register. type FIFOINTENSET_TXLVL_Field is ( -- No interrupt will be generated based on the TX FIFO level. Disabled, -- If TXLVLENA in the FIFOTRIG register = 1, an interrupt will be -- generated when the TX FIFO level decreases to the level specified by -- TXLVL in the FIFOTRIG register. Enabled) with Size => 1; for FIFOINTENSET_TXLVL_Field use (Disabled => 0, Enabled => 1); -- Determines whether an interrupt occurs when a the receive FIFO reaches -- the level specified by the TXLVL field in the FIFOTRIG register. type FIFOINTENSET_RXLVL_Field is ( -- No interrupt will be generated based on the RX FIFO level. Disabled, -- If RXLVLENA in the FIFOTRIG register = 1, an interrupt will be -- generated when the when the RX FIFO level increases to the level -- specified by RXLVL in the FIFOTRIG register. Enabled) with Size => 1; for FIFOINTENSET_RXLVL_Field use (Disabled => 0, Enabled => 1); -- FIFO interrupt enable set (enable) and read register. type FIFOINTENSET_Register is record -- Determines whether an interrupt occurs when a transmit error occurs, -- based on the TXERR flag in the FIFOSTAT register. TXERR : FIFOINTENSET_TXERR_Field := NXP_SVD.USART.Disabled; -- Determines whether an interrupt occurs when a receive error occurs, -- based on the RXERR flag in the FIFOSTAT register. RXERR : FIFOINTENSET_RXERR_Field := NXP_SVD.USART.Disabled; -- Determines whether an interrupt occurs when a the transmit FIFO -- reaches the level specified by the TXLVL field in the FIFOTRIG -- register. TXLVL : FIFOINTENSET_TXLVL_Field := NXP_SVD.USART.Disabled; -- Determines whether an interrupt occurs when a the receive FIFO -- reaches the level specified by the TXLVL field in the FIFOTRIG -- register. RXLVL : FIFOINTENSET_RXLVL_Field := NXP_SVD.USART.Disabled; -- unspecified Reserved_4_31 : HAL.UInt28 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for FIFOINTENSET_Register use record TXERR at 0 range 0 .. 0; RXERR at 0 range 1 .. 1; TXLVL at 0 range 2 .. 2; RXLVL at 0 range 3 .. 3; Reserved_4_31 at 0 range 4 .. 31; end record; -- FIFO interrupt enable clear (disable) and read register. type FIFOINTENCLR_Register is record -- Writing one clears the corresponding bits in the FIFOINTENSET -- register. TXERR : Boolean := False; -- Writing one clears the corresponding bits in the FIFOINTENSET -- register. RXERR : Boolean := False; -- Writing one clears the corresponding bits in the FIFOINTENSET -- register. TXLVL : Boolean := False; -- Writing one clears the corresponding bits in the FIFOINTENSET -- register. RXLVL : Boolean := False; -- unspecified Reserved_4_31 : HAL.UInt28 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for FIFOINTENCLR_Register use record TXERR at 0 range 0 .. 0; RXERR at 0 range 1 .. 1; TXLVL at 0 range 2 .. 2; RXLVL at 0 range 3 .. 3; Reserved_4_31 at 0 range 4 .. 31; end record; -- FIFO interrupt status register. type FIFOINTSTAT_Register is record -- Read-only. TX FIFO error. TXERR : Boolean; -- Read-only. RX FIFO error. RXERR : Boolean; -- Read-only. Transmit FIFO level interrupt. TXLVL : Boolean; -- Read-only. Receive FIFO level interrupt. RXLVL : Boolean; -- Read-only. Peripheral interrupt. PERINT : Boolean; -- unspecified Reserved_5_31 : HAL.UInt27; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for FIFOINTSTAT_Register use record TXERR at 0 range 0 .. 0; RXERR at 0 range 1 .. 1; TXLVL at 0 range 2 .. 2; RXLVL at 0 range 3 .. 3; PERINT at 0 range 4 .. 4; Reserved_5_31 at 0 range 5 .. 31; end record; subtype FIFOWR_TXDATA_Field is HAL.UInt9; -- FIFO write data. type FIFOWR_Register is record -- Write-only. Transmit data to the FIFO. TXDATA : FIFOWR_TXDATA_Field := 16#0#; -- unspecified Reserved_9_31 : HAL.UInt23 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for FIFOWR_Register use record TXDATA at 0 range 0 .. 8; Reserved_9_31 at 0 range 9 .. 31; end record; subtype FIFORD_RXDATA_Field is HAL.UInt9; -- FIFO read data. type FIFORD_Register is record -- Read-only. Received data from the FIFO. The number of bits used -- depends on the DATALEN and PARITYSEL settings. RXDATA : FIFORD_RXDATA_Field; -- unspecified Reserved_9_12 : HAL.UInt4; -- Read-only. Framing Error status flag. This bit reflects the status -- for the data it is read along with from the FIFO, and indicates that -- the character was received with a missing stop bit at the expected -- location. This could be an indication of a baud rate or configuration -- mismatch with the transmitting source. FRAMERR : Boolean; -- Read-only. Parity Error status flag. This bit reflects the status for -- the data it is read along with from the FIFO. This bit will be set -- when a parity error is detected in a received character. PARITYERR : Boolean; -- Read-only. Received Noise flag. See description of the RxNoiseInt bit -- in Table 354. RXNOISE : Boolean; -- unspecified Reserved_16_31 : HAL.UInt16; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for FIFORD_Register use record RXDATA at 0 range 0 .. 8; Reserved_9_12 at 0 range 9 .. 12; FRAMERR at 0 range 13 .. 13; PARITYERR at 0 range 14 .. 14; RXNOISE at 0 range 15 .. 15; Reserved_16_31 at 0 range 16 .. 31; end record; subtype FIFORDNOPOP_RXDATA_Field is HAL.UInt9; -- FIFO data read with no FIFO pop. type FIFORDNOPOP_Register is record -- Read-only. Received data from the FIFO. The number of bits used -- depends on the DATALEN and PARITYSEL settings. RXDATA : FIFORDNOPOP_RXDATA_Field; -- unspecified Reserved_9_12 : HAL.UInt4; -- Read-only. Framing Error status flag. This bit reflects the status -- for the data it is read along with from the FIFO, and indicates that -- the character was received with a missing stop bit at the expected -- location. This could be an indication of a baud rate or configuration -- mismatch with the transmitting source. FRAMERR : Boolean; -- Read-only. Parity Error status flag. This bit reflects the status for -- the data it is read along with from the FIFO. This bit will be set -- when a parity error is detected in a received character. PARITYERR : Boolean; -- Read-only. Received Noise flag. See description of the RxNoiseInt bit -- in Table 354. RXNOISE : Boolean; -- unspecified Reserved_16_31 : HAL.UInt16; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for FIFORDNOPOP_Register use record RXDATA at 0 range 0 .. 8; Reserved_9_12 at 0 range 9 .. 12; FRAMERR at 0 range 13 .. 13; PARITYERR at 0 range 14 .. 14; RXNOISE at 0 range 15 .. 15; Reserved_16_31 at 0 range 16 .. 31; end record; subtype ID_APERTURE_Field is HAL.UInt8; subtype ID_MINOR_REV_Field is HAL.UInt4; subtype ID_MAJOR_REV_Field is HAL.UInt4; subtype ID_ID_Field is HAL.UInt16; -- Peripheral identification register. type ID_Register is record -- Read-only. Aperture: encoded as (aperture size/4K) -1, so 0x00 means -- a 4K aperture. APERTURE : ID_APERTURE_Field; -- Read-only. Minor revision of module implementation. MINOR_REV : ID_MINOR_REV_Field; -- Read-only. Major revision of module implementation. MAJOR_REV : ID_MAJOR_REV_Field; -- Read-only. Module identifier for the selected function. ID : ID_ID_Field; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for ID_Register use record APERTURE at 0 range 0 .. 7; MINOR_REV at 0 range 8 .. 11; MAJOR_REV at 0 range 12 .. 15; ID at 0 range 16 .. 31; end record; ----------------- -- Peripherals -- ----------------- -- USARTs type USART_Peripheral is record -- USART Configuration register. Basic USART configuration settings that -- typically are not changed during operation. CFG : aliased CFG_Register; -- USART Control register. USART control settings that are more likely -- to change during operation. CTL : aliased CTL_Register; -- USART Status register. The complete status value can be read here. -- Writing ones clears some bits in the register. Some bits can be -- cleared by writing a 1 to them. STAT : aliased STAT_Register; -- Interrupt Enable read and Set register for USART (not FIFO) status. -- Contains individual interrupt enable bits for each potential USART -- interrupt. A complete value may be read from this register. Writing a -- 1 to any implemented bit position causes that bit to be set. INTENSET : aliased INTENSET_Register; -- Interrupt Enable Clear register. Allows clearing any combination of -- bits in the INTENSET register. Writing a 1 to any implemented bit -- position causes the corresponding bit to be cleared. INTENCLR : aliased INTENCLR_Register; -- Baud Rate Generator register. 16-bit integer baud rate divisor value. BRG : aliased BRG_Register; -- Interrupt status register. Reflects interrupts that are currently -- enabled. INTSTAT : aliased INTSTAT_Register; -- Oversample selection register for asynchronous communication. OSR : aliased OSR_Register; -- Address register for automatic address matching. ADDR : aliased ADDR_Register; -- FIFO configuration and enable register. FIFOCFG : aliased FIFOCFG_Register; -- FIFO status register. FIFOSTAT : aliased FIFOSTAT_Register; -- FIFO trigger settings for interrupt and DMA request. FIFOTRIG : aliased FIFOTRIG_Register; -- FIFO interrupt enable set (enable) and read register. FIFOINTENSET : aliased FIFOINTENSET_Register; -- FIFO interrupt enable clear (disable) and read register. FIFOINTENCLR : aliased FIFOINTENCLR_Register; -- FIFO interrupt status register. FIFOINTSTAT : aliased FIFOINTSTAT_Register; -- FIFO write data. FIFOWR : aliased FIFOWR_Register; -- FIFO read data. FIFORD : aliased FIFORD_Register; -- FIFO data read with no FIFO pop. FIFORDNOPOP : aliased FIFORDNOPOP_Register; -- Peripheral identification register. ID : aliased ID_Register; end record with Volatile; for USART_Peripheral use record CFG at 16#0# range 0 .. 31; CTL at 16#4# range 0 .. 31; STAT at 16#8# range 0 .. 31; INTENSET at 16#C# range 0 .. 31; INTENCLR at 16#10# range 0 .. 31; BRG at 16#20# range 0 .. 31; INTSTAT at 16#24# range 0 .. 31; OSR at 16#28# range 0 .. 31; ADDR at 16#2C# range 0 .. 31; FIFOCFG at 16#E00# range 0 .. 31; FIFOSTAT at 16#E04# range 0 .. 31; FIFOTRIG at 16#E08# range 0 .. 31; FIFOINTENSET at 16#E10# range 0 .. 31; FIFOINTENCLR at 16#E14# range 0 .. 31; FIFOINTSTAT at 16#E18# range 0 .. 31; FIFOWR at 16#E20# range 0 .. 31; FIFORD at 16#E30# range 0 .. 31; FIFORDNOPOP at 16#E40# range 0 .. 31; ID at 16#FFC# range 0 .. 31; end record; -- USARTs USART0_Periph : aliased USART_Peripheral with Import, Address => System'To_Address (16#40086000#); -- USARTs USART1_Periph : aliased USART_Peripheral with Import, Address => System'To_Address (16#40087000#); -- USARTs USART2_Periph : aliased USART_Peripheral with Import, Address => System'To_Address (16#40088000#); -- USARTs USART3_Periph : aliased USART_Peripheral with Import, Address => System'To_Address (16#40089000#); -- USARTs USART4_Periph : aliased USART_Peripheral with Import, Address => System'To_Address (16#4008A000#); -- USARTs USART5_Periph : aliased USART_Peripheral with Import, Address => System'To_Address (16#40096000#); -- USARTs USART6_Periph : aliased USART_Peripheral with Import, Address => System'To_Address (16#40097000#); -- USARTs USART7_Periph : aliased USART_Peripheral with Import, Address => System'To_Address (16#40098000#); end NXP_SVD.USART;
-- All Ada comments begin with "--" and extend to the end of the line
-- This file is generated by SWIG. Please do not modify by hand. -- with Interfaces; with Interfaces.C; with Interfaces.C.Pointers; package xcb.xcb_warp_pointer_request_t is -- Item -- type Item is record major_opcode : aliased Interfaces.Unsigned_8; pad0 : aliased Interfaces.Unsigned_8; length : aliased Interfaces.Unsigned_16; src_window : aliased xcb.xcb_window_t; dst_window : aliased xcb.xcb_window_t; src_x : aliased Interfaces.Integer_16; src_y : aliased Interfaces.Integer_16; src_width : aliased Interfaces.Unsigned_16; src_height : aliased Interfaces.Unsigned_16; dst_x : aliased Interfaces.Integer_16; dst_y : aliased Interfaces.Integer_16; end record; -- Item_Array -- type Item_Array is array (Interfaces.C.size_t range <>) of aliased xcb.xcb_warp_pointer_request_t .Item; -- Pointer -- package C_Pointers is new Interfaces.C.Pointers (Index => Interfaces.C.size_t, Element => xcb.xcb_warp_pointer_request_t.Item, Element_Array => xcb.xcb_warp_pointer_request_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_warp_pointer_request_t .Pointer; -- Pointer_Pointer -- package C_Pointer_Pointers is new Interfaces.C.Pointers (Index => Interfaces.C.size_t, Element => xcb.xcb_warp_pointer_request_t.Pointer, Element_Array => xcb.xcb_warp_pointer_request_t.Pointer_Array, Default_Terminator => null); subtype Pointer_Pointer is C_Pointer_Pointers.Pointer; end xcb.xcb_warp_pointer_request_t;
pragma Ada_2005; pragma Style_Checks (Off); with Interfaces.C; use Interfaces.C; with word_operations_hpp; with System; package instructionset_hpp is -- skipped empty struct Instruction subtype OpCode is word_operations_hpp.uint16_t; -- ./instructionset.hpp:6 -- -1 invalid instruction -- otherwise, the number of arguments it takes -- Function not safe on its own, use isOpCodeValid() first type InstructionSet_map_array is array (0 .. 53246) of System.Address; package Class_InstructionSet is type InstructionSet is limited record map : InstructionSet_map_array; -- ./instructionset.hpp:21 end record; pragma Import (CPP, InstructionSet); function New_InstructionSet return InstructionSet; -- ./instructionset.hpp:11 pragma CPP_Constructor (New_InstructionSet, "_ZN14InstructionSetC1Ev"); function isValidOpCode (this : access InstructionSet; the_opcode : OpCode) return int; -- ./instructionset.hpp:15 pragma Import (CPP, isValidOpCode, "_ZN14InstructionSet13isValidOpCodeEt"); function getInstruction (this : access InstructionSet; the_opcode : OpCode) return System.Address; -- ./instructionset.hpp:18 pragma Import (CPP, getInstruction, "_ZN14InstructionSet14getInstructionEt"); end; use Class_InstructionSet; end instructionset_hpp;
------------------------------------------------------------------------------ -- -- -- GNU ADA RUN-TIME LIBRARY (GNARL) COMPONENTS -- -- -- -- S Y S T E M . T A S K _ P R I M I T I V E S -- -- -- -- S p e c -- -- -- -- $Revision$ -- -- -- Copyright (C) 1991-2001, Florida State University -- -- -- -- 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. It is -- -- now maintained by Ada Core Technologies Inc. in cooperation with Florida -- -- State University (http://www.gnat.com). -- -- -- ------------------------------------------------------------------------------ -- RT_GNU/Linux version pragma Polling (Off); -- Turn off polling, we do not want ATC polling to take place during -- tasking operations. It causes infinite loops and other problems. with System.OS_Interface; package System.Task_Primitives is type Lock is limited private; -- Used for implementation of protected objects. type Lock_Ptr is limited private; type RTS_Lock is limited private; -- Used inside the runtime system. The difference between Lock and the -- RTS_Lock is that the later one serves only as a semaphore so that do -- not check for ceiling violations. type RTS_Lock_Ptr is limited private; type Task_Body_Access is access procedure; -- Pointer to the task body's entry point (or possibly a wrapper -- declared local to the GNARL). type Private_Data is limited private; -- Any information that the GNULLI needs maintained on a per-task -- basis. A component of this type is guaranteed to be included -- in the Ada_Task_Control_Block. private type RT_GNU_Linux_Lock is record Ceiling_Priority : System.Any_Priority; Pre_Locking_Priority : System.Any_Priority; -- Used to store the task's active priority before it -- acquires the lock Owner : System.Address; -- This is really a Task_ID, but we can't use that type -- here because this System.Tasking is "with" -- the current package -- a circularity. end record; type Lock is new RT_GNU_Linux_Lock; type RTS_Lock is new RT_GNU_Linux_Lock; type RTS_Lock_Ptr is access all RTS_Lock; type Lock_Ptr is access all Lock; type Private_Data is record Stack : System.Address; -- A stack space needed for the task. the space is allocated -- when the task is being created and is deallocated when -- the TCB for the task is finalized Uses_Fp : Integer; -- A flag to indicate whether the task is going to use floating- -- point unit. It's set to 1, indicating FP unit is always going -- to be used. The reason is that it is in this private record and -- necessary operation has to be provided for a user to call so as -- to change its value Magic : Integer; -- A special value is going to be stored in it when a task is -- created. The value is RT_TASK_MAGIC (16#754d2774#) as declared -- in System.OS_Interface State : System.OS_Interface.Rt_Task_States; -- Shows whether the task is RT_TASK_READY, RT_TASK_DELAYED or -- RT_TASK_DORMANT to support suspend, wait, wakeup. Stack_Bottom : System.Address; Active_Priority : System.Any_Priority; -- Active priority of the task Period : System.OS_Interface.RTIME; -- Intended originally to store the period of the task, but not used -- in the current implementation Resume_Time : System.OS_Interface.RTIME; -- Store the time the task has to be awakened Next : System.Address; -- This really is a Task_ID, used to link the Available_TCBs. Succ : System.Address; pragma Volatile (Succ); Pred : System.Address; pragma Volatile (Pred); -- These really are Task_ID, used to implement a circular doubly -- linked list for task queue L : aliased RTS_Lock; Outer_Lock : RTS_Lock_Ptr := null; -- Used to track which Lock the task is holding is the outermost -- one in order to implement priority setting and inheritance end record; -- ???? May need to use pragma Atomic or Volatile on some -- components; may also need to specify aliased for some. end System.Task_Primitives;
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> <!DOCTYPE boost_serialization> <boost_serialization signature="serialization::archive" version="15"> <syndb class_id="0" tracking_level="0" version="0"> <userIPLatency>-1</userIPLatency> <userIPName></userIPName> <cdfg class_id="1" tracking_level="1" version="0" object_id="_0"> <name>traceback</name> <ret_bitwidth>32</ret_bitwidth> <ports class_id="2" tracking_level="0" version="0"> <count>7</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>seq1</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>seq1</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>0</direction> <if_type>1</if_type> <array_size>100</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>seq2</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>seq2</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>0</direction> <if_type>1</if_type> <array_size>100</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>H</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>H</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <direction>0</direction> <if_type>1</if_type> <array_size>10201</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>pos_0_read</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>pos[0]</originalName> <rtlName></rtlName> <coreName></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>pos_1_read</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>pos[1]</originalName> <rtlName></rtlName> <coreName></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>aligned_seq1</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>aligned_seq1</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>2</direction> <if_type>1</if_type> <array_size>100</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_7"> <Value> <Obj> <type>1</type> <id>7</id> <name>aligned_seq2</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>aligned_seq2</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>2</direction> <if_type>1</if_type> <array_size>100</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>131</count> <item_version>0</item_version> <item class_id="9" tracking_level="1" version="0" object_id="_8"> <Value> <Obj> <type>0</type> <id>8</id> <name>j_0</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>pos[1]</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>168</item> </oprand_edges> <opcode>alloca</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>1</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_9"> <Value> <Obj> <type>0</type> <id>9</id> <name>i_0</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>pos[0]</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>169</item> </oprand_edges> <opcode>alloca</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>2</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>pos_1_read_1</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>113</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item class_id="11" tracking_level="0" version="0"> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</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>SmithWaterman.c</first> <second>traceback</second> </first> <second>113</second> </item> </second> </item> </inlineStackInfo> <originalName>pos[1]</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>171</item> <item>172</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="_11"> <Value> <Obj> <type>0</type> <id>11</id> <name>pos_0_read_1</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>113</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>113</second> </item> </second> </item> </inlineStackInfo> <originalName>pos[0]</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>173</item> <item>174</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="_12"> <Value> <Obj> <type>0</type> <id>12</id> <name>i_0_write_ln127</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>127</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>127</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>175</item> <item>176</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.60</m_delay> <m_topoIndex>5</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>j_0_write_ln127</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>127</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>127</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>177</item> <item>178</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.60</m_delay> <m_topoIndex>6</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>_ln127</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>127</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>127</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>179</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.60</m_delay> <m_topoIndex>7</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_15"> <Value> <Obj> <type>0</type> <id>16</id> <name>len_assign</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>146</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>146</second> </item> </second> </item> </inlineStackInfo> <originalName>len</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>181</item> <item>182</item> <item>183</item> <item>184</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>8</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_16"> <Value> <Obj> <type>0</type> <id>17</id> <name>j_0_load</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>133</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>133</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>509</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>9</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_17"> <Value> <Obj> <type>0</type> <id>18</id> <name>i_0_load</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>133</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>133</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>186</item> <item>508</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>10</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_18"> <Value> <Obj> <type>0</type> <id>19</id> <name>icmp_ln127</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>127</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>127</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>187</item> <item>188</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.85</m_delay> <m_topoIndex>11</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>icmp_ln127_1</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>127</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>127</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>189</item> <item>190</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.85</m_delay> <m_topoIndex>12</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>and_ln127</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>127</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>127</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>191</item> <item>192</item> </oprand_edges> <opcode>and</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.12</m_delay> <m_topoIndex>13</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>add_ln146</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>146</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>146</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>193</item> <item>194</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.66</m_delay> <m_topoIndex>14</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>_ln127</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>127</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>127</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>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>15</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_23"> <Value> <Obj> <type>0</type> <id>28</id> <name>trunc_ln130</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>130</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>130</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>15</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>198</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>16</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_24"> <Value> <Obj> <type>0</type> <id>29</id> <name>trunc_ln130_1</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>130</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>130</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>15</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>199</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>17</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_25"> <Value> <Obj> <type>0</type> <id>30</id> <name>mul_ln130</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>130</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>130</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>15</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>201</item> <item>202</item> </oprand_edges> <opcode>mul</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.53</m_delay> <m_topoIndex>18</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_26"> <Value> <Obj> <type>0</type> <id>31</id> <name>add_ln130</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>130</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>130</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>15</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>203</item> <item>204</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.58</m_delay> <m_topoIndex>19</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_27"> <Value> <Obj> <type>0</type> <id>32</id> <name>sext_ln130</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>130</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>130</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>205</item> </oprand_edges> <opcode>sext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>20</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_28"> <Value> <Obj> <type>0</type> <id>33</id> <name>H_addr</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>130</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>130</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>14</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>206</item> <item>208</item> <item>209</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>21</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_29"> <Value> <Obj> <type>0</type> <id>34</id> <name>H_load</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>130</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>130</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>210</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.15</m_delay> <m_topoIndex>22</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_30"> <Value> <Obj> <type>0</type> <id>35</id> <name>icmp_ln130</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>130</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>130</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>211</item> <item>212</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.85</m_delay> <m_topoIndex>23</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_31"> <Value> <Obj> <type>0</type> <id>36</id> <name>_ln130</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>130</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>130</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>213</item> <item>214</item> <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>24</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_32"> <Value> <Obj> <type>0</type> <id>38</id> <name>j_1</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>133</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>133</second> </item> </second> </item> </inlineStackInfo> <originalName>j</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>217</item> <item>218</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.66</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>39</id> <name>zext_ln133</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>133</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>133</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>219</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>26</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_34"> <Value> <Obj> <type>0</type> <id>40</id> <name>trunc_ln140</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>140</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>140</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>15</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>220</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>27</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_35"> <Value> <Obj> <type>0</type> <id>41</id> <name>add_ln140</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>140</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>140</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>15</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>221</item> <item>222</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.58</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>42</id> <name>sext_ln140</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>140</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>140</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>223</item> </oprand_edges> <opcode>sext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>48</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_37"> <Value> <Obj> <type>0</type> <id>43</id> <name>H_addr_2</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>140</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>140</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>14</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>224</item> <item>225</item> <item>226</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>49</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_38"> <Value> <Obj> <type>0</type> <id>44</id> <name>i</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>133</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>133</second> </item> </second> </item> </inlineStackInfo> <originalName>i</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>227</item> <item>228</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.66</m_delay> <m_topoIndex>29</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_39"> <Value> <Obj> <type>0</type> <id>45</id> <name>zext_ln133_1</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>133</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>133</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>229</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>30</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_40"> <Value> <Obj> <type>0</type> <id>46</id> <name>trunc_ln133</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>133</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>133</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>15</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>230</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>31</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_41"> <Value> <Obj> <type>0</type> <id>47</id> <name>mul_ln133</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>133</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>133</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>15</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>231</item> <item>232</item> </oprand_edges> <opcode>mul</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.53</m_delay> <m_topoIndex>32</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_42"> <Value> <Obj> <type>0</type> <id>48</id> <name>add_ln133_2</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>133</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>133</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>15</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>233</item> <item>234</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.58</m_delay> <m_topoIndex>33</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_43"> <Value> <Obj> <type>0</type> <id>49</id> <name>sext_ln133</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>133</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>133</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>235</item> </oprand_edges> <opcode>sext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>34</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_44"> <Value> <Obj> <type>0</type> <id>50</id> <name>H_addr_1</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>133</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>133</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>14</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>236</item> <item>237</item> <item>238</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>35</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_45"> <Value> <Obj> <type>0</type> <id>51</id> <name>add_ln141</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>141</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>141</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>15</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>239</item> <item>240</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.58</m_delay> <m_topoIndex>36</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_46"> <Value> <Obj> <type>0</type> <id>52</id> <name>sext_ln141</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>141</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>141</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>241</item> </oprand_edges> <opcode>sext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>50</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_47"> <Value> <Obj> <type>0</type> <id>53</id> <name>H_addr_3</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>141</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>141</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>14</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>242</item> <item>243</item> <item>244</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>51</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_48"> <Value> <Obj> <type>0</type> <id>54</id> <name>diag_score</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>133</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>133</second> </item> </second> </item> </inlineStackInfo> <originalName>diag_score</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>245</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.15</m_delay> <m_topoIndex>37</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_49"> <Value> <Obj> <type>0</type> <id>55</id> <name>seq1_addr</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>134</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>134</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>246</item> <item>247</item> <item>248</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>38</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_50"> <Value> <Obj> <type>0</type> <id>56</id> <name>seq1_load</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>134</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>134</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>249</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.61</m_delay> <m_topoIndex>39</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_51"> <Value> <Obj> <type>0</type> <id>57</id> <name>seq2_addr</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>134</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>134</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>250</item> <item>251</item> <item>252</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>40</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_52"> <Value> <Obj> <type>0</type> <id>58</id> <name>seq2_load</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>134</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>134</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>253</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.61</m_delay> <m_topoIndex>41</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_53"> <Value> <Obj> <type>0</type> <id>59</id> <name>icmp_ln134</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>134</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>134</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>254</item> <item>255</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.58</m_delay> <m_topoIndex>52</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_54"> <Value> <Obj> <type>0</type> <id>60</id> <name>select_ln134</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>134</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>134</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>256</item> <item>258</item> <item>260</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>53</m_topoIndex> <m_clusterGroupNumber>1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_55"> <Value> <Obj> <type>0</type> <id>61</id> <name>diag_score_1</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>134</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>134</second> </item> </second> </item> </inlineStackInfo> <originalName>diag_score</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>261</item> <item>262</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.66</m_delay> <m_topoIndex>54</m_topoIndex> <m_clusterGroupNumber>1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_56"> <Value> <Obj> <type>0</type> <id>62</id> <name>H_load_2</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>140</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>140</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>263</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.15</m_delay> <m_topoIndex>55</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_57"> <Value> <Obj> <type>0</type> <id>63</id> <name>left_score</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>140</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>140</second> </item> </second> </item> </inlineStackInfo> <originalName>left_score</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>265</item> <item>266</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.66</m_delay> <m_topoIndex>60</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_58"> <Value> <Obj> <type>0</type> <id>64</id> <name>H_load_3</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>141</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>141</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>267</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.15</m_delay> <m_topoIndex>56</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_59"> <Value> <Obj> <type>0</type> <id>65</id> <name>up_score</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>141</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>141</second> </item> </second> </item> </inlineStackInfo> <originalName>up_score</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>268</item> <item>269</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.66</m_delay> <m_topoIndex>61</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_60"> <Value> <Obj> <type>0</type> <id>66</id> <name>icmp_ln142</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>142</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>142</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>270</item> <item>271</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.85</m_delay> <m_topoIndex>57</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_61"> <Value> <Obj> <type>0</type> <id>67</id> <name>icmp_ln142_1</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>142</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>142</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>272</item> <item>273</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.85</m_delay> <m_topoIndex>58</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_62"> <Value> <Obj> <type>0</type> <id>68</id> <name>and_ln142</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>142</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>142</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>274</item> <item>275</item> </oprand_edges> <opcode>and</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.12</m_delay> <m_topoIndex>59</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_63"> <Value> <Obj> <type>0</type> <id>69</id> <name>_ln142</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>142</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>142</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>276</item> <item>277</item> <item>278</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="_64"> <Value> <Obj> <type>0</type> <id>71</id> <name>icmp_ln148</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>148</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>148</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>295</item> <item>296</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.85</m_delay> <m_topoIndex>63</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_65"> <Value> <Obj> <type>0</type> <id>72</id> <name>icmp_ln148_1</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>148</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>148</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>297</item> <item>298</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.85</m_delay> <m_topoIndex>64</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_66"> <Value> <Obj> <type>0</type> <id>73</id> <name>and_ln148</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>148</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>148</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>299</item> <item>300</item> </oprand_edges> <opcode>and</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.12</m_delay> <m_topoIndex>65</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_67"> <Value> <Obj> <type>0</type> <id>74</id> <name>_ln148</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>148</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>148</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>301</item> <item>302</item> <item>303</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>66</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_68"> <Value> <Obj> <type>0</type> <id>76</id> <name>icmp_ln153</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>153</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>153</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>319</item> <item>320</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.85</m_delay> <m_topoIndex>67</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_69"> <Value> <Obj> <type>0</type> <id>77</id> <name>icmp_ln153_1</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>153</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>153</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>321</item> <item>322</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.85</m_delay> <m_topoIndex>68</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_70"> <Value> <Obj> <type>0</type> <id>78</id> <name>and_ln153</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>153</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>153</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>323</item> <item>324</item> </oprand_edges> <opcode>and</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.12</m_delay> <m_topoIndex>69</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_71"> <Value> <Obj> <type>0</type> <id>79</id> <name>sext_ln155</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>155</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>155</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>325</item> </oprand_edges> <opcode>sext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>70</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_72"> <Value> <Obj> <type>0</type> <id>80</id> <name>aligned_seq1_addr_3</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>155</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>155</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>326</item> <item>327</item> <item>328</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>71</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_73"> <Value> <Obj> <type>0</type> <id>81</id> <name>_ln153</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>153</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>153</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>329</item> <item>330</item> <item>331</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>72</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_74"> <Value> <Obj> <type>0</type> <id>83</id> <name>aligned_seq1_addr_3_write_ln161</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>161</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>161</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>342</item> <item>343</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.61</m_delay> <m_topoIndex>73</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_75"> <Value> <Obj> <type>0</type> <id>84</id> <name>aligned_seq2_addr_4</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>162</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>162</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>344</item> <item>345</item> <item>346</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>74</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_76"> <Value> <Obj> <type>0</type> <id>85</id> <name>aligned_seq2_addr_4_write_ln162</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>162</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>162</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>347</item> <item>348</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.61</m_delay> <m_topoIndex>75</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_77"> <Value> <Obj> <type>0</type> <id>86</id> <name>i_0_write_ln133</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>133</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>133</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>349</item> <item>350</item> <item>514</item> <item>521</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.60</m_delay> <m_topoIndex>76</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_78"> <Value> <Obj> <type>0</type> <id>87</id> <name>j_0_write_ln133</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>133</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>133</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>351</item> <item>352</item> <item>515</item> <item>520</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.60</m_delay> <m_topoIndex>77</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_79"> <Value> <Obj> <type>0</type> <id>88</id> <name>_ln0</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>353</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="_80"> <Value> <Obj> <type>0</type> <id>90</id> <name>aligned_seq1_addr_3_write_ln155</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>155</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>155</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>332</item> <item>333</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.61</m_delay> <m_topoIndex>79</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_81"> <Value> <Obj> <type>0</type> <id>91</id> <name>aligned_seq2_addr_3</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>156</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>156</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>334</item> <item>335</item> <item>336</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>80</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_82"> <Value> <Obj> <type>0</type> <id>92</id> <name>aligned_seq2_addr_3_write_ln156</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>156</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>156</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>337</item> <item>338</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.61</m_delay> <m_topoIndex>81</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_83"> <Value> <Obj> <type>0</type> <id>93</id> <name>j_0_write_ln157</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>157</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>157</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>339</item> <item>340</item> <item>513</item> <item>519</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.60</m_delay> <m_topoIndex>82</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_84"> <Value> <Obj> <type>0</type> <id>94</id> <name>_ln157</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>157</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>157</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>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>83</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_85"> <Value> <Obj> <type>0</type> <id>96</id> <name>sext_ln150</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>150</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>150</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>304</item> </oprand_edges> <opcode>sext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>84</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_86"> <Value> <Obj> <type>0</type> <id>97</id> <name>aligned_seq1_addr_2</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>150</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>150</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>305</item> <item>306</item> <item>307</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>85</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_87"> <Value> <Obj> <type>0</type> <id>98</id> <name>aligned_seq1_addr_2_write_ln150</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>150</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>150</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>308</item> <item>309</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.61</m_delay> <m_topoIndex>86</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_88"> <Value> <Obj> <type>0</type> <id>99</id> <name>aligned_seq2_addr_2</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>151</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>151</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>310</item> <item>311</item> <item>312</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>87</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_89"> <Value> <Obj> <type>0</type> <id>100</id> <name>aligned_seq2_addr_2_write_ln151</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>151</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>151</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>314</item> <item>315</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.61</m_delay> <m_topoIndex>88</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_90"> <Value> <Obj> <type>0</type> <id>101</id> <name>i_0_write_ln152</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>152</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>152</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>316</item> <item>317</item> <item>512</item> <item>518</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.60</m_delay> <m_topoIndex>89</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_91"> <Value> <Obj> <type>0</type> <id>102</id> <name>_ln152</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>152</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>152</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>318</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="_92"> <Value> <Obj> <type>0</type> <id>104</id> <name>sext_ln145</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>145</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>145</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>279</item> </oprand_edges> <opcode>sext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>91</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_93"> <Value> <Obj> <type>0</type> <id>105</id> <name>aligned_seq1_addr_1</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>145</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>145</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>280</item> <item>281</item> <item>282</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>92</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_94"> <Value> <Obj> <type>0</type> <id>106</id> <name>aligned_seq1_addr_1_write_ln145</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>145</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>145</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>283</item> <item>284</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.61</m_delay> <m_topoIndex>93</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_95"> <Value> <Obj> <type>0</type> <id>107</id> <name>aligned_seq2_addr_1</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>146</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>146</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>285</item> <item>286</item> <item>287</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>94</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_96"> <Value> <Obj> <type>0</type> <id>108</id> <name>aligned_seq2_addr_1_write_ln146</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>146</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>146</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>288</item> <item>289</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.61</m_delay> <m_topoIndex>95</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_97"> <Value> <Obj> <type>0</type> <id>109</id> <name>i_0_write_ln147</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>147</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>147</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>290</item> <item>291</item> <item>510</item> <item>517</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.60</m_delay> <m_topoIndex>96</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_98"> <Value> <Obj> <type>0</type> <id>110</id> <name>j_0_write_ln147</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>147</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>147</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>292</item> <item>293</item> <item>511</item> <item>516</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.60</m_delay> <m_topoIndex>97</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_99"> <Value> <Obj> <type>0</type> <id>111</id> <name>_ln147</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>147</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>147</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>294</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>98</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_100"> <Value> <Obj> <type>0</type> <id>114</id> <name>_ln164</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>164</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>164</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>354</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>99</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_101"> <Value> <Obj> <type>0</type> <id>116</id> <name>sext_ln165</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>165</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>165</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>355</item> </oprand_edges> <opcode>sext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>42</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_102"> <Value> <Obj> <type>0</type> <id>117</id> <name>aligned_seq1_addr</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>165</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>165</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>356</item> <item>357</item> <item>358</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>43</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_103"> <Value> <Obj> <type>0</type> <id>118</id> <name>aligned_seq1_addr_write_ln165</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>165</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>165</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>360</item> <item>361</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.61</m_delay> <m_topoIndex>44</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_104"> <Value> <Obj> <type>0</type> <id>119</id> <name>aligned_seq2_addr</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>166</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>166</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>362</item> <item>363</item> <item>364</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>45</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_105"> <Value> <Obj> <type>0</type> <id>120</id> <name>aligned_seq2_addr_write_ln166</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>166</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>166</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>365</item> <item>366</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.61</m_delay> <m_topoIndex>46</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_106"> <Value> <Obj> <type>0</type> <id>121</id> <name>_ln66</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>strrev</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>strrev</second> </first> <second>66</second> </item> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>167</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>367</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.60</m_delay> <m_topoIndex>47</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_107"> <Value> <Obj> <type>0</type> <id>123</id> <name>i_0_i</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>i</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>368</item> <item>369</item> <item>370</item> <item>371</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>100</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_108"> <Value> <Obj> <type>0</type> <id>124</id> <name>j_0_in_i</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>j</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>372</item> <item>373</item> <item>374</item> <item>375</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>101</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_109"> <Value> <Obj> <type>0</type> <id>125</id> <name>j</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>65</lineNumber> <contextFuncName>strrev</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>strrev</second> </first> <second>65</second> </item> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>167</second> </item> </second> </item> </inlineStackInfo> <originalName>j</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>376</item> <item>377</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.66</m_delay> <m_topoIndex>102</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_110"> <Value> <Obj> <type>0</type> <id>126</id> <name>icmp_ln66</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>strrev</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>strrev</second> </first> <second>66</second> </item> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>167</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>378</item> <item>379</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.85</m_delay> <m_topoIndex>103</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_111"> <Value> <Obj> <type>0</type> <id>127</id> <name>i_1</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>71</lineNumber> <contextFuncName>strrev</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>strrev</second> </first> <second>71</second> </item> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>167</second> </item> </second> </item> </inlineStackInfo> <originalName>i</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>380</item> <item>381</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.66</m_delay> <m_topoIndex>104</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_112"> <Value> <Obj> <type>0</type> <id>128</id> <name>_ln66</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>strrev</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>strrev</second> </first> <second>66</second> </item> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>167</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>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>105</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_113"> <Value> <Obj> <type>0</type> <id>132</id> <name>sext_ln68</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>68</lineNumber> <contextFuncName>strrev</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>strrev</second> </first> <second>68</second> </item> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>167</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>386</item> </oprand_edges> <opcode>sext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>106</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_114"> <Value> <Obj> <type>0</type> <id>133</id> <name>aligned_seq1_addr_4</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>68</lineNumber> <contextFuncName>strrev</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>strrev</second> </first> <second>68</second> </item> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>167</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>387</item> <item>388</item> <item>389</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>107</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_115"> <Value> <Obj> <type>0</type> <id>134</id> <name>aligned_seq1_load</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>68</lineNumber> <contextFuncName>strrev</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>strrev</second> </first> <second>68</second> </item> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>167</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>390</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.61</m_delay> <m_topoIndex>112</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_116"> <Value> <Obj> <type>0</type> <id>135</id> <name>sext_ln69</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>strrev</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>strrev</second> </first> <second>69</second> </item> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>167</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>391</item> </oprand_edges> <opcode>sext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>108</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_117"> <Value> <Obj> <type>0</type> <id>136</id> <name>aligned_seq1_addr_5</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>strrev</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>strrev</second> </first> <second>69</second> </item> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>167</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>392</item> <item>393</item> <item>394</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>109</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_118"> <Value> <Obj> <type>0</type> <id>137</id> <name>aligned_seq1_load_1</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>strrev</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>strrev</second> </first> <second>69</second> </item> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>167</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>395</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.61</m_delay> <m_topoIndex>110</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_119"> <Value> <Obj> <type>0</type> <id>138</id> <name>aligned_seq1_addr_4_write_ln69</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>strrev</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>strrev</second> </first> <second>69</second> </item> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>167</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>396</item> <item>397</item> <item>503</item> <item>504</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.61</m_delay> <m_topoIndex>113</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_120"> <Value> <Obj> <type>0</type> <id>139</id> <name>aligned_seq1_addr_5_write_ln70</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>70</lineNumber> <contextFuncName>strrev</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>strrev</second> </first> <second>70</second> </item> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>167</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>398</item> <item>399</item> <item>502</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.61</m_delay> <m_topoIndex>114</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_121"> <Value> <Obj> <type>0</type> <id>141</id> <name>_ln73</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>73</lineNumber> <contextFuncName>strrev</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>strrev</second> </first> <second>73</second> </item> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>167</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>400</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>115</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_122"> <Value> <Obj> <type>0</type> <id>143</id> <name>_ln65</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>65</lineNumber> <contextFuncName>strrev</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>strrev</second> </first> <second>65</second> </item> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>168</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>385</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.60</m_delay> <m_topoIndex>111</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_123"> <Value> <Obj> <type>0</type> <id>145</id> <name>i_0_i2</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>i</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>401</item> <item>402</item> <item>403</item> <item>404</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>116</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_124"> <Value> <Obj> <type>0</type> <id>146</id> <name>j_0_in_i3</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>j</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>405</item> <item>406</item> <item>407</item> <item>408</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>117</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_125"> <Value> <Obj> <type>0</type> <id>147</id> <name>j_2</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>65</lineNumber> <contextFuncName>strrev</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>strrev</second> </first> <second>65</second> </item> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>168</second> </item> </second> </item> </inlineStackInfo> <originalName>j</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>409</item> <item>410</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.66</m_delay> <m_topoIndex>118</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_126"> <Value> <Obj> <type>0</type> <id>148</id> <name>icmp_ln66_1</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>strrev</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>strrev</second> </first> <second>66</second> </item> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>168</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>411</item> <item>412</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.85</m_delay> <m_topoIndex>119</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_127"> <Value> <Obj> <type>0</type> <id>149</id> <name>i_2</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>71</lineNumber> <contextFuncName>strrev</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>strrev</second> </first> <second>71</second> </item> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>168</second> </item> </second> </item> </inlineStackInfo> <originalName>i</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>413</item> <item>414</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.66</m_delay> <m_topoIndex>120</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_128"> <Value> <Obj> <type>0</type> <id>150</id> <name>_ln66</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>strrev</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>strrev</second> </first> <second>66</second> </item> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>168</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>415</item> <item>416</item> <item>417</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>121</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_129"> <Value> <Obj> <type>0</type> <id>154</id> <name>sext_ln68_1</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>68</lineNumber> <contextFuncName>strrev</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>strrev</second> </first> <second>68</second> </item> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>168</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>418</item> </oprand_edges> <opcode>sext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>122</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_130"> <Value> <Obj> <type>0</type> <id>155</id> <name>aligned_seq2_addr_5</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>68</lineNumber> <contextFuncName>strrev</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>strrev</second> </first> <second>68</second> </item> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>168</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>419</item> <item>420</item> <item>421</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>123</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_131"> <Value> <Obj> <type>0</type> <id>156</id> <name>aligned_seq2_load</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>68</lineNumber> <contextFuncName>strrev</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>strrev</second> </first> <second>68</second> </item> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>168</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>422</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.61</m_delay> <m_topoIndex>128</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_132"> <Value> <Obj> <type>0</type> <id>157</id> <name>sext_ln69_1</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>strrev</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>strrev</second> </first> <second>69</second> </item> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>168</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>423</item> </oprand_edges> <opcode>sext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>124</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_133"> <Value> <Obj> <type>0</type> <id>158</id> <name>aligned_seq2_addr_6</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>strrev</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>strrev</second> </first> <second>69</second> </item> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>168</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>424</item> <item>425</item> <item>426</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>125</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_134"> <Value> <Obj> <type>0</type> <id>159</id> <name>aligned_seq2_load_1</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>strrev</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>strrev</second> </first> <second>69</second> </item> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>168</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>427</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.61</m_delay> <m_topoIndex>126</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_135"> <Value> <Obj> <type>0</type> <id>160</id> <name>aligned_seq2_addr_5_write_ln69</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>strrev</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>strrev</second> </first> <second>69</second> </item> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>168</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>428</item> <item>429</item> <item>506</item> <item>507</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.61</m_delay> <m_topoIndex>129</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_136"> <Value> <Obj> <type>0</type> <id>161</id> <name>aligned_seq2_addr_6_write_ln70</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>70</lineNumber> <contextFuncName>strrev</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>strrev</second> </first> <second>70</second> </item> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>168</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>430</item> <item>431</item> <item>505</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.61</m_delay> <m_topoIndex>130</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_137"> <Value> <Obj> <type>0</type> <id>163</id> <name>_ln73</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>73</lineNumber> <contextFuncName>strrev</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>strrev</second> </first> <second>73</second> </item> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>168</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>432</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>131</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_138"> <Value> <Obj> <type>0</type> <id>165</id> <name>_ln169</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>169</lineNumber> <contextFuncName>traceback</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>traceback</second> </first> <second>169</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>433</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>127</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> </nodes> <consts class_id="15" tracking_level="0" version="0"> <count>10</count> <item_version>0</item_version> <item class_id="16" tracking_level="1" version="0" object_id="_139"> <Value> <Obj> <type>2</type> <id>167</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="_140"> <Value> <Obj> <type>2</type> <id>180</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>0</content> </item> <item class_id_reference="16" object_id="_141"> <Value> <Obj> <type>2</type> <id>200</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>15</bitwidth> </Value> <const_type>0</const_type> <content>101</content> </item> <item class_id_reference="16" object_id="_142"> <Value> <Obj> <type>2</type> <id>207</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="_143"> <Value> <Obj> <type>2</type> <id>216</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>4294967295</content> </item> <item class_id_reference="16" object_id="_144"> <Value> <Obj> <type>2</type> <id>257</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>3</content> </item> <item class_id_reference="16" object_id="_145"> <Value> <Obj> <type>2</type> <id>259</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>4294967293</content> </item> <item class_id_reference="16" object_id="_146"> <Value> <Obj> <type>2</type> <id>264</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>4294967294</content> </item> <item class_id_reference="16" object_id="_147"> <Value> <Obj> <type>2</type> <id>313</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <const_type>0</const_type> <content>45</content> </item> <item class_id_reference="16" object_id="_148"> <Value> <Obj> <type>2</type> <id>359</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> </consts> <blocks class_id="17" tracking_level="0" version="0"> <count>18</count> <item_version>0</item_version> <item class_id="18" tracking_level="1" version="0" object_id="_149"> <Obj> <type>3</type> <id>15</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>7</count> <item_version>0</item_version> <item>8</item> <item>9</item> <item>10</item> <item>11</item> <item>12</item> <item>13</item> <item>14</item> </node_objs> </item> <item class_id_reference="18" object_id="_150"> <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>8</count> <item_version>0</item_version> <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="_151"> <Obj> <type>3</type> <id>37</id> <name>Traceback_Loop_begin</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>9</count> <item_version>0</item_version> <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> </node_objs> </item> <item class_id_reference="18" object_id="_152"> <Obj> <type>3</type> <id>70</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>32</count> <item_version>0</item_version> <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> <item>65</item> <item>66</item> <item>67</item> <item>68</item> <item>69</item> </node_objs> </item> <item class_id_reference="18" object_id="_153"> <Obj> <type>3</type> <id>75</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>4</count> <item_version>0</item_version> <item>71</item> <item>72</item> <item>73</item> <item>74</item> </node_objs> </item> <item class_id_reference="18" object_id="_154"> <Obj> <type>3</type> <id>82</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>6</count> <item_version>0</item_version> <item>76</item> <item>77</item> <item>78</item> <item>79</item> <item>80</item> <item>81</item> </node_objs> </item> <item class_id_reference="18" object_id="_155"> <Obj> <type>3</type> <id>89</id> <name>._crit_edge5</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>6</count> <item_version>0</item_version> <item>83</item> <item>84</item> <item>85</item> <item>86</item> <item>87</item> <item>88</item> </node_objs> </item> <item class_id_reference="18" object_id="_156"> <Obj> <type>3</type> <id>95</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>5</count> <item_version>0</item_version> <item>90</item> <item>91</item> <item>92</item> <item>93</item> <item>94</item> </node_objs> </item> <item class_id_reference="18" object_id="_157"> <Obj> <type>3</type> <id>103</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>7</count> <item_version>0</item_version> <item>96</item> <item>97</item> <item>98</item> <item>99</item> <item>100</item> <item>101</item> <item>102</item> </node_objs> </item> <item class_id_reference="18" object_id="_158"> <Obj> <type>3</type> <id>112</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>8</count> <item_version>0</item_version> <item>104</item> <item>105</item> <item>106</item> <item>107</item> <item>108</item> <item>109</item> <item>110</item> <item>111</item> </node_objs> </item> <item class_id_reference="18" object_id="_159"> <Obj> <type>3</type> <id>115</id> <name>Traceback_Loop_end</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>114</item> </node_objs> </item> <item class_id_reference="18" object_id="_160"> <Obj> <type>3</type> <id>122</id> <name>.loopexit</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>6</count> <item_version>0</item_version> <item>116</item> <item>117</item> <item>118</item> <item>119</item> <item>120</item> <item>121</item> </node_objs> </item> <item class_id_reference="18" object_id="_161"> <Obj> <type>3</type> <id>129</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>6</count> <item_version>0</item_version> <item>123</item> <item>124</item> <item>125</item> <item>126</item> <item>127</item> <item>128</item> </node_objs> </item> <item class_id_reference="18" object_id="_162"> <Obj> <type>3</type> <id>142</id> <name>hls_label_0</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>9</count> <item_version>0</item_version> <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>141</item> </node_objs> </item> <item class_id_reference="18" object_id="_163"> <Obj> <type>3</type> <id>144</id> <name>strrev.exit.preheader</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>143</item> </node_objs> </item> <item class_id_reference="18" object_id="_164"> <Obj> <type>3</type> <id>151</id> <name>strrev.exit</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>6</count> <item_version>0</item_version> <item>145</item> <item>146</item> <item>147</item> <item>148</item> <item>149</item> <item>150</item> </node_objs> </item> <item class_id_reference="18" object_id="_165"> <Obj> <type>3</type> <id>164</id> <name>hls_label_01</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>9</count> <item_version>0</item_version> <item>154</item> <item>155</item> <item>156</item> <item>157</item> <item>158</item> <item>159</item> <item>160</item> <item>161</item> <item>163</item> </node_objs> </item> <item class_id_reference="18" object_id="_166"> <Obj> <type>3</type> <id>166</id> <name>strrev.exit14</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>165</item> </node_objs> </item> </blocks> <edges class_id="19" tracking_level="0" version="0"> <count>298</count> <item_version>0</item_version> <item class_id="20" tracking_level="1" version="0" object_id="_167"> <id>168</id> <edge_type>1</edge_type> <source_obj>167</source_obj> <sink_obj>8</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_168"> <id>169</id> <edge_type>1</edge_type> <source_obj>167</source_obj> <sink_obj>9</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_169"> <id>172</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>10</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_170"> <id>174</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>11</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_171"> <id>175</id> <edge_type>1</edge_type> <source_obj>11</source_obj> <sink_obj>12</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_172"> <id>176</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>12</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_173"> <id>177</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="_174"> <id>178</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="_175"> <id>179</id> <edge_type>2</edge_type> <source_obj>24</source_obj> <sink_obj>14</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_176"> <id>181</id> <edge_type>1</edge_type> <source_obj>180</source_obj> <sink_obj>16</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_177"> <id>182</id> <edge_type>2</edge_type> <source_obj>15</source_obj> <sink_obj>16</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_178"> <id>183</id> <edge_type>1</edge_type> <source_obj>22</source_obj> <sink_obj>16</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_179"> <id>184</id> <edge_type>2</edge_type> <source_obj>115</source_obj> <sink_obj>16</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_180"> <id>185</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="_181"> <id>186</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>18</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_182"> <id>187</id> <edge_type>1</edge_type> <source_obj>18</source_obj> <sink_obj>19</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_183"> <id>188</id> <edge_type>1</edge_type> <source_obj>180</source_obj> <sink_obj>19</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_184"> <id>189</id> <edge_type>1</edge_type> <source_obj>17</source_obj> <sink_obj>20</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_185"> <id>190</id> <edge_type>1</edge_type> <source_obj>180</source_obj> <sink_obj>20</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_186"> <id>191</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>21</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_187"> <id>192</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>21</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_188"> <id>193</id> <edge_type>1</edge_type> <source_obj>16</source_obj> <sink_obj>22</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_189"> <id>194</id> <edge_type>1</edge_type> <source_obj>167</source_obj> <sink_obj>22</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_190"> <id>195</id> <edge_type>1</edge_type> <source_obj>21</source_obj> <sink_obj>23</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_191"> <id>196</id> <edge_type>2</edge_type> <source_obj>122</source_obj> <sink_obj>23</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_192"> <id>197</id> <edge_type>2</edge_type> <source_obj>37</source_obj> <sink_obj>23</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_193"> <id>198</id> <edge_type>1</edge_type> <source_obj>17</source_obj> <sink_obj>28</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_194"> <id>199</id> <edge_type>1</edge_type> <source_obj>18</source_obj> <sink_obj>29</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_195"> <id>201</id> <edge_type>1</edge_type> <source_obj>200</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_196"> <id>202</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="_197"> <id>203</id> <edge_type>1</edge_type> <source_obj>30</source_obj> <sink_obj>31</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_198"> <id>204</id> <edge_type>1</edge_type> <source_obj>28</source_obj> <sink_obj>31</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_199"> <id>205</id> <edge_type>1</edge_type> <source_obj>31</source_obj> <sink_obj>32</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_200"> <id>206</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_201"> <id>208</id> <edge_type>1</edge_type> <source_obj>207</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_202"> <id>209</id> <edge_type>1</edge_type> <source_obj>32</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_203"> <id>210</id> <edge_type>1</edge_type> <source_obj>33</source_obj> <sink_obj>34</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_204"> <id>211</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="_205"> <id>212</id> <edge_type>1</edge_type> <source_obj>180</source_obj> <sink_obj>35</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_206"> <id>213</id> <edge_type>1</edge_type> <source_obj>35</source_obj> <sink_obj>36</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_207"> <id>214</id> <edge_type>2</edge_type> <source_obj>70</source_obj> <sink_obj>36</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_208"> <id>215</id> <edge_type>2</edge_type> <source_obj>122</source_obj> <sink_obj>36</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_209"> <id>217</id> <edge_type>1</edge_type> <source_obj>216</source_obj> <sink_obj>38</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_210"> <id>218</id> <edge_type>1</edge_type> <source_obj>17</source_obj> <sink_obj>38</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_211"> <id>219</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="_212"> <id>220</id> <edge_type>1</edge_type> <source_obj>38</source_obj> <sink_obj>40</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_213"> <id>221</id> <edge_type>1</edge_type> <source_obj>30</source_obj> <sink_obj>41</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_214"> <id>222</id> <edge_type>1</edge_type> <source_obj>40</source_obj> <sink_obj>41</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_215"> <id>223</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="_216"> <id>224</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>43</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_217"> <id>225</id> <edge_type>1</edge_type> <source_obj>207</source_obj> <sink_obj>43</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_218"> <id>226</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="_219"> <id>227</id> <edge_type>1</edge_type> <source_obj>216</source_obj> <sink_obj>44</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_220"> <id>228</id> <edge_type>1</edge_type> <source_obj>18</source_obj> <sink_obj>44</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_221"> <id>229</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="_222"> <id>230</id> <edge_type>1</edge_type> <source_obj>44</source_obj> <sink_obj>46</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_223"> <id>231</id> <edge_type>1</edge_type> <source_obj>200</source_obj> <sink_obj>47</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_224"> <id>232</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="_225"> <id>233</id> <edge_type>1</edge_type> <source_obj>47</source_obj> <sink_obj>48</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_226"> <id>234</id> <edge_type>1</edge_type> <source_obj>40</source_obj> <sink_obj>48</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_227"> <id>235</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="_228"> <id>236</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>50</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_229"> <id>237</id> <edge_type>1</edge_type> <source_obj>207</source_obj> <sink_obj>50</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_230"> <id>238</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="_231"> <id>239</id> <edge_type>1</edge_type> <source_obj>47</source_obj> <sink_obj>51</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_232"> <id>240</id> <edge_type>1</edge_type> <source_obj>28</source_obj> <sink_obj>51</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_233"> <id>241</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="_234"> <id>242</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>53</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_235"> <id>243</id> <edge_type>1</edge_type> <source_obj>207</source_obj> <sink_obj>53</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_236"> <id>244</id> <edge_type>1</edge_type> <source_obj>52</source_obj> <sink_obj>53</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_237"> <id>245</id> <edge_type>1</edge_type> <source_obj>50</source_obj> <sink_obj>54</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_238"> <id>246</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>55</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_239"> <id>247</id> <edge_type>1</edge_type> <source_obj>207</source_obj> <sink_obj>55</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_240"> <id>248</id> <edge_type>1</edge_type> <source_obj>45</source_obj> <sink_obj>55</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_241"> <id>249</id> <edge_type>1</edge_type> <source_obj>55</source_obj> <sink_obj>56</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_242"> <id>250</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>57</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_243"> <id>251</id> <edge_type>1</edge_type> <source_obj>207</source_obj> <sink_obj>57</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_244"> <id>252</id> <edge_type>1</edge_type> <source_obj>39</source_obj> <sink_obj>57</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_245"> <id>253</id> <edge_type>1</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="_246"> <id>254</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="_247"> <id>255</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="_248"> <id>256</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="_249"> <id>258</id> <edge_type>1</edge_type> <source_obj>257</source_obj> <sink_obj>60</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_250"> <id>260</id> <edge_type>1</edge_type> <source_obj>259</source_obj> <sink_obj>60</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_251"> <id>261</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="_252"> <id>262</id> <edge_type>1</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="_253"> <id>263</id> <edge_type>1</edge_type> <source_obj>43</source_obj> <sink_obj>62</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_254"> <id>265</id> <edge_type>1</edge_type> <source_obj>264</source_obj> <sink_obj>63</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_255"> <id>266</id> <edge_type>1</edge_type> <source_obj>62</source_obj> <sink_obj>63</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_256"> <id>267</id> <edge_type>1</edge_type> <source_obj>53</source_obj> <sink_obj>64</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_257"> <id>268</id> <edge_type>1</edge_type> <source_obj>264</source_obj> <sink_obj>65</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_258"> <id>269</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="_259"> <id>270</id> <edge_type>1</edge_type> <source_obj>54</source_obj> <sink_obj>66</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_260"> <id>271</id> <edge_type>1</edge_type> <source_obj>180</source_obj> <sink_obj>66</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_261"> <id>272</id> <edge_type>1</edge_type> <source_obj>61</source_obj> <sink_obj>67</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_262"> <id>273</id> <edge_type>1</edge_type> <source_obj>34</source_obj> <sink_obj>67</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_263"> <id>274</id> <edge_type>1</edge_type> <source_obj>66</source_obj> <sink_obj>68</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_264"> <id>275</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="_265"> <id>276</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="_266"> <id>277</id> <edge_type>2</edge_type> <source_obj>75</source_obj> <sink_obj>69</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_267"> <id>278</id> <edge_type>2</edge_type> <source_obj>112</source_obj> <sink_obj>69</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_268"> <id>279</id> <edge_type>1</edge_type> <source_obj>16</source_obj> <sink_obj>104</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_269"> <id>280</id> <edge_type>1</edge_type> <source_obj>6</source_obj> <sink_obj>105</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_270"> <id>281</id> <edge_type>1</edge_type> <source_obj>207</source_obj> <sink_obj>105</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_271"> <id>282</id> <edge_type>1</edge_type> <source_obj>104</source_obj> <sink_obj>105</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_272"> <id>283</id> <edge_type>1</edge_type> <source_obj>56</source_obj> <sink_obj>106</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_273"> <id>284</id> <edge_type>1</edge_type> <source_obj>105</source_obj> <sink_obj>106</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_274"> <id>285</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>107</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_275"> <id>286</id> <edge_type>1</edge_type> <source_obj>207</source_obj> <sink_obj>107</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_276"> <id>287</id> <edge_type>1</edge_type> <source_obj>104</source_obj> <sink_obj>107</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_277"> <id>288</id> <edge_type>1</edge_type> <source_obj>58</source_obj> <sink_obj>108</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_278"> <id>289</id> <edge_type>1</edge_type> <source_obj>107</source_obj> <sink_obj>108</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_279"> <id>290</id> <edge_type>1</edge_type> <source_obj>44</source_obj> <sink_obj>109</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_280"> <id>291</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>109</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_281"> <id>292</id> <edge_type>1</edge_type> <source_obj>38</source_obj> <sink_obj>110</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_282"> <id>293</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>110</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_283"> <id>294</id> <edge_type>2</edge_type> <source_obj>115</source_obj> <sink_obj>111</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_284"> <id>295</id> <edge_type>1</edge_type> <source_obj>64</source_obj> <sink_obj>71</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_285"> <id>296</id> <edge_type>1</edge_type> <source_obj>180</source_obj> <sink_obj>71</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_286"> <id>297</id> <edge_type>1</edge_type> <source_obj>65</source_obj> <sink_obj>72</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_287"> <id>298</id> <edge_type>1</edge_type> <source_obj>34</source_obj> <sink_obj>72</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_288"> <id>299</id> <edge_type>1</edge_type> <source_obj>71</source_obj> <sink_obj>73</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_289"> <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="_290"> <id>301</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="_291"> <id>302</id> <edge_type>2</edge_type> <source_obj>82</source_obj> <sink_obj>74</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_292"> <id>303</id> <edge_type>2</edge_type> <source_obj>103</source_obj> <sink_obj>74</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_293"> <id>304</id> <edge_type>1</edge_type> <source_obj>16</source_obj> <sink_obj>96</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_294"> <id>305</id> <edge_type>1</edge_type> <source_obj>6</source_obj> <sink_obj>97</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_295"> <id>306</id> <edge_type>1</edge_type> <source_obj>207</source_obj> <sink_obj>97</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_296"> <id>307</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="_297"> <id>308</id> <edge_type>1</edge_type> <source_obj>56</source_obj> <sink_obj>98</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_298"> <id>309</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="_299"> <id>310</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>99</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_300"> <id>311</id> <edge_type>1</edge_type> <source_obj>207</source_obj> <sink_obj>99</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_301"> <id>312</id> <edge_type>1</edge_type> <source_obj>96</source_obj> <sink_obj>99</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_302"> <id>314</id> <edge_type>1</edge_type> <source_obj>313</source_obj> <sink_obj>100</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_303"> <id>315</id> <edge_type>1</edge_type> <source_obj>99</source_obj> <sink_obj>100</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_304"> <id>316</id> <edge_type>1</edge_type> <source_obj>44</source_obj> <sink_obj>101</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_305"> <id>317</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>101</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_306"> <id>318</id> <edge_type>2</edge_type> <source_obj>115</source_obj> <sink_obj>102</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_307"> <id>319</id> <edge_type>1</edge_type> <source_obj>62</source_obj> <sink_obj>76</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_308"> <id>320</id> <edge_type>1</edge_type> <source_obj>180</source_obj> <sink_obj>76</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_309"> <id>321</id> <edge_type>1</edge_type> <source_obj>63</source_obj> <sink_obj>77</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_310"> <id>322</id> <edge_type>1</edge_type> <source_obj>34</source_obj> <sink_obj>77</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_311"> <id>323</id> <edge_type>1</edge_type> <source_obj>76</source_obj> <sink_obj>78</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_312"> <id>324</id> <edge_type>1</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="_313"> <id>325</id> <edge_type>1</edge_type> <source_obj>16</source_obj> <sink_obj>79</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_314"> <id>326</id> <edge_type>1</edge_type> <source_obj>6</source_obj> <sink_obj>80</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_315"> <id>327</id> <edge_type>1</edge_type> <source_obj>207</source_obj> <sink_obj>80</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_316"> <id>328</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="_317"> <id>329</id> <edge_type>1</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="_318"> <id>330</id> <edge_type>2</edge_type> <source_obj>89</source_obj> <sink_obj>81</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_319"> <id>331</id> <edge_type>2</edge_type> <source_obj>95</source_obj> <sink_obj>81</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_320"> <id>332</id> <edge_type>1</edge_type> <source_obj>313</source_obj> <sink_obj>90</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_321"> <id>333</id> <edge_type>1</edge_type> <source_obj>80</source_obj> <sink_obj>90</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_322"> <id>334</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>91</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_323"> <id>335</id> <edge_type>1</edge_type> <source_obj>207</source_obj> <sink_obj>91</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_324"> <id>336</id> <edge_type>1</edge_type> <source_obj>79</source_obj> <sink_obj>91</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_325"> <id>337</id> <edge_type>1</edge_type> <source_obj>58</source_obj> <sink_obj>92</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_326"> <id>338</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="_327"> <id>339</id> <edge_type>1</edge_type> <source_obj>38</source_obj> <sink_obj>93</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_328"> <id>340</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>93</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_329"> <id>341</id> <edge_type>2</edge_type> <source_obj>115</source_obj> <sink_obj>94</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_330"> <id>342</id> <edge_type>1</edge_type> <source_obj>56</source_obj> <sink_obj>83</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_331"> <id>343</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="_332"> <id>344</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>84</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_333"> <id>345</id> <edge_type>1</edge_type> <source_obj>207</source_obj> <sink_obj>84</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_334"> <id>346</id> <edge_type>1</edge_type> <source_obj>79</source_obj> <sink_obj>84</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_335"> <id>347</id> <edge_type>1</edge_type> <source_obj>58</source_obj> <sink_obj>85</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_336"> <id>348</id> <edge_type>1</edge_type> <source_obj>84</source_obj> <sink_obj>85</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_337"> <id>349</id> <edge_type>1</edge_type> <source_obj>44</source_obj> <sink_obj>86</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_338"> <id>350</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>86</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_339"> <id>351</id> <edge_type>1</edge_type> <source_obj>38</source_obj> <sink_obj>87</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_340"> <id>352</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>87</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_341"> <id>353</id> <edge_type>2</edge_type> <source_obj>115</source_obj> <sink_obj>88</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_342"> <id>354</id> <edge_type>2</edge_type> <source_obj>24</source_obj> <sink_obj>114</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_343"> <id>355</id> <edge_type>1</edge_type> <source_obj>16</source_obj> <sink_obj>116</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_344"> <id>356</id> <edge_type>1</edge_type> <source_obj>6</source_obj> <sink_obj>117</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_345"> <id>357</id> <edge_type>1</edge_type> <source_obj>207</source_obj> <sink_obj>117</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_346"> <id>358</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="_347"> <id>360</id> <edge_type>1</edge_type> <source_obj>359</source_obj> <sink_obj>118</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_348"> <id>361</id> <edge_type>1</edge_type> <source_obj>117</source_obj> <sink_obj>118</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_349"> <id>362</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>119</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_350"> <id>363</id> <edge_type>1</edge_type> <source_obj>207</source_obj> <sink_obj>119</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_351"> <id>364</id> <edge_type>1</edge_type> <source_obj>116</source_obj> <sink_obj>119</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_352"> <id>365</id> <edge_type>1</edge_type> <source_obj>359</source_obj> <sink_obj>120</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_353"> <id>366</id> <edge_type>1</edge_type> <source_obj>119</source_obj> <sink_obj>120</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_354"> <id>367</id> <edge_type>2</edge_type> <source_obj>129</source_obj> <sink_obj>121</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_355"> <id>368</id> <edge_type>1</edge_type> <source_obj>180</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_356"> <id>369</id> <edge_type>2</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="_357"> <id>370</id> <edge_type>1</edge_type> <source_obj>127</source_obj> <sink_obj>123</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_358"> <id>371</id> <edge_type>2</edge_type> <source_obj>142</source_obj> <sink_obj>123</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_359"> <id>372</id> <edge_type>1</edge_type> <source_obj>16</source_obj> <sink_obj>124</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_360"> <id>373</id> <edge_type>2</edge_type> <source_obj>122</source_obj> <sink_obj>124</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_361"> <id>374</id> <edge_type>1</edge_type> <source_obj>125</source_obj> <sink_obj>124</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_362"> <id>375</id> <edge_type>2</edge_type> <source_obj>142</source_obj> <sink_obj>124</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_363"> <id>376</id> <edge_type>1</edge_type> <source_obj>124</source_obj> <sink_obj>125</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_364"> <id>377</id> <edge_type>1</edge_type> <source_obj>216</source_obj> <sink_obj>125</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_365"> <id>378</id> <edge_type>1</edge_type> <source_obj>123</source_obj> <sink_obj>126</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_366"> <id>379</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="_367"> <id>380</id> <edge_type>1</edge_type> <source_obj>123</source_obj> <sink_obj>127</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_368"> <id>381</id> <edge_type>1</edge_type> <source_obj>167</source_obj> <sink_obj>127</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_369"> <id>382</id> <edge_type>1</edge_type> <source_obj>126</source_obj> <sink_obj>128</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_370"> <id>383</id> <edge_type>2</edge_type> <source_obj>144</source_obj> <sink_obj>128</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_371"> <id>384</id> <edge_type>2</edge_type> <source_obj>142</source_obj> <sink_obj>128</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_372"> <id>385</id> <edge_type>2</edge_type> <source_obj>151</source_obj> <sink_obj>143</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_373"> <id>386</id> <edge_type>1</edge_type> <source_obj>123</source_obj> <sink_obj>132</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_374"> <id>387</id> <edge_type>1</edge_type> <source_obj>6</source_obj> <sink_obj>133</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_375"> <id>388</id> <edge_type>1</edge_type> <source_obj>207</source_obj> <sink_obj>133</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_376"> <id>389</id> <edge_type>1</edge_type> <source_obj>132</source_obj> <sink_obj>133</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_377"> <id>390</id> <edge_type>1</edge_type> <source_obj>133</source_obj> <sink_obj>134</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_378"> <id>391</id> <edge_type>1</edge_type> <source_obj>125</source_obj> <sink_obj>135</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_379"> <id>392</id> <edge_type>1</edge_type> <source_obj>6</source_obj> <sink_obj>136</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_380"> <id>393</id> <edge_type>1</edge_type> <source_obj>207</source_obj> <sink_obj>136</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_381"> <id>394</id> <edge_type>1</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="_382"> <id>395</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="_383"> <id>396</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="_384"> <id>397</id> <edge_type>1</edge_type> <source_obj>133</source_obj> <sink_obj>138</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_385"> <id>398</id> <edge_type>1</edge_type> <source_obj>134</source_obj> <sink_obj>139</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_386"> <id>399</id> <edge_type>1</edge_type> <source_obj>136</source_obj> <sink_obj>139</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_387"> <id>400</id> <edge_type>2</edge_type> <source_obj>129</source_obj> <sink_obj>141</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_388"> <id>401</id> <edge_type>1</edge_type> <source_obj>149</source_obj> <sink_obj>145</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_389"> <id>402</id> <edge_type>2</edge_type> <source_obj>164</source_obj> <sink_obj>145</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_390"> <id>403</id> <edge_type>1</edge_type> <source_obj>180</source_obj> <sink_obj>145</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_391"> <id>404</id> <edge_type>2</edge_type> <source_obj>144</source_obj> <sink_obj>145</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_392"> <id>405</id> <edge_type>1</edge_type> <source_obj>147</source_obj> <sink_obj>146</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_393"> <id>406</id> <edge_type>2</edge_type> <source_obj>164</source_obj> <sink_obj>146</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_394"> <id>407</id> <edge_type>1</edge_type> <source_obj>16</source_obj> <sink_obj>146</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_395"> <id>408</id> <edge_type>2</edge_type> <source_obj>144</source_obj> <sink_obj>146</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_396"> <id>409</id> <edge_type>1</edge_type> <source_obj>146</source_obj> <sink_obj>147</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_397"> <id>410</id> <edge_type>1</edge_type> <source_obj>216</source_obj> <sink_obj>147</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_398"> <id>411</id> <edge_type>1</edge_type> <source_obj>145</source_obj> <sink_obj>148</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_399"> <id>412</id> <edge_type>1</edge_type> <source_obj>147</source_obj> <sink_obj>148</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_400"> <id>413</id> <edge_type>1</edge_type> <source_obj>145</source_obj> <sink_obj>149</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_401"> <id>414</id> <edge_type>1</edge_type> <source_obj>167</source_obj> <sink_obj>149</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_402"> <id>415</id> <edge_type>1</edge_type> <source_obj>148</source_obj> <sink_obj>150</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_403"> <id>416</id> <edge_type>2</edge_type> <source_obj>166</source_obj> <sink_obj>150</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_404"> <id>417</id> <edge_type>2</edge_type> <source_obj>164</source_obj> <sink_obj>150</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_405"> <id>418</id> <edge_type>1</edge_type> <source_obj>145</source_obj> <sink_obj>154</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_406"> <id>419</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>155</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_407"> <id>420</id> <edge_type>1</edge_type> <source_obj>207</source_obj> <sink_obj>155</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_408"> <id>421</id> <edge_type>1</edge_type> <source_obj>154</source_obj> <sink_obj>155</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_409"> <id>422</id> <edge_type>1</edge_type> <source_obj>155</source_obj> <sink_obj>156</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_410"> <id>423</id> <edge_type>1</edge_type> <source_obj>147</source_obj> <sink_obj>157</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_411"> <id>424</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>158</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_412"> <id>425</id> <edge_type>1</edge_type> <source_obj>207</source_obj> <sink_obj>158</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_413"> <id>426</id> <edge_type>1</edge_type> <source_obj>157</source_obj> <sink_obj>158</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_414"> <id>427</id> <edge_type>1</edge_type> <source_obj>158</source_obj> <sink_obj>159</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_415"> <id>428</id> <edge_type>1</edge_type> <source_obj>159</source_obj> <sink_obj>160</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_416"> <id>429</id> <edge_type>1</edge_type> <source_obj>155</source_obj> <sink_obj>160</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_417"> <id>430</id> <edge_type>1</edge_type> <source_obj>156</source_obj> <sink_obj>161</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_418"> <id>431</id> <edge_type>1</edge_type> <source_obj>158</source_obj> <sink_obj>161</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_419"> <id>432</id> <edge_type>2</edge_type> <source_obj>151</source_obj> <sink_obj>163</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_420"> <id>433</id> <edge_type>1</edge_type> <source_obj>16</source_obj> <sink_obj>165</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_421"> <id>478</id> <edge_type>2</edge_type> <source_obj>15</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_422"> <id>479</id> <edge_type>2</edge_type> <source_obj>24</source_obj> <sink_obj>37</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_423"> <id>480</id> <edge_type>2</edge_type> <source_obj>24</source_obj> <sink_obj>122</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_424"> <id>481</id> <edge_type>2</edge_type> <source_obj>37</source_obj> <sink_obj>122</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_425"> <id>482</id> <edge_type>2</edge_type> <source_obj>37</source_obj> <sink_obj>70</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_426"> <id>483</id> <edge_type>2</edge_type> <source_obj>70</source_obj> <sink_obj>112</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_427"> <id>484</id> <edge_type>2</edge_type> <source_obj>70</source_obj> <sink_obj>75</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_428"> <id>485</id> <edge_type>2</edge_type> <source_obj>75</source_obj> <sink_obj>103</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_429"> <id>486</id> <edge_type>2</edge_type> <source_obj>75</source_obj> <sink_obj>82</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_430"> <id>487</id> <edge_type>2</edge_type> <source_obj>82</source_obj> <sink_obj>95</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_431"> <id>488</id> <edge_type>2</edge_type> <source_obj>82</source_obj> <sink_obj>89</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_432"> <id>489</id> <edge_type>2</edge_type> <source_obj>89</source_obj> <sink_obj>115</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_433"> <id>490</id> <edge_type>2</edge_type> <source_obj>95</source_obj> <sink_obj>115</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_434"> <id>491</id> <edge_type>2</edge_type> <source_obj>103</source_obj> <sink_obj>115</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_435"> <id>492</id> <edge_type>2</edge_type> <source_obj>112</source_obj> <sink_obj>115</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_436"> <id>493</id> <edge_type>2</edge_type> <source_obj>115</source_obj> <sink_obj>24</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_437"> <id>494</id> <edge_type>2</edge_type> <source_obj>122</source_obj> <sink_obj>129</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_438"> <id>495</id> <edge_type>2</edge_type> <source_obj>129</source_obj> <sink_obj>142</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_439"> <id>496</id> <edge_type>2</edge_type> <source_obj>129</source_obj> <sink_obj>144</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_440"> <id>497</id> <edge_type>2</edge_type> <source_obj>142</source_obj> <sink_obj>129</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_441"> <id>498</id> <edge_type>2</edge_type> <source_obj>144</source_obj> <sink_obj>151</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_442"> <id>499</id> <edge_type>2</edge_type> <source_obj>151</source_obj> <sink_obj>164</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_443"> <id>500</id> <edge_type>2</edge_type> <source_obj>151</source_obj> <sink_obj>166</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_444"> <id>501</id> <edge_type>2</edge_type> <source_obj>164</source_obj> <sink_obj>151</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_445"> <id>502</id> <edge_type>4</edge_type> <source_obj>138</source_obj> <sink_obj>139</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_446"> <id>503</id> <edge_type>4</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="_447"> <id>504</id> <edge_type>4</edge_type> <source_obj>134</source_obj> <sink_obj>138</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_448"> <id>505</id> <edge_type>4</edge_type> <source_obj>160</source_obj> <sink_obj>161</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_449"> <id>506</id> <edge_type>4</edge_type> <source_obj>159</source_obj> <sink_obj>160</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_450"> <id>507</id> <edge_type>4</edge_type> <source_obj>156</source_obj> <sink_obj>160</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_451"> <id>508</id> <edge_type>4</edge_type> <source_obj>12</source_obj> <sink_obj>18</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_452"> <id>509</id> <edge_type>4</edge_type> <source_obj>13</source_obj> <sink_obj>17</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_453"> <id>510</id> <edge_type>4</edge_type> <source_obj>12</source_obj> <sink_obj>109</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_454"> <id>511</id> <edge_type>4</edge_type> <source_obj>13</source_obj> <sink_obj>110</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_455"> <id>512</id> <edge_type>4</edge_type> <source_obj>12</source_obj> <sink_obj>101</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_456"> <id>513</id> <edge_type>4</edge_type> <source_obj>13</source_obj> <sink_obj>93</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_457"> <id>514</id> <edge_type>4</edge_type> <source_obj>12</source_obj> <sink_obj>86</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_458"> <id>515</id> <edge_type>4</edge_type> <source_obj>13</source_obj> <sink_obj>87</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_459"> <id>516</id> <edge_type>4</edge_type> <source_obj>17</source_obj> <sink_obj>110</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_460"> <id>517</id> <edge_type>4</edge_type> <source_obj>18</source_obj> <sink_obj>109</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_461"> <id>518</id> <edge_type>4</edge_type> <source_obj>18</source_obj> <sink_obj>101</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_462"> <id>519</id> <edge_type>4</edge_type> <source_obj>17</source_obj> <sink_obj>93</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_463"> <id>520</id> <edge_type>4</edge_type> <source_obj>17</source_obj> <sink_obj>87</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_464"> <id>521</id> <edge_type>4</edge_type> <source_obj>18</source_obj> <sink_obj>86</sink_obj> <is_back_edge>0</is_back_edge> </item> </edges> </cdfg> <cdfg_regions class_id="21" tracking_level="0" version="0"> <count>8</count> <item_version>0</item_version> <item class_id="22" tracking_level="1" version="0" object_id="_465"> <mId>1</mId> <mTag>traceback</mTag> <mType>0</mType> <sub_regions> <count>7</count> <item_version>0</item_version> <item>2</item> <item>3</item> <item>4</item> <item>5</item> <item>6</item> <item>7</item> <item>8</item> </sub_regions> <basic_blocks> <count>0</count> <item_version>0</item_version> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>1103</mMinLatency> <mMaxLatency>1105</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_466"> <mId>2</mId> <mTag>Entry</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>15</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>0</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_467"> <mId>3</mId> <mTag>Traceback_Loop</mTag> <mType>1</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>10</count> <item_version>0</item_version> <item>24</item> <item>37</item> <item>70</item> <item>75</item> <item>82</item> <item>89</item> <item>95</item> <item>103</item> <item>112</item> <item>115</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>200</mMinTripCount> <mMaxTripCount>200</mMaxTripCount> <mMinLatency>800</mMinLatency> <mMaxLatency>801</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_468"> <mId>4</mId> <mTag>Region 1</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>122</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>0</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_469"> <mId>5</mId> <mTag>Loop 2</mTag> <mType>1</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>129</item> <item>142</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>50</mMinTripCount> <mMaxTripCount>50</mMaxTripCount> <mMinLatency>150</mMinLatency> <mMaxLatency>150</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_470"> <mId>6</mId> <mTag>Region 2</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>144</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>0</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_471"> <mId>7</mId> <mTag>Loop 3</mTag> <mType>1</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>151</item> <item>164</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>50</mMinTripCount> <mMaxTripCount>50</mMaxTripCount> <mMinLatency>150</mMinLatency> <mMaxLatency>150</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_472"> <mId>8</mId> <mTag>Return</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>166</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>0</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> </cdfg_regions> <fsm class_id="-1"></fsm> <res class_id="-1"></res> <node_label_latency class_id="26" tracking_level="0" version="0"> <count>131</count> <item_version>0</item_version> <item class_id="27" tracking_level="0" version="0"> <first>8</first> <second class_id="28" tracking_level="0" version="0"> <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>0</second> </second> </item> <item> <first>14</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>16</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>17</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>18</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>19</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>20</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>21</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>22</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>23</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>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>0</second> </second> </item> <item> <first>31</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>32</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>33</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>34</first> <second> <first>1</first> <second>1</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>38</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>39</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>40</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>41</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>42</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>43</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>44</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>45</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>46</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>47</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>48</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>49</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>50</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>51</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>52</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>53</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>54</first> <second> <first>2</first> <second>1</second> </second> </item> <item> <first>55</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>56</first> <second> <first>2</first> <second>1</second> </second> </item> <item> <first>57</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>58</first> <second> <first>2</first> <second>1</second> </second> </item> <item> <first>59</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>60</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>61</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>62</first> <second> <first>3</first> <second>1</second> </second> </item> <item> <first>63</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>64</first> <second> <first>3</first> <second>1</second> </second> </item> <item> <first>65</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>66</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>67</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>68</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>69</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>71</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>72</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>73</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>74</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>76</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>77</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>78</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>79</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>80</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>81</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>83</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>84</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>85</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>86</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>87</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>88</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>90</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>91</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>92</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>93</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>94</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>96</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>97</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>98</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>99</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>100</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>101</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>102</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>104</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>105</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>106</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>107</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>108</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>109</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>110</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>111</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>114</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>116</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>117</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>118</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>119</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>120</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>121</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>123</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>124</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>125</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>126</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>127</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>128</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>132</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>133</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>134</first> <second> <first>6</first> <second>1</second> </second> </item> <item> <first>135</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>136</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>137</first> <second> <first>5</first> <second>1</second> </second> </item> <item> <first>138</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>139</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>141</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>143</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>145</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>146</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>147</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>148</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>149</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>150</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>154</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>155</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>156</first> <second> <first>9</first> <second>1</second> </second> </item> <item> <first>157</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>158</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>159</first> <second> <first>8</first> <second>1</second> </second> </item> <item> <first>160</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>161</first> <second> <first>10</first> <second>0</second> </second> </item> <item> <first>163</first> <second> <first>10</first> <second>0</second> </second> </item> <item> <first>165</first> <second> <first>8</first> <second>0</second> </second> </item> </node_label_latency> <bblk_ent_exit class_id="29" tracking_level="0" version="0"> <count>18</count> <item_version>0</item_version> <item class_id="30" tracking_level="0" version="0"> <first>15</first> <second class_id="31" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>24</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>37</first> <second> <first>1</first> <second>2</second> </second> </item> <item> <first>70</first> <second> <first>2</first> <second>4</second> </second> </item> <item> <first>75</first> <second> <first>4</first> <second>4</second> </second> </item> <item> <first>82</first> <second> <first>4</first> <second>4</second> </second> </item> <item> <first>89</first> <second> <first>4</first> <second>4</second> </second> </item> <item> <first>95</first> <second> <first>4</first> <second>4</second> </second> </item> <item> <first>103</first> <second> <first>4</first> <second>4</second> </second> </item> <item> <first>112</first> <second> <first>4</first> <second>4</second> </second> </item> <item> <first>115</first> <second> <first>4</first> <second>4</second> </second> </item> <item> <first>122</first> <second> <first>2</first> <second>2</second> </second> </item> <item> <first>129</first> <second> <first>3</first> <second>3</second> </second> </item> <item> <first>142</first> <second> <first>3</first> <second>5</second> </second> </item> <item> <first>144</first> <second> <first>3</first> <second>3</second> </second> </item> <item> <first>151</first> <second> <first>4</first> <second>4</second> </second> </item> <item> <first>164</first> <second> <first>4</first> <second>6</second> </second> </item> <item> <first>166</first> <second> <first>4</first> <second>4</second> </second> </item> </bblk_ent_exit> <regions class_id="32" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </regions> <dp_fu_nodes class_id="33" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_fu_nodes> <dp_fu_nodes_expression class_id="34" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_fu_nodes_expression> <dp_fu_nodes_module> <count>0</count> <item_version>0</item_version> </dp_fu_nodes_module> <dp_fu_nodes_io> <count>0</count> <item_version>0</item_version> </dp_fu_nodes_io> <return_ports> <count>0</count> <item_version>0</item_version> </return_ports> <dp_mem_port_nodes class_id="35" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_mem_port_nodes> <dp_reg_nodes> <count>0</count> <item_version>0</item_version> </dp_reg_nodes> <dp_regname_nodes> <count>0</count> <item_version>0</item_version> </dp_regname_nodes> <dp_reg_phi> <count>0</count> <item_version>0</item_version> </dp_reg_phi> <dp_regname_phi> <count>0</count> <item_version>0</item_version> </dp_regname_phi> <dp_port_io_nodes class_id="36" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_port_io_nodes> <port2core class_id="37" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </port2core> <node2core> <count>0</count> <item_version>0</item_version> </node2core> </syndb> </boost_serialization>
with PathPackage, IntrospectorPackage, ObjectPack, PositionPackage; use PathPackage, IntrospectorPackage, ObjectPack, PositionPackage; package EnvironmentPackage is DEFAULT_LENGTH : constant Integer := 8; SUCCESS : constant Integer := 0; FAILURE : constant Integer := 1; IDENTITY : constant Integer := 2; type Environment is new Object with record current : Integer; omega : IntArrayPtr := null; introspector : IntrospectorPtr; status : Integer := EnvironmentPackage.SUCCESS; subterm : ObjectPtrArrayPtr := null; --subterms must inherit from Object end record; type EnvironmentPtr is access all Environment; procedure makeEnvironment(env: in out Environment); procedure makeEnvironment(env: in out Environment; intro: IntrospectorPtr); function newEnvironment return EnvironmentPtr; function newEnvironment(intro: IntrospectorPtr) return EnvironmentPtr; function clone(env: Environment) return Environment; function equals(env1, env2 : Environment) return Boolean; function hashCode(env: Environment) return Integer; function getStatus(env: Environment) return Integer; procedure setStatus(env: in out Environment; s: Integer); function getRoot(env: Environment) return ObjectPtr; procedure setRoot(env: in out Environment; r: ObjectPtr); function getCurrentStack(env: Environment) return ObjectPtrArray; function getAncestor(env: Environment) return ObjectPtr; function getSubject(env: Environment) return ObjectPtr; procedure setSubject(env: in out Environment; root: ObjectPtr); function getIntrospector(env: Environment) return IntrospectorPtr; procedure setIntrospector(env: in out Environment; i: IntrospectorPtr); function getSubOmega(env: Environment) return Integer; function depth(env: Environment) return Integer; function getPosition(env: Environment) return Position; procedure up(env: in out Environment); procedure upLocal(env: in out Environment); procedure down(env: in out Environment; n: Integer); procedure followPath(env: in out Environment; p: Path'Class); procedure followPathLocal(env: in out Environment; p: Path'Class); procedure goToPosition(env: in out Environment; p: Position); function toString(env: Environment) return String; private procedure makeEnvironment(env: in out Environment; len: Integer ; intro: IntrospectorPtr); procedure ensureLength(env: in out Environment; minLength: Integer); procedure genericFollowPath(env: in out Environment; p: Path'Class; local: Boolean); end EnvironmentPackage;
-- Copyright (c) 2020-2021 Bartek thindil Jasicki <thindil@laeran.pl> -- -- 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 Tcl.Strings; use Tcl.Strings; with Tk.Widget; use Tk.Widget; -- ****h* Tk/Button -- FUNCTION -- Provides code for manipulate Tk widget button -- SOURCE package Tk.Button is -- **** --## rule off REDUCEABLE_SCOPE -- ****t* Button/Button.Tk_Button -- FUNCTION -- The Tk identifier of the button -- HISTORY -- 8.6.0 - Added -- SOURCE subtype Tk_Button is Tk_Widget; -- **** -- ****s* Button/Button.Button_Options -- FUNCTION -- Data structure for all available options for the Tk button -- OPTIONS -- Active_Background - Background color when button is active (mouse is -- over the button) -- Active_Foreground - Foreground color when button is active -- Anchor - The direction in which a button text or image is -- positioned. For example, NW means display in top-left -- corner of the button -- Background - Normal background color of the button -- Bitmap - The name of the bitmap to display on button -- Border_Width - The width of the button's border -- Command - The Tcl command which will be executed when the -- button was pressed -- Compound - Specifies if the button should display image and text -- in the same time. If yes (other value than NONE or EMPTY), -- then mean position of image related to the text -- Default - Specifies the state for the default ring -- Disabled_Foreground - Foreground color when the button is disabled -- Font - The Tk font which will be used to draw text on the button -- Foreground - Normal foreground color of the button -- Height - Height of the button. For images, it is in pixels, for text -- in lines -- Highlight_Background - Highlight traversal region background color for the button -- Highlight_Color - Highlight traversal rectangle color for the button -- Highlight_Thickness - The width of highlight traversal rectangle for the button -- Image - Tk image used to display on the button -- Justify - Justification of the button's text -- Over_Relief - Alternative relief for the button when the mouse cursor is -- over the button -- Pad_X - Extra space requested for the button in X-direction -- Pad_Y - Extra space requested for the button in Y-direction -- Relief - 3-D effect desired for the button -- Repeat_Delay - Amount of miliseconds before key or button begins auto-repeat -- on the button -- Repeat_Interval - Amount of miliseconds between auto-repeat -- State - The current state of the button -- Text - The text displayed on the button -- Text_Variable - The Tcl variable which value will be used as the text on the -- button -- Underline - The index of the character in the button text which will be -- underlined. The index starts from 0 -- Width - Width of the button. For images, it is in pixels, for text in -- characters -- Wrap_Length - The maximum length of the text on the button. If text is longer, -- will be wrapped on the next line -- HISTORY -- 8.6.0 - Added -- SOURCE type Button_Options is new Widget_Options with record Active_Background: Tcl_String := Null_Tcl_String; Active_Foreground: Tcl_String := Null_Tcl_String; Anchor: Directions_Type := NONE; Background: Tcl_String := Null_Tcl_String; Bitmap: Tcl_String := Null_Tcl_String; Border_Width: Pixel_Data := Empty_Pixel_Data; Command: Tcl_String := Null_Tcl_String; Compound: Place_Type := EMPTY; Default: State_Type := NONE; Disabled_Foreground: Tcl_String := Null_Tcl_String; Font: Tcl_String := Null_Tcl_String; Foreground: Tcl_String := Null_Tcl_String; Height: Pixel_Data := Empty_Pixel_Data; Highlight_Background: Tcl_String := Null_Tcl_String; Highlight_Color: Tcl_String := Null_Tcl_String; Highlight_Thickness: Pixel_Data := Empty_Pixel_Data; Image: Tcl_String := Null_Tcl_String; Justify: Justify_Type := NONE; Over_Relief: Relief_Type := NONE; Pad_X: Pixel_Data := Empty_Pixel_Data; Pad_Y: Pixel_Data := Empty_Pixel_Data; Relief: Relief_Type := NONE; Repeat_Delay: Extended_Natural := -1; Repeat_Interval: Extended_Natural := -1; State: State_Type := NONE; Text: Tcl_String := Null_Tcl_String; Text_Variable: Tcl_String := Null_Tcl_String; Underline: Extended_Natural := -1; Width: Pixel_Data := Empty_Pixel_Data; Wrap_Length: Pixel_Data := Empty_Pixel_Data; end record; -- **** -- ****f* Button/Button.Options_To_String -- FUNCTION -- Convert Ada structure to Tcl command -- PARAMETERS -- Options - Ada Button_Options to convert -- RESULT -- String with Tcl command options -- HISTORY -- 8.6.0 - Added -- SOURCE function Options_To_String(Options: Button_Options) return String; -- **** -- ****f* Button/Button.Create_(function) -- FUNCTION -- Create a new Tk button widget with the selected pathname and options -- PARAMETERS -- Path_Name - Tk pathname for the newly created button -- Options - Options for the newly created button -- Interpreter - Tcl interpreter on which the button will be created. Can -- be empty. Default value is the default Tcl interpreter -- RESULT -- The Tk identifier of the newly created button widget or Null_Widget if -- the button cannot be created -- HISTORY -- 8.6.0 - Added -- EXAMPLE -- -- Create the button with pathname .mybutton, text Quit and quitting from -- -- the program on activate -- My_Button: constant Tk_Button := Create(".mybutton", (Text => To_Tcl_String("Quit"), -- Command => To_Tcl_String("exit"), others => <>)); -- SEE ALSO -- Button.Create_(procedure) -- COMMANDS -- button Path_Name Options -- SOURCE function Create (Path_Name: Tk_Path_String; Options: Button_Options; Interpreter: Tcl_Interpreter := Get_Interpreter) return Tk_Button with Pre'Class => (Path_Name'Length > 0 and then Path_Name'Length + Options_To_String(Options => Options)'Length <= Long_Long_Integer(Natural'Last) - 8) and Interpreter /= Null_Interpreter, Test_Case => (Name => "Test_Create_Button1", Mode => Nominal); -- **** -- ****f* Button/Button.Create_(procedure) -- FUNCTION -- Create a new Tk button widget with the selected pathname and options -- PARAMETERS -- Button_Widget - Tk_Button identifier which will be returned -- Path_Name - Tk pathname for the newly created button -- Options - Options for the newly created button -- Interpreter - Tcl interpreter on which the button will be created. Can -- be empty. Default value is the default Tcl interpreter -- OUTPUT -- The Button_Widget parameter as Tk identifier of the newly created button -- widget or Null_Widget if the button cannot be created -- HISTORY -- 8.6.0 - Added -- EXAMPLE -- -- Create the button with pathname .mybutton, text Quit and quitting from -- -- the program on activate -- declare -- My_Button: Tk_Button; -- begin -- Create(My_Button, ".mybutton", (Text => To_Tcl_String("Quit"), -- Command => To_Tcl_String("exit"), others => <>)); -- end; -- SEE ALSO -- Button.Create_(function) -- COMMANDS -- button Path_Name Options -- SOURCE procedure Create (Button_Widget: out Tk_Button; Path_Name: Tk_Path_String; Options: Button_Options; Interpreter: Tcl_Interpreter := Get_Interpreter) with Pre'Class => Path_Name'Length > 0 and Interpreter /= Null_Interpreter, Test_Case => (Name => "Test_Create_Button2", Mode => Nominal); -- **** -- ****f* Button/Button.Get_Options -- FUNCTION -- Get all values of Tk options of the selected button -- PARAMETERS -- Button_Widget - Tk_Button which options' values will be taken -- RESULT -- Button_Options record with values of the selected button options -- HISTORY -- 8.6.0 - Added -- EXAMPLE -- -- Get all values of option of button with pathname .mybutton -- My_Button_Options: constant Button_Options := Get_Options(Get_Widget(".mybutton")); -- SEE ALSO -- Button.Configure -- COMMANDS -- Button_Widget configure -- SOURCE function Get_Options(Button_Widget: Tk_Button) return Button_Options with Pre'Class => Button_Widget /= Null_Widget, Test_Case => (Name => "Test_Get_Options_Button", Mode => Nominal); -- **** -- ****f* Button/Button.Configure -- FUNCTION -- Set the selected options for the selected button -- PARAMETERS -- Button_Widget - Tk_Button which options will be set -- Options - The record with new values for the button options -- HISTORY -- 8.6.0 - Added -- EXAMPLE -- -- Disable button with pathname .mybutton -- Configure(Get_Widget(".mybutton"), (State => DISABLED, others => <>)); -- SEE ALSO -- Button.Get_Options -- COMMANDS -- Button_Widget configure Options -- SOURCE procedure Configure(Button_Widget: Tk_Button; Options: Button_Options) with Pre'Class => Button_Widget /= Null_Widget, Test_Case => (Name => "Test_Configure_Button", Mode => Nominal); -- **** -- ****d* Button/Button.Default_Button_Options -- FUNCTION -- Default values for Button widget options -- HISTORY -- 8.6.0 - Added -- SOURCE Default_Button_Options: constant Button_Options := Button_Options'(others => <>); -- **** -- ****f* Button/Button.Flash -- FUNCTION -- Flash the button. Does nothing if button state is disabled. -- PARAMETERS -- Button_Widget - Tk_Button to flash -- HISTORY -- 8.6.0 - Added -- EXAMPLE -- -- Flash the Tk_Button My_Button -- Flash(My_Button); -- COMMANDS -- Button_Widget flash -- SOURCE procedure Flash(Button_Widget: Tk_Button) with Pre => Button_Widget /= Null_Widget, Test_Case => (Name => "Test_Flash_Button", Mode => Nominal); -- **** -- ****f* Button/Button.Invoke_(procedure) -- FUNCTION -- Invoke the Tcl command associated with the selected button. Does -- nothing if the button state is disabled. -- PARAMETERS -- Button_Widget - Tk_Button which the command will be invoked -- HISTORY -- 8.6.0 - Added -- EXAMPLE -- -- Invoke the Tcl command of the Tk_Button My_Button -- Invoke(My_Button); -- SEE ALSO -- Button.Invoke_(function_and_string_result), Button.Invoke_(function_and_integer_result), -- Button.Invoke_(function_and_float_result) -- COMMANDS -- Button_Widget invoke -- SOURCE procedure Invoke(Button_Widget: Tk_Button) with Pre => Button_Widget /= Null_Widget, Test_Case => (Name => "Test_Invoke_Button1", Mode => Nominal); -- **** -- ****f* Button/Button.Invoke_(function) -- FUNCTION -- Invoke the Tcl command associated with the selected button. Does -- nothing if the button state is disabled. -- PARAMETERS -- Button_Widget - Tk_Button which the command will be invoked -- RESULT -- The string with the return value of the associated Tcl command. -- HISTORY -- 8.6.0 - Added -- EXAMPLE -- -- Invoke the Tcl command of the Tk_Button My_Button -- Result: constant String := Invoke(My_Button); -- SEE ALSO -- Button.Invoke_(procedure), Button.Invoke_(function_and_integer_result), -- Button.Invoke_(function_and_float_result) -- COMMANDS -- Button_Widget invoke -- SOURCE function Invoke(Button_Widget: Tk_Button) return String with Pre => Button_Widget /= Null_Widget, Test_Case => (Name => "Test_Invoke_Button2", Mode => Nominal); -- **** -- ****f* Button/Button.Generic_Scalar_Invoke_Button -- FUNCTION -- Invoke the Tcl command associated with the selected button. Does -- nothing if the button state is disabled. -- PARAMETERS -- Button_Widget - Tk_Button which the command will be invoked -- RESULT -- Scalar type result with the value of associated Tcl command. -- HISTORY -- 8.6.0 - Added -- EXAMPLE -- -- Invoke the Tcl command of the Tk_Button My_Button -- function Integer_Invoke is new Generic_Scalar_Invoke_Button(Integer); -- Result: constant Integer := Integer_Invoke(My_Button); -- SEE ALSO -- Button.Invoke_(function), Button.Generic_Float_Invoke_Button, -- COMMANDS -- Button_Widget invoke -- SOURCE generic type Result_Type is (<>); function Generic_Scalar_Invoke_Button (Button_Widget: Tk_Button) return Result_Type; -- **** -- ****f* Button/Button.Generic_Float_Invoke_Button -- FUNCTION -- Invoke the Tcl command associated with the selected button. Does -- nothing if the button state is disabled. -- PARAMETERS -- Button_Widget - Tk_Button which the command will be invoked -- RESULT -- Float type result with the value of associated Tcl command. -- HISTORY -- 8.6.0 - Added -- EXAMPLE -- -- Invoke the Tcl command of the Tk_Button My_Button -- function Float_Invoke is new Generic_Float_Invoke_Button(Float); -- Result: constant Float := Float_Invoke(My_Button); -- SEE ALSO -- Button.Invoke_(function), Button.Generic_Scalar_Invoke_Button, -- COMMANDS -- Button_Widget invoke -- SOURCE generic type Result_Type is digits <>; function Generic_Float_Invoke_Button (Button_Widget: Tk_Button) return Result_Type; -- **** --## rule on REDUCEABLE_SCOPE end Tk.Button;
-- Copyright 2014-2015 Free Software Foundation, Inc. -- -- This program is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- the Free Software Foundation; either version 3 of the License, or -- (at your option) any later version. -- -- This program is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- GNU General Public License for more details. -- -- You should have received a copy of the GNU General Public License -- along with this program. If not, see <http://www.gnu.org/licenses/>. package body Pck is function Make (H, L : Natural) return Packed_Array is begin return (H .. L => False); end Make; procedure Do_Nothing (A : System.Address) is begin null; end Do_Nothing; end Pck;
with Ada.Text_IO; use Ada.Text_IO; with Ada.Calendar; use Ada.Calendar; with Ada.Command_Line; use Ada.Command_line; procedure Pi is n, i : Long_Integer; sum, x, slice, mp, rt : Long_Float; start, stop : Time; begin n:=1000000000; -- Parsing arguments is relatively painless. if Argument_Count > 0 then n:=Long_Integer'Value(Argument(1)); end if; Put_Line ("Calculating PI using:" & Long_Integer'Image(n) & " slices"); start:=Clock; sum:=0.0; slice:=1.0/Long_Float(n); -- Doing loop this way because it's not clear how to use Long_Integer in a for -- loop in Ada. i:=1; loop x:=(Long_Float(i) - 0.5)*slice; sum:=sum + (4.0/(1.0 + (x*x))); i:=i+1; exit when i>n; end loop; mp:=sum * slice; stop:=Clock; rt:=Long_Float(stop - start); Put_Line ("Obtained value of PI:" & Long_Float'Image(mp)); Put_Line ("Time taken:" & Long_Float'Image(rt) & " seconds"); end Pi;
-- CA5003B3.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. --* -- WKB 7/22/81 -- JBG 10/6/83 -- BHS 8/02/84 -- JRK 9/20/84 WITH CA5003B0; USE CA5003B0; PRAGMA ELABORATE (CA5003B0); PACKAGE CA5003B3 IS A3 : INTEGER := SHOW_ELAB ('3'); END CA5003B3;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME LIBRARY (GNARL) COMPONENTS -- -- -- -- S Y S T E M . T A S K I N G . R E S T R I C T E D . S T A G E S -- -- -- -- B o d y -- -- -- -- Copyright (C) 1999-2012, AdaCore -- -- -- -- GNARL is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. 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/>. -- -- -- -- GNARL was developed by the GNARL team at Florida State University. -- -- Extensive contributions were provided by Ada Core Technologies, Inc. -- -- -- ------------------------------------------------------------------------------ -- This is a simplified version of the System.Tasking.Stages package, for use -- with the ravenscar/HI-E profile. -- This package represents the high level tasking interface used by the -- compiler to expand Ada 95 tasking constructs into simpler run time calls. pragma Style_Checks (All_Checks); -- Turn off subprogram alpha order check, since we group soft link bodies and -- also separate off subprograms for restricted GNARLI. pragma Polling (Off); -- Turn off polling, we do not want ATC polling to take place during -- tasking operations. It causes infinite loops and other problems. with System.Task_Primitives.Operations; -- used for Enter_Task -- Wakeup -- Get_Priority -- Set_Priority -- Sleep with System.Secondary_Stack; -- used for SS_Init -- Default_Secondary_Stack_Size with System.Storage_Elements; -- used for Storage_Array package body System.Tasking.Restricted.Stages is use System.Secondary_Stack; use System.Task_Primitives.Operations; use System.Task_Info; Tasks_Activation_Chain : Task_Id; -- Chain of all the tasks to activate, when the sequential elaboration -- policy is used ----------------------- -- Local Subprograms -- ----------------------- procedure Activate_Tasks (Chain : Task_Id); -- Activate the list of tasks started by Chain procedure Create_Restricted_Task (Priority : Integer; Stack_Address : System.Address; Size : System.Parameters.Size_Type; Task_Info : System.Task_Info.Task_Info_Type; CPU : Integer; State : Task_Procedure_Access; Discriminants : System.Address; Created_Task : Task_Id); -- Code shared between Create_Restricted_Task_Concurrent and -- Create_Restricted_Task_Sequential. See comment of the former in the -- specification of this package. procedure Task_Wrapper (Self_ID : Task_Id); -- This is the procedure that is called by the GNULL from the new context -- when a task is created. It waits for activation and then calls the task -- body procedure. When the task body procedure completes, it terminates -- the task. ------------------ -- Task_Wrapper -- ------------------ -- The task wrapper is a procedure that is called first for each task -- task body, and which in turn calls the compiler-generated task body -- procedure. The wrapper's main job is to do initialization for the task. -- The variable ID in the task wrapper is used to implement the Self -- function on targets where there is a fast way to find the stack -- base of the current thread, since it should be at a fixed offset -- from the stack base. procedure Task_Wrapper (Self_ID : Task_Id) is use type System.Storage_Elements.Storage_Offset; Sec_Stack_Size : constant Storage_Elements.Storage_Offset := Self_ID.Common.Compiler_Data.Pri_Stack_Info.Size * SSE.Storage_Offset (Parameters.Sec_Stack_Percentage) / 100; Secondary_Stack : aliased Storage_Elements.Storage_Array (1 .. Sec_Stack_Size); TH : Termination_Handler := null; begin Self_ID.Common.Compiler_Data.Sec_Stack_Addr := Secondary_Stack'Address; SS_Init (Secondary_Stack'Address, Integer (Sec_Stack_Size)); -- Initialize low-level TCB components, that cannot be initialized by -- the creator. Enter_Task (Self_ID); -- Call the task body procedure Self_ID.Common.Task_Entry_Point (Self_ID.Common.Task_Arg); -- Look for a fall-back handler. There is a single task termination -- procedure for all the tasks in the partition. -- This package is part of the restricted run time which supports -- neither task hierarchies (No_Task_Hierarchy) nor specific task -- termination handlers (No_Specific_Termination_Handlers). -- Raise the priority to prevent race conditions when using -- System.Tasking.Fall_Back_Handler. Set_Priority (Self_ID, Any_Priority'Last); TH := System.Tasking.Fall_Back_Handler; -- Restore original priority after retrieving shared data Set_Priority (Self_ID, Self_ID.Common.Base_Priority); -- Execute the task termination handler if we found it if TH /= null then TH.all (Self_ID); end if; -- We used to raise a Program_Error here to signal the task termination -- event in order to avoid silent task death. It has been removed -- because the Ada.Task_Termination functionality serves the same -- purpose in a more flexible (and standard) way. In addition, this -- exception triggered a second execution of the termination handler -- (if any was installed). We simply ensure that the task does not -- execute any more. Sleep (Self_ID, Terminated); end Task_Wrapper; ----------------------- -- Restricted GNARLI -- ----------------------- ----------------------------------- -- Activate_All_Tasks_Sequential -- ----------------------------------- procedure Activate_All_Tasks_Sequential is begin pragma Assert (Partition_Elaboration_Policy = 'S'); Activate_Tasks (Tasks_Activation_Chain); Tasks_Activation_Chain := Null_Task; end Activate_All_Tasks_Sequential; ------------------------------- -- Activate_Restricted_Tasks -- ------------------------------- procedure Activate_Restricted_Tasks (Chain_Access : Activation_Chain_Access) is begin if Partition_Elaboration_Policy = 'S' then -- In sequential elaboration policy, the chain must be empty. This -- procedure can be called if the unit has been compiled without -- partition elaboration policy, but the partition has a sequential -- elaboration policy. pragma Assert (Chain_Access.T_ID = Null_Task); null; else Activate_Tasks (Chain_Access.T_ID); Chain_Access.T_ID := Null_Task; end if; end Activate_Restricted_Tasks; -------------------- -- Activate_Tasks -- -------------------- procedure Activate_Tasks (Chain : Task_Id) is Self_ID : constant Task_Id := Task_Primitives.Operations.Self; C : Task_Id; Next_C : Task_Id; Success : Boolean; begin -- Raise the priority to prevent activated tasks from racing ahead -- before we finish activating the chain. Set_Priority (Self_ID, System.Any_Priority'Last); -- Activate all the tasks in the chain -- Creation of the thread of control was deferred until activation. -- So create it now. -- Note that since all created tasks will be blocked trying to get our -- (environment task) lock, there is no need to lock C here. C := Chain; while C /= Null_Task loop Next_C := C.Common.Activation_Link; C.Common.Activation_Link := null; Task_Primitives.Operations.Create_Task (T => C, Wrapper => Task_Wrapper'Address, Stack_Size => Parameters.Size_Type (C.Common.Compiler_Data.Pri_Stack_Info.Size), Priority => C.Common.Base_Priority, Base_CPU => C.Common.Base_CPU, Succeeded => Success); if Success then C.Common.State := Runnable; else raise Program_Error; end if; C := Next_C; end loop; Self_ID.Common.State := Runnable; -- Restore the original priority Set_Priority (Self_ID, Self_ID.Common.Base_Priority); end Activate_Tasks; ------------------------------------ -- Complete_Restricted_Activation -- ------------------------------------ procedure Complete_Restricted_Activation is begin -- Nothing to be done null; end Complete_Restricted_Activation; ------------------------------ -- Complete_Restricted_Task -- ------------------------------ procedure Complete_Restricted_Task is begin -- Mark the task as terminated. Do not suspend the task now -- because we need to allow for the task termination procedure -- to execute (if needed) in the Task_Wrapper. Task_Primitives.Operations.Self.Common.State := Terminated; end Complete_Restricted_Task; ---------------------------- -- Create_Restricted_Task -- ---------------------------- procedure Create_Restricted_Task (Priority : Integer; Stack_Address : System.Address; Size : System.Parameters.Size_Type; Task_Info : System.Task_Info.Task_Info_Type; CPU : Integer; State : Task_Procedure_Access; Discriminants : System.Address; Created_Task : Task_Id) is Base_Priority : System.Any_Priority; Base_CPU : System.Multiprocessors.CPU_Range; Success : Boolean; begin Base_Priority := (if Priority = Unspecified_Priority then System.Default_Priority else System.Any_Priority (Priority)); -- Legal values of CPU are the special Unspecified_CPU value which is -- inserted by the compiler for tasks without CPU aspect, and those in -- the range of CPU_Range but no greater than Number_Of_CPUs. Otherwise -- the task is defined to have failed, and it becomes a completed task -- (RM D.16(14/3)). if CPU /= Unspecified_CPU and then (CPU < Integer (System.Multiprocessors.CPU_Range'First) or else CPU > Integer (System.Multiprocessors.CPU_Range'Last) or else CPU > Integer (System.Multiprocessors.Number_Of_CPUs)) then raise Tasking_Error with "CPU not in range"; -- Normal CPU affinity else -- When the application code says nothing about the task affinity -- (task without CPU aspect) then the compiler inserts the -- Unspecified_CPU value which indicates to the run-time library that -- the task will activate and execute on the same processor as its -- activating task if the activating task is assigned a processor -- (RM D.16(14/3)). Base_CPU := (if CPU = Unspecified_CPU then Self.Common.Base_CPU else System.Multiprocessors.CPU_Range (CPU)); end if; -- No need to lock Self_ID here, since only environment task is running Initialize_ATCB (State, Discriminants, Base_Priority, Base_CPU, Task_Info, Stack_Address, Size, Created_Task, Success); if not Success then raise Program_Error; end if; Created_Task.Entry_Call.Self := Created_Task; end Create_Restricted_Task; procedure Create_Restricted_Task (Priority : Integer; Stack_Address : System.Address; Size : System.Parameters.Size_Type; Task_Info : System.Task_Info.Task_Info_Type; CPU : Integer; State : Task_Procedure_Access; Discriminants : System.Address; Elaborated : Access_Boolean; Chain : in out Activation_Chain; Task_Image : String; Created_Task : Task_Id) is begin if Partition_Elaboration_Policy = 'S' then -- A unit may have been compiled without partition elaboration -- policy, and in this case the compiler will emit calls for the -- default policy (concurrent). But if the partition policy is -- sequential, activation must be deferred. Create_Restricted_Task_Sequential (Priority, Stack_Address, Size, Task_Info, CPU, State, Discriminants, Elaborated, Task_Image, Created_Task); else Create_Restricted_Task (Priority, Stack_Address, Size, Task_Info, CPU, State, Discriminants, Created_Task); -- Append this task to the activation chain Created_Task.Common.Activation_Link := Chain.T_ID; Chain.T_ID := Created_Task; end if; end Create_Restricted_Task; --------------------------------------- -- Create_Restricted_Task_Sequential -- --------------------------------------- procedure Create_Restricted_Task_Sequential (Priority : Integer; Stack_Address : System.Address; Size : System.Parameters.Size_Type; Task_Info : System.Task_Info.Task_Info_Type; CPU : Integer; State : Task_Procedure_Access; Discriminants : System.Address; Elaborated : Access_Boolean; Task_Image : String; Created_Task : Task_Id) is pragma Unreferenced (Task_Image, Elaborated); begin Create_Restricted_Task (Priority, Stack_Address, Size, Task_Info, CPU, State, Discriminants, Created_Task); -- Append this task to the activation chain Created_Task.Common.Activation_Link := Tasks_Activation_Chain; Tasks_Activation_Chain := Created_Task; end Create_Restricted_Task_Sequential; --------------------------- -- Finalize_Global_Tasks -- --------------------------- -- Dummy version since this procedure is not used in true ravenscar mode procedure Finalize_Global_Tasks is begin raise Program_Error; end Finalize_Global_Tasks; --------------------------- -- Restricted_Terminated -- --------------------------- function Restricted_Terminated (T : Task_Id) return Boolean is begin return T.Common.State = Terminated; end Restricted_Terminated; begin Tasking.Initialize; end System.Tasking.Restricted.Stages;
with Stack; procedure Main is N:integer:=5; begin Push(N); ... N := Pull; end Main;
package GDNative.Console is --------- -- Put -- --------- procedure Put (Item : in Wide_String); end;
-- REST API Validation -- API to validate -- -- The version of the OpenAPI document: 1.0.0 -- Contact: Stephane.Carrez@gmail.com -- -- NOTE: This package is auto generated by OpenAPI-Generator 6.0.0-SNAPSHOT. -- https://openapi-generator.tech -- Do not edit the class manually. package body TestAPI.Models is pragma Style_Checks ("-mr"); pragma Warnings (Off, "*use clause for package*"); use Swagger.Streams; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in StringsMap_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("key", Value.Key); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in StringsMap_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out StringsMap_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "key", Value.Key); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out StringsMap_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : StringsMap_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in InlineObject3_Type) is begin Into.Start_Entity (Name); Serialize (Into, "requestedQoS", Value.Requested_Qo_S); Serialize (Into, "commands", Value.Commands); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in InlineObject3_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out InlineObject3_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "requestedQoS", Value.Requested_Qo_S); Deserialize (Object, "commands", Value.Commands); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out InlineObject3_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : InlineObject3_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in Ticket_Type) is begin Into.Start_Entity (Name); Into.Write_Long_Entity ("id", Value.Id); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Into.Write_Entity ("owner", Value.Owner); Into.Write_Entity ("create_date", Value.Create_Date); Into.Write_Entity ("end_date", Value.End_Date); Into.Write_Entity ("update_date", Value.Update_Date); Into.Write_Entity ("status", Value.Status); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in Ticket_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out Ticket_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "id", Value.Id); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Swagger.Streams.Deserialize (Object, "owner", Value.Owner); Swagger.Streams.Deserialize (Object, "create_date", Value.Create_Date); Swagger.Streams.Deserialize (Object, "end_date", Value.End_Date); Swagger.Streams.Deserialize (Object, "update_date", Value.Update_Date); Swagger.Streams.Deserialize (Object, "status", Value.Status); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out Ticket_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : Ticket_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in Options_Type) is begin Into.Start_Entity (Name); Serialize (Into, "a", Value.A); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in Options_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out Options_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "a", Value.A); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out Options_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : Options_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; end TestAPI.Models;
with Ada.Environment_Variables; with Dotenv; with Print_Variable; procedure Example_2 is begin Dotenv.Config (Path => "bin/.env.interpolation", File_Form => "wcem=8", Overwrite => True, Debug => True, Interpolate => True); Ada.Environment_Variables.Iterate (Print_Variable'Access); end Example_2;
----------------------------------------------------------------------- -- util-streams-buffered-lzma-tests -- Unit tests for encoding buffered streams -- Copyright (C) 2018, 2019, 2021 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 Util.Test_Caller; with Util.Streams.Files; with Util.Streams.Texts; with Util.Streams.AES; with Util.Encoders.AES; with Ada.Streams.Stream_IO; package body Util.Streams.Buffered.Lzma.Tests is use Util.Streams.Files; use Ada.Streams.Stream_IO; procedure Test_Stream_File (T : in out Test; Item : in String; Count : in Positive; Encrypt : in Boolean; Mode : in Util.Encoders.AES.AES_Mode; Label : in String); package Caller is new Util.Test_Caller (Test, "Streams.Buffered.Lzma"); procedure Add_Tests (Suite : in Util.Tests.Access_Test_Suite) is begin Caller.Add_Test (Suite, "Test Util.Streams.Buffered.Lzma.Write", Test_Compress_Stream'Access); Caller.Add_Test (Suite, "Test Util.Streams.Buffered.Lzma.Write (2)", Test_Compress_File_Stream'Access); Caller.Add_Test (Suite, "Test Util.Streams.Buffered.Lzma.Read+Write", Test_Compress_Decompress_Stream'Access); Caller.Add_Test (Suite, "Test Util.Streams.Buffered.Lzma.Read+Write+AES-CBC", Test_Compress_Encrypt_Decompress_Decrypt_Stream'Access); end Add_Tests; procedure Test_Compress_Stream (T : in out Test) is Stream : aliased File_Stream; Buffer : aliased Util.Streams.Buffered.Lzma.Compress_Stream; Print : Util.Streams.Texts.Print_Stream; Path : constant String := Util.Tests.Get_Test_Path ("test-stream.lzma"); Expect : constant String := Util.Tests.Get_Path ("regtests/expect/test-stream.lzma"); begin Stream.Create (Mode => Out_File, Name => Path); Buffer.Initialize (Output => Stream'Unchecked_Access, Size => 1024); Print.Initialize (Output => Buffer'Unchecked_Access, Size => 5); for I in 1 .. 32 loop Print.Write ("abcd"); Print.Write (" fghij"); Print.Write (ASCII.LF); end loop; Print.Flush; Stream.Close; Util.Tests.Assert_Equal_Files (T => T, Expect => Expect, Test => Path, Message => "LZMA stream"); end Test_Compress_Stream; procedure Test_Compress_File_Stream (T : in out Test) is Stream : aliased File_Stream; In_Stream : aliased File_Stream; Buffer : aliased Util.Streams.Buffered.Lzma.Compress_Stream; Path : constant String := Util.Tests.Get_Test_Path ("test-big-stream.lzma"); Expect : constant String := Util.Tests.Get_Path ("regtests/expect/test-big-stream.lzma"); begin In_Stream.Open (Ada.Streams.Stream_IO.In_File, Util.Tests.Get_Path ("regtests/files/test-big-stream.bin")); Stream.Create (Mode => Out_File, Name => Path); Buffer.Initialize (Output => Stream'Unchecked_Access, Size => 32768); Util.Streams.Copy (From => In_Stream, Into => Buffer); Buffer.Flush; Buffer.Close; Util.Tests.Assert_Equal_Files (T => T, Expect => Expect, Test => Path, Message => "LZMA stream"); end Test_Compress_File_Stream; procedure Test_Stream_File (T : in out Test; Item : in String; Count : in Positive; Encrypt : in Boolean; Mode : in Util.Encoders.AES.AES_Mode; Label : in String) is use Ada.Strings.Unbounded; Path : constant String := Util.Tests.Get_Test_Path ("stream-lzma-aes-" & Label & ".aes"); Key : constant Util.Encoders.Secret_Key := Util.Encoders.Create ("0123456789abcdef0123456789abcdef"); File : aliased File_Stream; Decipher : aliased Util.Streams.AES.Decoding_Stream; Cipher : aliased Util.Streams.AES.Encoding_Stream; Compress : aliased Util.Streams.Buffered.Lzma.Compress_Stream; Decompress : aliased Util.Streams.Buffered.Lzma.Decompress_Stream; Print : Util.Streams.Texts.Print_Stream; Reader : Util.Streams.Texts.Reader_Stream; begin -- Print -> Compress -> Cipher -> File File.Create (Mode => Out_File, Name => Path); if Encrypt then Cipher.Produces (File'Unchecked_Access, 64); Cipher.Set_Key (Key, Mode); Compress.Initialize (Cipher'Unchecked_Access, 1024); else Compress.Initialize (File'Unchecked_Access, 1024); end if; Print.Initialize (Compress'Unchecked_Access); for I in 1 .. Count loop Print.Write (Item & ASCII.LF); end loop; Print.Close; -- File -> Decipher -> Decompress -> Reader File.Open (Mode => In_File, Name => Path); if Encrypt then Decipher.Consumes (File'Unchecked_Access, 128); Decipher.Set_Key (Key, Mode); Decompress.Initialize (Decipher'Unchecked_Access, 1024); else Decompress.Initialize (File'Unchecked_Access, 1024); end if; Reader.Initialize (From => Decompress'Unchecked_Access); declare Line_Count : Natural := 0; begin while not Reader.Is_Eof loop declare Line : Unbounded_String; begin Reader.Read_Line (Line); exit when Length (Line) = 0; if Item & ASCII.LF /= Line then Util.Tests.Assert_Equals (T, Item & ASCII.LF, To_String (Line)); end if; Line_Count := Line_Count + 1; end; end loop; File.Close; Util.Tests.Assert_Equals (T, Count, Line_Count); end; end Test_Stream_File; procedure Test_Compress_Decompress_Stream (T : in out Test) is begin Test_Stream_File (T, "abcdefgh", 1000, False, Util.Encoders.AES.CBC, "NONE"); end Test_Compress_Decompress_Stream; procedure Test_Compress_Encrypt_Decompress_Decrypt_Stream (T : in out Test) is begin Test_Stream_File (T, "abcdefgh", 1000, True, Util.Encoders.AES.CBC, "AES-CBC"); end Test_Compress_Encrypt_Decompress_Decrypt_Stream; end Util.Streams.Buffered.Lzma.Tests;
--------------------------------------------------------------------------------- -- Copyright 2004-2005 © Luke A. Guest -- -- This code is to be used for tutorial purposes only. -- You may not redistribute this code in any form without my express permission. --------------------------------------------------------------------------------- package body Line_Segment is function Create(StartPoint, EndPoint : Vector3.Object) return Object is begin return Object'(StartPoint, EndPoint); end Create; end Line_Segment;
------------------------------------------------------------------------------ -- -- -- Copyright (C) 2017, 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. -- -- -- ------------------------------------------------------------------------------ private package AGATE.Mutexes is procedure Wait_Lock (Mut : Mutex_ID); function Try_Lock (Mut : Mutex_ID) return Boolean; procedure Release (Mut : Mutex_ID); private procedure Insert_Task (Mut : in out Mutex; T : Task_Object_Access); end AGATE.Mutexes;
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Localization, Internationalization, Globalization for Ada -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2012-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$ ------------------------------------------------------------------------------ pragma Restrictions (No_Elaboration_Code); -- GNAT: enforce generation of preinitialized data section instead of -- generation of elaboration code. package Matreshka.Internals.Unicode.Ucd.Core_02B7 is pragma Preelaborate; Group_02B7 : aliased constant Core_Second_Stage := (16#35# .. 16#3F# => -- 02B735 .. 02B73F (Unassigned, Wide, Other, Other, Other, Ideographic, (others => False)), others => (Other_Letter, Wide, Other, Other, O_Letter, Ideographic, (Ideographic | Unified_Ideograph | Alphabetic | Grapheme_Base | ID_Continue | ID_Start | XID_Continue | XID_Start => True, others => False))); end Matreshka.Internals.Unicode.Ucd.Core_02B7;
----------------------------------------------------------------------- -- gen-commands-plugins -- Plugin creation and management commands for dynamo -- Copyright (C) 2012 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.Directories; with Ada.Text_IO; with Gen.Artifacts; with Gen.Model.Projects; with GNAT.Command_Line; with Util.Files; with Util.Log.Loggers; with Util.Strings.Transforms; package body Gen.Commands.Plugins is Log : constant Util.Log.Loggers.Logger := Util.Log.Loggers.Create ("Gen.Commands.Project"); -- ------------------------------ -- Generator Command -- ------------------------------ -- Execute the command with the arguments. procedure Execute (Cmd : in Command; Generator : in out Gen.Generator.Handler) is pragma Unreferenced (Cmd); use GNAT.Command_Line; Result_Dir : constant String := Generator.Get_Result_Directory; begin -- If a dynamo.xml file exists, read it. if Ada.Directories.Exists ("dynamo.xml") then Generator.Read_Project ("dynamo.xml"); else Generator.Set_Project_Property ("license", "apache"); Generator.Set_Project_Property ("author", "unknown"); Generator.Set_Project_Property ("author_email", "unknown@company.com"); end if; -- Parse the command line loop case Getopt ("l:") is when ASCII.NUL => exit; when 'l' => declare L : constant String := Util.Strings.Transforms.To_Lower_Case (Parameter); begin Log.Info ("License {0}", L); if L = "apache" then Generator.Set_Project_Property ("license", "apache"); elsif L = "gpl" then Generator.Set_Project_Property ("license", "gpl"); elsif L = "proprietary" then Generator.Set_Project_Property ("license", "proprietary"); else Generator.Error ("Invalid license: {0}", L); Generator.Error ("Valid licenses: apache, gpl, proprietary"); return; end if; end; when others => null; end case; end loop; declare Name : constant String := Get_Argument; Kind : constant String := Get_Argument; Dir : constant String := Generator.Get_Plugin_Directory; Path : constant String := Util.Files.Compose (Dir, Name); begin if Name'Length = 0 then Generator.Error ("Missing plugin name"); Gen.Commands.Usage; return; end if; if Kind /= "ada" and Kind /= "web" and Kind /= "" then Generator.Error ("Invalid plugin type (must be 'ada' or 'web')"); return; end if; if Ada.Directories.Exists (Path) then Generator.Error ("Plugin {0} exists already", Name); return; end if; if not Ada.Directories.Exists (Dir) then Ada.Directories.Create_Directory (Dir); end if; Ada.Directories.Create_Directory (Path); Generator.Set_Result_Directory (Path); -- Create the plugin project instance and generate its dynamo.xml file. -- The new plugin is added to the current project so that it will be referenced. declare procedure Create_Plugin (Project : in out Model.Projects.Root_Project_Definition); procedure Create_Plugin (Project : in out Model.Projects.Root_Project_Definition) is Plugin : Gen.Model.Projects.Project_Definition_Access; File : constant String := Util.Files.Compose (Path, "dynamo.xml"); begin Project.Create_Project (Name => Name, Path => File, Project => Plugin); Project.Add_Module (Plugin); Plugin.Props.Set ("license", Project.Props.Get ("license", "none")); Plugin.Props.Set ("author", Project.Props.Get ("author", "")); Plugin.Props.Set ("author_email", Project.Props.Get ("author_email", "")); Plugin.Save (File); end Create_Plugin; begin Generator.Update_Project (Create_Plugin'Access); end; -- Generate the new plugin content. Generator.Set_Force_Save (False); Generator.Set_Global ("pluginName", Name); Gen.Generator.Generate_All (Generator, Gen.Artifacts.ITERATION_TABLE, "create-plugin"); if Kind /= "" then Gen.Generator.Generate_All (Generator, Gen.Artifacts.ITERATION_TABLE, "create-plugin-" & Kind); end if; -- And save the project dynamo.xml file which now refers to the new plugin. Generator.Set_Result_Directory (Result_Dir); Generator.Save_Project; end; end Execute; -- ------------------------------ -- Write the help associated with the command. -- ------------------------------ procedure Help (Cmd : in Command; Generator : in out Gen.Generator.Handler) is pragma Unreferenced (Cmd, Generator); use Ada.Text_IO; begin Put_Line ("create-plugin: Create a new plugin for the current project"); Put_Line ("Usage: create-plugin NAME [ada | web]"); New_Line; Put_Line (" Creates a new AWA plugin for the application with the name passed in NAME."); Put_Line (" The plugin type is specified as the last argument which can be one of:"); New_Line; Put_Line (" ada the plugin contains Ada code and a GNAT project is created"); Put_Line (" web the plugin contains XHTML, CSS, Javascript files only"); New_Line; Put_Line (" The plugin is created in the directory:"); Put_Line (" plugins/NAME"); end Help; end Gen.Commands.Plugins;
-- This program is used to generate the constants needed in strings_maps_constants.vhdl -- Doing this allows us to eliminate using the GNAT derived LGPL code for -- ada.strings.maps.constants in that file. -- This program spits out just the constant portion of strings_maps_constants.vhdl. A -- fixed header must be appended to the top for it to be a complete package. with ada.text_io; use ada.text_io; with ada.strings.maps; use ada.strings.maps; with ada.strings.maps.constants; use ada.strings.maps.constants; procedure vhdl_gen is subtype fstring is string(1..27); type vcnames is array(character) of fstring; -- VHDL named character constants vhdl_cname : constant vcnames := ( "NUL ", "SOH ", "STX ", "ETX ", "EOT ", "ENQ ", "ACK ", "BEL ", "BS ", "HT ", "LF ", "VT ", "FF ", "CR ", "SO ", "SI ", "DLE ", "DC1 ", "DC2 ", "DC3 ", "DC4 ", "NAK ", "SYN ", "ETB ", "CAN ", "EM ", "SUB ", "ESC ", "FSP ", "GSP ", "RSP ", "USP ", "' ' ", "'!' ", "'""' ", "'#' ", "'$' ", "'%' ", "'&' ", "''' ", "'(' ", "')' ", "'*' ", "'+' ", "',' ", "'-' ", "'.' ", "'/' ", "'0' ", "'1' ", "'2' ", "'3' ", "'4' ", "'5' ", "'6' ", "'7' ", "'8' ", "'9' ", "':' ", "';' ", "'<' ", "'=' ", "'>' ", "'?' ", "'@' ", "'A' ", "'B' ", "'C' ", "'D' ", "'E' ", "'F' ", "'G' ", "'H' ", "'I' ", "'J' ", "'K' ", "'L' ", "'M' ", "'N' ", "'O' ", "'P' ", "'Q' ", "'R' ", "'S' ", "'T' ", "'U' ", "'V' ", "'W' ", "'X' ", "'Y' ", "'Z' ", "'[' ", "'\' ", "']' ", "'^' ", "'_' ", "'`' ", "'a' ", "'b' ", "'c' ", "'d' ", "'e' ", "'f' ", "'g' ", "'h' ", "'i' ", "'j' ", "'k' ", "'l' ", "'m' ", "'n' ", "'o' ", "'p' ", "'q' ", "'r' ", "'s' ", "'t' ", "'u' ", "'v' ", "'w' ", "'x' ", "'y' ", "'z' ", "'{' ", "'|' ", "'}' ", "'~' ", "DEL ", "c128 ", "c129 ", "c130 ", "c131 ", "c132 ", "c133 ", "c134 ", "c135 ", "c136 ", "c137 ", "c138 ", "c139 ", "c140 ", "c141 ", "c142 ", "c143 ", "c144 ", "c145 ", "c146 ", "c147 ", "c148 ", "c149 ", "c150 ", "c151 ", "c152 ", "c153 ", "c154 ", "c155 ", "c156 ", "c157 ", "c158 ", "c159 ", "No_Break_Space ", "Inverted_Exclamation ", "Cent_Sign ", "Pound_Sign ", "Currency_Sign ", "Yen_Sign ", "Broken_Bar ", "Section_Sign ", "Diaeresis ", "Copyright_Sign ", "Feminine_Ordinal_Indicator ", "Left_Angle_Quotation ", "Not_Sign ", "Soft_Hyphen ", "Registered_Trade_Mark_Sign ", "Macron ", "Degree_Sign ", "Plus_Minus_Sign ", "Superscript_Two ", "Superscript_Three ", "Acute ", "Micro_Sign ", "Pilcrow_Sign ", "Middle_Dot ", "Cedilla ", "Superscript_One ", "Masculine_Ordinal_Indicator", "Right_Angle_Quotation ", "Fraction_One_Quarter ", "Fraction_One_Half ", "Fraction_Three_Quarters ", "Inverted_Question ", "UC_A_Grave ", "UC_A_Acute ", "UC_A_Circumflex ", "UC_A_Tilde ", "UC_A_Diaeresis ", "UC_A_Ring ", "UC_AE_Diphthong ", "UC_C_Cedilla ", "UC_E_Grave ", "UC_E_Acute ", "UC_E_Circumflex ", "UC_E_Diaeresis ", "UC_I_Grave ", "UC_I_Acute ", "UC_I_Circumflex ", "UC_I_Diaeresis ", "UC_Icelandic_Eth ", "UC_N_Tilde ", "UC_O_Grave ", "UC_O_Acute ", "UC_O_Circumflex ", "UC_O_Tilde ", "UC_O_Diaeresis ", "Multiplication_Sign ", "UC_O_Oblique_Stroke ", "UC_U_Grave ", "UC_U_Acute ", "UC_U_Circumflex ", "UC_U_Diaeresis ", "UC_Y_Acute ", "UC_Icelandic_Thorn ", "LC_German_Sharp_S ", "LC_A_Grave ", "LC_A_Acute ", "LC_A_Circumflex ", "LC_A_Tilde ", "LC_A_Diaeresis ", "LC_A_Ring ", "LC_AE_Diphthong ", "LC_C_Cedilla ", "LC_E_Grave ", "LC_E_Acute ", "LC_E_Circumflex ", "LC_E_Diaeresis ", "LC_I_Grave ", "LC_I_Acute ", "LC_I_Circumflex ", "LC_I_Diaeresis ", "LC_Icelandic_Eth ", "LC_N_Tilde ", "LC_O_Grave ", "LC_O_Acute ", "LC_O_Circumflex ", "LC_O_Tilde ", "LC_O_Diaeresis ", "Division_Sign ", "LC_O_Oblique_Stroke ", "LC_U_Grave ", "LC_U_Acute ", "LC_U_Circumflex ", "LC_U_Diaeresis ", "LC_Y_Acute ", "LC_Icelandic_Thorn ", "LC_Y_Diaeresis " ); procedure gen_range_set(name : string; rng : character_ranges) is begin put_line(" constant " & name & " : character_set := ("); for i in rng'range loop put_line(" " & vhdl_cname(rng(i).low) & " to " & vhdl_cname(rng(i).high) & "=> true," ); end loop; put_line(" others => false"); put_line(" );"); new_line; end; procedure gen_char_map(name : string; cmap : character_mapping) is c, amp : character; begin put_line(" constant " & name & " : character_mapping := ("); amp := '&'; for i in 0..255 loop c := character'val(i); if i = 255 then amp := ' '; end if; put_line(" " & vhdl_cname(value(cmap, c)) & " " & amp & " -- " & vhdl_cname(c) & " " & integer'image(i)); end loop; put_line(" );"); new_line; end; begin put_line(" --## Constants generated by vhdl_gen.adb"); new_line; gen_range_set("CONTROL_SET", to_ranges(control_set)); gen_range_set("GRAPHIC_SET", to_ranges(graphic_set)); gen_range_set("LETTER_SET", to_ranges(letter_set)); gen_range_set("LOWER_SET", to_ranges(lower_set)); gen_range_set("UPPER_SET", to_ranges(upper_set)); gen_range_set("BASIC_SET", to_ranges(basic_set)); gen_range_set("DECIMAL_DIGIT_SET", to_ranges(decimal_digit_set)); gen_range_set("HEXADECIMAL_DIGIT_SET", to_ranges(hexadecimal_digit_set)); gen_range_set("ALPHANUMERIC_SET", to_ranges(alphanumeric_set)); gen_range_set("SPECIAL_SET", to_ranges(special_set)); gen_range_set("ISO_646_SET", to_ranges(iso_646_set)); gen_char_map("LOWER_CASE_MAP", lower_case_map); gen_char_map("UPPER_CASE_MAP", upper_case_map); gen_char_map("BASIC_MAP", basic_map); put_line("end package body;"); end;
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- E X P _ C H 1 1 -- -- -- -- B o d y -- -- -- -- Copyright (C) 1992-2016, 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 Einfo; use Einfo; with Elists; use Elists; with Errout; use Errout; with Exp_Ch7; use Exp_Ch7; with Exp_Intr; use Exp_Intr; with Exp_Util; use Exp_Util; with Namet; use Namet; with Nlists; use Nlists; with Nmake; use Nmake; with Opt; use Opt; with Restrict; use Restrict; with Rident; use Rident; with Rtsfind; use Rtsfind; with Sem; use Sem; with Sem_Ch8; use Sem_Ch8; with Sem_Res; use Sem_Res; with Sem_Util; use Sem_Util; with Sinfo; use Sinfo; with Sinput; use Sinput; with Snames; use Snames; with Stand; use Stand; with Stringt; use Stringt; with Targparm; use Targparm; with Tbuild; use Tbuild; with Uintp; use Uintp; package body Exp_Ch11 is ----------------------- -- Local Subprograms -- ----------------------- procedure Warn_No_Exception_Propagation_Active (N : Node_Id); -- Generates warning that pragma Restrictions (No_Exception_Propagation) -- is in effect. Caller then generates appropriate continuation message. -- N is the node on which the warning is placed. procedure Warn_If_No_Propagation (N : Node_Id); -- Called for an exception raise that is not a local raise (and thus can -- not be optimized to a goto. Issues warning if No_Exception_Propagation -- restriction is set. N is the node for the raise or equivalent call. --------------------------- -- Expand_At_End_Handler -- --------------------------- -- For a handled statement sequence that has a cleanup (At_End_Proc -- field set), an exception handler of the following form is required: -- exception -- when all others => -- cleanup call -- raise; -- Note: this exception handler is treated rather specially by -- subsequent expansion in two respects: -- The normal call to Undefer_Abort is omitted -- The raise call does not do Defer_Abort -- This is because the current tasking code seems to assume that -- the call to the cleanup routine that is made from an exception -- handler for the abort signal is called with aborts deferred. -- This expansion is only done if we have front end exception handling. -- If we have back end exception handling, then the AT END handler is -- left alone, and cleanups (including the exceptional case) are handled -- by the back end. -- In the front end case, the exception handler described above handles -- the exceptional case. The AT END handler is left in the generated tree -- and the code generator (e.g. gigi) must still handle proper generation -- of cleanup calls for the non-exceptional case. procedure Expand_At_End_Handler (HSS : Node_Id; Blk_Id : Entity_Id) is Clean : constant Entity_Id := Entity (At_End_Proc (HSS)); Ohandle : Node_Id; Stmnts : List_Id; Loc : constant Source_Ptr := No_Location; -- Location used for expansion. We quite deliberately do not set a -- specific source location for the expanded handler. This makes -- sense since really the handler is not associated with specific -- source. We used to set this to Sloc (Clean), but that caused -- useless and annoying bouncing around of line numbers in the -- debugger in some circumstances. begin pragma Assert (Present (Clean)); pragma Assert (No (Exception_Handlers (HSS))); -- Back end exception schemes don't need explicit handlers to -- trigger AT-END actions on exceptional paths. if Back_End_Exceptions then return; end if; -- Don't expand an At End handler if we have already had configurable -- run-time violations, since likely this will just be a matter of -- generating useless cascaded messages if Configurable_Run_Time_Violations > 0 then return; end if; -- Don't expand an At End handler if we are not allowing exceptions -- or if exceptions are transformed into local gotos, and never -- propagated (No_Exception_Propagation). if No_Exception_Handlers_Set then return; end if; if Present (Blk_Id) then Push_Scope (Blk_Id); end if; Ohandle := Make_Others_Choice (Loc); Set_All_Others (Ohandle); Stmnts := New_List ( Make_Procedure_Call_Statement (Loc, Name => New_Occurrence_Of (Clean, Loc))); -- Generate reraise statement as last statement of AT-END handler, -- unless we are under control of No_Exception_Propagation, in which -- case no exception propagation is possible anyway, so we do not need -- a reraise (the AT END handler in this case is only for normal exits -- not for exceptional exits). Also, we flag the Reraise statement as -- being part of an AT END handler to prevent signalling this reraise -- as a violation of the restriction when it is not set. if not Restriction_Active (No_Exception_Propagation) then declare Rstm : constant Node_Id := Make_Raise_Statement (Loc); begin Set_From_At_End (Rstm); Append_To (Stmnts, Rstm); end; end if; Set_Exception_Handlers (HSS, New_List ( Make_Implicit_Exception_Handler (Loc, Exception_Choices => New_List (Ohandle), Statements => Stmnts))); Analyze_List (Stmnts, Suppress => All_Checks); Expand_Exception_Handlers (HSS); if Present (Blk_Id) then Pop_Scope; end if; end Expand_At_End_Handler; ------------------------------- -- Expand_Exception_Handlers -- ------------------------------- procedure Expand_Exception_Handlers (HSS : Node_Id) is Handlrs : constant List_Id := Exception_Handlers (HSS); Loc : constant Source_Ptr := Sloc (HSS); Handler : Node_Id; Others_Choice : Boolean; Obj_Decl : Node_Id; Next_Handler : Node_Id; procedure Expand_Local_Exception_Handlers; -- This procedure handles the expansion of exception handlers for the -- optimization of local raise statements into goto statements. procedure Prepend_Call_To_Handler (Proc : RE_Id; Args : List_Id := No_List); -- Routine to prepend a call to the procedure referenced by Proc at -- the start of the handler code for the current Handler. procedure Replace_Raise_By_Goto (Raise_S : Node_Id; Goto_L1 : Node_Id); -- Raise_S is a raise statement (possibly expanded, and possibly of the -- form of a Raise_xxx_Error node with a condition. This procedure is -- called to replace the raise action with the (already analyzed) goto -- statement passed as Goto_L1. This procedure also takes care of the -- requirement of inserting a Local_Raise call where possible. ------------------------------------- -- Expand_Local_Exception_Handlers -- ------------------------------------- -- There are two cases for this transformation. First the case of -- explicit raise statements. For this case, the transformation we do -- looks like this. Right now we have for example (where L1, L2 are -- exception labels) -- begin -- ... -- raise_exception (excep1'identity); -- was raise excep1 -- ... -- raise_exception (excep2'identity); -- was raise excep2 -- ... -- exception -- when excep1 => -- estmts1 -- when excep2 => -- estmts2 -- end; -- This gets transformed into: -- begin -- L1 : label; -- marked Exception_Junk -- L2 : label; -- marked Exception_Junk -- L3 : label; -- marked Exception_Junk -- begin -- marked Exception_Junk -- ... -- local_raise (excep1'address); -- was raise excep1 -- goto L1; -- ... -- local_raise (excep2'address); -- was raise excep2 -- goto L2; -- ... -- exception -- when excep1 => -- goto L1; -- when excep2 => -- goto L2; -- end; -- goto L3; -- skip handler if no raise, marked Exception_Junk -- <<L1>> -- local excep target label, marked Exception_Junk -- begin -- marked Exception_Junk -- estmts1 -- end; -- goto L3; -- marked Exception_Junk -- <<L2>> -- marked Exception_Junk -- begin -- marked Exception_Junk -- estmts2 -- end; -- goto L3; -- marked Exception_Junk -- <<L3>> -- marked Exception_Junk -- end; -- Note: the reason we wrap the original statement sequence in an -- inner block is that there may be raise statements within the -- sequence of statements in the handlers, and we must ensure that -- these are properly handled, and in particular, such raise statements -- must not reenter the same exception handlers. -- If the restriction No_Exception_Propagation is in effect, then we -- can omit the exception handlers. -- begin -- L1 : label; -- marked Exception_Junk -- L2 : label; -- marked Exception_Junk -- L3 : label; -- marked Exception_Junk -- begin -- marked Exception_Junk -- ... -- local_raise (excep1'address); -- was raise excep1 -- goto L1; -- ... -- local_raise (excep2'address); -- was raise excep2 -- goto L2; -- ... -- end; -- goto L3; -- skip handler if no raise, marked Exception_Junk -- <<L1>> -- local excep target label, marked Exception_Junk -- begin -- marked Exception_Junk -- estmts1 -- end; -- goto L3; -- marked Exception_Junk -- <<L2>> -- marked Exception_Junk -- begin -- marked Exception_Junk -- estmts2 -- end; -- <<L3>> -- marked Exception_Junk -- end; -- The second case is for exceptions generated by the back end in one -- of three situations: -- 1. Front end generates N_Raise_xxx_Error node -- 2. Front end sets Do_xxx_Check flag in subexpression node -- 3. Back end detects a situation where an exception is appropriate -- In all these cases, the current processing in gigi is to generate a -- call to the appropriate Rcheck_xx routine (where xx encodes both the -- exception message and the exception to be raised, Constraint_Error, -- Program_Error, or Storage_Error. -- We could handle some subcases of 1 using the same front end expansion -- into gotos, but even for case 1, we can't handle all cases, since -- generating gotos in the middle of expressions is not possible (it's -- possible at the gigi/gcc level, but not at the level of the GNAT -- tree). -- In any case, it seems easier to have a scheme which handles all three -- cases in a uniform manner. So here is how we proceed in this case. -- This procedure detects all handlers for these three exceptions, -- Constraint_Error, Program_Error and Storage_Error (including WHEN -- OTHERS handlers that cover one or more of these cases). -- If the handler meets the requirements for being the target of a local -- raise, then the front end does the expansion described previously, -- creating a label to be used as a goto target to raise the exception. -- However, no attempt is made in the front end to convert any related -- raise statements into gotos, e.g. all N_Raise_xxx_Error nodes are -- left unchanged and passed to the back end. -- Instead, the front end generates three nodes -- N_Push_Constraint_Error_Label -- N_Push_Program_Error_Label -- N_Push_Storage_Error_Label -- The Push node is generated at the start of the statements -- covered by the handler, and has as a parameter the label to be -- used as the raise target. -- N_Pop_Constraint_Error_Label -- N_Pop_Program_Error_Label -- N_Pop_Storage_Error_Label -- The Pop node is generated at the end of the covered statements -- and undoes the effect of the preceding corresponding Push node. -- In the case where the handler does NOT meet the requirements, the -- front end will still generate the Push and Pop nodes, but the label -- field in the Push node will be empty signifying that for this region -- of code, no optimization is possible. -- These Push/Pop nodes are inhibited if No_Exception_Handlers is set -- since they are useless in this case, and in CodePeer mode, where -- they serve no purpose and can intefere with the analysis. -- The back end must maintain three stacks, one for each exception case, -- the Push node pushes an entry onto the corresponding stack, and Pop -- node pops off the entry. Then instead of calling Rcheck_nn, if the -- corresponding top stack entry has an non-empty label, a goto is -- generated. This goto should be preceded by a call to Local_Raise as -- described above. -- An example of this transformation is as follows, given: -- declare -- A : Integer range 1 .. 10; -- begin -- A := B + C; -- exception -- when Constraint_Error => -- estmts -- end; -- gets transformed to: -- declare -- A : Integer range 1 .. 10; -- begin -- L1 : label; -- L2 : label; -- begin -- %push_constraint_error_label (L1) -- R1b : constant long_long_integer := long_long_integer?(b) + -- long_long_integer?(c); -- [constraint_error when -- not (R1b in -16#8000_0000# .. 16#7FFF_FFFF#) -- "overflow check failed"] -- a := integer?(R1b); -- %pop_constraint_error_Label -- exception -- ... -- when constraint_error => -- goto L1; -- end; -- goto L2; -- skip handler when exception not raised -- <<L1>> -- target label for local exception -- estmts -- <<L2>> -- end; -- Note: the generated labels and goto statements all have the flag -- Exception_Junk set True, so that Sem_Ch6.Check_Returns will ignore -- this generated exception stuff when checking for missing return -- statements (see circuitry in Check_Statement_Sequence). -- Note: All of the processing described above occurs only if -- restriction No_Exception_Propagation applies or debug flag .g is -- enabled. CE_Locally_Handled : Boolean := False; SE_Locally_Handled : Boolean := False; PE_Locally_Handled : Boolean := False; -- These three flags indicate whether a handler for the corresponding -- exception (CE=Constraint_Error, SE=Storage_Error, PE=Program_Error) -- is present. If so the switch is set to True, the Exception_Label -- field of the corresponding handler is set, and appropriate Push -- and Pop nodes are inserted into the code. Local_Expansion_Required : Boolean := False; -- Set True if we have at least one handler requiring local raise -- expansion as described above. procedure Expand_Local_Exception_Handlers is procedure Add_Exception_Label (H : Node_Id); -- H is an exception handler. First check for an Exception_Label -- already allocated for H. If none, allocate one, set the field in -- the handler node, add the label declaration, and set the flag -- Local_Expansion_Required. Note: if Local_Raise_Not_OK is set -- the call has no effect and Exception_Label is left empty. procedure Add_Label_Declaration (L : Entity_Id); -- Add an implicit declaration of the given label to the declaration -- list in the parent of the current sequence of handled statements. generic Exc_Locally_Handled : in out Boolean; -- Flag indicating whether a local handler for this exception -- has already been generated. with function Make_Push_Label (Loc : Source_Ptr) return Node_Id; -- Function to create a Push_xxx_Label node with function Make_Pop_Label (Loc : Source_Ptr) return Node_Id; -- Function to create a Pop_xxx_Label node procedure Generate_Push_Pop (H : Node_Id); -- Common code for Generate_Push_Pop_xxx below, used to generate an -- exception label and Push/Pop nodes for Constraint_Error, -- Program_Error, or Storage_Error. ------------------------- -- Add_Exception_Label -- ------------------------- procedure Add_Exception_Label (H : Node_Id) is begin if No (Exception_Label (H)) and then not Local_Raise_Not_OK (H) and then not Special_Exception_Package_Used then Local_Expansion_Required := True; declare L : constant Entity_Id := Make_Temporary (Sloc (H), 'L'); begin Set_Exception_Label (H, L); Add_Label_Declaration (L); end; end if; end Add_Exception_Label; --------------------------- -- Add_Label_Declaration -- --------------------------- procedure Add_Label_Declaration (L : Entity_Id) is P : constant Node_Id := Parent (HSS); Decl_L : constant Node_Id := Make_Implicit_Label_Declaration (Loc, Defining_Identifier => L); begin if Declarations (P) = No_List then Set_Declarations (P, Empty_List); end if; Append (Decl_L, Declarations (P)); Analyze (Decl_L); end Add_Label_Declaration; ----------------------- -- Generate_Push_Pop -- ----------------------- procedure Generate_Push_Pop (H : Node_Id) is begin if Restriction_Active (No_Exception_Handlers) or else CodePeer_Mode then return; end if; if Exc_Locally_Handled then return; else Exc_Locally_Handled := True; end if; Add_Exception_Label (H); declare F : constant Node_Id := First (Statements (HSS)); L : constant Node_Id := Last (Statements (HSS)); Push : constant Node_Id := Make_Push_Label (Sloc (F)); Pop : constant Node_Id := Make_Pop_Label (Sloc (L)); begin -- We make sure that a call to Get_Local_Raise_Call_Entity is -- made during front end processing, so that when we need it -- in the back end, it will already be available and loaded. Discard_Node (Get_Local_Raise_Call_Entity); -- Prepare and insert Push and Pop nodes Set_Exception_Label (Push, Exception_Label (H)); Insert_Before (F, Push); Set_Analyzed (Push); Insert_After (L, Pop); Set_Analyzed (Pop); end; end Generate_Push_Pop; -- Local declarations Loc : constant Source_Ptr := Sloc (HSS); Stmts : List_Id := No_List; Choice : Node_Id; Excep : Entity_Id; procedure Generate_Push_Pop_For_Constraint_Error is new Generate_Push_Pop (Exc_Locally_Handled => CE_Locally_Handled, Make_Push_Label => Make_Push_Constraint_Error_Label, Make_Pop_Label => Make_Pop_Constraint_Error_Label); -- If no Push/Pop has been generated for CE yet, then set the flag -- CE_Locally_Handled, allocate an Exception_Label for handler H (if -- not already done), and generate Push/Pop nodes for the exception -- label at the start and end of the statements of HSS. procedure Generate_Push_Pop_For_Program_Error is new Generate_Push_Pop (Exc_Locally_Handled => PE_Locally_Handled, Make_Push_Label => Make_Push_Program_Error_Label, Make_Pop_Label => Make_Pop_Program_Error_Label); -- If no Push/Pop has been generated for PE yet, then set the flag -- PE_Locally_Handled, allocate an Exception_Label for handler H (if -- not already done), and generate Push/Pop nodes for the exception -- label at the start and end of the statements of HSS. procedure Generate_Push_Pop_For_Storage_Error is new Generate_Push_Pop (Exc_Locally_Handled => SE_Locally_Handled, Make_Push_Label => Make_Push_Storage_Error_Label, Make_Pop_Label => Make_Pop_Storage_Error_Label); -- If no Push/Pop has been generated for SE yet, then set the flag -- SE_Locally_Handled, allocate an Exception_Label for handler H (if -- not already done), and generate Push/Pop nodes for the exception -- label at the start and end of the statements of HSS. -- Start of processing for Expand_Local_Exception_Handlers begin -- No processing if all exception handlers will get removed if Debug_Flag_Dot_X then return; end if; -- See for each handler if we have any local raises to expand Handler := First_Non_Pragma (Handlrs); while Present (Handler) loop -- Note, we do not test Local_Raise_Not_OK here, because in the -- case of Push/Pop generation we want to generate push with a -- null label. The Add_Exception_Label routine has no effect if -- Local_Raise_Not_OK is set, so this works as required. if Present (Local_Raise_Statements (Handler)) then Add_Exception_Label (Handler); end if; -- If we are doing local raise to goto optimization (restriction -- No_Exception_Propagation set or debug flag .g set), then check -- to see if handler handles CE, PE, SE and if so generate the -- appropriate push/pop sequence for the back end. if (Debug_Flag_Dot_G or else Restriction_Active (No_Exception_Propagation)) and then Has_Local_Raise (Handler) then Choice := First (Exception_Choices (Handler)); while Present (Choice) loop if Nkind (Choice) = N_Others_Choice and then not All_Others (Choice) then Generate_Push_Pop_For_Constraint_Error (Handler); Generate_Push_Pop_For_Program_Error (Handler); Generate_Push_Pop_For_Storage_Error (Handler); elsif Is_Entity_Name (Choice) then Excep := Get_Renamed_Entity (Entity (Choice)); if Excep = Standard_Constraint_Error then Generate_Push_Pop_For_Constraint_Error (Handler); elsif Excep = Standard_Program_Error then Generate_Push_Pop_For_Program_Error (Handler); elsif Excep = Standard_Storage_Error then Generate_Push_Pop_For_Storage_Error (Handler); end if; end if; Next (Choice); end loop; end if; Next_Non_Pragma (Handler); end loop; -- Nothing to do if no handlers requiring the goto transformation if not (Local_Expansion_Required) then return; end if; -- Prepare to do the transformation declare -- L3 is the label to exit the HSS L3_Dent : constant Entity_Id := Make_Temporary (Loc, 'L'); Labl_L3 : constant Node_Id := Make_Label (Loc, Identifier => New_Occurrence_Of (L3_Dent, Loc)); Blk_Stm : Node_Id; Relmt : Elmt_Id; begin Set_Exception_Junk (Labl_L3); Add_Label_Declaration (L3_Dent); -- Wrap existing statements and handlers in an inner block Blk_Stm := Make_Block_Statement (Loc, Handled_Statement_Sequence => Relocate_Node (HSS)); Set_Exception_Junk (Blk_Stm); Rewrite (HSS, Make_Handled_Sequence_Of_Statements (Loc, Statements => New_List (Blk_Stm), End_Label => Relocate_Node (End_Label (HSS)))); -- Set block statement as analyzed, we don't want to actually call -- Analyze on this block, it would cause a recursion in exception -- handler processing which would mess things up. Set_Analyzed (Blk_Stm); -- Now loop through the exception handlers to deal with those that -- are targets of local raise statements. Handler := First_Non_Pragma (Handlrs); while Present (Handler) loop if Present (Exception_Label (Handler)) then -- This handler needs the goto expansion declare Loc : constant Source_Ptr := Sloc (Handler); -- L1 is the start label for this handler L1_Dent : constant Entity_Id := Exception_Label (Handler); Labl_L1 : constant Node_Id := Make_Label (Loc, Identifier => New_Occurrence_Of (L1_Dent, Loc)); -- Jump to L1 to be used as replacement for the original -- handler (used in the case where exception propagation -- may still occur). Name_L1 : constant Node_Id := New_Occurrence_Of (L1_Dent, Loc); Goto_L1 : constant Node_Id := Make_Goto_Statement (Loc, Name => Name_L1); -- Jump to L3 to be used at the end of handler Name_L3 : constant Node_Id := New_Occurrence_Of (L3_Dent, Loc); Goto_L3 : constant Node_Id := Make_Goto_Statement (Loc, Name => Name_L3); H_Stmts : constant List_Id := Statements (Handler); begin Set_Exception_Junk (Labl_L1); Set_Exception_Junk (Goto_L3); -- Note: we do NOT set Exception_Junk in Goto_L1, since -- this is a real transfer of control that we want the -- Sem_Ch6.Check_Returns procedure to recognize properly. -- Replace handler by a goto L1. We can mark this as -- analyzed since it is fully formed, and we don't -- want it going through any further checks. We save -- the last statement location in the goto L1 node for -- the benefit of Sem_Ch6.Check_Returns. Set_Statements (Handler, New_List (Goto_L1)); Set_Analyzed (Goto_L1); Set_Etype (Name_L1, Standard_Void_Type); -- Now replace all the raise statements by goto L1 if Present (Local_Raise_Statements (Handler)) then Relmt := First_Elmt (Local_Raise_Statements (Handler)); while Present (Relmt) loop declare Raise_S : constant Node_Id := Node (Relmt); RLoc : constant Source_Ptr := Sloc (Raise_S); Name_L1 : constant Node_Id := New_Occurrence_Of (L1_Dent, Loc); Goto_L1 : constant Node_Id := Make_Goto_Statement (RLoc, Name => Name_L1); begin -- Replace raise by goto L1 Set_Analyzed (Goto_L1); Set_Etype (Name_L1, Standard_Void_Type); Replace_Raise_By_Goto (Raise_S, Goto_L1); end; Next_Elmt (Relmt); end loop; end if; -- Add a goto L3 at end of statement list in block. The -- first time, this is what skips over the exception -- handlers in the normal case. Subsequent times, it -- terminates the execution of the previous handler code, -- and skips subsequent handlers. Stmts := Statements (HSS); Insert_After (Last (Stmts), Goto_L3); Set_Analyzed (Goto_L3); Set_Etype (Name_L3, Standard_Void_Type); -- Now we drop the label that marks the handler start, -- followed by the statements of the handler. Set_Etype (Identifier (Labl_L1), Standard_Void_Type); Insert_After_And_Analyze (Last (Stmts), Labl_L1); declare Loc : constant Source_Ptr := Sloc (First (H_Stmts)); Blk : constant Node_Id := Make_Block_Statement (Loc, Handled_Statement_Sequence => Make_Handled_Sequence_Of_Statements (Loc, Statements => H_Stmts)); begin Set_Exception_Junk (Blk); Insert_After_And_Analyze (Last (Stmts), Blk); end; end; -- Here if we have local raise statements but the handler is -- not suitable for processing with a local raise. In this -- case we have to generate possible diagnostics. elsif Has_Local_Raise (Handler) and then Local_Raise_Statements (Handler) /= No_Elist then Relmt := First_Elmt (Local_Raise_Statements (Handler)); while Present (Relmt) loop Warn_If_No_Propagation (Node (Relmt)); Next_Elmt (Relmt); end loop; end if; Next (Handler); end loop; -- Only remaining step is to drop the L3 label and we are done Set_Etype (Identifier (Labl_L3), Standard_Void_Type); -- If we had at least one handler, then we drop the label after -- the last statement of that handler. if Stmts /= No_List then Insert_After_And_Analyze (Last (Stmts), Labl_L3); -- Otherwise we have removed all the handlers (this results from -- use of pragma Restrictions (No_Exception_Propagation), and we -- drop the label at the end of the statements of the HSS. else Insert_After_And_Analyze (Last (Statements (HSS)), Labl_L3); end if; return; end; end Expand_Local_Exception_Handlers; ----------------------------- -- Prepend_Call_To_Handler -- ----------------------------- procedure Prepend_Call_To_Handler (Proc : RE_Id; Args : List_Id := No_List) is Ent : constant Entity_Id := RTE (Proc); begin -- If we have no Entity, then we are probably in no run time mode or -- some weird error has occurred. In either case do nothing. Note use -- of No_Location to hide this code from the debugger, so single -- stepping doesn't jump back and forth. if Present (Ent) then declare Call : constant Node_Id := Make_Procedure_Call_Statement (No_Location, Name => New_Occurrence_Of (RTE (Proc), No_Location), Parameter_Associations => Args); begin Prepend_To (Statements (Handler), Call); Analyze (Call, Suppress => All_Checks); end; end if; end Prepend_Call_To_Handler; --------------------------- -- Replace_Raise_By_Goto -- --------------------------- procedure Replace_Raise_By_Goto (Raise_S : Node_Id; Goto_L1 : Node_Id) is Loc : constant Source_Ptr := Sloc (Raise_S); Excep : Entity_Id; LR : Node_Id; Cond : Node_Id; Orig : Node_Id; begin -- If we have a null statement, it means that there is no replacement -- needed (typically this results from a suppressed check). if Nkind (Raise_S) = N_Null_Statement then return; -- Test for Raise_xxx_Error elsif Nkind (Raise_S) = N_Raise_Constraint_Error then Excep := Standard_Constraint_Error; Cond := Condition (Raise_S); elsif Nkind (Raise_S) = N_Raise_Storage_Error then Excep := Standard_Storage_Error; Cond := Condition (Raise_S); elsif Nkind (Raise_S) = N_Raise_Program_Error then Excep := Standard_Program_Error; Cond := Condition (Raise_S); -- The only other possibility is a node that is or used to be a -- simple raise statement. else Orig := Original_Node (Raise_S); pragma Assert (Nkind (Orig) = N_Raise_Statement and then Present (Name (Orig)) and then No (Expression (Orig))); Excep := Entity (Name (Orig)); Cond := Empty; end if; -- Here Excep is the exception to raise, and Cond is the condition -- First prepare the call to Local_Raise (excep'address). if RTE_Available (RE_Local_Raise) then LR := Make_Procedure_Call_Statement (Loc, Name => New_Occurrence_Of (RTE (RE_Local_Raise), Loc), Parameter_Associations => New_List ( Unchecked_Convert_To (RTE (RE_Address), Make_Attribute_Reference (Loc, Prefix => New_Occurrence_Of (Excep, Loc), Attribute_Name => Name_Identity)))); -- Use null statement if Local_Raise not available else LR := Make_Null_Statement (Loc); end if; -- If there is no condition, we rewrite as -- begin -- Local_Raise (excep'Identity); -- goto L1; -- end; if No (Cond) then Rewrite (Raise_S, Make_Block_Statement (Loc, Handled_Statement_Sequence => Make_Handled_Sequence_Of_Statements (Loc, Statements => New_List (LR, Goto_L1)))); Set_Exception_Junk (Raise_S); -- If there is a condition, we rewrite as -- if condition then -- Local_Raise (excep'Identity); -- goto L1; -- end if; else Rewrite (Raise_S, Make_If_Statement (Loc, Condition => Cond, Then_Statements => New_List (LR, Goto_L1))); end if; Analyze (Raise_S); end Replace_Raise_By_Goto; -- Start of processing for Expand_Exception_Handlers begin Expand_Local_Exception_Handlers; -- Loop through handlers Handler := First_Non_Pragma (Handlrs); Handler_Loop : while Present (Handler) loop Process_Statements_For_Controlled_Objects (Handler); Next_Handler := Next_Non_Pragma (Handler); -- Remove source handler if gnat debug flag .x is set if Debug_Flag_Dot_X and then Comes_From_Source (Handler) then Remove (Handler); -- Remove handler if no exception propagation, generating a warning -- if a source generated handler was not the target of a local raise. else if Restriction_Active (No_Exception_Propagation) and then not Has_Local_Raise (Handler) and then Comes_From_Source (Handler) and then Warn_On_Non_Local_Exception then Warn_No_Exception_Propagation_Active (Handler); Error_Msg_N ("\?X?this handler can never be entered, " & "and has been removed", Handler); end if; if No_Exception_Propagation_Active then Remove (Handler); -- Exception handler is active and retained and must be processed else -- If an exception occurrence is present, then we must declare -- it and initialize it from the value stored in the TSD -- declare -- name : Exception_Occurrence; -- begin -- Save_Occurrence (name, Get_Current_Excep.all) -- ... -- end; -- This expansion is only performed when using front-end -- exceptions. Gigi will insert a call to initialize the -- choice parameter. if Present (Choice_Parameter (Handler)) and then (Front_End_Exceptions or else CodePeer_Mode) then declare Cparm : constant Entity_Id := Choice_Parameter (Handler); Cloc : constant Source_Ptr := Sloc (Cparm); Hloc : constant Source_Ptr := Sloc (Handler); Save : Node_Id; begin -- Note: No_Location used to hide code from the debugger, -- so single stepping doesn't jump back and forth. Save := Make_Procedure_Call_Statement (No_Location, Name => New_Occurrence_Of (RTE (RE_Save_Occurrence), No_Location), Parameter_Associations => New_List ( New_Occurrence_Of (Cparm, No_Location), Make_Explicit_Dereference (No_Location, Prefix => Make_Function_Call (No_Location, Name => Make_Explicit_Dereference (No_Location, Prefix => New_Occurrence_Of (RTE (RE_Get_Current_Excep), No_Location)))))); Mark_Rewrite_Insertion (Save); Prepend (Save, Statements (Handler)); Obj_Decl := Make_Object_Declaration (Cloc, Defining_Identifier => Cparm, Object_Definition => New_Occurrence_Of (RTE (RE_Exception_Occurrence), Cloc)); Set_No_Initialization (Obj_Decl, True); Rewrite (Handler, Make_Exception_Handler (Hloc, Choice_Parameter => Empty, Exception_Choices => Exception_Choices (Handler), Statements => New_List ( Make_Block_Statement (Hloc, Declarations => New_List (Obj_Decl), Handled_Statement_Sequence => Make_Handled_Sequence_Of_Statements (Hloc, Statements => Statements (Handler)))))); -- Local raise statements can't occur, since exception -- handlers with choice parameters are not allowed when -- No_Exception_Propagation applies, so set attributes -- accordingly. Set_Local_Raise_Statements (Handler, No_Elist); Set_Local_Raise_Not_OK (Handler); Analyze_List (Statements (Handler), Suppress => All_Checks); end; end if; -- For the normal case, we have to worry about the state of -- abort deferral. Generally, we defer abort during runtime -- handling of exceptions. When control is passed to the -- handler, then in the normal case we undefer aborts. In -- any case this entire handling is relevant only if aborts -- are allowed. if Abort_Allowed and then not ZCX_Exceptions then -- There are some special cases in which we do not do the -- undefer. In particular a finalization (AT END) handler -- wants to operate with aborts still deferred. -- We also suppress the call if this is the special handler -- for Abort_Signal, since if we are aborting, we want to -- keep aborts deferred (one abort is enough). -- If abort really needs to be deferred the expander must -- add this call explicitly, see -- Expand_N_Asynchronous_Select. Others_Choice := Nkind (First (Exception_Choices (Handler))) = N_Others_Choice; if (Others_Choice or else Entity (First (Exception_Choices (Handler))) /= Stand.Abort_Signal) and then not (Others_Choice and then All_Others (First (Exception_Choices (Handler)))) then Prepend_Call_To_Handler (RE_Abort_Undefer); end if; end if; end if; end if; Handler := Next_Handler; end loop Handler_Loop; -- If all handlers got removed, then remove the list. Note we cannot -- reference HSS here, since expanding local handlers may have buried -- the handlers in an inner block. if Is_Empty_List (Handlrs) then Set_Exception_Handlers (Parent (Handlrs), No_List); end if; end Expand_Exception_Handlers; ------------------------------------ -- Expand_N_Exception_Declaration -- ------------------------------------ -- Generates: -- exceptE : constant String := "A.B.EXCEP"; -- static data -- except : exception_data := -- (Handled_By_Other => False, -- Lang => 'A', -- Name_Length => exceptE'Length, -- Full_Name => exceptE'Address, -- HTable_Ptr => null, -- Foreign_Data => null, -- Raise_Hook => null); -- (protecting test only needed if not at library level) -- exceptF : Boolean := True -- static data -- if exceptF then -- exceptF := False; -- Register_Exception (except'Unchecked_Access); -- end if; procedure Expand_N_Exception_Declaration (N : Node_Id) is Id : constant Entity_Id := Defining_Identifier (N); Loc : constant Source_Ptr := Sloc (N); procedure Force_Static_Allocation_Of_Referenced_Objects (Aggregate : Node_Id); -- A specialized solution to one particular case of an ugly problem -- -- The given aggregate includes an Unchecked_Conversion as one of the -- component values. The call to Analyze_And_Resolve below ends up -- calling Exp_Ch4.Expand_N_Unchecked_Type_Conversion, which may decide -- to introduce a (constant) temporary and then obtain the component -- value by evaluating the temporary. -- -- In the case of an exception declared within a subprogram (or any -- other dynamic scope), this is a bad transformation. The exception -- object is marked as being Statically_Allocated but the temporary is -- not. If the initial value of a Statically_Allocated declaration -- references a dynamically allocated object, this prevents static -- initialization of the object. -- -- We cope with this here by marking the temporary Statically_Allocated. -- It might seem cleaner to generalize this utility and then use it to -- enforce a rule that the entities referenced in the declaration of any -- "hoisted" (i.e., Is_Statically_Allocated and not Is_Library_Level) -- entity must also be either Library_Level or hoisted. It turns out -- that this would be incompatible with the current treatment of an -- object which is local to a subprogram, subject to an Export pragma, -- not subject to an address clause, and whose declaration contains -- references to other local (non-hoisted) objects (e.g., in the initial -- value expression). function Null_String return String_Id; -- Build a null-terminated empty string --------------------------------------------------- -- Force_Static_Allocation_Of_Referenced_Objects -- --------------------------------------------------- procedure Force_Static_Allocation_Of_Referenced_Objects (Aggregate : Node_Id) is function Fixup_Node (N : Node_Id) return Traverse_Result; -- If the given node references a dynamically allocated object, then -- correct the declaration of the object. ---------------- -- Fixup_Node -- ---------------- function Fixup_Node (N : Node_Id) return Traverse_Result is begin if Nkind (N) in N_Has_Entity and then Present (Entity (N)) and then not Is_Library_Level_Entity (Entity (N)) -- Note: the following test is not needed but it seems cleaner -- to do this test (this would be more important if procedure -- Force_Static_Allocation_Of_Referenced_Objects recursively -- traversed the declaration of an entity after marking it as -- statically allocated). and then not Is_Statically_Allocated (Entity (N)) then Set_Is_Statically_Allocated (Entity (N)); end if; return OK; end Fixup_Node; procedure Fixup_Tree is new Traverse_Proc (Fixup_Node); -- Start of processing for Force_Static_Allocation_Of_Referenced_Objects begin Fixup_Tree (Aggregate); end Force_Static_Allocation_Of_Referenced_Objects; ----------------- -- Null_String -- ----------------- function Null_String return String_Id is begin Start_String; Store_String_Char (Get_Char_Code (ASCII.NUL)); return End_String; end Null_String; -- Local variables Ex_Id : Entity_Id; Ex_Val : String_Id; Flag_Id : Entity_Id; L : List_Id; -- Start of processing for Expand_N_Exception_Declaration begin -- Nothing to do when generating C code if Modify_Tree_For_C then return; end if; -- Definition of the external name: nam : constant String := "A.B.NAME"; Ex_Id := Make_Defining_Identifier (Loc, New_External_Name (Chars (Id), 'E')); -- Do not generate an external name if the exception declaration is -- subject to pragma Discard_Names. Use a null-terminated empty name -- to ensure that Ada.Exceptions.Exception_Name functions properly. if Global_Discard_Names or else Discard_Names (Ex_Id) then Ex_Val := Null_String; -- Otherwise generate the fully qualified name of the exception else Ex_Val := Fully_Qualified_Name_String (Id); end if; Insert_Action (N, Make_Object_Declaration (Loc, Defining_Identifier => Ex_Id, Constant_Present => True, Object_Definition => New_Occurrence_Of (Standard_String, Loc), Expression => Make_String_Literal (Loc, Ex_Val))); Set_Is_Statically_Allocated (Ex_Id); -- Create the aggregate list for type Standard.Exception_Type: -- Handled_By_Other component: False L := Empty_List; Append_To (L, New_Occurrence_Of (Standard_False, Loc)); -- Lang component: 'A' Append_To (L, Make_Character_Literal (Loc, Chars => Name_uA, Char_Literal_Value => UI_From_Int (Character'Pos ('A')))); -- Name_Length component: Nam'Length Append_To (L, Make_Attribute_Reference (Loc, Prefix => New_Occurrence_Of (Ex_Id, Loc), Attribute_Name => Name_Length)); -- Full_Name component: Standard.A_Char!(Nam'Address) -- The unchecked conversion causes capacity issues for CodePeer in some -- cases and is never useful, so we set the Full_Name component to null -- instead for CodePeer. if CodePeer_Mode then Append_To (L, Make_Null (Loc)); else Append_To (L, Unchecked_Convert_To (Standard_A_Char, Make_Attribute_Reference (Loc, Prefix => New_Occurrence_Of (Ex_Id, Loc), Attribute_Name => Name_Address))); end if; -- HTable_Ptr component: null Append_To (L, Make_Null (Loc)); -- Foreign_Data component: null Append_To (L, Make_Null (Loc)); -- Raise_Hook component: null Append_To (L, Make_Null (Loc)); Set_Expression (N, Make_Aggregate (Loc, Expressions => L)); Analyze_And_Resolve (Expression (N), Etype (Id)); Force_Static_Allocation_Of_Referenced_Objects (Expression (N)); -- Register_Exception (except'Unchecked_Access); if not No_Exception_Handlers_Set and then not Restriction_Active (No_Exception_Registration) then L := New_List ( Make_Procedure_Call_Statement (Loc, Name => New_Occurrence_Of (RTE (RE_Register_Exception), Loc), Parameter_Associations => New_List ( Unchecked_Convert_To (RTE (RE_Exception_Data_Ptr), Make_Attribute_Reference (Loc, Prefix => New_Occurrence_Of (Id, Loc), Attribute_Name => Name_Unrestricted_Access))))); Set_Register_Exception_Call (Id, First (L)); if not Is_Library_Level_Entity (Id) then Flag_Id := Make_Defining_Identifier (Loc, Chars => New_External_Name (Chars (Id), 'F')); Insert_Action (N, Make_Object_Declaration (Loc, Defining_Identifier => Flag_Id, Object_Definition => New_Occurrence_Of (Standard_Boolean, Loc), Expression => New_Occurrence_Of (Standard_True, Loc))); Set_Is_Statically_Allocated (Flag_Id); Append_To (L, Make_Assignment_Statement (Loc, Name => New_Occurrence_Of (Flag_Id, Loc), Expression => New_Occurrence_Of (Standard_False, Loc))); Insert_After_And_Analyze (N, Make_Implicit_If_Statement (N, Condition => New_Occurrence_Of (Flag_Id, Loc), Then_Statements => L)); else Insert_List_After_And_Analyze (N, L); end if; end if; end Expand_N_Exception_Declaration; --------------------------------------------- -- Expand_N_Handled_Sequence_Of_Statements -- --------------------------------------------- procedure Expand_N_Handled_Sequence_Of_Statements (N : Node_Id) is begin -- Expand exception handlers if Present (Exception_Handlers (N)) and then not Restriction_Active (No_Exception_Handlers) then Expand_Exception_Handlers (N); end if; -- If local exceptions are being expanded, the previous call will -- have rewritten the construct as a block and reanalyzed it. No -- further expansion is needed. if Analyzed (N) then return; end if; -- Add clean up actions if required if not Nkind_In (Parent (N), N_Package_Body, N_Accept_Statement, N_Extended_Return_Statement) and then not Delay_Cleanups (Current_Scope) -- No cleanup action needed in thunks associated with interfaces -- because they only displace the pointer to the object. and then not Is_Thunk (Current_Scope) then Expand_Cleanup_Actions (Parent (N)); else Set_First_Real_Statement (N, First (Statements (N))); end if; end Expand_N_Handled_Sequence_Of_Statements; ------------------------------------- -- Expand_N_Raise_Constraint_Error -- ------------------------------------- procedure Expand_N_Raise_Constraint_Error (N : Node_Id) is begin -- We adjust the condition to deal with the C/Fortran boolean case. This -- may well not be necessary, as all such conditions are generated by -- the expander and probably are all standard boolean, but who knows -- what strange optimization in future may require this adjustment. Adjust_Condition (Condition (N)); -- Now deal with possible local raise handling Possible_Local_Raise (N, Standard_Constraint_Error); end Expand_N_Raise_Constraint_Error; ------------------------------- -- Expand_N_Raise_Expression -- ------------------------------- procedure Expand_N_Raise_Expression (N : Node_Id) is Loc : constant Source_Ptr := Sloc (N); Typ : constant Entity_Id := Etype (N); RCE : Node_Id; begin Possible_Local_Raise (N, Entity (Name (N))); -- Later we must teach the back end/gigi how to deal with this, but -- for now we will assume the type is Standard_Boolean and transform -- the node to: -- do -- raise X [with string] -- in -- raise Constraint_Error; -- unless the flag Convert_To_Return_False is set, in which case -- the transformation is to: -- do -- return False; -- in -- raise Constraint_Error; -- The raise constraint error can never be executed. It is just a dummy -- node that can be labeled with an arbitrary type. RCE := Make_Raise_Constraint_Error (Loc, Reason => CE_Explicit_Raise); Set_Etype (RCE, Typ); if Convert_To_Return_False (N) then Rewrite (N, Make_Expression_With_Actions (Loc, Actions => New_List ( Make_Simple_Return_Statement (Loc, Expression => New_Occurrence_Of (Standard_False, Loc))), Expression => RCE)); else Rewrite (N, Make_Expression_With_Actions (Loc, Actions => New_List ( Make_Raise_Statement (Loc, Name => Name (N), Expression => Expression (N))), Expression => RCE)); end if; Analyze_And_Resolve (N, Typ); end Expand_N_Raise_Expression; ---------------------------------- -- Expand_N_Raise_Program_Error -- ---------------------------------- procedure Expand_N_Raise_Program_Error (N : Node_Id) is begin -- We adjust the condition to deal with the C/Fortran boolean case. This -- may well not be necessary, as all such conditions are generated by -- the expander and probably are all standard boolean, but who knows -- what strange optimization in future may require this adjustment. Adjust_Condition (Condition (N)); -- Now deal with possible local raise handling Possible_Local_Raise (N, Standard_Program_Error); end Expand_N_Raise_Program_Error; ------------------------------ -- Expand_N_Raise_Statement -- ------------------------------ procedure Expand_N_Raise_Statement (N : Node_Id) is Loc : constant Source_Ptr := Sloc (N); Ehand : Node_Id; E : Entity_Id; Str : String_Id; H : Node_Id; Src : Boolean; begin -- Processing for locally handled exception (exclude reraise case) if Present (Name (N)) and then Nkind (Name (N)) = N_Identifier then if Debug_Flag_Dot_G or else Restriction_Active (No_Exception_Propagation) then -- If we have a local handler, then note that this is potentially -- able to be transformed into a goto statement. H := Find_Local_Handler (Entity (Name (N)), N); if Present (H) then if Local_Raise_Statements (H) = No_Elist then Set_Local_Raise_Statements (H, New_Elmt_List); end if; -- Append the new entry if it is not there already. Sometimes -- we have situations where due to reexpansion, the same node -- is analyzed twice and would otherwise be added twice. Append_Unique_Elmt (N, Local_Raise_Statements (H)); Set_Has_Local_Raise (H); -- If no local handler, then generate no propagation warning else Warn_If_No_Propagation (N); end if; end if; end if; -- If a string expression is present, then the raise statement is -- converted to a call: -- Raise_Exception (exception-name'Identity, string); -- and there is nothing else to do. if Present (Expression (N)) then -- Adjust message to deal with Prefix_Exception_Messages. We only -- add the prefix to string literals, if the message is being -- constructed, we assume it already deals with uniqueness. if Prefix_Exception_Messages and then Nkind (Expression (N)) = N_String_Literal then declare Buf : Bounded_String; begin Add_Source_Info (Buf, Loc, Name_Enclosing_Entity); Append (Buf, ": "); Append (Buf, Strval (Expression (N))); Rewrite (Expression (N), Make_String_Literal (Loc, +Buf)); Analyze_And_Resolve (Expression (N), Standard_String); end; end if; -- Avoid passing exception-name'identity in runtimes in which this -- argument is not used. This avoids generating undefined references -- to these exceptions when compiling with no optimization if Configurable_Run_Time_On_Target and then (Restriction_Active (No_Exception_Handlers) or else Restriction_Active (No_Exception_Propagation)) then Rewrite (N, Make_Procedure_Call_Statement (Loc, Name => New_Occurrence_Of (RTE (RE_Raise_Exception), Loc), Parameter_Associations => New_List ( New_Occurrence_Of (RTE (RE_Null_Id), Loc), Expression (N)))); else Rewrite (N, Make_Procedure_Call_Statement (Loc, Name => New_Occurrence_Of (RTE (RE_Raise_Exception), Loc), Parameter_Associations => New_List ( Make_Attribute_Reference (Loc, Prefix => Name (N), Attribute_Name => Name_Identity), Expression (N)))); end if; Analyze (N); return; end if; -- Remaining processing is for the case where no string expression is -- present. -- Don't expand a raise statement that does not come from source if we -- have already had configurable run-time violations, since most likely -- it will be junk cascaded nonsense. if Configurable_Run_Time_Violations > 0 and then not Comes_From_Source (N) then return; end if; -- Convert explicit raise of Program_Error, Constraint_Error, and -- Storage_Error into the corresponding raise (in High_Integrity_Mode -- all other raises will get normal expansion and be disallowed, -- but this is also faster in all modes). Propagate Comes_From_Source -- flag to the new node. if Present (Name (N)) and then Nkind (Name (N)) = N_Identifier then Src := Comes_From_Source (N); if Entity (Name (N)) = Standard_Constraint_Error then Rewrite (N, Make_Raise_Constraint_Error (Loc, Reason => CE_Explicit_Raise)); Set_Comes_From_Source (N, Src); Analyze (N); return; elsif Entity (Name (N)) = Standard_Program_Error then Rewrite (N, Make_Raise_Program_Error (Loc, Reason => PE_Explicit_Raise)); Set_Comes_From_Source (N, Src); Analyze (N); return; elsif Entity (Name (N)) = Standard_Storage_Error then Rewrite (N, Make_Raise_Storage_Error (Loc, Reason => SE_Explicit_Raise)); Set_Comes_From_Source (N, Src); Analyze (N); return; end if; end if; -- Case of name present, in this case we expand raise name to -- Raise_Exception (name'Identity, location_string); -- where location_string identifies the file/line of the raise if Present (Name (N)) then declare Id : Entity_Id := Entity (Name (N)); Buf : Bounded_String; begin Build_Location_String (Buf, Loc); -- If the exception is a renaming, use the exception that it -- renames (which might be a predefined exception, e.g.). if Present (Renamed_Object (Id)) then Id := Renamed_Object (Id); end if; -- Build a C-compatible string in case of no exception handlers, -- since this is what the last chance handler is expecting. if No_Exception_Handlers_Set then -- Generate an empty message if configuration pragma -- Suppress_Exception_Locations is set for this unit. if Opt.Exception_Locations_Suppressed then Buf.Length := 0; end if; Append (Buf, ASCII.NUL); end if; if Opt.Exception_Locations_Suppressed then Buf.Length := 0; end if; Str := String_From_Name_Buffer (Buf); -- Convert raise to call to the Raise_Exception routine Rewrite (N, Make_Procedure_Call_Statement (Loc, Name => New_Occurrence_Of (RTE (RE_Raise_Exception), Loc), Parameter_Associations => New_List ( Make_Attribute_Reference (Loc, Prefix => Name (N), Attribute_Name => Name_Identity), Make_String_Literal (Loc, Strval => Str)))); end; -- Case of no name present (reraise). We rewrite the raise to: -- Reraise_Occurrence_Always (EO); -- where EO is the current exception occurrence. If the current handler -- does not have a choice parameter specification, then we provide one. else -- Bypass expansion to a run-time call when back-end exception -- handling is active, unless the target is CodePeer or GNATprove. -- In CodePeer, raising an exception is treated as an error, while in -- GNATprove all code with exceptions falls outside the subset of -- code which can be formally analyzed. if not CodePeer_Mode and then Back_End_Exceptions then return; end if; -- Find innermost enclosing exception handler (there must be one, -- since the semantics has already verified that this raise statement -- is valid, and a raise with no arguments is only permitted in the -- context of an exception handler. Ehand := Parent (N); while Nkind (Ehand) /= N_Exception_Handler loop Ehand := Parent (Ehand); end loop; -- Make exception choice parameter if none present. Note that we do -- not need to put the entity on the entity chain, since no one will -- be referencing this entity by normal visibility methods. if No (Choice_Parameter (Ehand)) then E := Make_Temporary (Loc, 'E'); Set_Choice_Parameter (Ehand, E); Set_Ekind (E, E_Variable); Set_Etype (E, RTE (RE_Exception_Occurrence)); Set_Scope (E, Current_Scope); end if; -- Now rewrite the raise as a call to Reraise. A special case arises -- if this raise statement occurs in the context of a handler for -- all others (i.e. an at end handler). in this case we avoid -- the call to defer abort, cleanup routines are expected to be -- called in this case with aborts deferred. declare Ech : constant Node_Id := First (Exception_Choices (Ehand)); Ent : Entity_Id; begin if Nkind (Ech) = N_Others_Choice and then All_Others (Ech) then Ent := RTE (RE_Reraise_Occurrence_No_Defer); else Ent := RTE (RE_Reraise_Occurrence_Always); end if; Rewrite (N, Make_Procedure_Call_Statement (Loc, Name => New_Occurrence_Of (Ent, Loc), Parameter_Associations => New_List ( New_Occurrence_Of (Choice_Parameter (Ehand), Loc)))); end; end if; Analyze (N); end Expand_N_Raise_Statement; ---------------------------------- -- Expand_N_Raise_Storage_Error -- ---------------------------------- procedure Expand_N_Raise_Storage_Error (N : Node_Id) is begin -- We adjust the condition to deal with the C/Fortran boolean case. This -- may well not be necessary, as all such conditions are generated by -- the expander and probably are all standard boolean, but who knows -- what strange optimization in future may require this adjustment. Adjust_Condition (Condition (N)); -- Now deal with possible local raise handling Possible_Local_Raise (N, Standard_Storage_Error); end Expand_N_Raise_Storage_Error; -------------------------- -- Possible_Local_Raise -- -------------------------- procedure Possible_Local_Raise (N : Node_Id; E : Entity_Id) is begin -- Nothing to do if local raise optimization not active if not Debug_Flag_Dot_G and then not Restriction_Active (No_Exception_Propagation) then return; end if; -- Nothing to do if original node was an explicit raise, because in -- that case, we already generated the required warning for the raise. if Nkind (Original_Node (N)) = N_Raise_Statement then return; end if; -- Otherwise see if we have a local handler for the exception declare H : constant Node_Id := Find_Local_Handler (E, N); begin -- If so, mark that it has a local raise if Present (H) then Set_Has_Local_Raise (H, True); -- Otherwise, if the No_Exception_Propagation restriction is active -- and the warning is enabled, generate the appropriate warnings. elsif Warn_On_Non_Local_Exception and then Restriction_Active (No_Exception_Propagation) then Warn_No_Exception_Propagation_Active (N); if Configurable_Run_Time_Mode then Error_Msg_NE ("\?X?& may call Last_Chance_Handler", N, E); else Error_Msg_NE ("\?X?& may result in unhandled exception", N, E); end if; end if; end; end Possible_Local_Raise; ------------------------ -- Find_Local_Handler -- ------------------------ function Find_Local_Handler (Ename : Entity_Id; Nod : Node_Id) return Node_Id is N : Node_Id; P : Node_Id; H : Node_Id; C : Node_Id; SSE : Scope_Stack_Entry renames Scope_Stack.Table (Scope_Stack.Last); -- This is used to test for wrapped actions below ERaise : Entity_Id; EHandle : Entity_Id; -- The entity Id's for the exception we are raising and handling, using -- the renamed exception if a Renamed_Entity is present. begin -- Never any local handler if all handlers removed if Debug_Flag_Dot_X then return Empty; end if; -- Get the exception we are raising, allowing for renaming ERaise := Get_Renamed_Entity (Ename); -- We need to check if the node we are looking at is contained in -- -- Loop to search up the tree N := Nod; loop P := Parent (N); -- If we get to the top of the tree, or to a subprogram, task, entry, -- protected body, or accept statement without having found a -- matching handler, then there is no local handler. if No (P) or else Nkind (P) = N_Subprogram_Body or else Nkind (P) = N_Task_Body or else Nkind (P) = N_Protected_Body or else Nkind (P) = N_Entry_Body or else Nkind (P) = N_Accept_Statement then return Empty; -- Test for handled sequence of statements with at least one -- exception handler which might be the one we are looking for. elsif Nkind (P) = N_Handled_Sequence_Of_Statements and then Present (Exception_Handlers (P)) then -- Before we proceed we need to check if the node N is covered -- by the statement part of P rather than one of its exception -- handlers (an exception handler obviously does not cover its -- own statements). -- This test is more delicate than might be thought. It is not -- just a matter of checking the Statements (P), because the node -- might be waiting to be wrapped in a transient scope, in which -- case it will end up in the block statements, even though it -- is not there now. if Is_List_Member (N) then declare LCN : constant List_Id := List_Containing (N); begin if LCN = Statements (P) or else LCN = SSE.Actions_To_Be_Wrapped (Before) or else LCN = SSE.Actions_To_Be_Wrapped (After) or else LCN = SSE.Actions_To_Be_Wrapped (Cleanup) then -- Loop through exception handlers H := First (Exception_Handlers (P)); while Present (H) loop -- Guard against other constructs appearing in the -- list of exception handlers. if Nkind (H) = N_Exception_Handler then -- Loop through choices in one handler C := First (Exception_Choices (H)); while Present (C) loop -- Deal with others case if Nkind (C) = N_Others_Choice then -- Matching others handler, but we need -- to ensure there is no choice parameter. -- If there is, then we don't have a local -- handler after all (since we do not allow -- choice parameters for local handlers). if No (Choice_Parameter (H)) then return H; else return Empty; end if; -- If not others must be entity name elsif Nkind (C) /= N_Others_Choice then pragma Assert (Is_Entity_Name (C)); pragma Assert (Present (Entity (C))); -- Get exception being handled, dealing with -- renaming. EHandle := Get_Renamed_Entity (Entity (C)); -- If match, then check choice parameter if ERaise = EHandle then if No (Choice_Parameter (H)) then return H; else return Empty; end if; end if; end if; Next (C); end loop; end if; Next (H); end loop; end if; end; end if; end if; N := P; end loop; end Find_Local_Handler; --------------------------------- -- Get_Local_Raise_Call_Entity -- --------------------------------- -- Note: this is primarily provided for use by the back end in generating -- calls to Local_Raise. But it would be too late in the back end to call -- RTE if this actually caused a load/analyze of the unit. So what we do -- is to ensure there is a dummy call to this function during front end -- processing so that the unit gets loaded then, and not later. Local_Raise_Call_Entity : Entity_Id; Local_Raise_Call_Entity_Set : Boolean := False; function Get_Local_Raise_Call_Entity return Entity_Id is begin if not Local_Raise_Call_Entity_Set then Local_Raise_Call_Entity_Set := True; if RTE_Available (RE_Local_Raise) then Local_Raise_Call_Entity := RTE (RE_Local_Raise); else Local_Raise_Call_Entity := Empty; end if; end if; return Local_Raise_Call_Entity; end Get_Local_Raise_Call_Entity; ----------------------------- -- Get_RT_Exception_Entity -- ----------------------------- function Get_RT_Exception_Entity (R : RT_Exception_Code) return Entity_Id is begin case Rkind (R) is when CE_Reason => return Standard_Constraint_Error; when PE_Reason => return Standard_Program_Error; when SE_Reason => return Standard_Storage_Error; end case; end Get_RT_Exception_Entity; --------------------------- -- Get_RT_Exception_Name -- --------------------------- procedure Get_RT_Exception_Name (Code : RT_Exception_Code) is begin case Code is when CE_Access_Check_Failed => Add_Str_To_Name_Buffer ("CE_Access_Check"); when CE_Access_Parameter_Is_Null => Add_Str_To_Name_Buffer ("CE_Null_Access_Parameter"); when CE_Discriminant_Check_Failed => Add_Str_To_Name_Buffer ("CE_Discriminant_Check"); when CE_Divide_By_Zero => Add_Str_To_Name_Buffer ("CE_Divide_By_Zero"); when CE_Explicit_Raise => Add_Str_To_Name_Buffer ("CE_Explicit_Raise"); when CE_Index_Check_Failed => Add_Str_To_Name_Buffer ("CE_Index_Check"); when CE_Invalid_Data => Add_Str_To_Name_Buffer ("CE_Invalid_Data"); when CE_Length_Check_Failed => Add_Str_To_Name_Buffer ("CE_Length_Check"); when CE_Null_Exception_Id => Add_Str_To_Name_Buffer ("CE_Null_Exception_Id"); when CE_Null_Not_Allowed => Add_Str_To_Name_Buffer ("CE_Null_Not_Allowed"); when CE_Overflow_Check_Failed => Add_Str_To_Name_Buffer ("CE_Overflow_Check"); when CE_Partition_Check_Failed => Add_Str_To_Name_Buffer ("CE_Partition_Check"); when CE_Range_Check_Failed => Add_Str_To_Name_Buffer ("CE_Range_Check"); when CE_Tag_Check_Failed => Add_Str_To_Name_Buffer ("CE_Tag_Check"); when PE_Access_Before_Elaboration => Add_Str_To_Name_Buffer ("PE_Access_Before_Elaboration"); when PE_Accessibility_Check_Failed => Add_Str_To_Name_Buffer ("PE_Accessibility_Check"); when PE_Address_Of_Intrinsic => Add_Str_To_Name_Buffer ("PE_Address_Of_Intrinsic"); when PE_Aliased_Parameters => Add_Str_To_Name_Buffer ("PE_Aliased_Parameters"); when PE_All_Guards_Closed => Add_Str_To_Name_Buffer ("PE_All_Guards_Closed"); when PE_Bad_Predicated_Generic_Type => Add_Str_To_Name_Buffer ("PE_Bad_Predicated_Generic_Type"); when PE_Current_Task_In_Entry_Body => Add_Str_To_Name_Buffer ("PE_Current_Task_In_Entry_Body"); when PE_Duplicated_Entry_Address => Add_Str_To_Name_Buffer ("PE_Duplicated_Entry_Address"); when PE_Explicit_Raise => Add_Str_To_Name_Buffer ("PE_Explicit_Raise"); when PE_Finalize_Raised_Exception => Add_Str_To_Name_Buffer ("PE_Finalize_Raised_Exception"); when PE_Implicit_Return => Add_Str_To_Name_Buffer ("PE_Implicit_Return"); when PE_Misaligned_Address_Value => Add_Str_To_Name_Buffer ("PE_Misaligned_Address_Value"); when PE_Missing_Return => Add_Str_To_Name_Buffer ("PE_Missing_Return"); when PE_Non_Transportable_Actual => Add_Str_To_Name_Buffer ("PE_Non_Transportable_Actual"); when PE_Overlaid_Controlled_Object => Add_Str_To_Name_Buffer ("PE_Overlaid_Controlled_Object"); when PE_Potentially_Blocking_Operation => Add_Str_To_Name_Buffer ("PE_Potentially_Blocking_Operation"); when PE_Stream_Operation_Not_Allowed => Add_Str_To_Name_Buffer ("PE_Stream_Operation_Not_Allowed"); when PE_Stubbed_Subprogram_Called => Add_Str_To_Name_Buffer ("PE_Stubbed_Subprogram_Called"); when PE_Unchecked_Union_Restriction => Add_Str_To_Name_Buffer ("PE_Unchecked_Union_Restriction"); when SE_Empty_Storage_Pool => Add_Str_To_Name_Buffer ("SE_Empty_Storage_Pool"); when SE_Explicit_Raise => Add_Str_To_Name_Buffer ("SE_Explicit_Raise"); when SE_Infinite_Recursion => Add_Str_To_Name_Buffer ("SE_Infinite_Recursion"); when SE_Object_Too_Large => Add_Str_To_Name_Buffer ("SE_Object_Too_Large"); end case; end Get_RT_Exception_Name; ---------------------------- -- Warn_If_No_Propagation -- ---------------------------- procedure Warn_If_No_Propagation (N : Node_Id) is begin if Restriction_Check_Required (No_Exception_Propagation) and then Warn_On_Non_Local_Exception then Warn_No_Exception_Propagation_Active (N); if Configurable_Run_Time_Mode then Error_Msg_N ("\?X?Last_Chance_Handler will be called on exception", N); else Error_Msg_N ("\?X?execution may raise unhandled exception", N); end if; end if; end Warn_If_No_Propagation; ------------------------------------------ -- Warn_No_Exception_Propagation_Active -- ------------------------------------------ procedure Warn_No_Exception_Propagation_Active (N : Node_Id) is begin Error_Msg_N ("?X?pragma Restrictions (No_Exception_Propagation) in effect", N); end Warn_No_Exception_Propagation_Active; end Exp_Ch11;
-- -- 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 Search_Value := 250; Search (Search_Array, Search_Value); end;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- A D A . W I D E _ W I D E _ T E X T _ I O . M O D U L A R _ A U X -- -- -- -- 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. -- -- -- -- -- -- -- -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- This package contains the routines for Ada.Wide_Wide_Text_IO.Modular_IO -- that are shared among separate instantiations of this package. The -- routines in this package are identical semantically to those in Modular_IO -- itself, except that the generic parameter Num has been replaced by -- Unsigned or Long_Long_Unsigned, and the default parameters have been -- removed because they are supplied explicitly by the calls from within the -- generic template. with System.Unsigned_Types; private package Ada.Wide_Wide_Text_IO.Modular_Aux is package U renames System.Unsigned_Types; procedure Get_Uns (File : File_Type; Item : out U.Unsigned; Width : Field); procedure Get_LLU (File : File_Type; Item : out U.Long_Long_Unsigned; Width : Field); procedure Gets_Uns (From : String; Item : out U.Unsigned; Last : out Positive); procedure Gets_LLU (From : String; Item : out U.Long_Long_Unsigned; Last : out Positive); procedure Put_Uns (File : File_Type; Item : U.Unsigned; Width : Field; Base : Number_Base); procedure Put_LLU (File : File_Type; Item : U.Long_Long_Unsigned; Width : Field; Base : Number_Base); procedure Puts_Uns (To : out String; Item : U.Unsigned; Base : Number_Base); procedure Puts_LLU (To : out String; Item : U.Long_Long_Unsigned; Base : Number_Base); end Ada.Wide_Wide_Text_IO.Modular_Aux;
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- P R J . A T T R -- -- -- -- B o d y -- -- -- -- $Revision$ -- -- -- Copyright (C) 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 Ada.Characters.Handling; use Ada.Characters.Handling; with Namet; use Namet; with Output; use Output; package body Prj.Attr is -- Names end with '#' -- Package names are preceded by 'P' -- Attribute names are preceded by two letters -- The first letter is one of -- 'S' for Single -- 'L' for list -- The second letter is one of -- 'V' for single variable -- 'A' for associative array -- 'a' for case insensitive associative array -- End is indicated by two consecutive '#'. Initialization_Data : constant String := -- project attributes "SVobject_dir#" & "SVexec_dir#" & "LVsource_dirs#" & "LVsource_files#" & "SVsource_list_file#" & "SVlibrary_dir#" & "SVlibrary_name#" & "SVlibrary_kind#" & "SVlibrary_elaboration#" & "SVlibrary_version#" & "LVmain#" & "LVlanguages#" & -- package Naming "Pnaming#" & "Saspecification_suffix#" & "Saimplementation_suffix#" & "SVseparate_suffix#" & "SVcasing#" & "SVdot_replacement#" & "SAspecification#" & "SAimplementation#" & "LAspecification_exceptions#" & "LAimplementation_exceptions#" & -- package Compiler "Pcompiler#" & "Ladefault_switches#" & "LAswitches#" & "SVlocal_configuration_pragmas#" & -- package Builder "Pbuilder#" & "Ladefault_switches#" & "LAswitches#" & "SVglobal_configuration_pragmas#" & -- package gnatls "Pgnatls#" & "LVswitches#" & -- package Binder "Pbinder#" & "Ladefault_switches#" & "LAswitches#" & -- package Linker "Plinker#" & "Ladefault_switches#" & "LAswitches#" & -- package Cross_Reference "Pcross_reference#" & "Ladefault_switches#" & "LAswitches#" & -- package Finder "Pfinder#" & "Ladefault_switches#" & "LAswitches#" & -- package Gnatstub "Pgnatstub#" & "LVswitches#" & "#"; ---------------- -- Initialize -- ---------------- procedure Initialize is Start : Positive := Initialization_Data'First; Finish : Positive := Start; Current_Package : Package_Node_Id := Empty_Package; Current_Attribute : Attribute_Node_Id := Empty_Attribute; Is_An_Attribute : Boolean := False; Kind_1 : Variable_Kind := Undefined; Kind_2 : Attribute_Kind := Single; Package_Name : Name_Id := No_Name; Attribute_Name : Name_Id := No_Name; First_Attribute : Attribute_Node_Id := Attribute_First; begin -- Make sure the two tables are empty Attributes.Set_Last (Attributes.First); Package_Attributes.Set_Last (Package_Attributes.First); while Initialization_Data (Start) /= '#' loop Is_An_Attribute := True; case Initialization_Data (Start) is when 'P' => -- New allowed package Start := Start + 1; Finish := Start; while Initialization_Data (Finish) /= '#' loop Finish := Finish + 1; end loop; Name_Len := Finish - Start; Name_Buffer (1 .. Name_Len) := To_Lower (Initialization_Data (Start .. Finish - 1)); Package_Name := Name_Find; for Index in Package_First .. Package_Attributes.Last loop if Package_Name = Package_Attributes.Table (Index).Name then Write_Line ("Duplicate package name """ & Initialization_Data (Start .. Finish - 1) & """ in Prj.Attr body."); raise Program_Error; end if; end loop; Is_An_Attribute := False; Current_Attribute := Empty_Attribute; Package_Attributes.Increment_Last; Current_Package := Package_Attributes.Last; Package_Attributes.Table (Current_Package).Name := Package_Name; Start := Finish + 1; when 'S' => Kind_1 := Single; when 'L' => Kind_1 := List; when others => raise Program_Error; end case; if Is_An_Attribute then -- New attribute Start := Start + 1; case Initialization_Data (Start) is when 'V' => Kind_2 := Single; when 'A' => Kind_2 := Associative_Array; when 'a' => Kind_2 := Case_Insensitive_Associative_Array; when others => raise Program_Error; end case; Start := Start + 1; Finish := Start; while Initialization_Data (Finish) /= '#' loop Finish := Finish + 1; end loop; Name_Len := Finish - Start; Name_Buffer (1 .. Name_Len) := To_Lower (Initialization_Data (Start .. Finish - 1)); Attribute_Name := Name_Find; Attributes.Increment_Last; if Current_Attribute = Empty_Attribute then First_Attribute := Attributes.Last; if Current_Package /= Empty_Package then Package_Attributes.Table (Current_Package).First_Attribute := Attributes.Last; end if; else -- Check that there are no duplicate attributes for Index in First_Attribute .. Attributes.Last - 1 loop if Attribute_Name = Attributes.Table (Index).Name then Write_Line ("Duplicate attribute name """ & Initialization_Data (Start .. Finish - 1) & """ in Prj.Attr body."); raise Program_Error; end if; end loop; Attributes.Table (Current_Attribute).Next := Attributes.Last; end if; Current_Attribute := Attributes.Last; Attributes.Table (Current_Attribute) := (Name => Attribute_Name, Kind_1 => Kind_1, Kind_2 => Kind_2, Next => Empty_Attribute); Start := Finish + 1; end if; end loop; end Initialize; end Prj.Attr;
-- SPDX-FileCopyrightText: 2019-2021 Max Reznik <reznikmm@gmail.com> -- -- SPDX-License-Identifier: MIT ------------------------------------------------------------- with Program.Lexical_Handlers; with Program.Scanner_Destinations; with Program.Scanners; with Program.Symbols; package body Program.Plain_Compilations is type Scanner_Destination (Comp : not null access Compilation; Scanner : not null access Program.Scanners.Scanner) is new Program.Scanner_Destinations.Scanner_Destination with record Line_From : Positive := 1; end record; overriding procedure New_Line (Self : in out Scanner_Destination; Unused : Positive); overriding procedure New_Token (Self : in out Scanner_Destination; Token : Program.Scanner_Destinations.Token); procedure Read_All_Tokens (Self : access Compilation; Buffer : Program.Source_Buffers.Source_Buffer_Access); ------------- -- Context -- ------------- overriding function Context (Self : Compilation) return not null Program.Contexts.Context_Access is begin return Program.Contexts.Context_Access (Self.Context); end Context; -------------- -- Get_Span -- -------------- overriding procedure Get_Span (Self : Compilation; Span : Program.Source_Buffers.Span; From_Line : out Positive; To_Line : out Positive; From_Column : out Positive; To_Column : out Positive) is begin for J in Self.Line_Spans.First_Index .. Self.Line_Spans.Last_Index loop declare SJ : constant Program.Source_Buffers.Span := Self.Line_Spans (J); begin if Span.From in SJ.From .. SJ.To then From_Line := J; From_Column := Span.From - SJ.From + 1; for K in J .. Self.Line_Spans.Last_Index loop declare SK : constant Source_Buffers.Span := Self.Line_Spans (K); begin if Span.To in SK.From .. SK.To then To_Line := K; To_Column := Span.To - SK.From + 1; return; end if; end; end loop; end if; end; end loop; raise Constraint_Error; end Get_Span; ---------------- -- Initialize -- ---------------- procedure Initialize (Self : in out Compilation'Class; Context : not null Program.Contexts.Context_Access) is begin Self.Context := Plain_Context_Access (Context); end Initialize; --------------------- -- Lexical_Element -- --------------------- overriding function Lexical_Element (Self : Compilation; Index : Positive) return Program.Lexical_Elements.Lexical_Element_Access is begin return Self.Tokens.Element (Index); end Lexical_Element; --------------------------- -- Lexical_Element_Count -- --------------------------- overriding function Lexical_Element_Count (Self : Compilation) return Natural is begin return Self.Tokens.Length; end Lexical_Element_Count; ---------- -- Line -- ---------- overriding function Line (Self : Compilation; Index : Positive) return Program.Text is begin return Self.Buffer.Text (Self.Line_Spans (Index)); end Line; ---------------- -- Line_Count -- ---------------- overriding function Line_Count (Self : Compilation) return Natural is begin return Self.Line_Spans.Last_Index; end Line_Count; -------------- -- New_Line -- -------------- overriding procedure New_Line (Self : in out Scanner_Destination; Unused : Positive) is Span : constant Program.Source_Buffers.Span := Self.Scanner.Get_Span; begin Self.Comp.Line_Spans.Append ((From => Self.Line_From, To => Span.From - 1)); Self.Line_From := Span.To + 1; end New_Line; --------------- -- New_Token -- --------------- overriding procedure New_Token (Self : in out Scanner_Destination; Token : Program.Scanner_Destinations.Token) is use all type Program.Lexical_Elements.Lexical_Element_Kind; Symbol : Program.Symbols.Symbol := Program.Symbols.No_Symbol; begin if Token.Kind = Identifier then Self.Comp.Context.Find_Or_Create_Symbol (Self.Comp.Buffer'Unchecked_Access, Token.Span, Symbol); elsif Token.Kind in Character_Literal | String_Literal then Symbol := Self.Comp.Context.Find (Self.Comp.Buffer.Text (Token.Span)); elsif Token.Kind in Program.Lexical_Elements.Operator_Kind then Symbol := Program.Symbols.To_Symbol (Token.Kind); end if; Self.Comp.Tokens.Append (Token.Span, Token.Kind, Symbol); end New_Token; ----------------- -- Object_Name -- ----------------- overriding function Object_Name (Self : Compilation) return Program.Text is begin return Ada.Strings.Wide_Wide_Unbounded.To_Wide_Wide_String (Self.Object_Name); end Object_Name; ---------------- -- Parse_File -- ---------------- not overriding procedure Parse_File (Self : aliased in out Compilation; Text_Name : Program.Text; Units : out Program.Parsers.Unit_Vectors.Vector; Pragmas : out Program.Parsers.Element_Vectors.Vector; Standard : Boolean := False) is begin Self.Text_Name := Ada.Strings.Wide_Wide_Unbounded. To_Unbounded_Wide_Wide_String (Text_Name); Self.Buffer.Initialize (Text_Name); Self.Read_All_Tokens (Self.Buffer'Unchecked_Access); Program.Parsers.Parse (Self'Unchecked_Access, Self.Tokens'Unchecked_Access, Self.Subpool, Units, Pragmas, Standard); end Parse_File; --------------------- -- Read_All_Tokens -- --------------------- procedure Read_All_Tokens (Self : access Compilation; Buffer : Program.Source_Buffers.Source_Buffer_Access) is Token : Program.Lexical_Elements.Lexical_Element_Kind; Scanner : aliased Program.Scanners.Scanner; Dest : aliased Scanner_Destination (Self, Scanner'Access); Handler : aliased Program.Lexical_Handlers.Handler (Dest'Access); begin Buffer.Rewind; Scanner.Set_Source (Buffer); Scanner.Set_Handler (Handler'Unchecked_Access); loop Scanner.Get_Token (Token); exit when Token in Program.Lexical_Elements.End_Of_Input; end loop; end Read_All_Tokens; ---------- -- Text -- ---------- overriding function Text (Self : Compilation; Span : Program.Source_Buffers.Span) return Program.Text is begin return Self.Buffer.Text (Span); end Text; --------------- -- Text_Name -- --------------- overriding function Text_Name (Self : Compilation) return Program.Text is begin return Ada.Strings.Wide_Wide_Unbounded.To_Wide_Wide_String (Self.Text_Name); end Text_Name; end Program.Plain_Compilations;
with Vect3_Pkg; package Vect3 is -- Unconstrained array types are vectorizable, possibly with special -- help for the programmer type Varray is array (Vect3_Pkg.Index_Type range <>) of Long_Float; for Varray'Alignment use 16; function "+" (X, Y : Varray) return Varray; procedure Add (X, Y : Varray; R : out Varray); procedure Add (X, Y : not null access Varray; R : not null access Varray); -- Constrained array types are vectorizable type Sarray is array (Vect3_Pkg.Index_Type(1) .. Vect3_Pkg.Index_Type(4)) of Long_Float; for Sarray'Alignment use 16; function "+" (X, Y : Sarray) return Sarray; procedure Add (X, Y : Sarray; R : out Sarray); procedure Add (X, Y : not null access Sarray; R : not null access Sarray); type Darray1 is array (Vect3_Pkg.Index_Type(1) .. Vect3_Pkg.N) of Long_Float; for Darray1'Alignment use 16; function "+" (X, Y : Darray1) return Darray1; procedure Add (X, Y : Darray1; R : out Darray1); procedure Add (X, Y : not null access Darray1; R : not null access Darray1); type Darray2 is array (Vect3_Pkg.K .. Vect3_Pkg.Index_Type(4)) of Long_Float; for Darray2'Alignment use 16; function "+" (X, Y : Darray2) return Darray2; procedure Add (X, Y : Darray2; R : out Darray2); procedure Add (X, Y : not null access Darray2; R : not null access Darray2); type Darray3 is array (Vect3_Pkg.K .. Vect3_Pkg.N) of Long_Float; for Darray3'Alignment use 16; function "+" (X, Y : Darray3) return Darray3; procedure Add (X, Y : Darray3; R : out Darray3); procedure Add (X, Y : not null access Darray3; R : not null access Darray3); end Vect3;
with impact.d3.Transform, impact.d3.Matrix, impact.d3.Vector; with impact.d3.min_max; package body impact.d3.aabb_Util is procedure Transform_Aabb (halfExtents : in math.Vector_3; margin : in math.Real; t : in Transform_3d; aabbMinOut, aabbMaxOut : out math.Vector_3) is use impact.d3.Transform, impact.d3.Matrix, impact.d3.Vector; halfExtentsWithMargin : constant math.Vector_3 := halfExtents + (margin, margin, margin); abs_b : constant math.Matrix_3x3 := absolute (getBasis (t)); center : constant math.Vector_3 := getOrigin (t); extent : constant math.Vector_3 := (dot (getRow (abs_b, 1), halfExtentsWithMargin), dot (getRow (abs_b, 2), halfExtentsWithMargin), dot (getRow (abs_b, 3), halfExtentsWithMargin)); begin aabbMinOut := center - extent; aabbMaxOut := center + extent; end Transform_Aabb; procedure Transform_Aabb (localAabbMin, localAabbMax : in math.Vector_3; margin : in math.Real; t : in Transform_3d; aabbMinOut, aabbMaxOut : out math.Vector_3) is use linear_Algebra_3d, impact.d3.Transform, impact.d3.Matrix, impact.d3.Vector; pragma Assert (localAabbMin (1) <= localAabbMax (1)); pragma Assert (localAabbMin (2) <= localAabbMax (2)); pragma Assert (localAabbMin (3) <= localAabbMax (3)); localHalfExtents : constant math.Vector_3 := 0.5 * (localAabbMax - localAabbMin) + (margin, margin, margin); localCenter : constant math.Vector_3 := 0.5 * (localAabbMax + localAabbMin); abs_b : constant math.Matrix_3x3 := absolute (getBasis (t)); center : constant math.Vector_3 := t * localCenter; extent : constant math.Vector_3 := (dot (getRow (abs_b, 1), localHalfExtents), dot (getRow (abs_b, 2), localHalfExtents), dot (getRow (abs_b, 3), localHalfExtents)); begin aabbMinOut := center - extent; aabbMaxOut := center + extent; end Transform_Aabb; function btRayAabb2 (rayFrom, rayInvDirection : in math.Vector_3; raySign : in Signs; bounds : in impact.d3.aabb_Util.Bounds; tmin : access math.Real; lambda_min, lambda_max : in math.Real) return Boolean is use type interfaces.unsigned_32; tmax, tymin, tymax, tzmin, tzmax : math.Real; begin tmin.all := (bounds ( Integer (raySign (1))) (1) - rayFrom (1)) * rayInvDirection (1); tmax := (bounds (1 - Integer (raySign (1))) (1) - rayFrom (1)) * rayInvDirection (1); tymin := (bounds ( Integer (raySign (2))) (2) - rayFrom (2)) * rayInvDirection (2); tymax := (bounds (1 - Integer (raySign (2))) (2) - rayFrom (2)) * rayInvDirection (2); if (tmin.all > tymax) or else (tymin > tmax) then return False; end if; if tymin > tmin.all then tmin.all := tymin; end if; if tymax < tmax then tmax := tymax; end if; tzmin := (bounds ( Integer (raySign (3))) (3) - rayFrom (3)) * rayInvDirection (3); tzmax := (bounds (1 - Integer (raySign (3))) (3) - rayFrom (3)) * rayInvDirection (3); if (tmin.all > tzmax) or else (tzmin > tmax) then return False; end if; if tzmin > tmin.all then tmin.all := tzmin; end if; if tzmax < tmax then tmax := tzmax; end if; return tmin.all < lambda_max and then tmax > lambda_min; end btRayAabb2; function btRayAabb (rayFrom, rayTo : in math.Vector_3; aabbMin, aabbMax : in math.Vector_3; param : access math.Real; normal : access math.Vector_3) return Boolean is use Interfaces; aabbHalfExtent : math.Vector_3 := (aabbMax - aabbMin) * 0.5; aabbCenter : constant math.Vector_3 := (aabbMax + aabbMin) * 0.5; source : math.Vector_3 := rayFrom - aabbCenter; target : constant math.Vector_3 := rayTo - aabbCenter; sourceOutcode : constant Unsigned_32 := btOutcode (source, aabbHalfExtent); targetOutcode : constant Unsigned_32 := btOutcode (target, aabbHalfExtent); begin if (sourceOutcode and targetOutcode) = 0 then declare use impact.d3.min_max; lambda_enter : math.Real := 0.0; lambda_exit : math.Real := param.all; r : math.Vector_3 := target - source; normSign : math.Real := 1.0; hitNormal : math.Vector_3 := (0.0, 0.0, 0.0); bit : Unsigned_32 := 1; lambda : math.Real; begin for j in 1 .. 3 loop for i in 1 .. 3 loop if (sourceOutcode and bit) /= 0 then lambda := (-source (i) - aabbHalfExtent (i) * normSign) / r (i); if lambda_enter <= lambda then lambda_enter := lambda; hitNormal := (0.0, 0.0, 0.0); hitNormal (i) := normSign; end if; elsif (targetOutcode and bit) /= 0 then lambda := (-source (i) - aabbHalfExtent (i) * normSign) / r (i); btSetMin (lambda_exit, lambda); end if; bit := bit * 2; end loop; normSign := -1.0; end loop; if lambda_enter <= lambda_exit then param.all := lambda_enter; normal.all := hitNormal; return True; end if; end; end if; return False; end btRayAabb; -- SIMD_FORCE_INLINE bool btRayAabb(const impact.d3.Vector& rayFrom, -- const impact.d3.Vector& rayTo, -- const impact.d3.Vector& aabbMin, -- const impact.d3.Vector& aabbMax, -- impact.d3.Scalar& param, impact.d3.Vector& normal) -- { -- impact.d3.Vector aabbHalfExtent = (aabbMax-aabbMin)* impact.d3.Scalar(0.5); -- impact.d3.Vector aabbCenter = (aabbMax+aabbMin)* impact.d3.Scalar(0.5); -- impact.d3.Vector source = rayFrom - aabbCenter; -- impact.d3.Vector target = rayTo - aabbCenter; -- int sourceOutcode = btOutcode(source,aabbHalfExtent); -- int targetOutcode = btOutcode(target,aabbHalfExtent); -- if ((sourceOutcode & targetOutcode) == 0x0) -- { -- impact.d3.Scalar lambda_enter = impact.d3.Scalar(0.0); -- impact.d3.Scalar lambda_exit = param; -- impact.d3.Vector r = target - source; -- int i; -- impact.d3.Scalar normSign = 1; -- impact.d3.Vector hitNormal(0,0,0); -- int bit=1; -- -- for (int j=0;j<2;j++) -- { -- for (i = 0; i != 3; ++i) -- { -- if (sourceOutcode & bit) -- { -- impact.d3.Scalar lambda = (-source[i] - aabbHalfExtent[i]*normSign) / r[i]; -- if (lambda_enter <= lambda) -- { -- lambda_enter = lambda; -- hitNormal.setValue(0,0,0); -- hitNormal[i] = normSign; -- } -- } -- else if (targetOutcode & bit) -- { -- impact.d3.Scalar lambda = (-source[i] - aabbHalfExtent[i]*normSign) / r[i]; -- btSetMin(lambda_exit, lambda); -- } -- bit<<=1; -- } -- normSign = impact.d3.Scalar(-1.); -- } -- if (lambda_enter <= lambda_exit) -- { -- param = lambda_enter; -- normal = hitNormal; -- return true; -- } -- } -- return false; -- } -- -- -- function btOutcode (p, halfExtent : in math.Vector_3) return Interfaces.Unsigned_32 is use type interfaces.Unsigned_32; X_lt, X_gt, Y_lt, Y_gt, Z_lt, Z_gt : Interfaces.Unsigned_32; begin if p (1) < -halfExtent (1) then X_lt := 16#01#; else X_lt := 16#00#; end if; if p (1) > halfExtent (1) then X_gt := 16#08#; else X_gt := 16#00#; end if; if p (2) < -halfExtent (2) then Y_lt := 16#02#; else Y_lt := 16#00#; end if; if p (2) > halfExtent (2) then Y_gt := 16#10#; else Y_gt := 16#00#; end if; if p (3) < -halfExtent (3) then Z_lt := 16#04#; else Z_lt := 16#00#; end if; if p (3) > halfExtent (3) then Z_gt := 16#20#; else Z_gt := 16#00#; end if; return X_lt or X_gt or Y_lt or Y_gt or Z_lt or Z_gt; end btOutcode; function TestTriangleAgainstAabb2 (vertices : in math.Matrix_3x3; aabbMin, aabbMax : in math.Vector_3) return Boolean is use impact.d3.Matrix; p1 : math.Vector_3 renames getRow (vertices, 1); p2 : math.Vector_3 renames getRow (vertices, 2); p3 : math.Vector_3 renames getRow (vertices, 3); begin if Real'Min (Real'Min (p1 (1), p2 (1)), p3 (1)) > aabbMax (1) then return False; end if; if Real'Max (Real'Max (p1 (1), p2 (1)), p3 (1)) < aabbMin (1) then return False; end if; if Real'Min (Real'Min (p1 (3), p2 (3)), p3 (3)) > aabbMax (3) then return False; end if; if Real'Max (Real'Max (p1 (3), p2 (3)), p3 (3)) < aabbMin (3) then return False; end if; if Real'Min (Real'Min (p1 (2), p2 (2)), p3 (2)) > aabbMax (2) then return False; end if; if Real'Max (Real'Max (p1 (2), p2 (2)), p3 (2)) < aabbMin (2) then return False; end if; return True; end TestTriangleAgainstAabb2; end impact.d3.aabb_Util;
------------------------------------------------------------------------------ -- -- -- Ada User Repository Annex (AURA) -- -- ANNEXI-STRAYLINE Reference Implementation -- -- -- -- Core -- -- -- -- ------------------------------------------------------------------------ -- -- -- -- Copyright (C) 2020, ANNEXI-STRAYLINE Trans-Human Ltd. -- -- All rights reserved. -- -- -- -- Original Contributors: -- -- * Richard Wai (ANNEXI-STRAYLINE) -- -- -- -- 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 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 -- -- 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. -- -- -- ------------------------------------------------------------------------------ with Ada.Assertions; with Ada.Strings.Unbounded; with Ada.Unchecked_Deallocation; with Ada.Containers.Hashed_Sets; with Ada.Containers.Synchronized_Queue_Interfaces; with Ada.Containers.Unbounded_Synchronized_Queues; with Registrar.Queries; with Registrar.Registry; with Registrar.Subsystems; with Registrar.Library_Units; with Registrar.Registration.Unchecked_Deregister_Unit; with Unit_Names, Unit_Names.Hash, Unit_Names.Sets; with Workers, Workers.Reporting; package body Registrar.Dependency_Processing is use type Unit_Names.Unit_Name; New_Line: Character renames Workers.Reporting.New_Line; -- -- Common infrastructure -- package UNQI is new Ada.Containers.Synchronized_Queue_Interfaces (Unit_Names.Unit_Name); package Name_Queues is new Ada.Containers.Unbounded_Synchronized_Queues (UNQI); type Name_Queue_Access is access Name_Queues.Queue; type Reverse_Dependency_Queue is record Map_Key : Unit_Names.Unit_Name; Name_Queue: Name_Queue_Access := null; end record; function Key_Hash (RDQ: Reverse_Dependency_Queue) return Ada.Containers.Hash_Type is (Unit_Names.Hash (RDQ.Map_Key)); function Equivalent_Queues (Left, Right: Reverse_Dependency_Queue) return Boolean is (Left.Map_Key = Right.Map_Key); package Map_Queue_Sets is new Ada.Containers.Hashed_Sets (Element_Type => Reverse_Dependency_Queue, Hash => Key_Hash, Equivalent_Elements => Equivalent_Queues); type Map_Queue_Set_Access is access Map_Queue_Sets.Set; -- -- Work Orders Declarations -- ----------------------------- -- Phase 1: Merge Subunits -- ----------------------------- -- This phase is a bit of a "fake" one. It wouldn't be terribly efficient to -- parallelize this operation since the operations between each manipulation -- of the map are generally insignficant. The contention and scheduling -- overhead would likely far outstrip the performance gains of parallelizing -- it. type Merge_Subunits_Order is new Workers.Work_Order with record All_Units : Library_Units.Library_Unit_Sets.Set; All_Subsys: Subsystems.Subsystem_Sets.Set; end record; overriding function Image (Order: Merge_Subunits_Order) return String; overriding procedure Execute (Order: in out Merge_Subunits_Order); ---------------------- -- Phase 2: Fan-out -- ---------------------- type Fan_Out_Order is new Workers.Work_Order with record Target: Unit_Names.Unit_Name; -- The unit that needs to be fanned-out Unit_Map_Queues : Map_Queue_Set_Access; Subsys_Map_Queues: Map_Queue_Set_Access; -- Target deposits it's own name into the queue for each -- of its dependencies (unit and subsystem) end record; overriding function Image (Order: Fan_Out_Order) return String; overriding procedure Execute (Order: in out Fan_Out_Order); overriding procedure Phase_Trigger (Order: in out Fan_Out_Order); ---------------------------- -- Phase 3: Build Reverse -- ---------------------------- type Map_Domain is (Library_Units_Domain, Subsystems_Domain); -- Used to select which map is having its reverse dependency set -- build for -- Library_Units or Subsystems type Build_Reverse_Order is new Workers.Work_Order with record Domain : Map_Domain; Queue_Cursor: Map_Queue_Sets.Cursor; -- The queue that should be used to build a reverse-dependency -- map for the unit/subsystem that "owns" the queue Unit_Map_Queues : Map_Queue_Set_Access; Subsys_Map_Queues: Map_Queue_Set_Access; -- Both queues need to be referenced from all orders (hence not -- discriminated), since the Phase_Trigger needs to deallocate -- all end record; overriding function Image (Order: Build_Reverse_Order) return String; overriding procedure Execute (Order: in out Build_Reverse_Order); overriding procedure Phase_Trigger (Order: in out Build_Reverse_Order); -- -- Work Order Implementations -- -------------------------- -- Merge_Subunits_Order -- -------------------------- -- Image -- ----------- function Image (Order: Merge_Subunits_Order) return String is ("[Merge_Subunits_Order] (Registrar.Dependency_Processing)"); -- Execute -- ------------- -- After doing our main job of merging subunit dependencies up to the -- parent, we also need to set-up the reverse depependency queues, -- and then dispatch Fan-Out orders (Phase 2) procedure Execute (Order: in out Merge_Subunits_Order) is use Subsystems; use Library_Units; use type Ada.Containers.Count_Type; Move_Set: Unit_Names.Sets.Set; Fan_Out: Fan_Out_Order; procedure Set_Extraction (Mod_Set: in out Unit_Names.Sets.Set) is begin Move_Set := Mod_Set; Mod_Set := Unit_Names.Sets.Empty_Set; end Set_Extraction; procedure Merge_Extraction (Merge_Set: in out Unit_Names.Sets.Set) is begin Merge_Set.Union (Move_set); end Merge_Extraction; begin Fan_Out.Tracker := Fan_Out_Progress'Access; Fan_Out.Unit_Map_Queues := new Map_Queue_Sets.Set; Fan_Out.Subsys_Map_Queues := new Map_Queue_Sets.Set; for Unit of Order.All_Units loop if Unit.State = Requested then -- For Requested units - if we have them here it means none of the -- subsystems that were supposed to contain them actually do, or -- the entire subsystem could not be aquired. -- -- We still want to compute the dependency maps so that we can give -- the user a picture of where the missing units were being withed -- from (similarily for subystems). -- -- For those units, we need to add an empty set to the forward -- dependency map so that we don't need to check for No_Element -- cursors everywhere else. This makes particular sense considering -- this work order is single issue (not parallel), so there will be -- no contention on the dependency maps anyways. declare Inserted: Boolean; begin Registry.Unit_Forward_Dependencies.Insert (Key => Unit.Name, New_Item => Unit_Names.Sets.Empty_Set, Inserted => Inserted); pragma Assert (Inserted); end; -- Subunits can't be requested! Every time a dependency request -- is processed by the registrar, it is entered as a library unit. -- I.e. a subsystem unit can only get into the registry by being -- entered, and therefore can't have a state of Requested. pragma Assert (Unit.Kind /= Subunit); end if; if Unit.Kind = Subunit then -- Merge Subunit forward dependencies up to the fist non-subunit -- parent -- Take the forward dependency set from the subunit Registry.Unit_Forward_Dependencies.Modify (Key => Unit.Name, Process => Set_Extraction'Access); -- And migrate to its parent. This will keep happening until -- it reaches a unit that is not a subunit Registry.Unit_Forward_Dependencies.Modify (Key => Registrar.Queries.Trace_Subunit_Parent(Unit).Name, Process => Merge_Extraction'Access); else -- A normal unit, which actually needs to be processesed. We want -- each dependency of this unit to have this unit registered as -- a reverse dependency for that dependent unit (this is what -- the Fan_Out order accomplishes). Fan_Out.Unit_Map_Queues.Insert (Reverse_Dependency_Queue'(Map_Key => Unit.Name, Name_Queue => new Name_Queues.Queue)); end if; Merge_Subunits_Progress.Increment_Completed_Items; end loop; -- We set the Fan_Out progress tracker now, before we do the subsystems -- so that they are set before we cause the Merge_Subunits tracker to -- complete (we know there must be subsystems if there are units!). -- The number of Fan_Out orders is not dependent on the number of -- subsystems, since the subsystem dependencies are registered -- during the normal course of Fan_Out. Since all units have a subsystem, -- we can be sure all subsystem dependencies will be computed Fan_Out_Progress.Increase_Total_Items_By (Natural (Fan_Out.Unit_Map_Queues.Length)); for Subsys of Order.All_Subsys loop -- We don't really care what the state of the subsystem is, we just -- want to ensure that we have a queue for each subsystem we know -- about, so that the fan-out process can register subsystem -- dependencies declare Inserted: Boolean; begin Registry.Subsystem_Forward_Dependencies.Insert (Key => Subsys.Name, New_Item => Unit_Names.Sets.Empty_Set, Inserted => Inserted); pragma Assert (Inserted); end; Fan_Out.Subsys_Map_Queues.Insert (Reverse_Dependency_Queue'(Map_Key => Subsys.Name, Name_Queue => new Name_Queues.Queue)); Merge_Subunits_Progress.Increment_Completed_Items; end loop; -- Launch the fan-out phase. We only need to launch an order per -- unit (not subsystem), since each unit dependency will the related -- subsystem dependency to the relevent subsystem map queue. for Queue of Fan_Out.Unit_Map_Queues.all loop Fan_Out.Target := Queue.Map_Key; Workers.Enqueue_Order (Fan_Out); end loop; end Execute; ------------------- -- Fan_Out_Order -- ------------------- -- Image -- ----------- function Image (Order: Fan_Out_Order) return String is ( "[Fan_Out_Order] (Registrar.Dependency_Processing)" & New_Line & " Target Unit: " & Order.Target.To_UTF8_String); -- Execute -- ------------- procedure Execute (Order: in out Fan_Out_Order) is use type Map_Queue_Sets.Cursor; use type Library_Units.Library_Unit_Kind; Dependencies: constant Unit_Names.Sets.Set := Registry.Unit_Forward_Dependencies.Extract_Element (Order.Target); Subsys_Dependencies: Unit_Names.Sets.Set; -- We will also build the subsystem forward dependencies for the unit's -- subsystem as we go here (which will then be reversed in the -- Build Reverse phase Target_SS: constant Unit_Names.Unit_Name := Order.Target.Subsystem_Name; Unit_Map_Queues : Map_Queue_Sets.Set renames Order.Unit_Map_Queues.all; Subsys_Map_Queues: Map_Queue_Sets.Set renames Order.Subsys_Map_Queues.all; Unit_Lookup, Subsys_Lookup: Reverse_Dependency_Queue; Unit_Cursor, Subsys_Cursor: Map_Queue_Sets.Cursor; procedure Union_Subsys_Dependencies (Existing_Set: in out Unit_Names.Sets.Set) is begin Existing_Set.Union (Subsys_Dependencies); end Union_Subsys_Dependencies; begin -- Go through our (Order.Target's) dependencies and put our name on the -- reverse dependency queue for that unit. for Name of Dependencies loop -- Add the name of our target unit, and our subsystem -- to the queue of each of our dependencies Unit_Lookup.Map_Key := Name; Subsys_Lookup.Map_Key := Name.Subsystem_Name; Subsys_Dependencies.Include (Subsys_Lookup.Map_Key); Unit_Cursor := Order.Unit_Map_Queues.Find (Unit_Lookup); Subsys_Cursor := Order.Subsys_Map_Queues.Find (Subsys_Lookup); Unit_Map_Queues(Unit_Cursor).Name_Queue.Enqueue (Order.Target); Subsys_Map_Queues(Subsys_Cursor).Name_Queue.Enqueue (Target_SS); end loop; -- Add a link back to our parent, except for External_Units, but -- including requested units if Registrar.Queries.Lookup_Unit(Order.Target).Kind /= Library_Units.External_Unit then Unit_Lookup.Map_Key := Order.Target.Parent_Name; if not Unit_Lookup.Map_Key.Empty then Unit_Cursor := Unit_Map_Queues.Find (Unit_Lookup); Unit_Map_Queues(Unit_Cursor).Name_Queue.Enqueue (Order.Target); end if; end if; -- Register the subsystem forward dependencies. We know that the Key -- exists because we added an empty set for each registered Subsystem Registry.Subsystem_Forward_Dependencies.Modify (Key => Target_SS, Process => Union_Subsys_Dependencies'Access); end Execute; -- Phase_Trigger -- ------------------- procedure Phase_Trigger (Order: in out Fan_Out_Order) is New_Order: Build_Reverse_Order := (Tracker => Build_Reverse_Progress'Access, Domain => Library_Units_Domain, Unit_Map_Queues => Order.Unit_Map_Queues, Subsys_Map_Queues => Order.Subsys_Map_Queues, others => <>); use type Ada.Containers.Count_Type; begin Build_Reverse_Progress.Increase_Total_Items_By (Natural (Order.Unit_Map_Queues.Length + Order.Subsys_Map_Queues.Length)); for Unit_Cursor in Order.Unit_Map_Queues.Iterate loop New_Order.Queue_Cursor := Unit_Cursor; Workers.Enqueue_Order (New_Order); end loop; New_Order.Domain := Subsystems_Domain; for Subsys_Cursor in Order.Subsys_Map_Queues.Iterate loop New_Order.Queue_Cursor := Subsys_Cursor; Workers.Enqueue_Order (New_Order); end loop; end Phase_Trigger; ------------------------- -- Build_Reverse_Order -- ------------------------- -- Image -- ----------- function Image (Order: Build_Reverse_Order) return String is ( "[Build_Reverse_Order] (Registrar.Dependency_Processing)" & New_Line & (if Map_Queue_Sets."=" (Order.Queue_Cursor, Map_Queue_Sets.No_Element) then " ** Phase Trigger **" -- If something goes wrong in the phase trigger, either -- of the queues might be already deallocated, which would -- make the "else" portion very erronious to execute else " Domain: " & Map_Domain'Image (Order.Domain) & New_Line & (case Order.Domain is when Library_Units_Domain => "Unit Queue: " & Order.Unit_Map_Queues.all (Order.Queue_Cursor).Map_Key.To_UTF8_String, when Subsystems_Domain => "Subsystem Queue: " & Order.Subsys_Map_Queues.all (Order.Queue_Cursor).Map_Key.To_UTF8_String))); -- Note that if an exception is raised during the phase trigger, -- it is possible t hat this -- Execute -- ------------- procedure Execute (Order: in out Build_Reverse_Order) is use type Ada.Containers.Count_Type; Queue_Set: constant Map_Queue_Set_Access := (case Order.Domain is when Library_Units_Domain => Order.Unit_Map_Queues, when Subsystems_Domain => Order.Subsys_Map_Queues); Queue_Descriptor: Reverse_Dependency_Queue renames Queue_Set.all(Order.Queue_Cursor); Queue: Name_Queues.Queue renames Queue_Descriptor.Name_Queue.all; Rev_Deps: Unit_Names.Sets.Set; Name: Unit_Names.Unit_Name; procedure Include_Reverse_Dependencies (Set: in out Unit_Names.Sets.Set) is begin -- Thge target set already has a map for this unit, so we simply -- union-in the names we have. Set.Union (Rev_Deps); end Include_Reverse_Dependencies; begin while Queue.Current_Use > 0 loop -- Note that in this phase (phase "3", each queue is assigned to a -- single Work Order, and therefore we will not see concurrent access -- to our queue from this Order Queue.Dequeue (Name); Rev_Deps.Include (Name); -- The same name will likely appear twice. end loop; case Order.Domain is when Library_Units_Domain => Registry.Unit_Reverse_Dependencies.Insert_Or_Modify (Key => Queue_Descriptor.Map_Key, New_Item => Rev_Deps, Process_Existing => Include_Reverse_Dependencies'Access); when Subsystems_Domain => Registry.Subsystem_Reverse_Dependencies.Insert_Or_Modify (Key => Queue_Descriptor.Map_Key, New_Item => Rev_Deps, Process_Existing => Include_Reverse_Dependencies'Access); end case; -- Finalize the order's Queue_Cursor element. This is important because -- the Phase trigger might complete before all of the "completed orders" -- are actually finalized. This would cause a Tampering with Cursors -- check to fail. Order.Queue_Cursor := Map_Queue_Sets.No_Element; end Execute; -- Phase_Trigger -- ------------------- procedure Phase_Trigger (Order: in out Build_Reverse_Order) is procedure Free_Queue is new Ada.Unchecked_Deallocation (Object => Name_Queues.Queue, Name => Name_Queue_Access); procedure Free_Queue_Set is new Ada.Unchecked_Deallocation (Object => Map_Queue_Sets.Set, Name => Map_Queue_Set_Access); Queue_Disposal: Name_Queue_Access; -- Since hash map only have constant referencing, we'll copy out -- the access value for the queue in order to deallocate it begin pragma Assert (Map_Queue_Sets."=" (Order.Queue_Cursor, Map_Queue_Sets.No_Element)); -- The phase trigger just needs to clean-up the allocated objects. -- This is nice because the Consolodate_Dependencies process is now -- finished and everything else can proceed while this worker deals -- with this clean-up. -- -- This is why we didn't deallocate the queues during Execute. for QD of Order.Unit_Map_Queues.all loop Queue_Disposal := QD.Name_Queue; Free_Queue (Queue_Disposal); end loop; Free_Queue_Set (Order.Unit_Map_Queues); for QD of Order.Subsys_Map_Queues.all loop Queue_Disposal := QD.Name_Queue; Free_Queue (Queue_Disposal); end loop; Free_Queue_Set (Order.Subsys_Map_Queues); end Phase_Trigger; -- -- Dispatch -- ------------------------------ -- Consolidate_Dependencies -- ------------------------------ procedure Consolidate_Dependencies is use type Ada.Containers.Count_Type; Order: Merge_Subunits_Order; begin Order.Tracker := null; -- Only one order, and the tracker is manually -- adjusted Order.All_Units := Registrar.Queries.All_Library_Units; Order.All_Subsys := Registrar.Queries.All_Subsystems; Merge_Subunits_Progress.Increase_Total_Items_By (Natural (Order.All_Units.Length + Order.All_Subsys.Length)); Workers.Enqueue_Order (Order); end Consolidate_Dependencies; end Registrar.Dependency_Processing;
with Ada.Real_Time; use Ada.Real_Time; with Real_Type; use Real_Type; with Swarm_Structures_Base; use Swarm_Structures_Base; package Swarm_Configurations is type Configurations is (Single_Globe_In_Orbit, Dual_Globes_In_Orbit, Dual_Globes_In_Orbit_Fast, Globe_Grid_In_Centre, Globe_Grid_Drifting); type Charging_Setups_R is record Constant_Discharge_Rate_Per_Sec, -- Constant rate: independent of motion Propulsion_Discharge_Rate_Per_Sec : Real; -- Manoeuvring dependent rate: linearly dependent on accelaration Max_Globe_Interval : Time_Span; Globes_Required : Positive; end record; Charging_Setups : array (Configurations) of Charging_Setups_R := (Single_Globe_In_Orbit => (Constant_Discharge_Rate_Per_Sec => 0.01, Propulsion_Discharge_Rate_Per_Sec => 0.04, Max_Globe_Interval => Milliseconds (0), Globes_Required => 1), Dual_Globes_In_Orbit => (Constant_Discharge_Rate_Per_Sec => 0.01, Propulsion_Discharge_Rate_Per_Sec => 0.04, Max_Globe_Interval => Milliseconds (0), Globes_Required => 1), Dual_Globes_In_Orbit_Fast => (Constant_Discharge_Rate_Per_Sec => 0.01, Propulsion_Discharge_Rate_Per_Sec => 0.04, Max_Globe_Interval => Milliseconds (0), Globes_Required => 1), Globe_Grid_In_Centre => (Constant_Discharge_Rate_Per_Sec => 0.01, Propulsion_Discharge_Rate_Per_Sec => 0.04, Max_Globe_Interval => Milliseconds (500), Globes_Required => 3), Globe_Grid_Drifting => (Constant_Discharge_Rate_Per_Sec => 0.01, Propulsion_Discharge_Rate_Per_Sec => 0.04, Max_Globe_Interval => Seconds (1), Globes_Required => 3)); Energy_Globe_Detections : constant array (Configurations) of Real := (Single_Globe_In_Orbit => 0.07, Dual_Globes_In_Orbit => 0.07, Dual_Globes_In_Orbit_Fast => 0.07, Globe_Grid_In_Centre => 0.02, Globe_Grid_Drifting => 0.06); function Default_Globes (Configuration : Configurations) return Energy_Globes; function Default_Protected_Globes (Configuration : Configurations) return Energy_Globes_Protected; end Swarm_Configurations;
------------------------------------------------------------------------------ -- -- -- Copyright (C) 2018-2019, 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 MicroBit.I2C; with MicroBit.Display; with MicroBit.Display.Symbols; with MicroBit.Time; package body MicroBit.Accelerometer is Acc : MMA8653.MMA8653_Accelerometer (MicroBit.I2C.Controller); procedure Initialize; ---------------- -- Initialize -- ---------------- procedure Initialize is begin if not MicroBit.I2C.Initialized then MicroBit.I2C.Initialize; end if; if not Acc.Check_Device_Id then -- The expected accelerometer is not deteced. Maybe this is running on -- a micro:bit v1.5 with a different accelerometer. -- Show a blinking frown face... Display.Clear; loop Display.Symbols.Frown; Time.Delay_Ms (500); Display.Clear; Time.Delay_Ms (500); end loop; end if; Acc.Configure (MMA8653.Two_G, MMA8653.High_Resolution, MMA8653.High_Resolution); end Initialize; ---------- -- Data -- ---------- function Data return MMA8653.All_Axes_Data is (Acc.Read_Data); begin Initialize; end MicroBit.Accelerometer;
with Interfaces; use Interfaces; with Ada.Containers.Doubly_Linked_Lists; with Ada.Containers.Vectors; with Ada.Strings.Unbounded; with Blade_Types; use Blade_Types; with GA_Maths; with Metric; package Blade is use Ada.Strings.Unbounded; type Basis_Blade is record Bitmap : Interfaces.Unsigned_32 := 0; Weight : Float := 0.0; end record; type Complex_Basis_Blade is private; type Basis_Blade_Array is array (Integer range <>) of Basis_Blade; package Blade_List_Package is new Ada.Containers.Doubly_Linked_Lists (Element_Type => Basis_Blade); type Blade_List is new Blade_List_Package.List with null record; package Blade_Vector_Package is new Ada.Containers.Vectors (Index_Type => Natural, Element_Type => Basis_Blade); type Blade_Vector is new Blade_Vector_Package.Vector with null record; function "<" (Left, Right : Blade.Basis_Blade) return Boolean; package Blade_Sort_Package is new Blade_List_Package.Generic_Sorting ("<"); type Contraction_Type is (Left_Contraction, Right_Contraction, Hestenes_Inner_Product, Modified_Hestenes_Inner_Product); Blade_Exception : Exception; function "*" (S : Float; BB : Basis_Blade) return Basis_Blade; function "*" (BB : Basis_Blade; S : Float) return Basis_Blade; procedure Add_Blade (Blades : in out Blade_List; BB : Basis_Blade); procedure Add_Blade (Blades : in out Blade_Vector; Index : Natural; BB : Basis_Blade); procedure Add_Blades (Blades : in out Blade_List; More_Blades : Blade_List); function BB_First (BB_List : Blade_List) return Basis_Blade; function BB_Item (BB_List : Blade_List; Index : Integer) return Basis_Blade; function Bitmap (BB : Basis_Blade) return Unsigned_32; function Blade_String (aBlade : Basis_Blade; BV_Names : Basis_Vector_Names) return Ada.Strings.Unbounded.Unbounded_String; function Canonical_Reordering_Sign (Map_A, Map_B : Unsigned_32) return Float; function Geometric_Product (BA, BB : Basis_Blade) return Basis_Blade; function Geometric_Product (BB : Basis_Blade; Sc : Float) return Basis_Blade; function Geometric_Product (BA, BB : Basis_Blade; Eigen_Vals : GA_Maths.Float_Array_Package.Real_Vector) return Basis_Blade; function Geometric_Product (BA, BB : Basis_Blade; Met : Metric.Metric_Record) return Blade_List; function Grade (BB : Basis_Blade) return Integer; function Grade_Inversion (B : Basis_Blade) return Basis_Blade; function Inner_Product (BA, BB : Basis_Blade; Cont : Contraction_Type) return Basis_Blade; function Inner_Product (BA, BB : Basis_Blade; Met : Metric.Metric_Record; Cont : Contraction_Type) return Blade_List; function List_Length (Blades : Blade_List) return Integer; function Minus_1_Power (Power : Integer) return Integer; function New_Basis_Blade (Bitmap : Unsigned_32; Weight : Float := 1.0) return Basis_Blade; function New_Basis_Blade (Weight : Float := 0.0) return Basis_Blade; function New_Basis_Blade (Index : BV_Base; Weight : Float := 1.0) return Basis_Blade; function New_Basis_Blade (Index : E2_Base; Weight : Float := 1.0) return Basis_Blade; function New_Basis_Blade (Index : E3_Base; Weight : Float := 1.0) return Basis_Blade; function New_Basis_Blade (Index : C3_Base; Weight : Float := 1.0) return Basis_Blade; function New_Blade (Bitmap : Unsigned_32; Weight : Float := 1.0) return Basis_Blade; function New_Complex_Basis_Blade (Index : C3_Base; Weight : GA_Maths.Complex_Types.Complex := (0.0, 1.0)) return Complex_Basis_Blade; function New_Scalar_Blade (Weight : Float := 1.0) return Basis_Blade; function New_Zero_Blade return Basis_Blade; function Outer_Product (BA, BB : Basis_Blade) return Basis_Blade; function Reverse_Blade (B : Basis_Blade) return Basis_Blade; procedure Simplify (Blades : in out Blade_List); procedure Update_Blade (BB : in out Basis_Blade; Weight : Float); procedure Update_Blade (BB : in out Basis_Blade; Bitmap : Unsigned_32); procedure Update_Blade (BB : in out Basis_Blade; Bitmap : Unsigned_32; Weight : Float); function Weight (BB : Basis_Blade) return Float; private type Complex_Basis_Blade is record Bitmap : Unsigned_32 := 0; Weight : GA_Maths.Complex_Types.Complex := (0.0, 0.0); end record; end Blade;
------------------------------------------------------------------------------ -- -- -- 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. ------------------------------------------------------------------------------ with AMF.Generic_Collections; package AMF.UML.Association_Classes.Collections is pragma Preelaborate; package UML_Association_Class_Collections is new AMF.Generic_Collections (UML_Association_Class, UML_Association_Class_Access); type Set_Of_UML_Association_Class is new UML_Association_Class_Collections.Set with null record; Empty_Set_Of_UML_Association_Class : constant Set_Of_UML_Association_Class; type Ordered_Set_Of_UML_Association_Class is new UML_Association_Class_Collections.Ordered_Set with null record; Empty_Ordered_Set_Of_UML_Association_Class : constant Ordered_Set_Of_UML_Association_Class; type Bag_Of_UML_Association_Class is new UML_Association_Class_Collections.Bag with null record; Empty_Bag_Of_UML_Association_Class : constant Bag_Of_UML_Association_Class; type Sequence_Of_UML_Association_Class is new UML_Association_Class_Collections.Sequence with null record; Empty_Sequence_Of_UML_Association_Class : constant Sequence_Of_UML_Association_Class; private Empty_Set_Of_UML_Association_Class : constant Set_Of_UML_Association_Class := (UML_Association_Class_Collections.Set with null record); Empty_Ordered_Set_Of_UML_Association_Class : constant Ordered_Set_Of_UML_Association_Class := (UML_Association_Class_Collections.Ordered_Set with null record); Empty_Bag_Of_UML_Association_Class : constant Bag_Of_UML_Association_Class := (UML_Association_Class_Collections.Bag with null record); Empty_Sequence_Of_UML_Association_Class : constant Sequence_Of_UML_Association_Class := (UML_Association_Class_Collections.Sequence with null record); end AMF.UML.Association_Classes.Collections;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME LIBRARY (GNARL) COMPONENTS -- -- -- -- I N T E R F A C E S . L E O N 3 . I R Q M P -- -- -- -- S p e c -- -- -- -- Copyright (C) 1999-2002 Universidad Politecnica de Madrid -- -- Copyright (C) 2003-2006 The European Space Agency -- -- Copyright (C) 2003-2017, AdaCore -- -- -- -- GNARL is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNARL is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNARL was developed by the GNARL team at Florida State University. -- -- Extensive contributions were provided by Ada Core Technologies, Inc. -- -- -- -- The port of GNARL to bare board targets was initially developed by the -- -- Real-Time Systems Group at the Technical University of Madrid. -- -- -- ------------------------------------------------------------------------------ pragma Restrictions (No_Elaboration_Code); with System.Multiprocessors; with System.BB.Board_Parameters; package Interfaces.Leon3.Irqmp is pragma Preelaborate; -- Pragma Suppress_Initialization (register_type) must be used in order -- to keep eficiency. Otherwise, initialization procedures are always -- generated for objects of packed boolean array types and of record types -- that have components of these types. -------------------------- -- Interrupt Registers -- -------------------------- Irqmp_Base : constant := System.BB.Board_Parameters.Irqmp_Base; type Interrupt_Register is mod 2**32; for Interrupt_Register'Size use 32; pragma Suppress_Initialization (Interrupt_Register); pragma Volatile_Full_Access (Interrupt_Register); ------------------------------ -- Interrupt Level Register -- ------------------------------ Interrupt_Level : Interrupt_Register; for Interrupt_Level'Address use System'To_Address (Irqmp_Base + 16#00#); -------------------------------- -- Interrupt Pending Register -- -------------------------------- Interrupt_Pending : Interrupt_Register; for Interrupt_Pending'Address use System'To_Address (Irqmp_Base + 16#04#); ------------------------------- -- Interrupt Force Registers -- ------------------------------- -- On single CPU Leon3 (e.g. UT699), there is only one interrupt force -- register, mapped at 16#8000_0208#. On SMP Leon3, there is one interrupt -- force register for each CPU, starting at 16#8000_0280#. The register at -- 16#8000_0208# is an alias to 16#8000_0280#. type Interrupt_Registers_CPU_Array is array (System.Multiprocessors.CPU) of Interrupt_Register; for Interrupt_Registers_CPU_Array'Component_Size use 32; pragma Suppress_Initialization (Interrupt_Registers_CPU_Array); Interrupt_Force : Interrupt_Registers_CPU_Array; for Interrupt_Force'Address use System'To_Address (if System.BB.Board_Parameters.Max_Number_Of_CPUs > 1 then Irqmp_Base + 16#80# else Irqmp_Base + 16#08#); ------------------------------ -- Interrupt Clear Register -- ------------------------------ Interrupt_Clear : Interrupt_Register; for Interrupt_Clear'Address use System'To_Address (Irqmp_Base + 16#0C#); ------------------------------ -- Interrupt Mask Registers -- ------------------------------ Interrupt_Mask : Interrupt_Registers_CPU_Array; for Interrupt_Mask'Address use System'To_Address (Irqmp_Base + 16#40#); ------------------------------------ -- Multiprocessor status register -- ------------------------------------ type Scalar_4 is mod 2**4; for Scalar_4'Size use 4; -- Bit array for CPU status. Previously this was a packed array of -- booleans, but was numbered in reverse order (as SPARC is big endian). type CPU_Status is mod 2**16; for CPU_Status'Size use 16; type Multiprocessor_Status_Register is record NCPUS : Scalar_4; -- Number of CPUs - 1 Reserved : Reserved_8; EIRQ : Scalar_4; -- Interrupt number used for extended interrupts. 0 if extended -- interrupts are disabled. Status : CPU_Status; -- Power-down status of CPU [n]: 0 = power-down, 1 = running. Write -- with 1 to start processor n. end record; for Multiprocessor_Status_Register use record NCPUS at 0 range Bit31 .. Bit28; Reserved at 0 range Bit27 .. Bit20; EIRQ at 0 range Bit19 .. Bit16; Status at 0 range Bit15 .. Bit00; end record; for Multiprocessor_Status_Register'Size use 32; pragma Suppress_Initialization (Multiprocessor_Status_Register); pragma Volatile_Full_Access (Multiprocessor_Status_Register); Multiprocessor_Status : Multiprocessor_Status_Register; for Multiprocessor_Status'Address use System'To_Address (Irqmp_Base + 16#10#); ----------------------------------------------- -- Extended Interrupt Acknowledge Registers -- ----------------------------------------------- Extended_Interrupt_Acknowledge_Register : Interrupt_Registers_CPU_Array; for Extended_Interrupt_Acknowledge_Register'Address use System'To_Address (Irqmp_Base + 16#C0#); end Interfaces.Leon3.Irqmp;
-- -- Copyright 2018 The wookey project team <wookey@ssi.gouv.fr> -- - Ryad Benadjila -- - Arnauld Michelizza -- - Mathieu Renard -- - Philippe Thierry -- - Philippe Trebuchet -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. -- -- package ewok.interrupts.interfaces with spark_mode => off is procedure init with convention => c, export => true, external_name => "interrupts_init"; end ewok.interrupts.interfaces;
package Giza.Hershey_Fonts.Timesg is Font : constant Giza.Font.Ref_Const; private Glyph_0 : aliased constant Glyph := (Number_Of_Vectors => 0, Width => 16, Height => 0, Y_Offset => 0, X_Offset => -8, Vects => (others => (Raise_Pen))); Glyph_1 : aliased constant Glyph := (Number_Of_Vectors => 15, Width => 10, Height => 21, Y_Offset => -12, X_Offset => -5, Vects => (Raise_Pen, (0, -12), (-1, -10), (0, 2), (1, -10), (0, -12), Raise_Pen, (0, -10), (0, -4), Raise_Pen, (0, 7), (-1, 8), (0, 9), (1, 8), (0, 7))); Glyph_2 : aliased constant Glyph := (Number_Of_Vectors => 12, Width => 16, Height => 7, Y_Offset => -12, X_Offset => -8, Vects => (Raise_Pen, (-4, -12), (-5, -5), Raise_Pen, (-3, -12), (-5, -5), Raise_Pen, (4, -12), (3, -5), Raise_Pen, (5, -12), (3, -5))); Glyph_3 : aliased constant Glyph := (Number_Of_Vectors => 12, Width => 21, Height => 32, Y_Offset => -16, X_Offset => -10, Vects => (Raise_Pen, (1, -16), (-6, 16), Raise_Pen, (7, -16), (0, 16), Raise_Pen, (-6, -3), (8, -3), Raise_Pen, (-7, 3), (7, 3))); Glyph_4 : aliased constant Glyph := (Number_Of_Vectors => 42, Width => 20, Height => 29, Y_Offset => -16, X_Offset => -10, Vects => (Raise_Pen, (-2, -16), (-2, 13), Raise_Pen, (2, -16), (2, 13), Raise_Pen, (6, -9), (5, -8), (6, -7), (7, -8), (7, -9), (5, -11), (2, -12), (-2, -12), (-5, -11), (-7, -9), (-7, -7), (-6, -5), (-5, -4), (-3, -3), (3, -1), (5, 0), (7, 2), Raise_Pen, (-7, -7), (-5, -5), (-3, -4), (3, -2), (5, -1), (6, 0), (7, 2), (7, 6), (5, 8), (2, 9), (-2, 9), (-5, 8), (-7, 6), (-7, 5), (-6, 4), (-5, 5), (-6, 6))); Glyph_5 : aliased constant Glyph := (Number_Of_Vectors => 32, Width => 24, Height => 21, Y_Offset => -12, X_Offset => -12, Vects => (Raise_Pen, (9, -12), (-9, 9), Raise_Pen, (-4, -12), (-2, -10), (-2, -8), (-3, -6), (-5, -5), (-7, -5), (-9, -7), (-9, -9), (-8, -11), (-6, -12), (-4, -12), (-2, -11), (1, -10), (4, -10), (7, -11), (9, -12), Raise_Pen, (5, 2), (3, 3), (2, 5), (2, 7), (4, 9), (6, 9), (8, 8), (9, 6), (9, 4), (7, 2), (5, 2))); Glyph_6 : aliased constant Glyph := (Number_Of_Vectors => 49, Width => 25, Height => 21, Y_Offset => -12, X_Offset => -12, Vects => (Raise_Pen, (9, -4), (8, -3), (9, -2), (10, -3), (10, -4), (9, -5), (8, -5), (7, -4), (6, -2), (4, 3), (2, 6), (0, 8), (-2, 9), (-5, 9), (-8, 8), (-9, 6), (-9, 3), (-8, 1), (-2, -3), (0, -5), (1, -7), (1, -9), (0, -11), (-2, -12), (-4, -11), (-5, -9), (-5, -7), (-4, -4), (-2, -1), (3, 6), (5, 8), (8, 9), (9, 9), (10, 8), (10, 7), Raise_Pen, (-5, 9), (-7, 8), (-8, 6), (-8, 3), (-7, 1), (-5, -1), Raise_Pen, (-5, -7), (-4, -5), (4, 6), (6, 8), (8, 9))); Glyph_7 : aliased constant Glyph := (Number_Of_Vectors => 6, Width => 8, Height => 7, Y_Offset => -12, X_Offset => -4, Vects => (Raise_Pen, (0, -12), (-1, -5), Raise_Pen, (1, -12), (-1, -5))); Glyph_8 : aliased constant Glyph := (Number_Of_Vectors => 24, Width => 14, Height => 32, Y_Offset => -16, X_Offset => -7, Vects => (Raise_Pen, (3, -16), (1, -14), (-1, -11), (-3, -7), (-4, -2), (-4, 2), (-3, 7), (-1, 11), (1, 14), (3, 16), (4, 16), Raise_Pen, (3, -16), (4, -16), (2, -14), (0, -11), (-2, -7), (-3, -2), (-3, 2), (-2, 7), (0, 11), (2, 14), (4, 16))); Glyph_9 : aliased constant Glyph := (Number_Of_Vectors => 24, Width => 14, Height => 32, Y_Offset => -16, X_Offset => -7, Vects => (Raise_Pen, (-4, -16), (-2, -14), (0, -11), (2, -7), (3, -2), (3, 2), (2, 7), (0, 11), (-2, 14), (-4, 16), (-3, 16), Raise_Pen, (-4, -16), (-3, -16), (-1, -14), (1, -11), (3, -7), (4, -2), (4, 2), (3, 7), (1, 11), (-1, 14), (-3, 16))); Glyph_10 : aliased constant Glyph := (Number_Of_Vectors => 9, Width => 16, Height => 12, Y_Offset => -6, X_Offset => -8, Vects => (Raise_Pen, (0, -6), (0, 6), Raise_Pen, (-5, -3), (5, 3), Raise_Pen, (5, -3), (-5, 3))); Glyph_11 : aliased constant Glyph := (Number_Of_Vectors => 6, Width => 26, Height => 18, Y_Offset => -9, X_Offset => -13, Vects => (Raise_Pen, (0, -9), (0, 9), Raise_Pen, (-9, 0), (9, 0))); Glyph_12 : aliased constant Glyph := (Number_Of_Vectors => 8, Width => 8, Height => 5, Y_Offset => 4, X_Offset => -4, Vects => (Raise_Pen, (1, 5), (0, 6), (-1, 5), (0, 4), (1, 5), (1, 7), (-1, 9))); Glyph_13 : aliased constant Glyph := (Number_Of_Vectors => 3, Width => 26, Height => 0, Y_Offset => 0, X_Offset => -13, Vects => (Raise_Pen, (-9, 0), (9, 0))); Glyph_14 : aliased constant Glyph := (Number_Of_Vectors => 6, Width => 8, Height => 2, Y_Offset => 4, X_Offset => -4, Vects => (Raise_Pen, (0, 4), (-1, 5), (0, 6), (1, 5), (0, 4))); Glyph_15 : aliased constant Glyph := (Number_Of_Vectors => 3, Width => 22, Height => 32, Y_Offset => -16, X_Offset => -11, Vects => (Raise_Pen, (9, -16), (-9, 16))); Glyph_16 : aliased constant Glyph := (Number_Of_Vectors => 40, Width => 20, Height => 21, Y_Offset => -12, X_Offset => -10, Vects => (Raise_Pen, (-1, -12), (-4, -11), (-6, -8), (-7, -3), (-7, 0), (-6, 5), (-4, 8), (-1, 9), (1, 9), (4, 8), (6, 5), (7, 0), (7, -3), (6, -8), (4, -11), (1, -12), (-1, -12), Raise_Pen, (-1, -12), (-3, -11), (-4, -10), (-5, -8), (-6, -3), (-6, 0), (-5, 5), (-4, 7), (-3, 8), (-1, 9), Raise_Pen, (1, 9), (3, 8), (4, 7), (5, 5), (6, 0), (6, -3), (5, -8), (4, -10), (3, -11), (1, -12))); Glyph_17 : aliased constant Glyph := (Number_Of_Vectors => 11, Width => 20, Height => 21, Y_Offset => -12, X_Offset => -10, Vects => (Raise_Pen, (-4, -8), (-2, -9), (1, -12), (1, 9), Raise_Pen, (0, -11), (0, 9), Raise_Pen, (-4, 9), (5, 9))); Glyph_18 : aliased constant Glyph := (Number_Of_Vectors => 45, Width => 20, Height => 21, Y_Offset => -12, X_Offset => -10, Vects => (Raise_Pen, (-6, -8), (-5, -7), (-6, -6), (-7, -7), (-7, -8), (-6, -10), (-5, -11), (-2, -12), (2, -12), (5, -11), (6, -10), (7, -8), (7, -6), (6, -4), (3, -2), (-2, 0), (-4, 1), (-6, 3), (-7, 6), (-7, 9), Raise_Pen, (2, -12), (4, -11), (5, -10), (6, -8), (6, -6), (5, -4), (2, -2), (-2, 0), Raise_Pen, (-7, 7), (-6, 6), (-4, 6), (1, 8), (4, 8), (6, 7), (7, 6), Raise_Pen, (-4, 6), (1, 9), (5, 9), (6, 8), (7, 6), (7, 4))); Glyph_19 : aliased constant Glyph := (Number_Of_Vectors => 47, Width => 20, Height => 21, Y_Offset => -12, X_Offset => -10, Vects => (Raise_Pen, (-6, -8), (-5, -7), (-6, -6), (-7, -7), (-7, -8), (-6, -10), (-5, -11), (-2, -12), (2, -12), (5, -11), (6, -9), (6, -6), (5, -4), (2, -3), (-1, -3), Raise_Pen, (2, -12), (4, -11), (5, -9), (5, -6), (4, -4), (2, -3), Raise_Pen, (2, -3), (4, -2), (6, 0), (7, 2), (7, 5), (6, 7), (5, 8), (2, 9), (-2, 9), (-5, 8), (-6, 7), (-7, 5), (-7, 4), (-6, 3), (-5, 4), (-6, 5), Raise_Pen, (5, -1), (6, 2), (6, 5), (5, 7), (4, 8), (2, 9))); Glyph_20 : aliased constant Glyph := (Number_Of_Vectors => 13, Width => 20, Height => 21, Y_Offset => -12, X_Offset => -10, Vects => (Raise_Pen, (2, -10), (2, 9), Raise_Pen, (3, -12), (3, 9), Raise_Pen, (3, -12), (-8, 3), (8, 3), Raise_Pen, (-1, 9), (6, 9))); Glyph_21 : aliased constant Glyph := (Number_Of_Vectors => 39, Width => 20, Height => 21, Y_Offset => -12, X_Offset => -10, Vects => (Raise_Pen, (-5, -12), (-7, -2), Raise_Pen, (-7, -2), (-5, -4), (-2, -5), (1, -5), (4, -4), (6, -2), (7, 1), (7, 3), (6, 6), (4, 8), (1, 9), (-2, 9), (-5, 8), (-6, 7), (-7, 5), (-7, 4), (-6, 3), (-5, 4), (-6, 5), Raise_Pen, (1, -5), (3, -4), (5, -2), (6, 1), (6, 3), (5, 6), (3, 8), (1, 9), Raise_Pen, (-5, -12), (5, -12), Raise_Pen, (-5, -11), (0, -11), (5, -12))); Glyph_22 : aliased constant Glyph := (Number_Of_Vectors => 48, Width => 20, Height => 21, Y_Offset => -12, X_Offset => -10, Vects => (Raise_Pen, (5, -9), (4, -8), (5, -7), (6, -8), (6, -9), (5, -11), (3, -12), (0, -12), (-3, -11), (-5, -9), (-6, -7), (-7, -3), (-7, 3), (-6, 6), (-4, 8), (-1, 9), (1, 9), (4, 8), (6, 6), (7, 3), (7, 2), (6, -1), (4, -3), (1, -4), (0, -4), (-3, -3), (-5, -1), (-6, 2), Raise_Pen, (0, -12), (-2, -11), (-4, -9), (-5, -7), (-6, -3), (-6, 3), (-5, 6), (-3, 8), (-1, 9), Raise_Pen, (1, 9), (3, 8), (5, 6), (6, 3), (6, 2), (5, -1), (3, -3), (1, -4))); Glyph_23 : aliased constant Glyph := (Number_Of_Vectors => 31, Width => 20, Height => 21, Y_Offset => -12, X_Offset => -10, Vects => (Raise_Pen, (-7, -12), (-7, -6), Raise_Pen, (-7, -8), (-6, -10), (-4, -12), (-2, -12), (3, -9), (5, -9), (6, -10), (7, -12), Raise_Pen, (-6, -10), (-4, -11), (-2, -11), (3, -9), Raise_Pen, (7, -12), (7, -9), (6, -6), (2, -1), (1, 1), (0, 4), (0, 9), Raise_Pen, (6, -6), (1, -1), (0, 1), (-1, 4), (-1, 9))); Glyph_24 : aliased constant Glyph := (Number_Of_Vectors => 63, Width => 20, Height => 21, Y_Offset => -12, X_Offset => -10, Vects => (Raise_Pen, (-2, -12), (-5, -11), (-6, -9), (-6, -6), (-5, -4), (-2, -3), (2, -3), (5, -4), (6, -6), (6, -9), (5, -11), (2, -12), (-2, -12), Raise_Pen, (-2, -12), (-4, -11), (-5, -9), (-5, -6), (-4, -4), (-2, -3), Raise_Pen, (2, -3), (4, -4), (5, -6), (5, -9), (4, -11), (2, -12), Raise_Pen, (-2, -3), (-5, -2), (-6, -1), (-7, 1), (-7, 5), (-6, 7), (-5, 8), (-2, 9), (2, 9), (5, 8), (6, 7), (7, 5), (7, 1), (6, -1), (5, -2), (2, -3), Raise_Pen, (-2, -3), (-4, -2), (-5, -1), (-6, 1), (-6, 5), (-5, 7), (-4, 8), (-2, 9), Raise_Pen, (2, 9), (4, 8), (5, 7), (6, 5), (6, 1), (5, -1), (4, -2), (2, -3))); Glyph_25 : aliased constant Glyph := (Number_Of_Vectors => 48, Width => 20, Height => 21, Y_Offset => -12, X_Offset => -10, Vects => (Raise_Pen, (6, -5), (5, -2), (3, 0), (0, 1), (-1, 1), (-4, 0), (-6, -2), (-7, -5), (-7, -6), (-6, -9), (-4, -11), (-1, -12), (1, -12), (4, -11), (6, -9), (7, -6), (7, 0), (6, 4), (5, 6), (3, 8), (0, 9), (-3, 9), (-5, 8), (-6, 6), (-6, 5), (-5, 4), (-4, 5), (-5, 6), Raise_Pen, (-1, 1), (-3, 0), (-5, -2), (-6, -5), (-6, -6), (-5, -9), (-3, -11), (-1, -12), Raise_Pen, (1, -12), (3, -11), (5, -9), (6, -6), (6, 0), (5, 4), (4, 6), (2, 8), (0, 9))); Glyph_26 : aliased constant Glyph := (Number_Of_Vectors => 12, Width => 8, Height => 9, Y_Offset => -3, X_Offset => -4, Vects => (Raise_Pen, (0, -3), (-1, -2), (0, -1), (1, -2), (0, -3), Raise_Pen, (0, 4), (-1, 5), (0, 6), (1, 5), (0, 4))); Glyph_27 : aliased constant Glyph := (Number_Of_Vectors => 14, Width => 8, Height => 12, Y_Offset => -3, X_Offset => -4, Vects => (Raise_Pen, (0, -3), (-1, -2), (0, -1), (1, -2), (0, -3), Raise_Pen, (1, 5), (0, 6), (-1, 5), (0, 4), (1, 5), (1, 7), (-1, 9))); Glyph_28 : aliased constant Glyph := (Number_Of_Vectors => 4, Width => 24, Height => 18, Y_Offset => -9, X_Offset => -12, Vects => (Raise_Pen, (8, -9), (-8, 0), (8, 9))); Glyph_29 : aliased constant Glyph := (Number_Of_Vectors => 6, Width => 26, Height => 6, Y_Offset => -3, X_Offset => -13, Vects => (Raise_Pen, (-9, -3), (9, -3), Raise_Pen, (-9, 3), (9, 3))); Glyph_30 : aliased constant Glyph := (Number_Of_Vectors => 4, Width => 24, Height => 18, Y_Offset => -9, X_Offset => -12, Vects => (Raise_Pen, (-8, -9), (8, 0), (-8, 9))); Glyph_31 : aliased constant Glyph := (Number_Of_Vectors => 32, Width => 18, Height => 21, Y_Offset => -12, X_Offset => -9, Vects => (Raise_Pen, (-5, -8), (-4, -7), (-5, -6), (-6, -7), (-6, -8), (-5, -10), (-4, -11), (-2, -12), (1, -12), (4, -11), (5, -10), (6, -8), (6, -6), (5, -4), (4, -3), (0, -1), (0, 2), Raise_Pen, (1, -12), (3, -11), (4, -10), (5, -8), (5, -6), (4, -4), (2, -2), Raise_Pen, (0, 7), (-1, 8), (0, 9), (1, 8), (0, 7))); Glyph_32 : aliased constant Glyph := (Number_Of_Vectors => 56, Width => 27, Height => 21, Y_Offset => -12, X_Offset => -13, Vects => (Raise_Pen, (5, -4), (4, -6), (2, -7), (-1, -7), (-3, -6), (-4, -5), (-5, -2), (-5, 1), (-4, 3), (-2, 4), (1, 4), (3, 3), (4, 1), Raise_Pen, (-1, -7), (-3, -5), (-4, -2), (-4, 1), (-3, 3), (-2, 4), Raise_Pen, (5, -7), (4, 1), (4, 3), (6, 4), (8, 4), (10, 2), (11, -1), (11, -3), (10, -6), (9, -8), (7, -10), (5, -11), (2, -12), (-1, -12), (-4, -11), (-6, -10), (-8, -8), (-9, -6), (-10, -3), (-10, 0), (-9, 3), (-8, 5), (-6, 7), (-4, 8), (-1, 9), (2, 9), (5, 8), (7, 7), (8, 6), Raise_Pen, (6, -7), (5, 1), (5, 3), (6, 4))); Glyph_33 : aliased constant Glyph := (Number_Of_Vectors => 18, Width => 20, Height => 21, Y_Offset => -12, X_Offset => -10, Vects => (Raise_Pen, (0, -12), (-7, 9), Raise_Pen, (0, -12), (7, 9), Raise_Pen, (0, -9), (6, 9), Raise_Pen, (-5, 3), (4, 3), Raise_Pen, (-9, 9), (-3, 9), Raise_Pen, (3, 9), (9, 9))); Glyph_34 : aliased constant Glyph := (Number_Of_Vectors => 45, Width => 22, Height => 21, Y_Offset => -12, X_Offset => -11, Vects => (Raise_Pen, (-6, -12), (-6, 9), Raise_Pen, (-5, -12), (-5, 9), Raise_Pen, (-9, -12), (3, -12), (6, -11), (7, -10), (8, -8), (8, -6), (7, -4), (6, -3), (3, -2), Raise_Pen, (3, -12), (5, -11), (6, -10), (7, -8), (7, -6), (6, -4), (5, -3), (3, -2), Raise_Pen, (-5, -2), (3, -2), (6, -1), (7, 0), (8, 2), (8, 5), (7, 7), (6, 8), (3, 9), (-9, 9), Raise_Pen, (3, -2), (5, -1), (6, 0), (7, 2), (7, 5), (6, 7), (5, 8), (3, 9))); Glyph_35 : aliased constant Glyph := (Number_Of_Vectors => 21, Width => 20, Height => 21, Y_Offset => -12, X_Offset => -10, Vects => (Raise_Pen, (-7, -12), (6, 9), Raise_Pen, (-6, -12), (7, 9), Raise_Pen, (7, -12), (-7, 9), Raise_Pen, (-9, -12), (-3, -12), Raise_Pen, (3, -12), (9, -12), Raise_Pen, (-9, 9), (-3, 9), Raise_Pen, (3, 9), (9, 9))); Glyph_36 : aliased constant Glyph := (Number_Of_Vectors => 15, Width => 20, Height => 21, Y_Offset => -12, X_Offset => -10, Vects => (Raise_Pen, (0, -12), (-8, 9), Raise_Pen, (0, -12), (8, 9), Raise_Pen, (0, -9), (7, 9), Raise_Pen, (-7, 8), (7, 8), Raise_Pen, (-8, 9), (8, 9))); Glyph_37 : aliased constant Glyph := (Number_Of_Vectors => 22, Width => 21, Height => 21, Y_Offset => -12, X_Offset => -11, Vects => (Raise_Pen, (-6, -12), (-6, 9), Raise_Pen, (-5, -12), (-5, 9), Raise_Pen, (1, -6), (1, 2), Raise_Pen, (-9, -12), (7, -12), (7, -6), (6, -12), Raise_Pen, (-5, -2), (1, -2), Raise_Pen, (-9, 9), (7, 9), (7, 3), (6, 9))); Glyph_38 : aliased constant Glyph := (Number_Of_Vectors => 48, Width => 21, Height => 21, Y_Offset => -12, X_Offset => -10, Vects => (Raise_Pen, (0, -12), (0, 9), Raise_Pen, (1, -12), (1, 9), Raise_Pen, (-2, -7), (-5, -6), (-6, -5), (-7, -3), (-7, 0), (-6, 2), (-5, 3), (-2, 4), (3, 4), (6, 3), (7, 2), (8, 0), (8, -3), (7, -5), (6, -6), (3, -7), (-2, -7), Raise_Pen, (-2, -7), (-4, -6), (-5, -5), (-6, -3), (-6, 0), (-5, 2), (-4, 3), (-2, 4), Raise_Pen, (3, 4), (5, 3), (6, 2), (7, 0), (7, -3), (6, -5), (5, -6), (3, -7), Raise_Pen, (-3, -12), (4, -12), Raise_Pen, (-3, 9), (4, 9))); Glyph_39 : aliased constant Glyph := (Number_Of_Vectors => 14, Width => 18, Height => 21, Y_Offset => -12, X_Offset => -9, Vects => (Raise_Pen, (-4, -12), (-4, 9), Raise_Pen, (-3, -12), (-3, 9), Raise_Pen, (-7, -12), (8, -12), (8, -6), (7, -12), Raise_Pen, (-7, 9), (0, 9))); Glyph_40 : aliased constant Glyph := (Number_Of_Vectors => 27, Width => 24, Height => 21, Y_Offset => -12, X_Offset => -12, Vects => (Raise_Pen, (-7, -12), (-7, 9), Raise_Pen, (-6, -12), (-6, 9), Raise_Pen, (6, -12), (6, 9), Raise_Pen, (7, -12), (7, 9), Raise_Pen, (-10, -12), (-3, -12), Raise_Pen, (3, -12), (10, -12), Raise_Pen, (-6, -2), (6, -2), Raise_Pen, (-10, 9), (-3, 9), Raise_Pen, (3, 9), (10, 9))); Glyph_41 : aliased constant Glyph := (Number_Of_Vectors => 12, Width => 11, Height => 21, Y_Offset => -12, X_Offset => -5, Vects => (Raise_Pen, (0, -12), (0, 9), Raise_Pen, (1, -12), (1, 9), Raise_Pen, (-3, -12), (4, -12), Raise_Pen, (-3, 9), (4, 9))); Glyph_42 : aliased constant Glyph := (Number_Of_Vectors => 6, Width => 5, Height => 1, Y_Offset => -1, X_Offset => -2, Vects => (Raise_Pen, (0, -1), (0, 0), (1, 0), (1, -1), (0, -1))); Glyph_43 : aliased constant Glyph := (Number_Of_Vectors => 27, Width => 22, Height => 21, Y_Offset => -12, X_Offset => -12, Vects => (Raise_Pen, (-7, -12), (-7, 9), Raise_Pen, (-6, -12), (-6, 9), Raise_Pen, (7, -12), (-6, 1), Raise_Pen, (-1, -3), (7, 9), Raise_Pen, (-2, -3), (6, 9), Raise_Pen, (-10, -12), (-3, -12), Raise_Pen, (3, -12), (9, -12), Raise_Pen, (-10, 9), (-3, 9), Raise_Pen, (3, 9), (9, 9))); Glyph_44 : aliased constant Glyph := (Number_Of_Vectors => 15, Width => 20, Height => 21, Y_Offset => -12, X_Offset => -10, Vects => (Raise_Pen, (0, -12), (-7, 9), Raise_Pen, (0, -12), (7, 9), Raise_Pen, (0, -9), (6, 9), Raise_Pen, (-9, 9), (-3, 9), Raise_Pen, (3, 9), (9, 9))); Glyph_45 : aliased constant Glyph := (Number_Of_Vectors => 30, Width => 25, Height => 21, Y_Offset => -12, X_Offset => -12, Vects => (Raise_Pen, (-7, -12), (-7, 9), Raise_Pen, (-6, -12), (0, 6), Raise_Pen, (-7, -12), (0, 9), Raise_Pen, (7, -12), (0, 9), Raise_Pen, (7, -12), (7, 9), Raise_Pen, (8, -12), (8, 9), Raise_Pen, (-10, -12), (-6, -12), Raise_Pen, (7, -12), (11, -12), Raise_Pen, (-10, 9), (-4, 9), Raise_Pen, (4, 9), (11, 9))); Glyph_46 : aliased constant Glyph := (Number_Of_Vectors => 21, Width => 23, Height => 21, Y_Offset => -12, X_Offset => -11, Vects => (Raise_Pen, (-6, -12), (-6, 9), Raise_Pen, (-5, -12), (7, 7), Raise_Pen, (-5, -10), (7, 9), Raise_Pen, (7, -12), (7, 9), Raise_Pen, (-9, -12), (-5, -12), Raise_Pen, (4, -12), (10, -12), Raise_Pen, (-9, 9), (-3, 9))); Glyph_47 : aliased constant Glyph := (Number_Of_Vectors => 44, Width => 22, Height => 21, Y_Offset => -12, X_Offset => -11, Vects => (Raise_Pen, (-1, -12), (-4, -11), (-6, -9), (-7, -7), (-8, -3), (-8, 0), (-7, 4), (-6, 6), (-4, 8), (-1, 9), (1, 9), (4, 8), (6, 6), (7, 4), (8, 0), (8, -3), (7, -7), (6, -9), (4, -11), (1, -12), (-1, -12), Raise_Pen, (-1, -12), (-3, -11), (-5, -9), (-6, -7), (-7, -3), (-7, 0), (-6, 4), (-5, 6), (-3, 8), (-1, 9), Raise_Pen, (1, 9), (3, 8), (5, 6), (6, 4), (7, 0), (7, -3), (6, -7), (5, -9), (3, -11), (1, -12))); Glyph_48 : aliased constant Glyph := (Number_Of_Vectors => 21, Width => 24, Height => 21, Y_Offset => -12, X_Offset => -12, Vects => (Raise_Pen, (-7, -12), (-7, 9), Raise_Pen, (-6, -12), (-6, 9), Raise_Pen, (6, -12), (6, 9), Raise_Pen, (7, -12), (7, 9), Raise_Pen, (-10, -12), (10, -12), Raise_Pen, (-10, 9), (-3, 9), Raise_Pen, (3, 9), (10, 9))); Glyph_49 : aliased constant Glyph := (Number_Of_Vectors => 56, Width => 22, Height => 21, Y_Offset => -12, X_Offset => -11, Vects => (Raise_Pen, (-1, -12), (-4, -11), (-6, -9), (-7, -7), (-8, -3), (-8, 0), (-7, 4), (-6, 6), (-4, 8), (-1, 9), (1, 9), (4, 8), (6, 6), (7, 4), (8, 0), (8, -3), (7, -7), (6, -9), (4, -11), (1, -12), (-1, -12), Raise_Pen, (-1, -12), (-3, -11), (-5, -9), (-6, -7), (-7, -3), (-7, 0), (-6, 4), (-5, 6), (-3, 8), (-1, 9), Raise_Pen, (1, 9), (3, 8), (5, 6), (6, 4), (7, 0), (7, -3), (6, -7), (5, -9), (3, -11), (1, -12), Raise_Pen, (-3, -5), (-3, 2), Raise_Pen, (3, -5), (3, 2), Raise_Pen, (-3, -2), (3, -2), Raise_Pen, (-3, -1), (3, -1))); Glyph_50 : aliased constant Glyph := (Number_Of_Vectors => 29, Width => 22, Height => 21, Y_Offset => -12, X_Offset => -11, Vects => (Raise_Pen, (-6, -12), (-6, 9), Raise_Pen, (-5, -12), (-5, 9), Raise_Pen, (-9, -12), (3, -12), (6, -11), (7, -10), (8, -8), (8, -5), (7, -3), (6, -2), (3, -1), (-5, -1), Raise_Pen, (3, -12), (5, -11), (6, -10), (7, -8), (7, -5), (6, -3), (5, -2), (3, -1), Raise_Pen, (-9, 9), (-2, 9))); Glyph_51 : aliased constant Glyph := (Number_Of_Vectors => 20, Width => 21, Height => 21, Y_Offset => -12, X_Offset => -10, Vects => (Raise_Pen, (-7, -12), (0, -2), (-8, 9), Raise_Pen, (-8, -12), (-1, -2), Raise_Pen, (-8, -12), (7, -12), (8, -6), (6, -12), Raise_Pen, (-7, 8), (6, 8), Raise_Pen, (-8, 9), (7, 9), (8, 3), (6, 9))); Glyph_52 : aliased constant Glyph := (Number_Of_Vectors => 16, Width => 19, Height => 21, Y_Offset => -12, X_Offset => -9, Vects => (Raise_Pen, (0, -12), (0, 9), Raise_Pen, (1, -12), (1, 9), Raise_Pen, (-6, -12), (-7, -6), (-7, -12), (8, -12), (8, -6), (7, -12), Raise_Pen, (-3, 9), (4, 9))); Glyph_53 : aliased constant Glyph := (Number_Of_Vectors => 33, Width => 19, Height => 21, Y_Offset => -12, X_Offset => -9, Vects => (Raise_Pen, (-7, -7), (-7, -9), (-6, -11), (-5, -12), (-3, -12), (-2, -11), (-1, -9), (0, -5), (0, 9), Raise_Pen, (-7, -9), (-5, -11), (-3, -11), (-1, -9), Raise_Pen, (8, -7), (8, -9), (7, -11), (6, -12), (4, -12), (3, -11), (2, -9), (1, -5), (1, 9), Raise_Pen, (8, -9), (6, -11), (4, -11), (2, -9), Raise_Pen, (-3, 9), (4, 9))); Glyph_54 : aliased constant Glyph := (Number_Of_Vectors => 14, Width => 14, Height => 8, Y_Offset => -12, X_Offset => -7, Vects => (Raise_Pen, (-1, -12), (-3, -11), (-4, -9), (-4, -7), (-3, -5), (-1, -4), (1, -4), (3, -5), (4, -7), (4, -9), (3, -11), (1, -12), (-1, -12))); Glyph_55 : aliased constant Glyph := (Number_Of_Vectors => 43, Width => 22, Height => 21, Y_Offset => -12, X_Offset => -11, Vects => (Raise_Pen, (-8, 6), (-7, 9), (-3, 9), (-5, 5), (-7, 1), (-8, -2), (-8, -6), (-7, -9), (-5, -11), (-2, -12), (2, -12), (5, -11), (7, -9), (8, -6), (8, -2), (7, 1), (5, 5), (3, 9), (7, 9), (8, 6), Raise_Pen, (-5, 5), (-6, 2), (-7, -2), (-7, -6), (-6, -9), (-4, -11), (-2, -12), Raise_Pen, (2, -12), (4, -11), (6, -9), (7, -6), (7, -2), (6, 2), (5, 5), Raise_Pen, (-7, 8), (-4, 8), Raise_Pen, (4, 8), (7, 8))); Glyph_56 : aliased constant Glyph := (Number_Of_Vectors => 36, Width => 22, Height => 23, Y_Offset => -13, X_Offset => -11, Vects => (Raise_Pen, (-7, -13), (-8, -8), Raise_Pen, (8, -13), (7, -8), Raise_Pen, (-3, -4), (-4, 1), Raise_Pen, (4, -4), (3, 1), Raise_Pen, (-7, 5), (-8, 10), Raise_Pen, (8, 5), (7, 10), Raise_Pen, (-7, -11), (7, -11), Raise_Pen, (-7, -10), (7, -10), Raise_Pen, (-3, -2), (3, -2), Raise_Pen, (-3, -1), (3, -1), Raise_Pen, (-7, 7), (7, 7), Raise_Pen, (-7, 8), (7, 8))); Glyph_57 : aliased constant Glyph := (Number_Of_Vectors => 41, Width => 23, Height => 21, Y_Offset => -12, X_Offset => -11, Vects => (Raise_Pen, (0, -12), (0, 9), Raise_Pen, (1, -12), (1, 9), Raise_Pen, (-9, -5), (-8, -6), (-6, -5), (-5, -1), (-4, 1), (-3, 2), (-1, 3), Raise_Pen, (-8, -6), (-7, -5), (-6, -1), (-5, 1), (-4, 2), (-1, 3), (2, 3), (5, 2), (6, 1), (7, -1), (8, -5), (9, -6), Raise_Pen, (2, 3), (4, 2), (5, 1), (6, -1), (7, -5), (9, -6), (10, -5), Raise_Pen, (-3, -12), (4, -12), Raise_Pen, (-3, 9), (4, 9))); Glyph_58 : aliased constant Glyph := (Number_Of_Vectors => 16, Width => 20, Height => 21, Y_Offset => -12, X_Offset => -10, Vects => (Raise_Pen, (6, -12), (-7, 9), Raise_Pen, (7, -12), (-6, 9), Raise_Pen, (-6, -12), (-7, -6), (-7, -12), (7, -12), Raise_Pen, (-7, 9), (7, 9), (7, 3), (6, 9))); Glyph_59 : aliased constant Glyph := (Number_Of_Vectors => 12, Width => 14, Height => 32, Y_Offset => -16, X_Offset => -7, Vects => (Raise_Pen, (-3, -16), (-3, 16), Raise_Pen, (-2, -16), (-2, 16), Raise_Pen, (-3, -16), (4, -16), Raise_Pen, (-3, 16), (4, 16))); Glyph_60 : aliased constant Glyph := (Number_Of_Vectors => 3, Width => 14, Height => 24, Y_Offset => -12, X_Offset => -7, Vects => (Raise_Pen, (-7, -12), (7, 12))); Glyph_61 : aliased constant Glyph := (Number_Of_Vectors => 12, Width => 14, Height => 32, Y_Offset => -16, X_Offset => -7, Vects => (Raise_Pen, (2, -16), (2, 16), Raise_Pen, (3, -16), (3, 16), Raise_Pen, (-4, -16), (3, -16), Raise_Pen, (-4, 16), (3, 16))); Glyph_62 : aliased constant Glyph := (Number_Of_Vectors => 8, Width => 22, Height => 5, Y_Offset => -3, X_Offset => -11, Vects => (Raise_Pen, (-8, 2), (0, -3), (8, 2), Raise_Pen, (-8, 2), (0, -2), (8, 2))); Glyph_63 : aliased constant Glyph := (Number_Of_Vectors => 3, Width => 20, Height => 0, Y_Offset => 16, X_Offset => -10, Vects => (Raise_Pen, (-10, 16), (10, 16))); Glyph_64 : aliased constant Glyph := (Number_Of_Vectors => 7, Width => 12, Height => 6, Y_Offset => -12, X_Offset => -6, Vects => (Raise_Pen, (-2, -12), (3, -6), Raise_Pen, (-2, -12), (-3, -11), (3, -6))); Glyph_65 : aliased constant Glyph := (Number_Of_Vectors => 40, Width => 23, Height => 14, Y_Offset => -5, X_Offset => -11, Vects => (Raise_Pen, (-1, -5), (-4, -4), (-6, -2), (-7, 0), (-8, 3), (-8, 6), (-7, 8), (-4, 9), (-2, 9), (0, 8), (3, 5), (5, 2), (7, -2), (8, -5), Raise_Pen, (-1, -5), (-3, -4), (-5, -2), (-6, 0), (-7, 3), (-7, 6), (-6, 8), (-4, 9), Raise_Pen, (-1, -5), (1, -5), (3, -4), (4, -2), (6, 6), (7, 8), (8, 9), Raise_Pen, (1, -5), (2, -4), (3, -2), (5, 6), (6, 8), (8, 9), (9, 9))); Glyph_66 : aliased constant Glyph := (Number_Of_Vectors => 57, Width => 21, Height => 28, Y_Offset => -12, X_Offset => -11, Vects => (Raise_Pen, (2, -12), (-1, -11), (-3, -9), (-5, -5), (-6, -2), (-7, 2), (-8, 8), (-9, 16), Raise_Pen, (2, -12), (0, -11), (-2, -9), (-4, -5), (-5, -2), (-6, 2), (-7, 8), (-8, 16), Raise_Pen, (2, -12), (4, -12), (6, -11), (7, -10), (7, -7), (6, -5), (5, -4), (2, -3), (-2, -3), Raise_Pen, (4, -12), (6, -10), (6, -7), (5, -5), (4, -4), (2, -3), Raise_Pen, (-2, -3), (2, -2), (4, 0), (5, 2), (5, 5), (4, 7), (3, 8), (0, 9), (-2, 9), (-4, 8), (-5, 7), (-6, 4), Raise_Pen, (-2, -3), (1, -2), (3, 0), (4, 2), (4, 5), (3, 7), (2, 8), (0, 9))); Glyph_67 : aliased constant Glyph := (Number_Of_Vectors => 23, Width => 18, Height => 21, Y_Offset => -5, X_Offset => -9, Vects => (Raise_Pen, (-7, -5), (-5, -5), (-3, -4), (-2, -2), (3, 13), (4, 15), (5, 16), Raise_Pen, (-5, -5), (-4, -4), (-3, -2), (2, 13), (3, 15), (5, 16), (7, 16), Raise_Pen, (8, -5), (7, -3), (5, 0), (-5, 11), (-7, 14), (-8, 16))); Glyph_68 : aliased constant Glyph := (Number_Of_Vectors => 44, Width => 19, Height => 22, Y_Offset => -13, X_Offset => -9, Vects => (Raise_Pen, (4, -4), (2, -5), (0, -5), (-3, -4), (-5, -1), (-6, 2), (-6, 5), (-5, 7), (-4, 8), (-2, 9), (0, 9), (3, 8), (5, 5), (6, 2), (6, -1), (5, -3), (1, -8), (0, -10), (0, -12), (1, -13), (3, -13), (5, -12), (7, -10), Raise_Pen, (0, -5), (-2, -4), (-4, -1), (-5, 2), (-5, 6), (-4, 8), Raise_Pen, (0, 9), (2, 8), (4, 5), (5, 2), (5, -2), (4, -4), (2, -7), (1, -9), (1, -11), (2, -12), (4, -12), (7, -10))); Glyph_69 : aliased constant Glyph := (Number_Of_Vectors => 32, Width => 18, Height => 14, Y_Offset => -5, X_Offset => -9, Vects => (Raise_Pen, (6, -2), (4, -4), (2, -5), (-2, -5), (-4, -4), (-4, -2), (-2, 0), (1, 1), Raise_Pen, (-2, -5), (-3, -4), (-3, -2), (-1, 0), (1, 1), Raise_Pen, (1, 1), (-4, 2), (-6, 4), (-6, 6), (-5, 8), (-2, 9), (1, 9), (3, 8), (5, 6), Raise_Pen, (1, 1), (-3, 2), (-5, 4), (-5, 6), (-4, 8), (-2, 9))); Glyph_70 : aliased constant Glyph := (Number_Of_Vectors => 37, Width => 22, Height => 21, Y_Offset => -5, X_Offset => -11, Vects => (Raise_Pen, (-3, -4), (-5, -3), (-7, -1), (-8, 2), (-8, 5), (-7, 7), (-6, 8), (-4, 9), (-1, 9), (2, 8), (5, 6), (7, 3), (8, 0), (8, -3), (6, -5), (4, -5), (2, -3), (0, 1), (-2, 6), (-5, 16), Raise_Pen, (-8, 5), (-6, 7), (-4, 8), (-1, 8), (2, 7), (5, 5), (7, 3), Raise_Pen, (8, -3), (6, -4), (4, -4), (2, -2), (0, 1), (-2, 7), (-4, 16))); Glyph_71 : aliased constant Glyph := (Number_Of_Vectors => 28, Width => 20, Height => 21, Y_Offset => -5, X_Offset => -10, Vects => (Raise_Pen, (-9, -2), (-7, -4), (-5, -5), (-3, -5), (-1, -4), (0, -3), (1, 0), (1, 4), (0, 8), (-3, 16), Raise_Pen, (-8, -3), (-6, -4), (-2, -4), (0, -3), Raise_Pen, (8, -5), (7, -2), (6, 0), (1, 7), (-2, 12), (-4, 16), Raise_Pen, (7, -5), (6, -2), (5, 0), (1, 7))); Glyph_72 : aliased constant Glyph := (Number_Of_Vectors => 32, Width => 22, Height => 21, Y_Offset => -5, X_Offset => -11, Vects => (Raise_Pen, (-10, -1), (-9, -3), (-7, -5), (-4, -5), (-3, -4), (-3, -2), (-4, 2), (-6, 9), Raise_Pen, (-5, -5), (-4, -4), (-4, -2), (-5, 2), (-7, 9), Raise_Pen, (-4, 2), (-2, -2), (0, -4), (2, -5), (4, -5), (6, -4), (7, -3), (7, 0), (6, 5), (3, 16), Raise_Pen, (4, -5), (6, -3), (6, 0), (5, 5), (2, 16))); Glyph_73 : aliased constant Glyph := (Number_Of_Vectors => 15, Width => 12, Height => 14, Y_Offset => -5, X_Offset => -6, Vects => (Raise_Pen, (0, -5), (-2, 2), (-3, 6), (-3, 8), (-2, 9), (1, 9), (3, 7), (4, 5), Raise_Pen, (1, -5), (-1, 2), (-2, 6), (-2, 8), (-1, 9))); Glyph_74 : aliased constant Glyph := (Number_Of_Vectors => 6, Width => 22, Height => 14, Y_Offset => -7, X_Offset => -11, Vects => (Raise_Pen, (-7, -7), (7, 7), Raise_Pen, (7, -7), (-7, 7))); Glyph_75 : aliased constant Glyph := (Number_Of_Vectors => 29, Width => 20, Height => 14, Y_Offset => -5, X_Offset => -10, Vects => (Raise_Pen, (-4, -5), (-8, 9), Raise_Pen, (-3, -5), (-7, 9), Raise_Pen, (6, -5), (7, -4), (8, -4), (7, -5), (5, -5), (3, -4), (-1, 0), (-3, 1), (-5, 1), Raise_Pen, (-3, 1), (-1, 2), (1, 8), (2, 9), Raise_Pen, (-3, 1), (-2, 2), (0, 8), (1, 9), (3, 9), (5, 8), (7, 5))); Glyph_76 : aliased constant Glyph := (Number_Of_Vectors => 23, Width => 20, Height => 21, Y_Offset => -12, X_Offset => -10, Vects => (Raise_Pen, (-7, -12), (-5, -12), (-3, -11), (-2, -10), (-1, -8), (5, 6), (6, 8), (7, 9), Raise_Pen, (-5, -12), (-3, -10), (-2, -8), (4, 6), (5, 8), (7, 9), (8, 9), Raise_Pen, (0, -5), (-8, 9), Raise_Pen, (0, -5), (-7, 9))); Glyph_77 : aliased constant Glyph := (Number_Of_Vectors => 28, Width => 23, Height => 21, Y_Offset => -5, X_Offset => -12, Vects => (Raise_Pen, (-5, -5), (-11, 16), Raise_Pen, (-4, -5), (-10, 16), Raise_Pen, (-5, -2), (-6, 4), (-6, 7), (-4, 9), (-2, 9), (0, 8), (2, 6), (4, 3), Raise_Pen, (6, -5), (3, 6), (3, 8), (4, 9), (7, 9), (9, 7), (10, 5), Raise_Pen, (7, -5), (4, 6), (4, 8), (5, 9))); Glyph_78 : aliased constant Glyph := (Number_Of_Vectors => 24, Width => 20, Height => 14, Y_Offset => -5, X_Offset => -10, Vects => (Raise_Pen, (-4, -5), (-6, 9), Raise_Pen, (-3, -5), (-4, 1), (-5, 6), (-6, 9), Raise_Pen, (7, -5), (6, -1), (4, 3), Raise_Pen, (8, -5), (7, -2), (6, 0), (4, 3), (2, 5), (-1, 7), (-3, 8), (-6, 9), Raise_Pen, (-7, -5), (-3, -5))); Glyph_79 : aliased constant Glyph := (Number_Of_Vectors => 32, Width => 18, Height => 14, Y_Offset => -5, X_Offset => -9, Vects => (Raise_Pen, (0, -5), (-3, -4), (-5, -1), (-6, 2), (-6, 5), (-5, 7), (-4, 8), (-2, 9), (0, 9), (3, 8), (5, 5), (6, 2), (6, -1), (5, -3), (4, -4), (2, -5), (0, -5), Raise_Pen, (0, -5), (-2, -4), (-4, -1), (-5, 2), (-5, 6), (-4, 8), Raise_Pen, (0, 9), (2, 8), (4, 5), (5, 2), (5, -2), (4, -4))); Glyph_80 : aliased constant Glyph := (Number_Of_Vectors => 22, Width => 22, Height => 14, Y_Offset => -5, X_Offset => -11, Vects => (Raise_Pen, (-2, -4), (-6, 9), Raise_Pen, (-2, -4), (-5, 9), Raise_Pen, (4, -4), (4, 9), Raise_Pen, (4, -4), (5, 9), Raise_Pen, (-9, -2), (-7, -4), (-4, -5), (9, -5), Raise_Pen, (-9, -2), (-7, -3), (-4, -4), (9, -4))); Glyph_81 : aliased constant Glyph := (Number_Of_Vectors => 44, Width => 23, Height => 21, Y_Offset => -12, X_Offset => -12, Vects => (Raise_Pen, (-11, -1), (-10, -3), (-8, -5), (-5, -5), (-4, -4), (-4, -2), (-5, 3), (-5, 6), (-4, 8), (-3, 9), Raise_Pen, (-6, -5), (-5, -4), (-5, -2), (-6, 3), (-6, 6), (-5, 8), (-3, 9), (-1, 9), (1, 8), (3, 6), (5, 3), (6, 0), (7, -5), (7, -9), (6, -11), (4, -12), (2, -12), (0, -10), (0, -8), (1, -5), (3, -2), (5, 0), (8, 2), Raise_Pen, (1, 8), (3, 5), (4, 3), (5, 0), (6, -5), (6, -9), (5, -11), (4, -12))); Glyph_82 : aliased constant Glyph := (Number_Of_Vectors => 31, Width => 19, Height => 21, Y_Offset => -5, X_Offset => -10, Vects => (Raise_Pen, (-6, 4), (-5, 7), (-4, 8), (-2, 9), (0, 9), (3, 8), (5, 5), (6, 2), (6, -1), (5, -3), (4, -4), (2, -5), (0, -5), (-3, -4), (-5, -1), (-6, 2), (-10, 16), Raise_Pen, (0, 9), (2, 8), (4, 5), (5, 2), (5, -2), (4, -4), Raise_Pen, (0, -5), (-2, -4), (-4, -1), (-5, 2), (-9, 16))); Glyph_83 : aliased constant Glyph := (Number_Of_Vectors => 35, Width => 21, Height => 14, Y_Offset => -5, X_Offset => -10, Vects => (Raise_Pen, (9, -5), (-1, -5), (-4, -4), (-6, -1), (-7, 2), (-7, 5), (-6, 7), (-5, 8), (-3, 9), (-1, 9), (2, 8), (4, 5), (5, 2), (5, -1), (4, -3), (3, -4), (1, -5), Raise_Pen, (-1, -5), (-3, -4), (-5, -1), (-6, 2), (-6, 6), (-5, 8), Raise_Pen, (-1, 9), (1, 8), (3, 5), (4, 2), (4, -2), (3, -4), Raise_Pen, (3, -4), (9, -4))); Glyph_84 : aliased constant Glyph := (Number_Of_Vectors => 16, Width => 20, Height => 14, Y_Offset => -5, X_Offset => -10, Vects => (Raise_Pen, (1, -4), (-2, 9), Raise_Pen, (1, -4), (-1, 9), Raise_Pen, (-8, -2), (-6, -4), (-3, -5), (8, -5), Raise_Pen, (-8, -2), (-6, -3), (-3, -4), (8, -4))); Glyph_85 : aliased constant Glyph := (Number_Of_Vectors => 31, Width => 20, Height => 14, Y_Offset => -5, X_Offset => -10, Vects => (Raise_Pen, (-9, -1), (-8, -3), (-6, -5), (-3, -5), (-2, -4), (-2, -2), (-4, 4), (-4, 7), (-2, 9), Raise_Pen, (-4, -5), (-3, -4), (-3, -2), (-5, 4), (-5, 7), (-4, 8), (-2, 9), (-1, 9), (2, 8), (4, 6), (6, 3), (7, 0), (7, -3), (6, -5), (5, -4), (6, -3), (7, 0), Raise_Pen, (6, 3), (7, -3))); Glyph_86 : aliased constant Glyph := (Number_Of_Vectors => 15, Width => 26, Height => 18, Y_Offset => -9, X_Offset => -13, Vects => (Raise_Pen, (0, -9), (-1, -8), (0, -7), (1, -8), (0, -9), Raise_Pen, (-9, 0), (9, 0), Raise_Pen, (0, 7), (-1, 8), (0, 9), (1, 8), (0, 7))); Glyph_87 : aliased constant Glyph := (Number_Of_Vectors => 44, Width => 23, Height => 14, Y_Offset => -5, X_Offset => -12, Vects => (Raise_Pen, (-8, -1), (-6, -3), (-3, -4), (-4, -5), (-6, -4), (-8, -1), (-9, 2), (-9, 5), (-8, 8), (-7, 9), (-5, 9), (-3, 8), (-1, 5), (0, 2), Raise_Pen, (-9, 5), (-8, 7), (-7, 8), (-5, 8), (-3, 7), (-1, 5), Raise_Pen, (-1, 2), (-1, 5), (0, 8), (1, 9), (3, 9), (5, 8), (7, 5), (8, 2), (8, -1), (7, -4), (6, -5), (5, -4), (7, -3), (8, -1), Raise_Pen, (-1, 5), (0, 7), (1, 8), (3, 8), (5, 7), (7, 5))); Glyph_88 : aliased constant Glyph := (Number_Of_Vectors => 45, Width => 17, Height => 28, Y_Offset => -12, X_Offset => -9, Vects => (Raise_Pen, (2, -12), (0, -11), (-1, -10), (-1, -9), (0, -8), (3, -7), (6, -7), Raise_Pen, (3, -7), (-1, -6), (-3, -5), (-4, -3), (-4, -1), (-2, 1), (1, 2), (4, 2), Raise_Pen, (3, -7), (0, -6), (-2, -5), (-3, -3), (-3, -1), (-1, 1), (1, 2), Raise_Pen, (1, 2), (-3, 3), (-5, 4), (-6, 6), (-6, 8), (-4, 10), (1, 12), (2, 13), (2, 15), (0, 16), (-2, 16), Raise_Pen, (1, 2), (-2, 3), (-4, 4), (-5, 6), (-5, 8), (-3, 10), (1, 12))); Glyph_89 : aliased constant Glyph := (Number_Of_Vectors => 34, Width => 23, Height => 28, Y_Offset => -12, X_Offset => -12, Vects => (Raise_Pen, (3, -12), (-3, 16), Raise_Pen, (4, -12), (-4, 16), Raise_Pen, (-11, -1), (-10, -3), (-8, -5), (-5, -5), (-4, -4), (-4, -2), (-5, 3), (-5, 6), (-3, 8), (0, 8), (2, 7), (5, 4), (7, 1), Raise_Pen, (-6, -5), (-5, -4), (-5, -2), (-6, 3), (-6, 6), (-5, 8), (-3, 9), (0, 9), (2, 8), (4, 6), (6, 3), (7, 1), (9, -5))); Glyph_90 : aliased constant Glyph := (Number_Of_Vectors => 31, Width => 18, Height => 28, Y_Offset => -12, X_Offset => -9, Vects => (Raise_Pen, (2, -12), (0, -11), (-1, -10), (-1, -9), (0, -8), (3, -7), (8, -7), (8, -8), (5, -7), (1, -5), (-2, -3), (-5, 0), (-6, 3), (-6, 5), (-5, 7), (-2, 9), (1, 11), (2, 13), (2, 15), (1, 16), (-1, 16), (-2, 15), Raise_Pen, (3, -6), (-1, -3), (-4, 0), (-5, 3), (-5, 5), (-4, 7), (-2, 9))); Glyph_91 : aliased constant Glyph := (Number_Of_Vectors => 40, Width => 14, Height => 32, Y_Offset => -16, X_Offset => -7, Vects => (Raise_Pen, (2, -16), (0, -15), (-1, -14), (-2, -12), (-2, -10), (-1, -8), (0, -7), (1, -5), (1, -3), (-1, -1), Raise_Pen, (0, -15), (-1, -13), (-1, -11), (0, -9), (1, -8), (2, -6), (2, -4), (1, -2), (-3, 0), (1, 2), (2, 4), (2, 6), (1, 8), (0, 9), (-1, 11), (-1, 13), (0, 15), Raise_Pen, (-1, 1), (1, 3), (1, 5), (0, 7), (-1, 8), (-2, 10), (-2, 12), (-1, 14), (0, 15), (2, 16))); Glyph_92 : aliased constant Glyph := (Number_Of_Vectors => 3, Width => 8, Height => 32, Y_Offset => -16, X_Offset => -4, Vects => (Raise_Pen, (0, -16), (0, 16))); Glyph_93 : aliased constant Glyph := (Number_Of_Vectors => 40, Width => 14, Height => 32, Y_Offset => -16, X_Offset => -7, Vects => (Raise_Pen, (-2, -16), (0, -15), (1, -14), (2, -12), (2, -10), (1, -8), (0, -7), (-1, -5), (-1, -3), (1, -1), Raise_Pen, (0, -15), (1, -13), (1, -11), (0, -9), (-1, -8), (-2, -6), (-2, -4), (-1, -2), (3, 0), (-1, 2), (-2, 4), (-2, 6), (-1, 8), (0, 9), (1, 11), (1, 13), (0, 15), Raise_Pen, (1, 1), (-1, 3), (-1, 5), (0, 7), (1, 8), (2, 10), (2, 12), (1, 14), (0, 15), (-2, 16))); Glyph_94 : aliased constant Glyph := (Number_Of_Vectors => 24, Width => 24, Height => 6, Y_Offset => -3, X_Offset => -12, Vects => (Raise_Pen, (-9, 3), (-9, 1), (-8, -2), (-6, -3), (-4, -3), (-2, -2), (2, 1), (4, 2), (6, 2), (8, 1), (9, -1), Raise_Pen, (-9, 1), (-8, -1), (-6, -2), (-4, -2), (-2, -1), (2, 2), (4, 3), (6, 3), (8, 2), (9, -1), (9, -3))); Glyph_95 : aliased constant Glyph := (Number_Of_Vectors => 35, Width => 16, Height => 21, Y_Offset => -12, X_Offset => -8, Vects => (Raise_Pen, (-8, -12), (-8, 9), (-7, 9), (-7, -12), (-6, -12), (-6, 9), (-5, 9), (-5, -12), (-4, -12), (-4, 9), (-3, 9), (-3, -12), (-2, -12), (-2, 9), (-1, 9), (-1, -12), (0, -12), (0, 9), (1, 9), (1, -12), (2, -12), (2, 9), (3, 9), (3, -12), (4, -12), (4, 9), (5, 9), (5, -12), (6, -12), (6, 9), (7, 9), (7, -12), (8, -12), (8, 9))); Font_D : aliased constant Hershey_Font := (Number_Of_Glyphs => 96, Glyphs => ( Glyph_0'Access, Glyph_1'Access, Glyph_2'Access, Glyph_3'Access, Glyph_4'Access, Glyph_5'Access, Glyph_6'Access, Glyph_7'Access, Glyph_8'Access, Glyph_9'Access, Glyph_10'Access, Glyph_11'Access, Glyph_12'Access, Glyph_13'Access, Glyph_14'Access, Glyph_15'Access, Glyph_16'Access, Glyph_17'Access, Glyph_18'Access, Glyph_19'Access, Glyph_20'Access, Glyph_21'Access, Glyph_22'Access, Glyph_23'Access, Glyph_24'Access, Glyph_25'Access, Glyph_26'Access, Glyph_27'Access, Glyph_28'Access, Glyph_29'Access, Glyph_30'Access, Glyph_31'Access, Glyph_32'Access, Glyph_33'Access, Glyph_34'Access, Glyph_35'Access, Glyph_36'Access, Glyph_37'Access, Glyph_38'Access, Glyph_39'Access, Glyph_40'Access, Glyph_41'Access, Glyph_42'Access, Glyph_43'Access, Glyph_44'Access, Glyph_45'Access, Glyph_46'Access, Glyph_47'Access, Glyph_48'Access, Glyph_49'Access, Glyph_50'Access, Glyph_51'Access, Glyph_52'Access, Glyph_53'Access, Glyph_54'Access, Glyph_55'Access, Glyph_56'Access, Glyph_57'Access, Glyph_58'Access, Glyph_59'Access, Glyph_60'Access, Glyph_61'Access, Glyph_62'Access, Glyph_63'Access, Glyph_64'Access, Glyph_65'Access, Glyph_66'Access, Glyph_67'Access, Glyph_68'Access, Glyph_69'Access, Glyph_70'Access, Glyph_71'Access, Glyph_72'Access, Glyph_73'Access, Glyph_74'Access, Glyph_75'Access, Glyph_76'Access, Glyph_77'Access, Glyph_78'Access, Glyph_79'Access, Glyph_80'Access, Glyph_81'Access, Glyph_82'Access, Glyph_83'Access, Glyph_84'Access, Glyph_85'Access, Glyph_86'Access, Glyph_87'Access, Glyph_88'Access, Glyph_89'Access, Glyph_90'Access, Glyph_91'Access, Glyph_92'Access, Glyph_93'Access, Glyph_94'Access, Glyph_95'Access ), Y_Advance => 32); Font : constant Giza.Font.Ref_Const := Font_D'Access; end Giza.Hershey_Fonts.Timesg;
-- Copyright (c) 2015-2017 Maxim Reznik <reznikmm@gmail.com> -- -- SPDX-License-Identifier: MIT -- License-Filename: LICENSE ------------------------------------------------------------- with League.Strings; with XML.SAX.Attributes; with XML.SAX.Content_Handlers; with XML.Templates.Streams; with Tests.Commands; package Tests.Parser_Data.XML_Reader is type Reader (Data : access Provider) is limited new XML.SAX.Content_Handlers.SAX_Content_Handler with private; function Get_Commands (Self : Reader) return Tests.Commands.Command_Vectors.Vector; private type Reader (Data : access Provider) is limited new XML.SAX.Content_Handlers.SAX_Content_Handler with record Collect_Text : Boolean := False; Collect_XML : Boolean := False; Index : Positive; Text : League.Strings.Universal_String; List : League.String_Vectors.Universal_String_Vector; Commands : Tests.Commands.Command_Vectors.Vector; Vector : XML.Templates.Streams.XML_Stream_Element_Vectors.Vector; end record; overriding procedure Characters (Self : in out Reader; Text : League.Strings.Universal_String; Success : in out Boolean); overriding procedure End_Element (Self : in out Reader; Namespace_URI : League.Strings.Universal_String; Local_Name : League.Strings.Universal_String; Qualified_Name : League.Strings.Universal_String; Success : in out Boolean); overriding function Error_String (Self : Reader) return League.Strings.Universal_String; overriding procedure Start_Element (Self : in out Reader; Namespace_URI : League.Strings.Universal_String; Local_Name : League.Strings.Universal_String; Qualified_Name : League.Strings.Universal_String; Attributes : XML.SAX.Attributes.SAX_Attributes; Success : in out Boolean); end Tests.Parser_Data.XML_Reader;
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- F N A M E . U F -- -- -- -- S p e c -- -- -- -- $Revision$ -- -- -- Copyright (C) 1992-2000 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. -- -- -- ------------------------------------------------------------------------------ -- This child package contains the routines to translate a unit name to -- a file name taking into account Source_File_Name pragmas. It also -- contains the auxiliary routines used to record data from the pragmas. -- Note: the reason we split this into a child unit is that the routines -- for unit name translation have a significant number of additional -- dependencies, including osint, and hence sdefault. There are a number -- of tools that use utility subprograms in the Fname parent, but do not -- need the functionality in this child package (and certainly do not want -- to deal with the extra dependencies). with Casing; use Casing; package Fname.UF is ----------------- -- Subprograms -- ----------------- function Get_File_Name (Uname : Unit_Name_Type; Subunit : Boolean) return File_Name_Type; -- This function returns the file name that corresponds to a given unit -- name, Uname. The Subunit parameter is set True for subunits, and -- false for all other kinds of units. The caller is responsible for -- ensuring that the unit name meets the requirements given in package -- Uname and described above. procedure Initialize; -- Initialize internal tables. This is called automatically when the -- package body is elaborated, so an explicit call to Initialize is -- only required if it is necessary to reinitialize the source file -- name pragma tables. procedure Lock; -- Lock tables before calling back end function File_Name_Of_Spec (Name : Name_Id) return File_Name_Type; -- Returns the file name that corresponds to the spec of a given unit -- name. The unit name here is not encoded as a Unit_Name_Type, but is -- rather just a normal form name in lower case, e.g. "xyz.def". function File_Name_Of_Body (Name : Name_Id) return File_Name_Type; -- Returns the file name that corresponds to the body of a given unit -- name. The unit name here is not encoded as a Unit_Name_Type, but is -- rather just a normal form name in lower case, e.g. "xyz.def". procedure Set_File_Name (U : Unit_Name_Type; F : File_Name_Type); -- Make association between given unit name, U, and the given file name, -- F. This is the routine called to process a Source_File_Name pragma. procedure Set_File_Name_Pattern (Pat : String_Ptr; Typ : Character; Dot : String_Ptr; Cas : Casing_Type); -- This is called to process a Source_File_Name pragma whose first -- argument is a file name pattern string. Pat is this pattern string, -- which contains an asterisk to correspond to the unit. Typ is one of -- 'b'/'s'/'u' for body/spec/subunit, Dot is the separator string -- for child/subunit names, and Cas is one of Lower/Upper/Mixed -- indicating the required case for the file name. end Fname.UF;
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> <!DOCTYPE boost_serialization> <boost_serialization signature="serialization::archive" version="14"> <syndb class_id="0" tracking_level="0" version="0"> <userIPLatency>-1</userIPLatency> <userIPName/> <cdfg class_id="1" tracking_level="1" version="0" object_id="_0"> <name>call_Loop_LB2D_buf_p</name> <ret_bitwidth>0</ret_bitwidth> <ports class_id="2" tracking_level="0" version="0"> <count>2</count> <item_version>0</item_version> <item class_id="3" tracking_level="1" version="0" object_id="_1"> <Value class_id="4" tracking_level="0" version="0"> <Obj class_id="5" tracking_level="0" version="0"> <type>1</type> <id>1</id> <name>in_stream_V_value_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo class_id="6" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>stream&amp;lt;PackedStencil&amp;lt;unsigned char, 1, 1, 1, 1&amp;gt; &amp;gt;.V.value.V</originalName> <rtlName/> <coreName>FIFO_SRL</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>0</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs class_id="7" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_2"> <Value> <Obj> <type>1</type> <id>2</id> <name>slice_stream_V_value_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName>FIFO_SRL</coreName> </Obj> <bitwidth>24</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> </ports> <nodes class_id="8" tracking_level="0" version="0"> <count>45</count> <item_version>0</item_version> <item class_id="9" tracking_level="1" version="0" object_id="_3"> <Value> <Obj> <type>0</type> <id>7</id> <name>buffer_0_value_V</name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>168</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item class_id="10" tracking_level="0" version="0"> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d_b2b</first> <second class_id="11" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="12" tracking_level="0" version="0"> <first class_id="13" tracking_level="0" version="0"> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>168</second> </item> </second> </item> </inlineStackInfo> <originalName>buffer[0].value.V</originalName> <rtlName>buffer_0_value_V_U</rtlName> <coreName>RAM</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>73</item> </oprand_edges> <opcode>alloca</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_4"> <Value> <Obj> <type>0</type> <id>8</id> <name>buffer_1_value_V</name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>168</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>168</second> </item> </second> </item> </inlineStackInfo> <originalName>buffer[1].value.V</originalName> <rtlName>buffer_1_value_V_U</rtlName> <coreName>RAM</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>74</item> </oprand_edges> <opcode>alloca</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_5"> <Value> <Obj> <type>0</type> <id>9</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>75</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_6"> <Value> <Obj> <type>0</type> <id>11</id> <name>write_idx_1</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>write_idx_1</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>77</item> <item>78</item> <item>79</item> <item>80</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_7"> <Value> <Obj> <type>0</type> <id>12</id> <name>row</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>row</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>82</item> <item>83</item> <item>84</item> <item>85</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_8"> <Value> <Obj> <type>0</type> <id>13</id> <name>tmp</name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>177</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>177</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_fu_176_p2</rtlName> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>86</item> <item>88</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_9"> <Value> <Obj> <type>0</type> <id>15</id> <name>row_1</name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>177</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>177</second> </item> </second> </item> </inlineStackInfo> <originalName>row</originalName> <rtlName>row_1_fu_182_p2</rtlName> <coreName/> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>89</item> <item>91</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_10"> <Value> <Obj> <type>0</type> <id>16</id> <name/> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>177</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>177</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>92</item> <item>93</item> <item>94</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_11"> <Value> <Obj> <type>0</type> <id>20</id> <name>tmp_10</name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>187</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>187</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_10_fu_188_p4</rtlName> <coreName/> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>114</item> <item>115</item> <item>117</item> <item>119</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_12"> <Value> <Obj> <type>0</type> <id>21</id> <name>icmp</name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>187</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>187</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>icmp_fu_198_p2</rtlName> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>120</item> <item>122</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_13"> <Value> <Obj> <type>0</type> <id>22</id> <name/> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>179</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>179</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>123</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_14"> <Value> <Obj> <type>0</type> <id>24</id> <name>write_idx_1_1</name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>211</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>211</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>98</item> <item>99</item> <item>100</item> <item>101</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_15"> <Value> <Obj> <type>0</type> <id>25</id> <name>col</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>col</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>102</item> <item>103</item> <item>104</item> <item>105</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_16"> <Value> <Obj> <type>0</type> <id>26</id> <name>tmp_2</name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>179</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>179</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_2_fu_204_p2</rtlName> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>106</item> <item>107</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_17"> <Value> <Obj> <type>0</type> <id>27</id> <name>col_1</name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>179</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>179</second> </item> </second> </item> </inlineStackInfo> <originalName>col</originalName> <rtlName>col_1_fu_210_p2</rtlName> <coreName/> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>108</item> <item>109</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_18"> <Value> <Obj> <type>0</type> <id>28</id> <name/> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>179</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>179</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>110</item> <item>111</item> <item>112</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_19"> <Value> <Obj> <type>0</type> <id>30</id> <name>col_cast</name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>179</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>179</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>col_cast_fu_216_p1</rtlName> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>138</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_20"> <Value> <Obj> <type>0</type> <id>34</id> <name>tmp_11</name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>183</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>183</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_11_fu_224_p4</rtlName> <coreName/> </Obj> <bitwidth>63</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>140</item> <item>141</item> <item>142</item> <item>144</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_21"> <Value> <Obj> <type>0</type> <id>35</id> <name>icmp1</name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>183</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>183</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>icmp1_fu_234_p2</rtlName> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>145</item> <item>147</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_22"> <Value> <Obj> <type>0</type> <id>36</id> <name>write_idx_1_3</name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>184</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>184</second> </item> </second> </item> </inlineStackInfo> <originalName>write_idx_1</originalName> <rtlName>write_idx_1_3_fu_240_p2</rtlName> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>148</item> <item>150</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_23"> <Value> <Obj> <type>0</type> <id>37</id> <name>p_write_idx_1_1</name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>183</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>183</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>p_write_idx_1_1_fu_246_p3</rtlName> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>151</item> <item>152</item> <item>153</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_24"> <Value> <Obj> <type>0</type> <id>38</id> <name>tmp_value_V_3</name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>186</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>186</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.value.V</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>155</item> <item>156</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_25"> <Value> <Obj> <type>0</type> <id>39</id> <name/> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>187</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>187</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>157</item> <item>158</item> <item>159</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_26"> <Value> <Obj> <type>0</type> <id>41</id> <name>tmp_12</name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>183</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>183</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_12_fu_253_p1</rtlName> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>160</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_27"> <Value> <Obj> <type>0</type> <id>42</id> <name>buffer_0_value_V_ad_1</name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>198</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>198</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>161</item> <item>162</item> <item>163</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_28"> <Value> <Obj> <type>0</type> <id>43</id> <name>buffer_1_value_V_ad_1</name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>198</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>198</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>164</item> <item>165</item> <item>166</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_29"> <Value> <Obj> <type>0</type> <id>44</id> <name>buffer_1_value_V_lo</name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>198</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>198</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>167</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_30"> <Value> <Obj> <type>0</type> <id>45</id> <name>buffer_0_value_V_lo</name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>198</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>198</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>168</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_31"> <Value> <Obj> <type>0</type> <id>46</id> <name>p_Val2_3_0_phi</name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>198</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>198</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>p_Val2_3_0_phi_fu_257_p3</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>169</item> <item>170</item> <item>171</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_32"> <Value> <Obj> <type>0</type> <id>47</id> <name>p_Val2_3_1_phi</name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>198</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>198</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>p_Val2_3_1_phi_fu_265_p3</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>172</item> <item>173</item> <item>174</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_33"> <Value> <Obj> <type>0</type> <id>48</id> <name>p_Result_s</name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>206</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>206</second> </item> </second> </item> </inlineStackInfo> <originalName>__Result__</originalName> <rtlName>slice_stream_V_value_V_din</rtlName> <coreName/> </Obj> <bitwidth>24</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>176</item> <item>177</item> <item>178</item> <item>179</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_34"> <Value> <Obj> <type>0</type> <id>49</id> <name/> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>207</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>207</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>181</item> <item>182</item> <item>183</item> </oprand_edges> <opcode>write</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_35"> <Value> <Obj> <type>0</type> <id>50</id> <name/> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>208</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>208</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>184</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_36"> <Value> <Obj> <type>0</type> <id>52</id> <name>buffer_0_value_V_ad</name> <fileName>../../../lib_files/Stencil.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>75</lineNumber> <contextFuncName>operator=</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d_b2b</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>209</second> </item> <item> <first> <first>../../../lib_files/Stencil.h</first> <second>operator=</second> </first> <second>75</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>128</item> <item>129</item> <item>130</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_37"> <Value> <Obj> <type>0</type> <id>53</id> <name>buffer_1_value_V_ad</name> <fileName>../../../lib_files/Stencil.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>75</lineNumber> <contextFuncName>operator=</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d_b2b</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>209</second> </item> <item> <first> <first>../../../lib_files/Stencil.h</first> <second>operator=</second> </first> <second>75</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>131</item> <item>132</item> <item>133</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_38"> <Value> <Obj> <type>0</type> <id>54</id> <name>tmp_13</name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>183</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>183</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_13_fu_273_p1</rtlName> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>134</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_39"> <Value> <Obj> <type>0</type> <id>55</id> <name/> <fileName>../../../lib_files/Stencil.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>75</lineNumber> <contextFuncName>operator=</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d_b2b</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>209</second> </item> <item> <first> <first>../../../lib_files/Stencil.h</first> <second>operator=</second> </first> <second>75</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>135</item> <item>136</item> <item>137</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_40"> <Value> <Obj> <type>0</type> <id>57</id> <name/> <fileName>../../../lib_files/Stencil.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>75</lineNumber> <contextFuncName>operator=</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d_b2b</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>209</second> </item> <item> <first> <first>../../../lib_files/Stencil.h</first> <second>operator=</second> </first> <second>75</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>125</item> <item>126</item> <item>302</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_41"> <Value> <Obj> <type>0</type> <id>58</id> <name/> <fileName>../../../lib_files/Stencil.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>75</lineNumber> <contextFuncName>operator=</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d_b2b</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>209</second> </item> <item> <first> <first>../../../lib_files/Stencil.h</first> <second>operator=</second> </first> <second>75</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>127</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_42"> <Value> <Obj> <type>0</type> <id>60</id> <name/> <fileName>../../../lib_files/Stencil.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>75</lineNumber> <contextFuncName>operator=</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d_b2b</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>209</second> </item> <item> <first> <first>../../../lib_files/Stencil.h</first> <second>operator=</second> </first> <second>75</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>185</item> <item>186</item> <item>301</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_43"> <Value> <Obj> <type>0</type> <id>61</id> <name/> <fileName>../../../lib_files/Stencil.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>75</lineNumber> <contextFuncName>operator=</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d_b2b</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>209</second> </item> <item> <first> <first>../../../lib_files/Stencil.h</first> <second>operator=</second> </first> <second>75</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>187</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_44"> <Value> <Obj> <type>0</type> <id>64</id> <name/> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>179</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>179</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>124</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_45"> <Value> <Obj> <type>0</type> <id>66</id> <name>write_idx_1_2</name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>211</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>211</second> </item> </second> </item> </inlineStackInfo> <originalName>write_idx_1</originalName> <rtlName>write_idx_1_2_fu_286_p2</rtlName> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>95</item> <item>96</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_46"> <Value> <Obj> <type>0</type> <id>68</id> <name/> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>177</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>177</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>97</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_47"> <Value> <Obj> <type>0</type> <id>70</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>0</count> <item_version>0</item_version> </oprand_edges> <opcode>ret</opcode> <m_Display>0</m_Display> </item> </nodes> <consts class_id="15" tracking_level="0" version="0"> <count>11</count> <item_version>0</item_version> <item class_id="16" tracking_level="1" version="0" object_id="_48"> <Value> <Obj> <type>2</type> <id>72</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="_49"> <Value> <Obj> <type>2</type> <id>76</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="_50"> <Value> <Obj> <type>2</type> <id>81</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>3</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_51"> <Value> <Obj> <type>2</type> <id>87</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>3</bitwidth> </Value> <const_type>0</const_type> <content>4</content> </item> <item class_id_reference="16" object_id="_52"> <Value> <Obj> <type>2</type> <id>90</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>3</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_53"> <Value> <Obj> <type>2</type> <id>116</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>1</content> </item> <item class_id_reference="16" object_id="_54"> <Value> <Obj> <type>2</type> <id>118</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>2</content> </item> <item class_id_reference="16" object_id="_55"> <Value> <Obj> <type>2</type> <id>121</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>2</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_56"> <Value> <Obj> <type>2</type> <id>143</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>63</content> </item> <item class_id_reference="16" object_id="_57"> <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>63</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_58"> <Value> <Obj> <type>2</type> <id>149</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>0</const_type> <content>18446744073709551614</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="_59"> <Obj> <type>3</type> <id>10</id> <name>newFuncRoot</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>3</count> <item_version>0</item_version> <item>7</item> <item>8</item> <item>9</item> </node_objs> </item> <item class_id_reference="18" object_id="_60"> <Obj> <type>3</type> <id>17</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>5</count> <item_version>0</item_version> <item>11</item> <item>12</item> <item>13</item> <item>15</item> <item>16</item> </node_objs> </item> <item class_id_reference="18" object_id="_61"> <Obj> <type>3</type> <id>23</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>3</count> <item_version>0</item_version> <item>20</item> <item>21</item> <item>22</item> </node_objs> </item> <item class_id_reference="18" object_id="_62"> <Obj> <type>3</type> <id>29</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>5</count> <item_version>0</item_version> <item>24</item> <item>25</item> <item>26</item> <item>27</item> <item>28</item> </node_objs> </item> <item class_id_reference="18" object_id="_63"> <Obj> <type>3</type> <id>40</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>7</count> <item_version>0</item_version> <item>30</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="_64"> <Obj> <type>3</type> <id>51</id> <name>.preheader56.preheader.critedge.0_ifconv</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>10</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> </node_objs> </item> <item class_id_reference="18" object_id="_65"> <Obj> <type>3</type> <id>56</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>4</count> <item_version>0</item_version> <item>52</item> <item>53</item> <item>54</item> <item>55</item> </node_objs> </item> <item class_id_reference="18" object_id="_66"> <Obj> <type>3</type> <id>59</id> <name>branch4</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>57</item> <item>58</item> </node_objs> </item> <item class_id_reference="18" object_id="_67"> <Obj> <type>3</type> <id>62</id> <name>branch5</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>60</item> <item>61</item> </node_objs> </item> <item class_id_reference="18" object_id="_68"> <Obj> <type>3</type> <id>65</id> <name>._crit_edge31</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>64</item> </node_objs> </item> <item class_id_reference="18" object_id="_69"> <Obj> <type>3</type> <id>69</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>2</count> <item_version>0</item_version> <item>66</item> <item>68</item> </node_objs> </item> <item class_id_reference="18" object_id="_70"> <Obj> <type>3</type> <id>71</id> <name>.preheader.exitStub</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>70</item> </node_objs> </item> </blocks> <edges class_id="19" tracking_level="0" version="0"> <count>112</count> <item_version>0</item_version> <item class_id="20" tracking_level="1" version="0" object_id="_71"> <id>73</id> <edge_type>1</edge_type> <source_obj>72</source_obj> <sink_obj>7</sink_obj> </item> <item class_id_reference="20" object_id="_72"> <id>74</id> <edge_type>1</edge_type> <source_obj>72</source_obj> <sink_obj>8</sink_obj> </item> <item class_id_reference="20" object_id="_73"> <id>75</id> <edge_type>2</edge_type> <source_obj>17</source_obj> <sink_obj>9</sink_obj> </item> <item class_id_reference="20" object_id="_74"> <id>77</id> <edge_type>1</edge_type> <source_obj>76</source_obj> <sink_obj>11</sink_obj> </item> <item class_id_reference="20" object_id="_75"> <id>78</id> <edge_type>2</edge_type> <source_obj>10</source_obj> <sink_obj>11</sink_obj> </item> <item class_id_reference="20" object_id="_76"> <id>79</id> <edge_type>1</edge_type> <source_obj>66</source_obj> <sink_obj>11</sink_obj> </item> <item class_id_reference="20" object_id="_77"> <id>80</id> <edge_type>2</edge_type> <source_obj>69</source_obj> <sink_obj>11</sink_obj> </item> <item class_id_reference="20" object_id="_78"> <id>82</id> <edge_type>1</edge_type> <source_obj>81</source_obj> <sink_obj>12</sink_obj> </item> <item class_id_reference="20" object_id="_79"> <id>83</id> <edge_type>2</edge_type> <source_obj>10</source_obj> <sink_obj>12</sink_obj> </item> <item class_id_reference="20" object_id="_80"> <id>84</id> <edge_type>1</edge_type> <source_obj>15</source_obj> <sink_obj>12</sink_obj> </item> <item class_id_reference="20" object_id="_81"> <id>85</id> <edge_type>2</edge_type> <source_obj>69</source_obj> <sink_obj>12</sink_obj> </item> <item class_id_reference="20" object_id="_82"> <id>86</id> <edge_type>1</edge_type> <source_obj>12</source_obj> <sink_obj>13</sink_obj> </item> <item class_id_reference="20" object_id="_83"> <id>88</id> <edge_type>1</edge_type> <source_obj>87</source_obj> <sink_obj>13</sink_obj> </item> <item class_id_reference="20" object_id="_84"> <id>89</id> <edge_type>1</edge_type> <source_obj>12</source_obj> <sink_obj>15</sink_obj> </item> <item class_id_reference="20" object_id="_85"> <id>91</id> <edge_type>1</edge_type> <source_obj>90</source_obj> <sink_obj>15</sink_obj> </item> <item class_id_reference="20" object_id="_86"> <id>92</id> <edge_type>1</edge_type> <source_obj>13</source_obj> <sink_obj>16</sink_obj> </item> <item class_id_reference="20" object_id="_87"> <id>93</id> <edge_type>2</edge_type> <source_obj>23</source_obj> <sink_obj>16</sink_obj> </item> <item class_id_reference="20" object_id="_88"> <id>94</id> <edge_type>2</edge_type> <source_obj>71</source_obj> <sink_obj>16</sink_obj> </item> <item class_id_reference="20" object_id="_89"> <id>95</id> <edge_type>1</edge_type> <source_obj>24</source_obj> <sink_obj>66</sink_obj> </item> <item class_id_reference="20" object_id="_90"> <id>96</id> <edge_type>1</edge_type> <source_obj>72</source_obj> <sink_obj>66</sink_obj> </item> <item class_id_reference="20" object_id="_91"> <id>97</id> <edge_type>2</edge_type> <source_obj>17</source_obj> <sink_obj>68</sink_obj> </item> <item class_id_reference="20" object_id="_92"> <id>98</id> <edge_type>1</edge_type> <source_obj>11</source_obj> <sink_obj>24</sink_obj> </item> <item class_id_reference="20" object_id="_93"> <id>99</id> <edge_type>2</edge_type> <source_obj>23</source_obj> <sink_obj>24</sink_obj> </item> <item class_id_reference="20" object_id="_94"> <id>100</id> <edge_type>1</edge_type> <source_obj>37</source_obj> <sink_obj>24</sink_obj> </item> <item class_id_reference="20" object_id="_95"> <id>101</id> <edge_type>2</edge_type> <source_obj>65</source_obj> <sink_obj>24</sink_obj> </item> <item class_id_reference="20" object_id="_96"> <id>102</id> <edge_type>1</edge_type> <source_obj>81</source_obj> <sink_obj>25</sink_obj> </item> <item class_id_reference="20" object_id="_97"> <id>103</id> <edge_type>2</edge_type> <source_obj>23</source_obj> <sink_obj>25</sink_obj> </item> <item class_id_reference="20" object_id="_98"> <id>104</id> <edge_type>1</edge_type> <source_obj>27</source_obj> <sink_obj>25</sink_obj> </item> <item class_id_reference="20" object_id="_99"> <id>105</id> <edge_type>2</edge_type> <source_obj>65</source_obj> <sink_obj>25</sink_obj> </item> <item class_id_reference="20" object_id="_100"> <id>106</id> <edge_type>1</edge_type> <source_obj>25</source_obj> <sink_obj>26</sink_obj> </item> <item class_id_reference="20" object_id="_101"> <id>107</id> <edge_type>1</edge_type> <source_obj>87</source_obj> <sink_obj>26</sink_obj> </item> <item class_id_reference="20" object_id="_102"> <id>108</id> <edge_type>1</edge_type> <source_obj>25</source_obj> <sink_obj>27</sink_obj> </item> <item class_id_reference="20" object_id="_103"> <id>109</id> <edge_type>1</edge_type> <source_obj>90</source_obj> <sink_obj>27</sink_obj> </item> <item class_id_reference="20" object_id="_104"> <id>110</id> <edge_type>1</edge_type> <source_obj>26</source_obj> <sink_obj>28</sink_obj> </item> <item class_id_reference="20" object_id="_105"> <id>111</id> <edge_type>2</edge_type> <source_obj>40</source_obj> <sink_obj>28</sink_obj> </item> <item class_id_reference="20" object_id="_106"> <id>112</id> <edge_type>2</edge_type> <source_obj>69</source_obj> <sink_obj>28</sink_obj> </item> <item class_id_reference="20" object_id="_107"> <id>115</id> <edge_type>1</edge_type> <source_obj>12</source_obj> <sink_obj>20</sink_obj> </item> <item class_id_reference="20" object_id="_108"> <id>117</id> <edge_type>1</edge_type> <source_obj>116</source_obj> <sink_obj>20</sink_obj> </item> <item class_id_reference="20" object_id="_109"> <id>119</id> <edge_type>1</edge_type> <source_obj>118</source_obj> <sink_obj>20</sink_obj> </item> <item class_id_reference="20" object_id="_110"> <id>120</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>21</sink_obj> </item> <item class_id_reference="20" object_id="_111"> <id>122</id> <edge_type>1</edge_type> <source_obj>121</source_obj> <sink_obj>21</sink_obj> </item> <item class_id_reference="20" object_id="_112"> <id>123</id> <edge_type>2</edge_type> <source_obj>29</source_obj> <sink_obj>22</sink_obj> </item> <item class_id_reference="20" object_id="_113"> <id>124</id> <edge_type>2</edge_type> <source_obj>29</source_obj> <sink_obj>64</sink_obj> </item> <item class_id_reference="20" object_id="_114"> <id>125</id> <edge_type>1</edge_type> <source_obj>38</source_obj> <sink_obj>57</sink_obj> </item> <item class_id_reference="20" object_id="_115"> <id>126</id> <edge_type>1</edge_type> <source_obj>52</source_obj> <sink_obj>57</sink_obj> </item> <item class_id_reference="20" object_id="_116"> <id>127</id> <edge_type>2</edge_type> <source_obj>65</source_obj> <sink_obj>58</sink_obj> </item> <item class_id_reference="20" object_id="_117"> <id>128</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>52</sink_obj> </item> <item class_id_reference="20" object_id="_118"> <id>129</id> <edge_type>1</edge_type> <source_obj>76</source_obj> <sink_obj>52</sink_obj> </item> <item class_id_reference="20" object_id="_119"> <id>130</id> <edge_type>1</edge_type> <source_obj>30</source_obj> <sink_obj>52</sink_obj> </item> <item class_id_reference="20" object_id="_120"> <id>131</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>53</sink_obj> </item> <item class_id_reference="20" object_id="_121"> <id>132</id> <edge_type>1</edge_type> <source_obj>76</source_obj> <sink_obj>53</sink_obj> </item> <item class_id_reference="20" object_id="_122"> <id>133</id> <edge_type>1</edge_type> <source_obj>30</source_obj> <sink_obj>53</sink_obj> </item> <item class_id_reference="20" object_id="_123"> <id>134</id> <edge_type>1</edge_type> <source_obj>37</source_obj> <sink_obj>54</sink_obj> </item> <item class_id_reference="20" object_id="_124"> <id>135</id> <edge_type>1</edge_type> <source_obj>54</source_obj> <sink_obj>55</sink_obj> </item> <item class_id_reference="20" object_id="_125"> <id>136</id> <edge_type>2</edge_type> <source_obj>59</source_obj> <sink_obj>55</sink_obj> </item> <item class_id_reference="20" object_id="_126"> <id>137</id> <edge_type>2</edge_type> <source_obj>62</source_obj> <sink_obj>55</sink_obj> </item> <item class_id_reference="20" object_id="_127"> <id>138</id> <edge_type>1</edge_type> <source_obj>25</source_obj> <sink_obj>30</sink_obj> </item> <item class_id_reference="20" object_id="_128"> <id>141</id> <edge_type>1</edge_type> <source_obj>24</source_obj> <sink_obj>34</sink_obj> </item> <item class_id_reference="20" object_id="_129"> <id>142</id> <edge_type>1</edge_type> <source_obj>116</source_obj> <sink_obj>34</sink_obj> </item> <item class_id_reference="20" object_id="_130"> <id>144</id> <edge_type>1</edge_type> <source_obj>143</source_obj> <sink_obj>34</sink_obj> </item> <item class_id_reference="20" object_id="_131"> <id>145</id> <edge_type>1</edge_type> <source_obj>34</source_obj> <sink_obj>35</sink_obj> </item> <item class_id_reference="20" object_id="_132"> <id>147</id> <edge_type>1</edge_type> <source_obj>146</source_obj> <sink_obj>35</sink_obj> </item> <item class_id_reference="20" object_id="_133"> <id>148</id> <edge_type>1</edge_type> <source_obj>24</source_obj> <sink_obj>36</sink_obj> </item> <item class_id_reference="20" object_id="_134"> <id>150</id> <edge_type>1</edge_type> <source_obj>149</source_obj> <sink_obj>36</sink_obj> </item> <item class_id_reference="20" object_id="_135"> <id>151</id> <edge_type>1</edge_type> <source_obj>35</source_obj> <sink_obj>37</sink_obj> </item> <item class_id_reference="20" object_id="_136"> <id>152</id> <edge_type>1</edge_type> <source_obj>36</source_obj> <sink_obj>37</sink_obj> </item> <item class_id_reference="20" object_id="_137"> <id>153</id> <edge_type>1</edge_type> <source_obj>24</source_obj> <sink_obj>37</sink_obj> </item> <item class_id_reference="20" object_id="_138"> <id>156</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>38</sink_obj> </item> <item class_id_reference="20" object_id="_139"> <id>157</id> <edge_type>1</edge_type> <source_obj>21</source_obj> <sink_obj>39</sink_obj> </item> <item class_id_reference="20" object_id="_140"> <id>158</id> <edge_type>2</edge_type> <source_obj>51</source_obj> <sink_obj>39</sink_obj> </item> <item class_id_reference="20" object_id="_141"> <id>159</id> <edge_type>2</edge_type> <source_obj>56</source_obj> <sink_obj>39</sink_obj> </item> <item class_id_reference="20" object_id="_142"> <id>160</id> <edge_type>1</edge_type> <source_obj>37</source_obj> <sink_obj>41</sink_obj> </item> <item class_id_reference="20" object_id="_143"> <id>161</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>42</sink_obj> </item> <item class_id_reference="20" object_id="_144"> <id>162</id> <edge_type>1</edge_type> <source_obj>76</source_obj> <sink_obj>42</sink_obj> </item> <item class_id_reference="20" object_id="_145"> <id>163</id> <edge_type>1</edge_type> <source_obj>30</source_obj> <sink_obj>42</sink_obj> </item> <item class_id_reference="20" object_id="_146"> <id>164</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>43</sink_obj> </item> <item class_id_reference="20" object_id="_147"> <id>165</id> <edge_type>1</edge_type> <source_obj>76</source_obj> <sink_obj>43</sink_obj> </item> <item class_id_reference="20" object_id="_148"> <id>166</id> <edge_type>1</edge_type> <source_obj>30</source_obj> <sink_obj>43</sink_obj> </item> <item class_id_reference="20" object_id="_149"> <id>167</id> <edge_type>1</edge_type> <source_obj>43</source_obj> <sink_obj>44</sink_obj> </item> <item class_id_reference="20" object_id="_150"> <id>168</id> <edge_type>1</edge_type> <source_obj>42</source_obj> <sink_obj>45</sink_obj> </item> <item class_id_reference="20" object_id="_151"> <id>169</id> <edge_type>1</edge_type> <source_obj>41</source_obj> <sink_obj>46</sink_obj> </item> <item class_id_reference="20" object_id="_152"> <id>170</id> <edge_type>1</edge_type> <source_obj>44</source_obj> <sink_obj>46</sink_obj> </item> <item class_id_reference="20" object_id="_153"> <id>171</id> <edge_type>1</edge_type> <source_obj>45</source_obj> <sink_obj>46</sink_obj> </item> <item class_id_reference="20" object_id="_154"> <id>172</id> <edge_type>1</edge_type> <source_obj>41</source_obj> <sink_obj>47</sink_obj> </item> <item class_id_reference="20" object_id="_155"> <id>173</id> <edge_type>1</edge_type> <source_obj>45</source_obj> <sink_obj>47</sink_obj> </item> <item class_id_reference="20" object_id="_156"> <id>174</id> <edge_type>1</edge_type> <source_obj>44</source_obj> <sink_obj>47</sink_obj> </item> <item class_id_reference="20" object_id="_157"> <id>177</id> <edge_type>1</edge_type> <source_obj>38</source_obj> <sink_obj>48</sink_obj> </item> <item class_id_reference="20" object_id="_158"> <id>178</id> <edge_type>1</edge_type> <source_obj>47</source_obj> <sink_obj>48</sink_obj> </item> <item class_id_reference="20" object_id="_159"> <id>179</id> <edge_type>1</edge_type> <source_obj>46</source_obj> <sink_obj>48</sink_obj> </item> <item class_id_reference="20" object_id="_160"> <id>182</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>49</sink_obj> </item> <item class_id_reference="20" object_id="_161"> <id>183</id> <edge_type>1</edge_type> <source_obj>48</source_obj> <sink_obj>49</sink_obj> </item> <item class_id_reference="20" object_id="_162"> <id>184</id> <edge_type>2</edge_type> <source_obj>56</source_obj> <sink_obj>50</sink_obj> </item> <item class_id_reference="20" object_id="_163"> <id>185</id> <edge_type>1</edge_type> <source_obj>38</source_obj> <sink_obj>60</sink_obj> </item> <item class_id_reference="20" object_id="_164"> <id>186</id> <edge_type>1</edge_type> <source_obj>53</source_obj> <sink_obj>60</sink_obj> </item> <item class_id_reference="20" object_id="_165"> <id>187</id> <edge_type>2</edge_type> <source_obj>65</source_obj> <sink_obj>61</sink_obj> </item> <item class_id_reference="20" object_id="_166"> <id>286</id> <edge_type>2</edge_type> <source_obj>10</source_obj> <sink_obj>17</sink_obj> </item> <item class_id_reference="20" object_id="_167"> <id>287</id> <edge_type>2</edge_type> <source_obj>17</source_obj> <sink_obj>71</sink_obj> </item> <item class_id_reference="20" object_id="_168"> <id>288</id> <edge_type>2</edge_type> <source_obj>17</source_obj> <sink_obj>23</sink_obj> </item> <item class_id_reference="20" object_id="_169"> <id>289</id> <edge_type>2</edge_type> <source_obj>23</source_obj> <sink_obj>29</sink_obj> </item> <item class_id_reference="20" object_id="_170"> <id>290</id> <edge_type>2</edge_type> <source_obj>29</source_obj> <sink_obj>69</sink_obj> </item> <item class_id_reference="20" object_id="_171"> <id>291</id> <edge_type>2</edge_type> <source_obj>29</source_obj> <sink_obj>40</sink_obj> </item> <item class_id_reference="20" object_id="_172"> <id>292</id> <edge_type>2</edge_type> <source_obj>40</source_obj> <sink_obj>56</sink_obj> </item> <item class_id_reference="20" object_id="_173"> <id>293</id> <edge_type>2</edge_type> <source_obj>40</source_obj> <sink_obj>51</sink_obj> </item> <item class_id_reference="20" object_id="_174"> <id>294</id> <edge_type>2</edge_type> <source_obj>51</source_obj> <sink_obj>56</sink_obj> </item> <item class_id_reference="20" object_id="_175"> <id>295</id> <edge_type>2</edge_type> <source_obj>56</source_obj> <sink_obj>62</sink_obj> </item> <item class_id_reference="20" object_id="_176"> <id>296</id> <edge_type>2</edge_type> <source_obj>56</source_obj> <sink_obj>59</sink_obj> </item> <item class_id_reference="20" object_id="_177"> <id>297</id> <edge_type>2</edge_type> <source_obj>59</source_obj> <sink_obj>65</sink_obj> </item> <item class_id_reference="20" object_id="_178"> <id>298</id> <edge_type>2</edge_type> <source_obj>62</source_obj> <sink_obj>65</sink_obj> </item> <item class_id_reference="20" object_id="_179"> <id>299</id> <edge_type>2</edge_type> <source_obj>65</source_obj> <sink_obj>29</sink_obj> </item> <item class_id_reference="20" object_id="_180"> <id>300</id> <edge_type>2</edge_type> <source_obj>69</source_obj> <sink_obj>17</sink_obj> </item> <item class_id_reference="20" object_id="_181"> <id>301</id> <edge_type>4</edge_type> <source_obj>44</source_obj> <sink_obj>60</sink_obj> </item> <item class_id_reference="20" object_id="_182"> <id>302</id> <edge_type>4</edge_type> <source_obj>45</source_obj> <sink_obj>57</sink_obj> </item> </edges> </cdfg> <cdfg_regions class_id="21" tracking_level="0" version="0"> <count>7</count> <item_version>0</item_version> <item class_id="22" tracking_level="1" version="0" object_id="_183"> <mId>1</mId> <mTag>call_Loop_LB2D_buf_p</mTag> <mType>0</mType> <sub_regions> <count>3</count> <item_version>0</item_version> <item>2</item> <item>3</item> <item>7</item> </sub_regions> <basic_blocks> <count>0</count> <item_version>0</item_version> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>33</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> <item class_id_reference="22" object_id="_184"> <mId>2</mId> <mTag>Entry</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>10</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> <item class_id_reference="22" object_id="_185"> <mId>3</mId> <mTag>LB2D_buf</mTag> <mType>1</mType> <sub_regions> <count>3</count> <item_version>0</item_version> <item>4</item> <item>5</item> <item>6</item> </sub_regions> <basic_blocks> <count>0</count> <item_version>0</item_version> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>4</mMinTripCount> <mMaxTripCount>4</mMaxTripCount> <mMinLatency>32</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> <item class_id_reference="22" object_id="_186"> <mId>4</mId> <mTag>Region 1</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>17</item> <item>23</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> <item class_id_reference="22" object_id="_187"> <mId>5</mId> <mTag>LB2D_buf.1</mTag> <mType>1</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>7</count> <item_version>0</item_version> <item>29</item> <item>40</item> <item>51</item> <item>56</item> <item>59</item> <item>62</item> <item>65</item> </basic_blocks> <mII>1</mII> <mDepth>3</mDepth> <mMinTripCount>4</mMinTripCount> <mMaxTripCount>4</mMaxTripCount> <mMinLatency>5</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> <item class_id_reference="22" object_id="_188"> <mId>6</mId> <mTag>Region 2</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>69</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> <item class_id_reference="22" object_id="_189"> <mId>7</mId> <mTag>Return</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>71</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> </cdfg_regions> <fsm class_id="24" tracking_level="1" version="0" object_id="_190"> <states class_id="25" tracking_level="0" version="0"> <count>6</count> <item_version>0</item_version> <item class_id="26" tracking_level="1" version="0" object_id="_191"> <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="_192"> <id>3</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_193"> <id>4</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_194"> <id>5</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_195"> <id>6</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_196"> <id>7</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_197"> <id>8</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_198"> <id>9</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_199"> <id>2</id> <operations> <count>12</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_200"> <id>11</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_201"> <id>12</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_202"> <id>13</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_203"> <id>14</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_204"> <id>15</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_205"> <id>16</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_206"> <id>18</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_207"> <id>19</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_208"> <id>20</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_209"> <id>21</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_210"> <id>22</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_211"> <id>70</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_212"> <id>3</id> <operations> <count>15</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_213"> <id>24</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_214"> <id>25</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_215"> <id>26</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_216"> <id>27</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_217"> <id>28</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_218"> <id>30</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_219"> <id>34</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_220"> <id>35</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_221"> <id>39</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_222"> <id>42</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_223"> <id>43</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_224"> <id>44</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_225"> <id>45</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_226"> <id>52</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_227"> <id>53</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_228"> <id>4</id> <operations> <count>9</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_229"> <id>36</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_230"> <id>37</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_231"> <id>41</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_232"> <id>44</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_233"> <id>45</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_234"> <id>46</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_235"> <id>47</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_236"> <id>54</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_237"> <id>55</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_238"> <id>5</id> <operations> <count>13</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_239"> <id>31</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_240"> <id>32</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_241"> <id>33</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_242"> <id>38</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_243"> <id>48</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_244"> <id>49</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_245"> <id>50</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_246"> <id>57</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_247"> <id>58</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_248"> <id>60</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_249"> <id>61</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_250"> <id>63</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_251"> <id>64</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_252"> <id>6</id> <operations> <count>3</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_253"> <id>66</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_254"> <id>67</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_255"> <id>68</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> </states> <transitions class_id="29" tracking_level="0" version="0"> <count>7</count> <item_version>0</item_version> <item class_id="30" tracking_level="1" version="0" object_id="_256"> <inState>1</inState> <outState>2</outState> <condition class_id="31" tracking_level="0" version="0"> <id>59</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="_257"> <inState>2</inState> <outState>3</outState> <condition> <id>61</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>1</count> <item_version>0</item_version> <item class_id="34" tracking_level="0" version="0"> <first class_id="35" tracking_level="0" version="0"> <first>13</first> <second>0</second> </first> <second>1</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_258"> <inState>6</inState> <outState>2</outState> <condition> <id>74</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="_259"> <inState>4</inState> <outState>5</outState> <condition> <id>76</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="_260"> <inState>5</inState> <outState>3</outState> <condition> <id>77</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="_261"> <inState>3</inState> <outState>6</outState> <condition> <id>75</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>1</count> <item_version>0</item_version> <item> <first> <first>26</first> <second>0</second> </first> <second>0</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_262"> <inState>3</inState> <outState>4</outState> <condition> <id>78</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>1</count> <item_version>0</item_version> <item> <first> <first>26</first> <second>0</second> </first> <second>1</second> </item> </item> </sop> </condition> </item> </transitions> </fsm> <res class_id="36" tracking_level="1" version="0" object_id="_263"> <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>21</count> <item_version>0</item_version> <item class_id="38" tracking_level="0" version="0"> <first>ap_block_pp0_stage0_flag00001001 ( and ) </first> <second class_id="39" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="40" tracking_level="0" version="0"> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>ap_block_state1 ( or ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>ap_block_state5_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_enable_pp0 ( xor ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>2</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>ap_enable_reg_pp0_iter1 ( xor ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>2</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>ap_enable_state3_pp0_iter0_stage0 ( 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_state4_pp0_iter1_stage0 ( 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_state5_pp0_iter2_stage0 ( 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_op38_load_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>col_1_fu_210_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>3</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>14</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>icmp1_fu_234_p2 ( icmp ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>63</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>32</second> </item> </second> </item> <item> <first>icmp_fu_198_p2 ( icmp ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>2</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>1</second> </item> </second> </item> <item> <first>p_Val2_3_0_phi_fu_257_p3 ( select ) </first> <second> <count>5</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>8</second> </item> <item> <first>(2P2)</first> <second>8</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>8</second> </item> </second> </item> <item> <first>p_Val2_3_1_phi_fu_265_p3 ( select ) </first> <second> <count>5</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>8</second> </item> <item> <first>(2P2)</first> <second>8</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>8</second> </item> </second> </item> <item> <first>p_write_idx_1_1_fu_246_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>64</second> </item> <item> <first>(2P2)</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>row_1_fu_182_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>3</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>14</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>start_write ( 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>tmp_2_fu_204_p2 ( icmp ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>3</second> </item> <item> <first>(1P1)</first> <second>4</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>tmp_fu_176_p2 ( icmp ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>3</second> </item> <item> <first>(1P1)</first> <second>4</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>write_idx_1_2_fu_286_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>64</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>197</second> </item> <item> <first>LUT</first> <second>69</second> </item> </second> </item> <item> <first>write_idx_1_3_fu_240_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>64</second> </item> <item> <first>(1P1)</first> <second>3</second> </item> <item> <first>FF</first> <second>197</second> </item> <item> <first>LUT</first> <second>69</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>2</count> <item_version>0</item_version> <item> <first>buffer_0_value_V_U</first> <second> <count>7</count> <item_version>0</item_version> <item> <first>(0Words)</first> <second>4</second> </item> <item> <first>(1Bits)</first> <second>8</second> </item> <item> <first>(2Banks)</first> <second>1</second> </item> <item> <first>(3W*Bits*Banks)</first> <second>32</second> </item> <item> <first>BRAM</first> <second>0</second> </item> <item> <first>FF</first> <second>16</second> </item> <item> <first>LUT</first> <second>1</second> </item> </second> </item> <item> <first>buffer_1_value_V_U</first> <second> <count>7</count> <item_version>0</item_version> <item> <first>(0Words)</first> <second>4</second> </item> <item> <first>(1Bits)</first> <second>8</second> </item> <item> <first>(2Banks)</first> <second>1</second> </item> <item> <first>(3W*Bits*Banks)</first> <second>32</second> </item> <item> <first>BRAM</first> <second>0</second> </item> <item> <first>FF</first> <second>16</second> </item> <item> <first>LUT</first> <second>1</second> </item> </second> </item> </dp_memory_resource> <dp_multiplexer_resource> <count>12</count> <item_version>0</item_version> <item> <first>ap_NS_fsm</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>5</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>5</second> </item> <item> <first>LUT</first> <second>27</second> </item> </second> </item> <item> <first>ap_done</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>ap_enable_reg_pp0_iter1</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>ap_enable_reg_pp0_iter2</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>col_reg_165</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>3</second> </item> <item> <first>(2Count)</first> <second>6</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>in_stream_V_value_V_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>real_start</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>row_reg_143</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>3</second> </item> <item> <first>(2Count)</first> <second>6</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>slice_stream_V_value_V_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>write_idx_1_1_phi_fu_157_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>9</second> </item> </second> </item> <item> <first>write_idx_1_1_reg_154</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>9</second> </item> </second> </item> <item> <first>write_idx_1_reg_131</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>9</second> </item> </second> </item> </dp_multiplexer_resource> <dp_register_resource> <count>24</count> <item_version>0</item_version> <item> <first>ap_CS_fsm</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>4</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>4</second> </item> </second> </item> <item> <first>ap_done_reg</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>ap_enable_reg_pp0_iter0</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>ap_enable_reg_pp0_iter1</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>ap_enable_reg_pp0_iter2</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>ap_reg_pp0_iter1_buffer_0_value_V_ad_reg_329</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>2</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>2</second> </item> </second> </item> <item> <first>ap_reg_pp0_iter1_buffer_1_value_V_ad_reg_334</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>2</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>2</second> </item> </second> </item> <item> <first>ap_reg_pp0_iter1_tmp_2_reg_305</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>buffer_0_value_V_ad_reg_329</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>2</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>2</second> </item> </second> </item> <item> <first>buffer_1_value_V_ad_reg_334</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>2</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>2</second> </item> </second> </item> <item> <first>col_reg_165</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>icmp1_reg_314</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>icmp_reg_301</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>p_Val2_3_0_phi_reg_344</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>8</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>8</second> </item> </second> </item> <item> <first>p_Val2_3_1_phi_reg_349</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>8</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>8</second> </item> </second> </item> <item> <first>real_start_status_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>row_1_reg_296</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>row_reg_143</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>start_control_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>start_once_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_13_reg_354</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_2_reg_305</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>write_idx_1_1_reg_154</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>write_idx_1_reg_131</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> </dp_register_resource> <dp_component_map class_id="41" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_component_map> <dp_expression_map> <count>11</count> <item_version>0</item_version> <item class_id="42" tracking_level="0" version="0"> <first>col_1_fu_210_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>27</item> </second> </item> <item> <first>icmp1_fu_234_p2 ( icmp ) </first> <second> <count>1</count> <item_version>0</item_version> <item>35</item> </second> </item> <item> <first>icmp_fu_198_p2 ( icmp ) </first> <second> <count>1</count> <item_version>0</item_version> <item>21</item> </second> </item> <item> <first>p_Val2_3_0_phi_fu_257_p3 ( select ) </first> <second> <count>1</count> <item_version>0</item_version> <item>46</item> </second> </item> <item> <first>p_Val2_3_1_phi_fu_265_p3 ( select ) </first> <second> <count>1</count> <item_version>0</item_version> <item>47</item> </second> </item> <item> <first>p_write_idx_1_1_fu_246_p3 ( select ) </first> <second> <count>1</count> <item_version>0</item_version> <item>37</item> </second> </item> <item> <first>row_1_fu_182_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>15</item> </second> </item> <item> <first>tmp_2_fu_204_p2 ( icmp ) </first> <second> <count>1</count> <item_version>0</item_version> <item>26</item> </second> </item> <item> <first>tmp_fu_176_p2 ( icmp ) </first> <second> <count>1</count> <item_version>0</item_version> <item>13</item> </second> </item> <item> <first>write_idx_1_2_fu_286_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>66</item> </second> </item> <item> <first>write_idx_1_3_fu_240_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>36</item> </second> </item> </dp_expression_map> <dp_fifo_map> <count>0</count> <item_version>0</item_version> </dp_fifo_map> <dp_memory_map> <count>2</count> <item_version>0</item_version> <item> <first>buffer_0_value_V_U</first> <second> <count>1</count> <item_version>0</item_version> <item>165</item> </second> </item> <item> <first>buffer_1_value_V_U</first> <second> <count>1</count> <item_version>0</item_version> <item>176</item> </second> </item> </dp_memory_map> </res> <node_label_latency class_id="43" tracking_level="0" version="0"> <count>45</count> <item_version>0</item_version> <item class_id="44" tracking_level="0" version="0"> <first>7</first> <second class_id="45" 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>11</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>12</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>13</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>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>20</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>21</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>22</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>24</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>25</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>26</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>27</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>28</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>30</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>34</first> <second> <first>2</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>3</first> <second>0</second> </second> </item> <item> <first>37</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>38</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>39</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>41</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>42</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>43</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>44</first> <second> <first>2</first> <second>1</second> </second> </item> <item> <first>45</first> <second> <first>2</first> <second>1</second> </second> </item> <item> <first>46</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>47</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>48</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>49</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>50</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>52</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>53</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>54</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>55</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>57</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>58</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>60</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>61</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>64</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>66</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>68</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>70</first> <second> <first>1</first> <second>0</second> </second> </item> </node_label_latency> <bblk_ent_exit class_id="46" tracking_level="0" version="0"> <count>12</count> <item_version>0</item_version> <item class_id="47" tracking_level="0" version="0"> <first>10</first> <second class_id="48" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>17</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>23</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>29</first> <second> <first>2</first> <second>2</second> </second> </item> <item> <first>40</first> <second> <first>2</first> <second>4</second> </second> </item> <item> <first>51</first> <second> <first>2</first> <second>4</second> </second> </item> <item> <first>56</first> <second> <first>2</first> <second>3</second> </second> </item> <item> <first>59</first> <second> <first>4</first> <second>4</second> </second> </item> <item> <first>62</first> <second> <first>4</first> <second>4</second> </second> </item> <item> <first>65</first> <second> <first>4</first> <second>4</second> </second> </item> <item> <first>69</first> <second> <first>3</first> <second>3</second> </second> </item> <item> <first>71</first> <second> <first>1</first> <second>1</second> </second> </item> </bblk_ent_exit> <regions class_id="49" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="50" tracking_level="1" version="0" object_id="_264"> <region_name>LB2D_buf.1</region_name> <basic_blocks> <count>7</count> <item_version>0</item_version> <item>29</item> <item>40</item> <item>51</item> <item>56</item> <item>59</item> <item>62</item> <item>65</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> </item> </regions> <dp_fu_nodes class_id="51" tracking_level="0" version="0"> <count>31</count> <item_version>0</item_version> <item class_id="52" tracking_level="0" version="0"> <first>68</first> <second> <count>1</count> <item_version>0</item_version> <item>7</item> </second> </item> <item> <first>72</first> <second> <count>1</count> <item_version>0</item_version> <item>8</item> </second> </item> <item> <first>76</first> <second> <count>1</count> <item_version>0</item_version> <item>38</item> </second> </item> <item> <first>82</first> <second> <count>1</count> <item_version>0</item_version> <item>49</item> </second> </item> <item> <first>89</first> <second> <count>1</count> <item_version>0</item_version> <item>42</item> </second> </item> <item> <first>95</first> <second> <count>1</count> <item_version>0</item_version> <item>43</item> </second> </item> <item> <first>101</first> <second> <count>3</count> <item_version>0</item_version> <item>44</item> <item>44</item> <item>60</item> </second> </item> <item> <first>106</first> <second> <count>3</count> <item_version>0</item_version> <item>45</item> <item>45</item> <item>57</item> </second> </item> <item> <first>111</first> <second> <count>1</count> <item_version>0</item_version> <item>52</item> </second> </item> <item> <first>117</first> <second> <count>1</count> <item_version>0</item_version> <item>53</item> </second> </item> <item> <first>135</first> <second> <count>1</count> <item_version>0</item_version> <item>11</item> </second> </item> <item> <first>147</first> <second> <count>1</count> <item_version>0</item_version> <item>12</item> </second> </item> <item> <first>157</first> <second> <count>1</count> <item_version>0</item_version> <item>24</item> </second> </item> <item> <first>169</first> <second> <count>1</count> <item_version>0</item_version> <item>25</item> </second> </item> <item> <first>176</first> <second> <count>1</count> <item_version>0</item_version> <item>13</item> </second> </item> <item> <first>182</first> <second> <count>1</count> <item_version>0</item_version> <item>15</item> </second> </item> <item> <first>188</first> <second> <count>1</count> <item_version>0</item_version> <item>20</item> </second> </item> <item> <first>198</first> <second> <count>1</count> <item_version>0</item_version> <item>21</item> </second> </item> <item> <first>204</first> <second> <count>1</count> <item_version>0</item_version> <item>26</item> </second> </item> <item> <first>210</first> <second> <count>1</count> <item_version>0</item_version> <item>27</item> </second> </item> <item> <first>216</first> <second> <count>1</count> <item_version>0</item_version> <item>30</item> </second> </item> <item> <first>224</first> <second> <count>1</count> <item_version>0</item_version> <item>34</item> </second> </item> <item> <first>234</first> <second> <count>1</count> <item_version>0</item_version> <item>35</item> </second> </item> <item> <first>240</first> <second> <count>1</count> <item_version>0</item_version> <item>36</item> </second> </item> <item> <first>246</first> <second> <count>1</count> <item_version>0</item_version> <item>37</item> </second> </item> <item> <first>253</first> <second> <count>1</count> <item_version>0</item_version> <item>41</item> </second> </item> <item> <first>257</first> <second> <count>1</count> <item_version>0</item_version> <item>46</item> </second> </item> <item> <first>265</first> <second> <count>1</count> <item_version>0</item_version> <item>47</item> </second> </item> <item> <first>273</first> <second> <count>1</count> <item_version>0</item_version> <item>54</item> </second> </item> <item> <first>277</first> <second> <count>1</count> <item_version>0</item_version> <item>48</item> </second> </item> <item> <first>286</first> <second> <count>1</count> <item_version>0</item_version> <item>66</item> </second> </item> </dp_fu_nodes> <dp_fu_nodes_expression class_id="54" tracking_level="0" version="0"> <count>27</count> <item_version>0</item_version> <item class_id="55" tracking_level="0" version="0"> <first>buffer_0_value_V_ad_1_gep_fu_89</first> <second> <count>1</count> <item_version>0</item_version> <item>42</item> </second> </item> <item> <first>buffer_0_value_V_ad_gep_fu_111</first> <second> <count>1</count> <item_version>0</item_version> <item>52</item> </second> </item> <item> <first>buffer_0_value_V_alloca_fu_68</first> <second> <count>1</count> <item_version>0</item_version> <item>7</item> </second> </item> <item> <first>buffer_1_value_V_ad_1_gep_fu_95</first> <second> <count>1</count> <item_version>0</item_version> <item>43</item> </second> </item> <item> <first>buffer_1_value_V_ad_gep_fu_117</first> <second> <count>1</count> <item_version>0</item_version> <item>53</item> </second> </item> <item> <first>buffer_1_value_V_alloca_fu_72</first> <second> <count>1</count> <item_version>0</item_version> <item>8</item> </second> </item> <item> <first>col_1_fu_210</first> <second> <count>1</count> <item_version>0</item_version> <item>27</item> </second> </item> <item> <first>col_cast_fu_216</first> <second> <count>1</count> <item_version>0</item_version> <item>30</item> </second> </item> <item> <first>col_phi_fu_169</first> <second> <count>1</count> <item_version>0</item_version> <item>25</item> </second> </item> <item> <first>icmp1_fu_234</first> <second> <count>1</count> <item_version>0</item_version> <item>35</item> </second> </item> <item> <first>icmp_fu_198</first> <second> <count>1</count> <item_version>0</item_version> <item>21</item> </second> </item> <item> <first>p_Result_s_fu_277</first> <second> <count>1</count> <item_version>0</item_version> <item>48</item> </second> </item> <item> <first>p_Val2_3_0_phi_fu_257</first> <second> <count>1</count> <item_version>0</item_version> <item>46</item> </second> </item> <item> <first>p_Val2_3_1_phi_fu_265</first> <second> <count>1</count> <item_version>0</item_version> <item>47</item> </second> </item> <item> <first>p_write_idx_1_1_fu_246</first> <second> <count>1</count> <item_version>0</item_version> <item>37</item> </second> </item> <item> <first>row_1_fu_182</first> <second> <count>1</count> <item_version>0</item_version> <item>15</item> </second> </item> <item> <first>row_phi_fu_147</first> <second> <count>1</count> <item_version>0</item_version> <item>12</item> </second> </item> <item> <first>tmp_10_fu_188</first> <second> <count>1</count> <item_version>0</item_version> <item>20</item> </second> </item> <item> <first>tmp_11_fu_224</first> <second> <count>1</count> <item_version>0</item_version> <item>34</item> </second> </item> <item> <first>tmp_12_fu_253</first> <second> <count>1</count> <item_version>0</item_version> <item>41</item> </second> </item> <item> <first>tmp_13_fu_273</first> <second> <count>1</count> <item_version>0</item_version> <item>54</item> </second> </item> <item> <first>tmp_2_fu_204</first> <second> <count>1</count> <item_version>0</item_version> <item>26</item> </second> </item> <item> <first>tmp_fu_176</first> <second> <count>1</count> <item_version>0</item_version> <item>13</item> </second> </item> <item> <first>write_idx_1_1_phi_fu_157</first> <second> <count>1</count> <item_version>0</item_version> <item>24</item> </second> </item> <item> <first>write_idx_1_2_fu_286</first> <second> <count>1</count> <item_version>0</item_version> <item>66</item> </second> </item> <item> <first>write_idx_1_3_fu_240</first> <second> <count>1</count> <item_version>0</item_version> <item>36</item> </second> </item> <item> <first>write_idx_1_phi_fu_135</first> <second> <count>1</count> <item_version>0</item_version> <item>11</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>2</count> <item_version>0</item_version> <item> <first>StgValue_55_write_fu_82</first> <second> <count>1</count> <item_version>0</item_version> <item>49</item> </second> </item> <item> <first>tmp_value_V_3_read_fu_76</first> <second> <count>1</count> <item_version>0</item_version> <item>38</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="56" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="57" tracking_level="0" version="0"> <first class_id="58" tracking_level="0" version="0"> <first>buffer_0_value_V</first> <second>0</second> </first> <second> <count>2</count> <item_version>0</item_version> <item>45</item> <item>45</item> </second> </item> <item> <first> <first>buffer_0_value_V</first> <second>1</second> </first> <second> <count>1</count> <item_version>0</item_version> <item>57</item> </second> </item> <item> <first> <first>buffer_1_value_V</first> <second>0</second> </first> <second> <count>2</count> <item_version>0</item_version> <item>44</item> <item>44</item> </second> </item> <item> <first> <first>buffer_1_value_V</first> <second>1</second> </first> <second> <count>1</count> <item_version>0</item_version> <item>60</item> </second> </item> </dp_mem_port_nodes> <dp_reg_nodes> <count>19</count> <item_version>0</item_version> <item> <first>131</first> <second> <count>1</count> <item_version>0</item_version> <item>11</item> </second> </item> <item> <first>143</first> <second> <count>1</count> <item_version>0</item_version> <item>12</item> </second> </item> <item> <first>154</first> <second> <count>1</count> <item_version>0</item_version> <item>24</item> </second> </item> <item> <first>165</first> <second> <count>1</count> <item_version>0</item_version> <item>25</item> </second> </item> <item> <first>292</first> <second> <count>1</count> <item_version>0</item_version> <item>13</item> </second> </item> <item> <first>296</first> <second> <count>1</count> <item_version>0</item_version> <item>15</item> </second> </item> <item> <first>301</first> <second> <count>1</count> <item_version>0</item_version> <item>21</item> </second> </item> <item> <first>305</first> <second> <count>1</count> <item_version>0</item_version> <item>26</item> </second> </item> <item> <first>309</first> <second> <count>1</count> <item_version>0</item_version> <item>27</item> </second> </item> <item> <first>314</first> <second> <count>1</count> <item_version>0</item_version> <item>35</item> </second> </item> <item> <first>319</first> <second> <count>1</count> <item_version>0</item_version> <item>42</item> </second> </item> <item> <first>324</first> <second> <count>1</count> <item_version>0</item_version> <item>43</item> </second> </item> <item> <first>329</first> <second> <count>1</count> <item_version>0</item_version> <item>52</item> </second> </item> <item> <first>334</first> <second> <count>1</count> <item_version>0</item_version> <item>53</item> </second> </item> <item> <first>339</first> <second> <count>1</count> <item_version>0</item_version> <item>37</item> </second> </item> <item> <first>344</first> <second> <count>1</count> <item_version>0</item_version> <item>46</item> </second> </item> <item> <first>349</first> <second> <count>1</count> <item_version>0</item_version> <item>47</item> </second> </item> <item> <first>354</first> <second> <count>1</count> <item_version>0</item_version> <item>54</item> </second> </item> <item> <first>358</first> <second> <count>1</count> <item_version>0</item_version> <item>66</item> </second> </item> </dp_reg_nodes> <dp_regname_nodes> <count>19</count> <item_version>0</item_version> <item> <first>buffer_0_value_V_ad_1_reg_319</first> <second> <count>1</count> <item_version>0</item_version> <item>42</item> </second> </item> <item> <first>buffer_0_value_V_ad_reg_329</first> <second> <count>1</count> <item_version>0</item_version> <item>52</item> </second> </item> <item> <first>buffer_1_value_V_ad_1_reg_324</first> <second> <count>1</count> <item_version>0</item_version> <item>43</item> </second> </item> <item> <first>buffer_1_value_V_ad_reg_334</first> <second> <count>1</count> <item_version>0</item_version> <item>53</item> </second> </item> <item> <first>col_1_reg_309</first> <second> <count>1</count> <item_version>0</item_version> <item>27</item> </second> </item> <item> <first>col_reg_165</first> <second> <count>1</count> <item_version>0</item_version> <item>25</item> </second> </item> <item> <first>icmp1_reg_314</first> <second> <count>1</count> <item_version>0</item_version> <item>35</item> </second> </item> <item> <first>icmp_reg_301</first> <second> <count>1</count> <item_version>0</item_version> <item>21</item> </second> </item> <item> <first>p_Val2_3_0_phi_reg_344</first> <second> <count>1</count> <item_version>0</item_version> <item>46</item> </second> </item> <item> <first>p_Val2_3_1_phi_reg_349</first> <second> <count>1</count> <item_version>0</item_version> <item>47</item> </second> </item> <item> <first>p_write_idx_1_1_reg_339</first> <second> <count>1</count> <item_version>0</item_version> <item>37</item> </second> </item> <item> <first>row_1_reg_296</first> <second> <count>1</count> <item_version>0</item_version> <item>15</item> </second> </item> <item> <first>row_reg_143</first> <second> <count>1</count> <item_version>0</item_version> <item>12</item> </second> </item> <item> <first>tmp_13_reg_354</first> <second> <count>1</count> <item_version>0</item_version> <item>54</item> </second> </item> <item> <first>tmp_2_reg_305</first> <second> <count>1</count> <item_version>0</item_version> <item>26</item> </second> </item> <item> <first>tmp_reg_292</first> <second> <count>1</count> <item_version>0</item_version> <item>13</item> </second> </item> <item> <first>write_idx_1_1_reg_154</first> <second> <count>1</count> <item_version>0</item_version> <item>24</item> </second> </item> <item> <first>write_idx_1_2_reg_358</first> <second> <count>1</count> <item_version>0</item_version> <item>66</item> </second> </item> <item> <first>write_idx_1_reg_131</first> <second> <count>1</count> <item_version>0</item_version> <item>11</item> </second> </item> </dp_regname_nodes> <dp_reg_phi> <count>4</count> <item_version>0</item_version> <item> <first>131</first> <second> <count>1</count> <item_version>0</item_version> <item>11</item> </second> </item> <item> <first>143</first> <second> <count>1</count> <item_version>0</item_version> <item>12</item> </second> </item> <item> <first>154</first> <second> <count>1</count> <item_version>0</item_version> <item>24</item> </second> </item> <item> <first>165</first> <second> <count>1</count> <item_version>0</item_version> <item>25</item> </second> </item> </dp_reg_phi> <dp_regname_phi> <count>4</count> <item_version>0</item_version> <item> <first>col_reg_165</first> <second> <count>1</count> <item_version>0</item_version> <item>25</item> </second> </item> <item> <first>row_reg_143</first> <second> <count>1</count> <item_version>0</item_version> <item>12</item> </second> </item> <item> <first>write_idx_1_1_reg_154</first> <second> <count>1</count> <item_version>0</item_version> <item>24</item> </second> </item> <item> <first>write_idx_1_reg_131</first> <second> <count>1</count> <item_version>0</item_version> <item>11</item> </second> </item> </dp_regname_phi> <dp_port_io_nodes class_id="59" tracking_level="0" version="0"> <count>2</count> <item_version>0</item_version> <item class_id="60" tracking_level="0" version="0"> <first>in_stream_V_value_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>38</item> </second> </item> </second> </item> <item> <first>slice_stream_V_value_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>write</first> <second> <count>1</count> <item_version>0</item_version> <item>49</item> </second> </item> </second> </item> </dp_port_io_nodes> <port2core class_id="61" tracking_level="0" version="0"> <count>2</count> <item_version>0</item_version> <item class_id="62" tracking_level="0" version="0"> <first>1</first> <second>FIFO_SRL</second> </item> <item> <first>2</first> <second>FIFO_SRL</second> </item> </port2core> <node2core> <count>2</count> <item_version>0</item_version> <item> <first>7</first> <second>RAM</second> </item> <item> <first>8</first> <second>RAM</second> </item> </node2core> </syndb> </boost_serialization>
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Web Framework -- -- -- -- Web API Definition -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2016, 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 WebAPI.DOM.Documents; with WebAPI.DOM.Events; with WebAPI.XHR.Event_Targets; with WebAPI.XHR.Form_Datas; package WebAPI.XHR.Requests is pragma Preelaborate; type XML_Http_Request is limited new WebAPI.XHR.Event_Targets.Event_Target with private; -- The following is the event handler (and its corresponding event handler -- event type) that must be supported as attribute solely by the -- XMLHttpRequest object: -- -- * "readystatechange" type XML_Http_Request_Access is access all XML_Http_Request; subtype State is Natural range 0 .. 4; not overriding function Get_Ready_State (Self : not null access constant XML_Http_Request) return State with Import => True, Convention => JavaScript_Property_Getter, Link_Name => "readyState"; -- The XMLHttpRequest object can be in several states. The readyState -- attribute must return the current state, which must be one of the -- following values: UNSENT : constant State := 0; -- The object has been constructed. OPENED : constant State := 1; -- The open() method has been successfully invoked. During this state -- request headers can be set using setRequestHeader() and the request -- can be made using the send() method. HEADERS_RECEIVED : constant State := 2; -- All redirects (if any) have been followed and all HTTP headers of the -- final response have been received. Several response members of the -- object are now available. LOADING : constant State := 3; -- The response entity body is being received. DONE : constant State := 4; -- The data transfer has been completed or something went wrong during the -- transfer (e.g. infinite redirects). not overriding procedure Open (Self : not null access constant XML_Http_Request; Method : League.Strings.Universal_String; URL : League.Strings.Universal_String; Async : Boolean := True; Username : League.Strings.Universal_String := League.Strings.Empty_Universal_String; Password : League.Strings.Universal_String := League.Strings.Empty_Universal_String) with Import => True, Convention => JavaScript_Method, Link_Name => "open"; -- Sets the request method, request URL, and synchronous flag. not overriding procedure Set_Request_Header (Self : not null access XML_Http_Request; Header : League.Strings.Universal_String; Value : League.Strings.Universal_String) with Import => True, Convention => JavaScript_Method, Link_Name => "setRequestHeader"; -- Appends an header to the list of author request headers, or if header is -- already in the list of author request headers, combines its value with -- value. not overriding function Get_Timeout (Self : not null access constant XML_Http_Request) return Natural with Import => True, Convention => JavaScript_Property_Getter, Link_Name => "timeout"; not overriding procedure Set_Timeout (Self : not null access XML_Http_Request; Value : Natural) with Import => True, Convention => JavaScript_Property_Setter, Link_Name => "timeout"; -- Can be set to a time in milliseconds. When set to a non-zero value will -- cause fetching to terminate after the given time has passed. When the -- time has passed, the request has not yet completed, and the synchronous -- flag is unset, a timeout event will then be dispatched, or a -- "TimeoutError" exception will be thrown otherwise (for the send() -- method). not overriding function Get_With_Credentials (Self : not null access constant XML_Http_Request) return Boolean with Import => True, Convention => JavaScript_Property_Getter, Link_Name => "withCredentials"; -- True when user credentials are to be included in a cross-origin request. -- False when they are to be excluded in a cross-origin request and when -- cookies are to be ignored in its response. Initially false. not overriding procedure Set_With_Credentials (Self : not null access XML_Http_Request; Value : Boolean) with Import => True, Convention => JavaScript_Property_Setter, Link_Name => "withCredentials"; not overriding function Get_Upload (Self : not null access constant XML_Http_Request) return access WebAPI.XHR.Event_Targets.Event_Target'Class with Import => True, Convention => JavaScript_Property_Getter, Link_Name => "upload"; -- Returns the associated XMLHttpRequestUpload object. It can be used to -- gather transmission information when data is transferred to a server. not overriding procedure Send (Self : not null access XML_Http_Request; Data : League.Strings.Universal_String) with Import => True, Convention => JavaScript_Method, Link_Name => "send"; -- Initiates the request. The optional argument provides the request entity -- body. The argument is ignored if request method is GET or HEAD. not overriding procedure Send (Self : not null access XML_Http_Request; Data : access WebAPI.XHR.Form_Datas.Form_Data'Class := null) with Import => True, Convention => JavaScript_Method, Link_Name => "send"; not overriding procedure Abort_Request (Self : not null access XML_Http_Request) with Import => True, Convention => JavaScript_Method, Link_Name => "abort"; -- Cancels any network activity. -- Response not overriding function Get_Status (Self : not null access constant XML_Http_Request) return Natural with Import => True, Convention => JavaScript_Property_Getter, Link_Name => "status"; -- Returns the HTTP status code. not overriding function Get_Status_Text (Self : not null access constant XML_Http_Request) return League.Strings.Universal_String with Import => True, Convention => JavaScript_Property_Getter, Link_Name => "statusText"; -- Returns the HTTP status text. not overriding function Get_Response_Header (Self : not null access constant XML_Http_Request; Header : League.Strings.Universal_String) return League.Strings.Universal_String with Import => True, Convention => JavaScript_Method, Link_Name => "getResponseHeader"; -- Returns the header field value from the response of which the field name -- matches header, unless the field name is Set-Cookie or Set-Cookie2. not overriding function Get_All_Response_Headers (Self : not null access constant XML_Http_Request; Header : League.Strings.Universal_String) return League.Strings.Universal_String with Import => True, Convention => JavaScript_Method, Link_Name => "getAllResponseHeaders"; -- Returns all headers from the response, with the exception of those whose -- field name is Set-Cookie or Set-Cookie2. not overriding procedure Override_Mime_Type (Self : not null access constant XML_Http_Request; MIME : WebAPI.DOM_String) with Import => True, Convention => JavaScript_Method, Link_Name => "overrideMimeType"; -- Sets the Content-Type header for the response to mime. not overriding function Get_Response_Type (Self : not null access constant XML_Http_Request) return League.Strings.Universal_String with Import => True, Convention => JavaScript_Property_Getter, Link_Name => "responseType"; -- Returns the response type. not overriding procedure Set_Response_Type (Self : not null access XML_Http_Request; Value : League.Strings.Universal_String) with Import => True, Convention => JavaScript_Property_Setter, Link_Name => "responseType"; -- Can be set to change the response type. Values are: the empty string -- (default), "arraybuffer", "blob", "document", "json", and "text". not overriding function Get_Response_Text (Self : not null access constant XML_Http_Request) return WebAPI.DOM_String with Import => True, Convention => JavaScript_Property_Getter, Link_Name => "responseText"; -- Returns the text response entity body. not overriding function Get_Response_XML (Self : not null access constant XML_Http_Request) return WebAPI.DOM.Documents.Document_Access with Import => True, Convention => JavaScript_Property_Getter, Link_Name => "responseXML"; -- Returns the document response entity body. private type XML_Http_Request is limited new WebAPI.XHR.Event_Targets.Event_Target with null record with Export => True, Convention => JavaScript, Link_Name => "XMLHttpRequest"; overriding function Dispatch_Event (Self : not null access XML_Http_Request; Event : not null access WebAPI.DOM.Events.Event'Class) return Boolean with Import => True, Convention => JavaScript_Method, Link_Name => "dispatchEvent"; end WebAPI.XHR.Requests;
------------------------------------------------------------------------------ -- -- -- Copyright © AdaCore and other contributors, 2017-2020 -- -- See https://github.com/AdaCore/Ada_Drivers_Library/graphs/contributors -- -- for more information -- -- -- -- 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 NRF_SVD.SAADC; use NRF_SVD.SAADC; with nRF.Tasks; use nRF.Tasks; with System.Storage_Elements; package body nRF.ADC is procedure Set_Resolution (Res : Bits_Resolution); procedure Set_Reference (Ref : Reference_Selection); procedure Wait_For_Result; -------------------- -- Set_Resolution -- -------------------- procedure Set_Resolution (Res : Bits_Resolution) is begin SAADC_Periph.RESOLUTION.VAL := (case Res is when Res_8bit => Val_8BIT, when Res_10bit => Val_10BIT, when Res_12bit => Val_12BIT); end Set_Resolution; ------------------- -- Set_Reference -- ------------------- procedure Set_Reference (Ref : Reference_Selection) is begin case Ref is when Internal_0V6 => SAADC_Periph.CH (0).CONFIG.REFSEL := Internal; when VDD_One_Forth => SAADC_Periph.CH (0).CONFIG.REFSEL := Vdd1_4; end case; end Set_Reference; -------------------------- -- Start_Pin_Conversion -- -------------------------- function Do_Pin_Conversion (Pin : Analog_Pin; Input : Pin_Input_Selection; Ref : Reference_Selection; Res : Bits_Resolution) return UInt16 is Result : UInt16 with Volatile; begin Set_Resolution (Res); Set_Reference (Ref); SAADC_Periph.RESULT.PTR := UInt32 (System.Storage_Elements.To_Integer (Result'Address)); SAADC_Periph.RESULT.MAXCNT.MAXCNT := 1; case Input is when Pin_Quadruple => SAADC_Periph.CH (0).CONFIG.GAIN := Gain4; when Pin_Double => SAADC_Periph.CH (0).CONFIG.GAIN := Gain2; when Pin_Full => SAADC_Periph.CH (0).CONFIG.GAIN := Gain1; when Pin_Half => SAADC_Periph.CH (0).CONFIG.GAIN := Gain1_2; when Pin_One_Third => SAADC_Periph.CH (0).CONFIG.GAIN := Gain1_3; when Pin_One_Forth => SAADC_Periph.CH (0).CONFIG.GAIN := Gain1_4; when Pin_One_Fifth => SAADC_Periph.CH (0).CONFIG.GAIN := Gain1_5; when Pin_One_Sixth => SAADC_Periph.CH (0).CONFIG.GAIN := Gain1_6; end case; case Pin is when 0 => SAADC_Periph.CH (0).PSELP.PSELP := Analoginput0; when 1 => SAADC_Periph.CH (0).PSELP.PSELP := Analoginput1; when 2 => SAADC_Periph.CH (0).PSELP.PSELP := Analoginput2; when 3 => SAADC_Periph.CH (0).PSELP.PSELP := Analoginput3; when 4 => SAADC_Periph.CH (0).PSELP.PSELP := Analoginput4; when 5 => SAADC_Periph.CH (0).PSELP.PSELP := Analoginput5; when 6 => SAADC_Periph.CH (0).PSELP.PSELP := Analoginput6; when 7 => SAADC_Periph.CH (0).PSELP.PSELP := Analoginput7; end case; SAADC_Periph.ENABLE.ENABLE := Enabled; Trigger (ADC_START); Wait_For_Result; return Result; end Do_Pin_Conversion; -------------------------- -- Start_VDD_Conversion -- -------------------------- function Do_VDD_Conversion (Input : VDD_Input_Selection; Ref : Reference_Selection; Res : Bits_Resolution) return UInt16 is Result : UInt16 with Volatile; begin Set_Resolution (Res); Set_Reference (Ref); SAADC_Periph.CH (0).PSELP.PSELP := Vdd; SAADC_Periph.RESULT.PTR := UInt32 (System.Storage_Elements.To_Integer (Result'Address)); SAADC_Periph.RESULT.MAXCNT.MAXCNT := 1; case Input is when VDD_One_Fifth => SAADC_Periph.CH (0).CONFIG.GAIN := Gain1_5; when VDD_One_Sixth => SAADC_Periph.CH (0).CONFIG.GAIN := Gain1_6; end case; SAADC_Periph.ENABLE.ENABLE := Enabled; Trigger (ADC_START); Wait_For_Result; return Result; end Do_VDD_Conversion; ---------- -- Busy -- ---------- function Busy return Boolean is (SAADC_Periph.STATUS.STATUS = Busy); --------------------- -- Wait_For_Result -- --------------------- procedure Wait_For_Result is begin while Busy loop null; end loop; SAADC_Periph.ENABLE.ENABLE := Enabled; end Wait_For_Result; end nRF.ADC;
----------------------------------------------------------------------- -- Ada Labs -- -- -- -- Copyright (C) 2008-2013, AdaCore -- -- -- -- Labs 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. You should have received -- -- a copy of the GNU General Public License along with this program; -- -- if not, write to the Free Software Foundation, Inc., 59 Temple -- -- Place - Suite 330, Boston, MA 02111-1307, USA. -- ----------------------------------------------------------------------- package Display.Basic is type Window_ID is private; function Create_Window (Width : Integer; Height : Integer; Name : String) return Window_ID; Graphical_Context_Not_Initialized : exception; Too_Many_Windows: exception; Too_Many_Canvas : exception; type Canvas_ID is private; function Get_Canvas(Window : Window_ID) return Canvas_ID; type Point_2d is record X : Float; Y : Float; end record; type Point_3d is record X : Float; Y : Float; Z : Float; end record; type Screen_Point is record X, Y : Integer; end record; type Cursor_T is record Position : Screen_Point; Pressed : Boolean; end record; procedure Fill(Canvas : Canvas_ID; Color: RGBA_T); procedure Draw_Sphere (Canvas : Canvas_ID; Position: Point_3d; Radius : Float; Color: RGBA_T); procedure Draw_Sphere (Canvas : Canvas_ID; Position: Screen_Point; Radius : Integer; Color: RGBA_T); procedure Draw_Circle (Canvas : Canvas_ID; Position: Point_3d; Radius : Float; Color: RGBA_T); procedure Draw_Circle (Canvas : Canvas_ID; Position: Screen_Point; Radius : Integer; Color: RGBA_T); procedure Draw_Line (Canvas : Canvas_ID; P1: Point_3d; P2 : Point_3d; Color: RGBA_T); procedure Draw_Line (Canvas : Canvas_ID; P1: Screen_Point; P2 : Screen_Point; Color: RGBA_T); procedure Draw_Text (Canvas : Canvas_ID; Position: Point_3d; Text : String; Color: RGBA_T; Bg_Color : RGBA_T := Black; Wrap: Boolean := True); procedure Draw_Text (Canvas : Canvas_ID; Position: Screen_Point; Text : String; Color: RGBA_T; Bg_Color : RGBA_T := Black; Wrap: Boolean := True); procedure Draw_Rect (Canvas : Canvas_ID; Position : Point_3d; Width, Height : Float; Color : RGBA_T); procedure Draw_Rect (Canvas : Canvas_ID; Position : Screen_Point; Width, Height : Integer; Color : RGBA_T); procedure Draw_Fill_Rect (Canvas : Canvas_ID; Position : Point_3d; Width, Height : Float; Color : RGBA_T); procedure Draw_Fill_Rect (Canvas : Canvas_ID; Position : Screen_Point; Width, Height : Integer; Color : RGBA_T); procedure Set_Pixel (Canvas : Canvas_ID; Position : Screen_Point; Color : RGBA_T); procedure Enable_3d_Light (Canvas : Canvas_ID); procedure Disable_3d_Light (Canvas : Canvas_ID); procedure Set_3d_Light (Canvas : Canvas_ID; Position : Point_3d; Diffuse_Color : RGBA_T; Ambient_Color : RGBA_T); function Get_Text_Size(Text : String) return Screen_Point; function Get_Zoom_Factor (Canvas : Canvas_ID) return Float; procedure Set_Zoom_Factor (Canvas : Canvas_ID; ZF : Float); procedure Set_Center (Canvas : Canvas_ID; Position : Point_3d); procedure Set_Center (Canvas : Canvas_ID; Position : Screen_Point); function Get_Center (Canvas : Canvas_ID) return Screen_Point; function Get_Canvas_Size(Canvas : Canvas_ID) return Screen_Point; procedure Swap_Buffers(Window : Window_ID; Erase : Boolean := True); -- Update the canvas -- copy the hidden buffer to the visible buffer procedure Swap_Copy_Buffers(Window : Window_ID); -- Update the canvas function Get_Cursor_Status return Cursor_T; function To_Point3d (Canvas : Canvas_ID; P : Screen_Point) return Point_3d; function To_Screen_Point (Canvas : Canvas_ID; P : Point_3d) return Screen_Point; function Is_Killed return Boolean; private type Window_ID_Range is range 0 .. 10; type Window_ID is new Window_ID_Range; type Canvas_ID_Range is range 1 .. 1024; type Canvas_ID is new Canvas_ID_Range; end Display.Basic;
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- S Y S T E M . S E C O N D A R Y _ S T A C K -- -- -- -- S p e c -- -- -- -- Copyright (C) 1992-2014, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- -- -- -- -- -- -- -- -- 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. -- -- -- ------------------------------------------------------------------------------ -- Version for use in HI-E mode with System.Storage_Elements; package System.Secondary_Stack with SPARK_Mode => On is package SSE renames System.Storage_Elements; Default_Secondary_Stack_Size : constant := 10 * 1024; -- Default size of a secondary stack procedure SS_Init (Stk : System.Address; Size : Natural := Default_Secondary_Stack_Size); -- Initialize the secondary stack with a main stack of the given Size. -- -- Stk is an IN parameter that is already pointing to a memory area of -- size Size and aligned to Standard'Maximum_Alignment. -- -- The secondary stack is fixed, and any attempt to allocate more than the -- initial size will result in a Storage_Error being raised. procedure SS_Allocate (Address : out System.Address; Storage_Size : SSE.Storage_Count); -- Allocate enough space for a 'Storage_Size' bytes object with Maximum -- alignment. The address of the allocated space is returned in 'Address' type Mark_Id is private; -- Type used to mark the stack function SS_Mark return Mark_Id; -- Return the Mark corresponding to the current state of the stack procedure SS_Release (M : Mark_Id); -- Restore the state of the stack corresponding to the mark M. If an -- additional chunk have been allocated, it will never be freed during a private pragma SPARK_Mode (Off); SS_Pool : Integer; -- Unused entity that is just present to ease the sharing of the pool -- mechanism for specific allocation/deallocation in the compiler type Mark_Id is new SSE.Integer_Address; end System.Secondary_Stack;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME LIBRARY (GNARL) COMPONENTS -- -- -- -- S Y S T E M . T A S K I N G . D E B U G -- -- -- -- S p e c -- -- -- -- Copyright (C) 1997-2011, 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. -- -- -- -- -- -- -- -- -- -- -- -- 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 package encapsulates all direct interfaces to task debugging services -- that are needed by gdb with gnat mode. with System.Tasking; with System.OS_Interface; package System.Tasking.Debug is pragma Preelaborate; ------------------------------------------ -- Application-level debugging routines -- ------------------------------------------ procedure List_Tasks; -- Print a list of all the known Ada tasks with abbreviated state -- information, one-per-line, to the standard error file. procedure Print_Current_Task; -- Write information about current task, in hexadecimal, as one line, to -- the standard error file. procedure Print_Task_Info (T : Task_Id); -- Similar to Print_Current_Task, for a given task procedure Set_User_State (Value : Long_Integer); -- Set user state value in the current task. This state will be displayed -- when calling List_Tasks or Print_Current_Task. It is useful for setting -- task specific state. function Get_User_State return Long_Integer; -- Return the user state for the current task ------------------------- -- General GDB support -- ------------------------- Known_Tasks : array (0 .. 999) of Task_Id := (others => null); -- Global array of tasks read by gdb, and updated by Create_Task and -- Finalize_TCB Debug_Event_Activating : constant := 1; Debug_Event_Run : constant := 2; Debug_Event_Suspended : constant := 3; Debug_Event_Preempted : constant := 4; Debug_Event_Terminated : constant := 5; Debug_Event_Abort_Terminated : constant := 6; Debug_Event_Exception_Terminated : constant := 7; Debug_Event_Rendezvous_Exception : constant := 8; Debug_Event_Handled : constant := 9; Debug_Event_Dependents_Exception : constant := 10; Debug_Event_Handled_Others : constant := 11; subtype Event_Kind_Type is Positive range 1 .. 11; -- Event kinds currently defined for debugging, used globally -- below and on a per task basis. procedure Signal_Debug_Event (Event_Kind : Event_Kind_Type; Task_Value : Task_Id); ---------------------------------- -- VxWorks specific GDB support -- ---------------------------------- -- Although the following routines are implemented in a target independent -- manner, only VxWorks currently uses them. procedure Task_Creation_Hook (Thread : OS_Interface.Thread_Id); -- This procedure is used to notify GDB of task's creation. It must be -- called by the task's creator. procedure Task_Termination_Hook; -- This procedure is used to notify GDB of task's termination procedure Suspend_All_Tasks (Thread_Self : OS_Interface.Thread_Id); -- Suspend all the tasks except the one whose associated thread is -- Thread_Self by traversing All_Tasks_Lists and calling -- System.Task_Primitives.Operations.Suspend_Task. procedure Resume_All_Tasks (Thread_Self : OS_Interface.Thread_Id); -- Resume all the tasks except the one whose associated thread is -- Thread_Self by traversing All_Tasks_Lists and calling -- System.Task_Primitives.Operations.Continue_Task. procedure Stop_All_Tasks_Handler; -- Stop all the tasks by traversing All_Tasks_Lists and calling -- System.Task_Primitives.Operations.Stop_All_Task. This function -- can be used in an interrupt handler. procedure Stop_All_Tasks; -- Stop all the tasks by traversing All_Tasks_Lists and calling -- System.Task_Primitives.Operations.Stop_Task. procedure Continue_All_Tasks; -- Continue all the tasks by traversing All_Tasks_Lists and calling -- System.Task_Primitives.Operations.Continue_Task. ------------------------------- -- Run-time tracing routines -- ------------------------------- procedure Trace (Self_Id : Task_Id; Msg : String; Flag : Character; Other_Id : Task_Id := null); -- If traces for Flag are enabled, display on Standard_Error a given -- message for the current task. Other_Id is an optional second task id -- to display. procedure Set_Trace (Flag : Character; Value : Boolean := True); -- Enable or disable tracing for Flag. By default, flags in the range -- 'A' .. 'Z' are disabled, others are enabled. end System.Tasking.Debug;
------------------------------------------------------------------------------ -- -- -- 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.Elements; with AMF.Internals.Element_Collections; with AMF.Internals.Helpers; with AMF.Internals.Tables.UML_Attributes; with AMF.Visitors.UML_Iterators; with AMF.Visitors.UML_Visitors; with League.Strings.Internals; with Matreshka.Internals.Strings; package body AMF.Internals.UML_Parameter_Sets is ------------------- -- Enter_Element -- ------------------- overriding procedure Enter_Element (Self : not null access constant UML_Parameter_Set_Proxy; Visitor : in out AMF.Visitors.Abstract_Visitor'Class; Control : in out AMF.Visitors.Traverse_Control) is begin if Visitor in AMF.Visitors.UML_Visitors.UML_Visitor'Class then AMF.Visitors.UML_Visitors.UML_Visitor'Class (Visitor).Enter_Parameter_Set (AMF.UML.Parameter_Sets.UML_Parameter_Set_Access (Self), Control); end if; end Enter_Element; ------------------- -- Leave_Element -- ------------------- overriding procedure Leave_Element (Self : not null access constant UML_Parameter_Set_Proxy; Visitor : in out AMF.Visitors.Abstract_Visitor'Class; Control : in out AMF.Visitors.Traverse_Control) is begin if Visitor in AMF.Visitors.UML_Visitors.UML_Visitor'Class then AMF.Visitors.UML_Visitors.UML_Visitor'Class (Visitor).Leave_Parameter_Set (AMF.UML.Parameter_Sets.UML_Parameter_Set_Access (Self), Control); end if; end Leave_Element; ------------------- -- Visit_Element -- ------------------- overriding procedure Visit_Element (Self : not null access constant UML_Parameter_Set_Proxy; Iterator : in out AMF.Visitors.Abstract_Iterator'Class; Visitor : in out AMF.Visitors.Abstract_Visitor'Class; Control : in out AMF.Visitors.Traverse_Control) is begin if Iterator in AMF.Visitors.UML_Iterators.UML_Iterator'Class then AMF.Visitors.UML_Iterators.UML_Iterator'Class (Iterator).Visit_Parameter_Set (Visitor, AMF.UML.Parameter_Sets.UML_Parameter_Set_Access (Self), Control); end if; end Visit_Element; ------------------- -- Get_Condition -- ------------------- overriding function Get_Condition (Self : not null access constant UML_Parameter_Set_Proxy) return AMF.UML.Constraints.Collections.Set_Of_UML_Constraint is begin return AMF.UML.Constraints.Collections.Wrap (AMF.Internals.Element_Collections.Wrap (AMF.Internals.Tables.UML_Attributes.Internal_Get_Condition (Self.Element))); end Get_Condition; ------------------- -- Get_Parameter -- ------------------- overriding function Get_Parameter (Self : not null access constant UML_Parameter_Set_Proxy) return AMF.UML.Parameters.Collections.Set_Of_UML_Parameter is begin return AMF.UML.Parameters.Collections.Wrap (AMF.Internals.Element_Collections.Wrap (AMF.Internals.Tables.UML_Attributes.Internal_Get_Parameter (Self.Element))); end Get_Parameter; --------------------------- -- Get_Client_Dependency -- --------------------------- overriding function Get_Client_Dependency (Self : not null access constant UML_Parameter_Set_Proxy) return AMF.UML.Dependencies.Collections.Set_Of_UML_Dependency is begin return AMF.UML.Dependencies.Collections.Wrap (AMF.Internals.Element_Collections.Wrap (AMF.Internals.Tables.UML_Attributes.Internal_Get_Client_Dependency (Self.Element))); end Get_Client_Dependency; ------------------------- -- Get_Name_Expression -- ------------------------- overriding function Get_Name_Expression (Self : not null access constant UML_Parameter_Set_Proxy) return AMF.UML.String_Expressions.UML_String_Expression_Access is begin return AMF.UML.String_Expressions.UML_String_Expression_Access (AMF.Internals.Helpers.To_Element (AMF.Internals.Tables.UML_Attributes.Internal_Get_Name_Expression (Self.Element))); end Get_Name_Expression; ------------------------- -- Set_Name_Expression -- ------------------------- overriding procedure Set_Name_Expression (Self : not null access UML_Parameter_Set_Proxy; To : AMF.UML.String_Expressions.UML_String_Expression_Access) is begin AMF.Internals.Tables.UML_Attributes.Internal_Set_Name_Expression (Self.Element, AMF.Internals.Helpers.To_Element (AMF.Elements.Element_Access (To))); end Set_Name_Expression; ------------------- -- Get_Namespace -- ------------------- overriding function Get_Namespace (Self : not null access constant UML_Parameter_Set_Proxy) return AMF.UML.Namespaces.UML_Namespace_Access is begin return AMF.UML.Namespaces.UML_Namespace_Access (AMF.Internals.Helpers.To_Element (AMF.Internals.Tables.UML_Attributes.Internal_Get_Namespace (Self.Element))); end Get_Namespace; ------------------------ -- Get_Qualified_Name -- ------------------------ overriding function Get_Qualified_Name (Self : not null access constant UML_Parameter_Set_Proxy) return AMF.Optional_String is begin declare use type Matreshka.Internals.Strings.Shared_String_Access; Aux : constant Matreshka.Internals.Strings.Shared_String_Access := AMF.Internals.Tables.UML_Attributes.Internal_Get_Qualified_Name (Self.Element); begin if Aux = null then return (Is_Empty => True); else return (False, League.Strings.Internals.Create (Aux)); end if; end; end Get_Qualified_Name; ------------------------- -- All_Owning_Packages -- ------------------------- overriding function All_Owning_Packages (Self : not null access constant UML_Parameter_Set_Proxy) return AMF.UML.Packages.Collections.Set_Of_UML_Package is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "All_Owning_Packages unimplemented"); raise Program_Error with "Unimplemented procedure UML_Parameter_Set_Proxy.All_Owning_Packages"; return All_Owning_Packages (Self); end All_Owning_Packages; ----------------------------- -- Is_Distinguishable_From -- ----------------------------- overriding function Is_Distinguishable_From (Self : not null access constant UML_Parameter_Set_Proxy; N : AMF.UML.Named_Elements.UML_Named_Element_Access; Ns : AMF.UML.Namespaces.UML_Namespace_Access) return Boolean is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "Is_Distinguishable_From unimplemented"); raise Program_Error with "Unimplemented procedure UML_Parameter_Set_Proxy.Is_Distinguishable_From"; return Is_Distinguishable_From (Self, N, Ns); end Is_Distinguishable_From; --------------- -- Namespace -- --------------- overriding function Namespace (Self : not null access constant UML_Parameter_Set_Proxy) return AMF.UML.Namespaces.UML_Namespace_Access is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "Namespace unimplemented"); raise Program_Error with "Unimplemented procedure UML_Parameter_Set_Proxy.Namespace"; return Namespace (Self); end Namespace; end AMF.Internals.UML_Parameter_Sets;
-- SPDX-FileCopyrightText: 2019 Max Reznik <reznikmm@gmail.com> -- -- SPDX-License-Identifier: MIT ------------------------------------------------------------- with Program.Elements.Declarations; with Program.Lexical_Elements; with Program.Elements.Defining_Identifiers; with Program.Elements.Aspect_Specifications; with Program.Elements.Expressions; with Program.Elements.Task_Definitions; package Program.Elements.Single_Task_Declarations is pragma Pure (Program.Elements.Single_Task_Declarations); type Single_Task_Declaration is limited interface and Program.Elements.Declarations.Declaration; type Single_Task_Declaration_Access is access all Single_Task_Declaration'Class with Storage_Size => 0; not overriding function Name (Self : Single_Task_Declaration) return not null Program.Elements.Defining_Identifiers .Defining_Identifier_Access is abstract; not overriding function Aspects (Self : Single_Task_Declaration) return Program.Elements.Aspect_Specifications .Aspect_Specification_Vector_Access is abstract; not overriding function Progenitors (Self : Single_Task_Declaration) return Program.Elements.Expressions.Expression_Vector_Access is abstract; not overriding function Definition (Self : Single_Task_Declaration) return not null Program.Elements.Task_Definitions.Task_Definition_Access is abstract; type Single_Task_Declaration_Text is limited interface; type Single_Task_Declaration_Text_Access is access all Single_Task_Declaration_Text'Class with Storage_Size => 0; not overriding function To_Single_Task_Declaration_Text (Self : in out Single_Task_Declaration) return Single_Task_Declaration_Text_Access is abstract; not overriding function Task_Token (Self : Single_Task_Declaration_Text) return not null Program.Lexical_Elements.Lexical_Element_Access is abstract; not overriding function With_Token (Self : Single_Task_Declaration_Text) return Program.Lexical_Elements.Lexical_Element_Access is abstract; not overriding function Is_Token (Self : Single_Task_Declaration_Text) return not null Program.Lexical_Elements.Lexical_Element_Access is abstract; not overriding function New_Token (Self : Single_Task_Declaration_Text) return Program.Lexical_Elements.Lexical_Element_Access is abstract; not overriding function With_Token_2 (Self : Single_Task_Declaration_Text) return Program.Lexical_Elements.Lexical_Element_Access is abstract; not overriding function Semicolon_Token (Self : Single_Task_Declaration_Text) return not null Program.Lexical_Elements.Lexical_Element_Access is abstract; end Program.Elements.Single_Task_Declarations;
-- C95074C.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 'FIRST, 'LAST, 'LENGTH, AND 'RANGE, CAN BE APPLIED TO AN -- OUT PARAMETER OR OUT PARAMETER SUBCOMPONENT THAT DOES NOT HAVE AN -- ACCESS TYPE. -- JWC 6/25/85 WITH REPORT; USE REPORT; PROCEDURE C95074C IS BEGIN TEST ("C95074C", "CHECK THAT ATTRIBUTES MAY BE APPLIED TO " & "NON-ACCESS FORMAL OUT PARAMETERS"); DECLARE TYPE ARR IS ARRAY (1 .. 10) OF NATURAL; TYPE REC IS RECORD A : ARR; END RECORD; A1 : ARR; R1 : REC; TASK T1 IS ENTRY E (A2 : OUT ARR; R2 : OUT REC); END T1; TASK BODY T1 IS BEGIN ACCEPT E (A2 : OUT ARR; R2 : OUT REC) DO IF A2'FIRST /= 1 THEN FAILED ("WRONG VALUE FOR A2'FIRST"); END IF; IF A2'LAST /= 10 THEN FAILED ("WRONG VALUE FOR A2'LAST"); END IF; IF A2'LENGTH /= 10 THEN FAILED ("WRONG VALUE FOR A2'LENGTH"); END IF; IF (1 NOT IN A2'RANGE) OR (10 NOT IN A2'RANGE) OR (0 IN A2'RANGE) OR (11 IN A2'RANGE) THEN FAILED ("WRONG VALUE FOR A2'RANGE"); END IF; IF R2.A'FIRST /= 1 THEN FAILED ("WRONG VALUE FOR R2.A'FIRST"); END IF; IF R2.A'LAST /= 10 THEN FAILED ("WRONG VALUE FOR R2.A'LAST"); END IF; IF R2.A'LENGTH /= 10 THEN FAILED ("WRONG VALUE FOR R2.A'LENGTH"); END IF; IF (1 NOT IN R2.A'RANGE) OR (10 NOT IN R2.A'RANGE) OR (0 IN R2.A'RANGE) OR (11 IN R2.A'RANGE) THEN FAILED ("WRONG VALUE FOR R2.A'RANGE"); END IF; END E; END T1; BEGIN T1.E (A1,R1); END; RESULT; END C95074C;
----------------------------------------------------------------------- -- keystore-io-tests -- Tests for keystore IO -- Copyright (C) 2019 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 Util.Test_Caller; with Util.Measures; with Util.Encoders.AES; with Keystore.IO.Files; with Keystore.Buffers; with Keystore.Marshallers; package body Keystore.IO.Tests is use type Keystore.Buffers.Block_Number; package Caller is new Util.Test_Caller (Test, "Keystore.IO"); procedure Add_Tests (Suite : in Util.Tests.Access_Test_Suite) is begin Caller.Add_Test (Suite, "Test Keystore.IO.Files.Create+Open+Write+Read", Test_File_IO'Access); Caller.Add_Test (Suite, "Test Keystore.IO.Files.Perf", Test_Perf_IO'Access); end Add_Tests; procedure Test_File_IO (T : in out Test) is Path : constant String := Util.Tests.Get_Test_Path ("regtests/result/test-io.ks"); Secret : Secret_Key := Util.Encoders.Create ("0123456789abcdef"); Secret2 : Secret_Key := Util.Encoders.Create ("0123456789abcdef0123456789abcdef"); Block : Storage_Block; Sign : constant Secret_Key := Util.Encoders.Create ("0123456789abcdef0123456789abcdef"); begin -- Make a file with a zero-ed block. declare Stream : Keystore.IO.Files.Wallet_Stream; Buffer : Keystore.IO.Marshaller; Cipher : Util.Encoders.AES.Encoder; Config : Keystore.Wallet_Config := Keystore.Unsecure_Config; begin Config.Overwrite := True; Cipher.Set_Key (Secret); Cipher.Set_Padding (Util.Encoders.AES.NO_PADDING); Stream.Create (Path => Path, Data_Path => "", Config => Config); Stream.Allocate (IO.DATA_BLOCK, Block); T.Assert (Block.Block = 1, "Allocate should return first block"); Buffer.Buffer := Buffers.Allocate (Block); Buffer.Buffer.Data.Value.Data := (others => 0); Marshallers.Set_Header (Buffer, Tag => BT_WALLET_HEADER, Id => 12); Marshallers.Put_Unsigned_32 (Buffer, 12345); Stream.Write (Cipher => Cipher, Sign => Sign, From => Buffer.Buffer); Stream.Close; end; -- Read same file and verify we can extract correctly the block data. declare Stream : Keystore.IO.Files.Wallet_Stream; Buffer : Keystore.IO.Marshaller; Decipher : Util.Encoders.AES.Decoder; Size : Block_Index; begin Decipher.Set_Key (Secret); Decipher.Set_Padding (Util.Encoders.AES.NO_PADDING); Stream.Open (Path => Path, Data_Path => ""); Buffer.Buffer := Buffers.Allocate (Storage_Block '(DEFAULT_STORAGE_ID, 1)); Stream.Read (Decipher => Decipher, Sign => Sign, Decrypt_Size => Size, Into => Buffer.Buffer); Util.Tests.Assert_Equals (T, BT_WALLET_HEADER, Integer (Marshallers.Get_Header_16 (Buffer)), "Invalid wallet header tag"); Util.Tests.Assert_Equals (T, Natural (Size), Integer (Marshallers.Get_Unsigned_16 (Buffer)), "Invalid wallet encryption size"); Util.Tests.Assert_Equals (T, 12, Integer (Marshallers.Get_Unsigned_32 (Buffer)), "Invalid wallet id"); Util.Tests.Assert_Equals (T, 0, Integer (Marshallers.Get_Unsigned_32 (Buffer)), "Invalid PAD 0"); Util.Tests.Assert_Equals (T, 0, Integer (Marshallers.Get_Unsigned_32 (Buffer)), "Invalid PAD 0"); Util.Tests.Assert_Equals (T, 12345, Integer (Marshallers.Get_Unsigned_32 (Buffer)), "Invalid number extracted from block"); Stream.Close; end; -- Use a wrong decompression key and verify we get an error. declare Stream : Keystore.IO.Files.Wallet_Stream; Buffer : Keystore.IO.Marshaller; Decipher : Util.Encoders.AES.Decoder; Size : Block_Index; begin Decipher.Set_Key (Secret2); Decipher.Set_Padding (Util.Encoders.AES.NO_PADDING); Stream.Open (Path => Path, Data_Path => ""); begin Buffer.Buffer := Buffers.Allocate (Storage_Block '(DEFAULT_STORAGE_ID, 1)); Stream.Read (Decipher => Decipher, Sign => Sign, Decrypt_Size => Size, Into => Buffer.Buffer); T.Fail ("An Invalid_Block exception is expected."); exception when Invalid_Block | Invalid_Signature => null; end; Stream.Close; end; end Test_File_IO; procedure Test_Perf_IO (T : in out Test) is Path : constant String := Util.Tests.Get_Test_Path ("regtests/result/test-io-perf.ks"); Secret : Secret_Key := Util.Encoders.Create ("0123456789abcdef"); Block : Storage_Block; Sign : constant Secret_Key := Util.Encoders.Create ("123456789abcdef0"); begin -- Make a file with filled blocks. declare Start : Util.Measures.Stamp; Stream : Keystore.IO.Files.Wallet_Stream; Buffer : Keystore.IO.Marshaller; Cipher : Util.Encoders.AES.Encoder; Config : Keystore.Wallet_Config := Keystore.Unsecure_Config; begin Config.Overwrite := True; Cipher.Set_Key (Secret); Cipher.Set_Padding (Util.Encoders.AES.NO_PADDING); Stream.Create (Path => Path, Data_Path => "", Config => Config); Stream.Allocate (IO.DATA_BLOCK, Block); T.Assert (Block.Block = 1, "Allocate should return first block"); Buffer.Buffer := Buffers.Allocate (Block); Buffer.Buffer.Data.Value.Data := (others => 0); Marshallers.Set_Header (Buffer, Tag => BT_WALLET_HEADER, Id => 12); Marshallers.Put_Unsigned_32 (Buffer, 12345); Stream.Write (Cipher => Cipher, Sign => Sign, From => Buffer.Buffer); for I in 1 .. 1000 loop Stream.Allocate (IO.DATA_BLOCK, Block); Buffer.Buffer := Buffers.Allocate (Block); Buffer.Buffer.Data.Value.Data := (others => Stream_Element (I mod 255)); Marshallers.Set_Header (Buffer, Tag => BT_WALLET_DATA, Id => 12); Stream.Write (Cipher => Cipher, Sign => Sign, From => Buffer.Buffer); end loop; Stream.Close; Util.Measures.Report (Start, "Write 1000 blocks"); end; -- Read same file and verify we can extract correctly the block data. declare Start : Util.Measures.Stamp; Stream : Keystore.IO.Files.Wallet_Stream; Buffer : Keystore.IO.Marshaller; Decipher : Util.Encoders.AES.Decoder; Size : Block_Index; begin Decipher.Set_Key (Secret); Decipher.Set_Padding (Util.Encoders.AES.NO_PADDING); Stream.Open (Path => Path, Data_Path => ""); Buffer.Buffer := Buffers.Allocate (Storage_Block '(DEFAULT_STORAGE_ID, 1)); -- Read first block Stream.Read (Decipher => Decipher, Sign => Sign, Decrypt_Size => Size, Into => Buffer.Buffer); Util.Tests.Assert_Equals (T, BT_WALLET_HEADER, Integer (Marshallers.Get_Header_16 (Buffer)), "Invalid wallet header tag"); Util.Tests.Assert_Equals (T, Natural (Size), Integer (Marshallers.Get_Unsigned_16 (Buffer)), "Invalid wallet encryption size"); Util.Tests.Assert_Equals (T, 12, Integer (Marshallers.Get_Unsigned_32 (Buffer)), "Invalid wallet id"); Util.Tests.Assert_Equals (T, 0, Integer (Marshallers.Get_Unsigned_32 (Buffer)), "Invalid PAD 0"); Util.Tests.Assert_Equals (T, 0, Integer (Marshallers.Get_Unsigned_32 (Buffer)), "Invalid PAD 0"); Util.Tests.Assert_Equals (T, 12345, Integer (Marshallers.Get_Unsigned_32 (Buffer)), "Invalid number extracted from block"); -- Read other blocks for I in 1 .. 1000 loop Buffer.Buffer := Buffers.Allocate (Storage_Block '(DEFAULT_STORAGE_ID, IO.Block_Number (I + 1))); Stream.Read (Decipher => Decipher, Sign => Sign, Decrypt_Size => Size, Into => Buffer.Buffer); Util.Tests.Assert_Equals (T, BT_WALLET_DATA, Integer (Marshallers.Get_Header_16 (Buffer)), "Invalid wallet header tag"); Util.Tests.Assert_Equals (T, Natural (Size), Integer (Marshallers.Get_Unsigned_16 (Buffer)), "Invalid wallet encryption size"); Util.Tests.Assert_Equals (T, 12, Integer (Marshallers.Get_Unsigned_32 (Buffer)), "Invalid wallet id"); Util.Tests.Assert_Equals (T, 0, Integer (Marshallers.Get_Unsigned_32 (Buffer)), "Invalid PAD 0"); Util.Tests.Assert_Equals (T, 0, Integer (Marshallers.Get_Unsigned_32 (Buffer)), "Invalid PAD 0"); Util.Tests.Assert_Equals (T, I mod 255, Integer (Buffer.Buffer.Data.Value.Data (Buffer.Pos + 1)), "Invalid number extracted from block"); Util.Tests.Assert_Equals (T, I mod 255, Integer (Buffer.Buffer.Data.Value.Data (Buffer.Pos + 123)), "Invalid number extracted from block"); end loop; Stream.Close; Util.Measures.Report (Start, "Read 1000 blocks"); end; end Test_Perf_IO; end Keystore.IO.Tests;
------------------------------------------------------------------------------ -- -- -- ASIS-for-GNAT IMPLEMENTATION COMPONENTS -- -- -- -- A 4 G . S T A N D -- -- -- -- B o d y -- -- -- -- Copyright (c) 1999-2003, Free Software Foundation, Inc. -- -- -- -- ASIS-for-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 -- -- Software Foundation; either version 2, or (at your option) any later -- -- version. ASIS-for-GNAT is distributed in the hope that it will be use- -- -- ful, but WITHOUT ANY WARRANTY; without even the implied warranty of MER- -- -- CHANTABILITY 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 ASIS-for-GNAT; see file -- -- COPYING. If not, write to the Free Software Foundation, 59 Temple Place -- -- - Suite 330, Boston, MA 02111-1307, USA. -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- ASIS-for-GNAT was originally developed by the ASIS-for-GNAT team at the -- -- Software Engineering Laboratory of the Swiss Federal Institute of -- -- Technology (LGL-EPFL) in Lausanne, Switzerland, in cooperation with the -- -- Scientific Research Computer Center of Moscow State University (SRCC -- -- MSU), Russia, with funding partially provided by grants from the Swiss -- -- National Science Foundation and the Swiss Academy of Engineering -- -- Sciences. ASIS-for-GNAT is now maintained by Ada Core Technologies Inc -- -- (http://www.gnat.com). -- -- -- ------------------------------------------------------------------------------ with Asis.Set_Get; use Asis.Set_Get; with A4G.A_Types; use A4G.A_Types; with A4G.Contt; use A4G.Contt; with Stand; use Stand; with Atree; use Atree; with Sinfo; use Sinfo; package body A4G.Stand is -------------------------------- -- Get_Numeric_Error_Renaming -- -------------------------------- function Get_Numeric_Error_Renaming return Asis.Element is Result : Asis.Element := Numeric_Error_Template; begin Set_Encl_Tree (Result, Get_Current_Tree); Set_Enclosing_Context (Result, Get_Current_Cont); Set_Obtained (Result, A_OS_Time); return Result; end Get_Numeric_Error_Renaming; --------------------------- -- Is_Standard_Char_Type -- --------------------------- function Is_Standard_Char_Type (N : Node_Id) return Boolean is Result : Boolean := False; Type_Ent : Entity_Id; begin if Sloc (N) = Standard_Location and then Nkind (N) = N_Enumeration_Type_Definition then Type_Ent := Defining_Identifier (Parent (N)); if Type_Ent in Standard_Character .. Standard_Wide_Character then Result := True; end if; end if; return Result; end Is_Standard_Char_Type; ------------------------- -- Standard_Char_Decls -- ------------------------- function Standard_Char_Decls (Type_Definition : Asis.Type_Definition; Implicit : Boolean := False) return Asis.Element_List is Arg_Node : constant Node_Id := Node (Type_Definition); Rel_Len : Asis.ASIS_Positive; Type_Ent : Entity_Id; Tmp_Template : Element := Char_Literal_Spec_Template; begin -- Adjusting the template for the artificial character literal -- specification: Set_Encl_Unit_Id (Tmp_Template, Encl_Unit_Id (Type_Definition)); Set_Encl_Tree (Tmp_Template, Encl_Tree (Type_Definition)); Set_Node (Tmp_Template, Arg_Node); Set_R_Node (Tmp_Template, Arg_Node); Set_Enclosing_Context (Tmp_Template, Encl_Cont_Id (Type_Definition)); Set_Obtained (Tmp_Template, A_OS_Time); Set_From_Instance (Tmp_Template, Is_From_Instance (Type_Definition)); Set_From_Implicit (Tmp_Template, Implicit); Set_From_Inherited (Tmp_Template, Implicit); if Implicit then Set_Special_Case (Tmp_Template, Not_A_Special_Case); Set_Node_Field_1 (Tmp_Template, Parent (Arg_Node)); end if; Type_Ent := Defining_Identifier (Parent (Arg_Node)); while Type_Ent /= Etype (Type_Ent) loop Type_Ent := Etype (Type_Ent); end loop; if Type_Ent = Standard_Character then Rel_Len := 256; else Rel_Len := 65536; end if; declare Result : Asis.Element_List (1 .. Rel_Len) := (others => Tmp_Template); begin for J in 1 .. Rel_Len loop Set_Character_Code (Result (J), Char_Code (J - 1)); end loop; return Result; end; end Standard_Char_Decls; ---------------------- -- Stand_Char_Image -- ---------------------- function Stand_Char_Image (Code : Char_Code) return Wide_String is function Hex_Digits (J : Natural) return Wide_String; -- converts J into Hex digits string function Hex_Digits (J : Natural) return Wide_String is Hexd : constant Wide_String := "0123456789abcdef"; begin if J > 16#FF# then return Hex_Digits (J / 256) & Hex_Digits (J mod 256); else return Hexd (J / 16 + 1) & Hexd (J mod 16 + 1); end if; end Hex_Digits; begin if Code in 16#20# .. 16#7E# then return ''' & Wide_Character'Val (Code) & '''; else return "'[""" & Hex_Digits (Natural (Code)) & """]'"; end if; end Stand_Char_Image; end A4G.Stand;
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- S E M _ E L A B -- -- -- -- B o d y -- -- -- -- $Revision$ -- -- -- Copyright (C) 1997-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 Atree; use Atree; with Checks; use Checks; with Debug; use Debug; with Einfo; use Einfo; with Elists; use Elists; with Errout; use Errout; with Exp_Util; use Exp_Util; with Expander; use Expander; with Fname; use Fname; with Lib; use Lib; with Lib.Load; use Lib.Load; with Namet; use Namet; with Nlists; use Nlists; with Nmake; use Nmake; with Opt; use Opt; with Output; use Output; with Restrict; use Restrict; with Sem; use Sem; with Sem_Cat; use Sem_Cat; with Sem_Ch7; use Sem_Ch7; with Sem_Ch8; use Sem_Ch8; with Sem_Res; use Sem_Res; with Sem_Util; use Sem_Util; with Sinfo; use Sinfo; with Sinput; use Sinput; with Snames; use Snames; with Stand; use Stand; with Table; with Tbuild; use Tbuild; with Uname; use Uname; package body Sem_Elab is -- The following table records the recursive call chain for output -- in the Output routine. Each entry records the call node and the -- entity of the called routine. The number of entries in the table -- (i.e. the value of Elab_Call.Last) indicates the current depth -- of recursion and is used to identify the outer level. type Elab_Call_Entry is record Cloc : Source_Ptr; Ent : Entity_Id; end record; package Elab_Call is new Table.Table ( Table_Component_Type => Elab_Call_Entry, Table_Index_Type => Int, Table_Low_Bound => 1, Table_Initial => 50, Table_Increment => 100, Table_Name => "Elab_Call"); -- This table is initialized at the start of each outer level call. -- It holds the entities for all subprograms that have been examined -- for this particular outer level call, and is used to prevent both -- infinite recursion, and useless reanalysis of bodies already seen package Elab_Visited is new Table.Table ( Table_Component_Type => Entity_Id, Table_Index_Type => Int, Table_Low_Bound => 1, Table_Initial => 200, Table_Increment => 100, Table_Name => "Elab_Visited"); -- This table stores calls to Check_Internal_Call that are delayed -- until all generics are instantiated, and in particular that all -- generic bodies have been inserted. We need to delay, because we -- need to be able to look through the inserted bodies. type Delay_Element is record N : Node_Id; -- The parameter N from the call to Check_Internal_Call. Note that -- this node may get rewritten over the delay period by expansion -- in the call case (but not in the instantiation case). E : Entity_Id; -- The parameter E from the call to Check_Internal_Call Orig_Ent : Entity_Id; -- The parameter Orig_Ent from the call to Check_Internal_Call Curscop : Entity_Id; -- The current scope of the call. This is restored when we complete -- the delayed call, so that we do this in the right scope. From_Elab_Code : Boolean; -- Save indication of whether this call is from elaboration code Outer_Scope : Entity_Id; -- Save scope of outer level call end record; package Delay_Check is new Table.Table ( Table_Component_Type => Delay_Element, Table_Index_Type => Int, Table_Low_Bound => 1, Table_Initial => 1000, Table_Increment => 100, Table_Name => "Delay_Check"); C_Scope : Entity_Id; -- Top level scope of current scope. We need to compute this only -- once at the outer level, i.e. for a call to Check_Elab_Call from -- outside this unit. Outer_Level_Sloc : Source_Ptr; -- Save Sloc value for outer level call node for comparisons of source -- locations. A body is too late if it appears after the *outer* level -- call, not the particular call that is being analyzed. From_Elab_Code : Boolean; -- This flag shows whether the outer level call currently being examined -- is or is not in elaboration code. We are only interested in calls to -- routines in other units if this flag is True. In_Task_Activation : Boolean := False; -- This flag indicates whether we are performing elaboration checks on -- task procedures, at the point of activation. If true, we do not trace -- internal calls in these procedures, because all local bodies are known -- to be elaborated. Delaying_Elab_Checks : Boolean := True; -- This is set True till the compilation is complete, including the -- insertion of all instance bodies. Then when Check_Elab_Calls is -- called, the delay table is used to make the delayed calls and -- this flag is reset to False, so that the calls are processed ----------------------- -- Local Subprograms -- ----------------------- -- Note: Outer_Scope in all these calls represents the scope of -- interest of the outer level call. If it is set to Standard_Standard, -- then it means the outer level call was at elaboration level, and that -- thus all calls are of interest. If it was set to some other scope, -- then the original call was an inner call, and we are not interested -- in calls that go outside this scope. procedure Check_A_Call (N : Node_Id; E : Entity_Id; Outer_Scope : Entity_Id; Inter_Unit_Only : Boolean; Generate_Warnings : Boolean := True); -- This is the internal recursive routine that is called to check for -- a possible elaboration error. The argument N is a subprogram call -- or generic instantiation to be checked, and E is the entity of -- the called subprogram, or instantiated generic unit. The flag -- Outer_Scope is the outer level scope for the original call. -- Inter_Unit_Only is set if the call is only to be checked in the -- case where it is to another unit (and skipped if within a unit). -- Generate_Warnings is set to True to suppress warning messages -- about missing pragma Elaborate_All's. These messages are not -- wanted for inner calls in the dynamic model. procedure Check_Bad_Instantiation (N : Node_Id); -- N is a node for an instantiation (if called with any other node kind, -- Check_Bad_Instantiation ignores the call). This subprogram checks for -- the special case of a generic instantiation of a generic spec in the -- same declarative part as the instantiation where a body is present and -- has not yet been seen. This is an obvious error, but needs to be checked -- specially at the time of the instantiation, since it is a case where we -- cannot insert the body anywhere. If this case is detected, warnings are -- generated, and a raise of Program_Error is inserted. In addition any -- subprograms in the generic spec are stubbed, and the Bad_Instantiation -- flag is set on the instantiation node. The caller in Sem_Ch12 uses this -- flag as an indication that no attempt should be made to insert an -- instance body. procedure Check_Internal_Call (N : Node_Id; E : Entity_Id; Outer_Scope : Entity_Id; Orig_Ent : Entity_Id); -- N is a function call or procedure statement call node and E is -- the entity of the called function, which is within the current -- compilation unit (where subunits count as part of the parent). -- This call checks if this call, or any call within any accessed -- body could cause an ABE, and if so, outputs a warning. Orig_Ent -- differs from E only in the case of renamings, and points to the -- original name of the entity. This is used for error messages. -- Outer_Scope is the outer level scope for the original call. procedure Check_Internal_Call_Continue (N : Node_Id; E : Entity_Id; Outer_Scope : Entity_Id; Orig_Ent : Entity_Id); -- The processing for Check_Internal_Call is divided up into two phases, -- and this represents the second phase. The second phase is delayed if -- Delaying_Elab_Calls is set to True. In this delayed case, the first -- phase makes an entry in the Delay_Check table, which is processed -- when Check_Elab_Calls is called. N, E and Orig_Ent are as for the call -- to Check_Internal_Call. Outer_Scope is the outer level scope for -- the original call. function Has_Generic_Body (N : Node_Id) return Boolean; -- N is a generic package instantiation node, and this routine determines -- if this package spec does in fact have a generic body. If so, then -- True is returned, otherwise False. Note that this is not at all the -- same as checking if the unit requires a body, since it deals with -- the case of optional bodies accurately (i.e. if a body is optional, -- then it looks to see if a body is actually present). Note: this -- function can only do a fully correct job if in generating code mode -- where all bodies have to be present. If we are operating in semantics -- check only mode, then in some cases of optional bodies, a result of -- False may incorrectly be given. In practice this simply means that -- some cases of warnings for incorrect order of elaboration will only -- be given when generating code, which is not a big problem (and is -- inevitable, given the optional body semantics of Ada). procedure Insert_Elab_Check (N : Node_Id; C : Node_Id := Empty); -- Given code for an elaboration check (or unconditional raise if -- the check is not needed), inserts the code in the appropriate -- place. N is the call or instantiation node for which the check -- code is required. C is the test whose failure triggers the raise. procedure Output_Calls (N : Node_Id); -- Outputs chain of calls stored in the Elab_Call table. The caller -- has already generated the main warning message, so the warnings -- generated are all continuation messages. The argument is the -- call node at which the messages are to be placed. function Same_Elaboration_Scope (Scop1, Scop2 : Entity_Id) return Boolean; -- Given two scopes, determine whether they are the same scope from an -- elaboration point of view, i.e. packages and blocks are ignored. procedure Set_C_Scope; -- On entry C_Scope is set to some scope. On return, C_Scope is reset -- to be the enclosing compilation unit of this scope. function Spec_Entity (E : Entity_Id) return Entity_Id; -- Given a compilation unit entity, if it is a spec entity, it is -- returned unchanged. If it is a body entity, then the spec for -- the corresponding spec is returned procedure Supply_Bodies (N : Node_Id); -- Given a node, N, that is either a subprogram declaration or a package -- declaration, this procedure supplies dummy bodies for the subprogram -- or for all subprograms in the package. If the given node is not one -- of these two possibilities, then Supply_Bodies does nothing. The -- dummy body is supplied by setting the subprogram to be Imported with -- convention Stubbed. procedure Supply_Bodies (L : List_Id); -- Calls Supply_Bodies for all elements of the given list L. function Within (E1, E2 : Entity_Id) return Boolean; -- Given two scopes E1 and E2, returns True if E1 is equal to E2, or -- is one of its contained scopes, False otherwise. ------------------ -- Check_A_Call -- ------------------ procedure Check_A_Call (N : Node_Id; E : Entity_Id; Outer_Scope : Entity_Id; Inter_Unit_Only : Boolean; Generate_Warnings : Boolean := True) is Loc : constant Source_Ptr := Sloc (N); Ent : Entity_Id; Decl : Node_Id; E_Scope : Entity_Id; -- Top level scope of entity for called subprogram Body_Acts_As_Spec : Boolean; -- Set to true if call is to body acting as spec (no separate spec) Inst_Case : constant Boolean := Nkind (N) in N_Generic_Instantiation; -- Indicates if we have instantiation case Caller_Unit_Internal : Boolean; Callee_Unit_Internal : Boolean; Inst_Caller : Source_Ptr; Inst_Callee : Source_Ptr; Unit_Caller : Unit_Number_Type; Unit_Callee : Unit_Number_Type; Cunit_SW : Boolean := False; -- Set to suppress warnings for case of external reference where -- one of the enclosing scopes has the Suppress_Elaboration_Warnings -- flag set. For the internal case, we ignore this flag. Cunit_SC : Boolean := False; -- Set to suppress dynamic elaboration checks where one of the -- enclosing scopes has Suppress_Elaboration_Checks set. For -- the internal case, we ignore this flag. begin -- Go to parent for derived subprogram, or to original subprogram -- in the case of a renaming (Alias covers both these cases) Ent := E; loop if Suppress_Elaboration_Warnings (Ent) then return; end if; -- Nothing to do for imported entities, if Is_Imported (Ent) then return; end if; exit when Inst_Case or else No (Alias (Ent)); Ent := Alias (Ent); end loop; Decl := Unit_Declaration_Node (Ent); if Nkind (Decl) = N_Subprogram_Body then Body_Acts_As_Spec := True; elsif Nkind (Decl) = N_Subprogram_Declaration or else Nkind (Decl) = N_Subprogram_Body_Stub or else Inst_Case then Body_Acts_As_Spec := False; -- If we have none of an instantiation, subprogram body or -- subprogram declaration, then it is not a case that we want -- to check. (One case is a call to a generic formal subprogram, -- where we do not want the check in the template). else return; end if; E_Scope := Ent; loop if Suppress_Elaboration_Warnings (E_Scope) then Cunit_SW := True; end if; if Suppress_Elaboration_Checks (E_Scope) then Cunit_SC := True; end if; -- Exit when we get to compilation unit, not counting subunits exit when Is_Compilation_Unit (E_Scope) and then (Is_Child_Unit (E_Scope) or else Scope (E_Scope) = Standard_Standard); -- If we did not find a compilation unit, other than standard, -- then nothing to check (happens in some instantiation cases) if E_Scope = Standard_Standard then return; -- Otherwise move up a scope looking for compilation unit else E_Scope := Scope (E_Scope); end if; end loop; -- No checks needed for pure or preelaborated compilation units if Is_Pure (E_Scope) or else Is_Preelaborated (E_Scope) then return; end if; -- If the generic entity is within a deeper instance than we are, then -- either the instantiation to which we refer itself caused an ABE, in -- which case that will be handled separately. Otherwise, we know that -- the body we need appears as needed at the point of the instantiation. -- However, this assumption is only valid if we are in static mode. if not Dynamic_Elaboration_Checks and then Instantiation_Depth (Sloc (Ent)) > Instantiation_Depth (Sloc (N)) then return; end if; -- Do not give a warning for a package with no body if Ekind (Ent) = E_Generic_Package and then not Has_Generic_Body (N) then return; end if; -- Case of entity is not in current unit (i.e. with'ed unit case) if E_Scope /= C_Scope then -- We are only interested in such calls if the outer call was from -- elaboration code, or if we are in Dynamic_Elaboration_Checks mode. if not From_Elab_Code and then not Dynamic_Elaboration_Checks then return; end if; -- Nothing to do if some scope said to ignore warnings if Cunit_SW then return; end if; -- Nothing to do for a generic instance, because in this case -- the checking was at the point of instantiation of the generic -- However, this shortcut is only applicable in static mode. if Is_Generic_Instance (Ent) and not Dynamic_Elaboration_Checks then return; end if; -- Nothing to do if subprogram with no separate spec if Body_Acts_As_Spec then return; end if; -- Check cases of internal units Callee_Unit_Internal := Is_Internal_File_Name (Unit_File_Name (Get_Source_Unit (E_Scope))); -- Do not give a warning if the with'ed unit is internal -- and this is the generic instantiation case (this saves a -- lot of hassle dealing with the Text_IO special child units) if Callee_Unit_Internal and Inst_Case then return; end if; if C_Scope = Standard_Standard then Caller_Unit_Internal := False; else Caller_Unit_Internal := Is_Internal_File_Name (Unit_File_Name (Get_Source_Unit (C_Scope))); end if; -- Do not give a warning if the with'ed unit is internal -- and the caller is not internal (since the binder always -- elaborates internal units first). if Callee_Unit_Internal and (not Caller_Unit_Internal) then return; end if; -- For now, if debug flag -gnatdE is not set, do no checking for -- one internal unit withing another. This fixes the problem with -- the sgi build and storage errors. To be resolved later ??? if (Callee_Unit_Internal and Caller_Unit_Internal) and then not Debug_Flag_EE then return; end if; Ent := E; -- If the call is in an instance, and the called entity is not -- defined in the same instance, then the elaboration issue -- focuses around the unit containing the template, it is -- this unit which requires an Elaborate_All. -- However, if we are doing dynamic elaboration, we need to -- chase the call in the usual manner. -- We do not handle the case of calling a generic formal correctly -- in the static case. See test 4703-004 to explore this gap ??? Inst_Caller := Instantiation (Get_Source_File_Index (Sloc (N))); Inst_Callee := Instantiation (Get_Source_File_Index (Sloc (Ent))); if Inst_Caller = No_Location then Unit_Caller := No_Unit; else Unit_Caller := Get_Source_Unit (N); end if; if Inst_Callee = No_Location then Unit_Callee := No_Unit; else Unit_Callee := Get_Source_Unit (Ent); end if; if Unit_Caller /= No_Unit and then Unit_Callee /= Unit_Caller and then Unit_Callee /= No_Unit and then not Dynamic_Elaboration_Checks then E_Scope := Spec_Entity (Cunit_Entity (Unit_Caller)); -- If we don't get a spec entity, just ignore call. Not -- quite clear why this check is necessary. if No (E_Scope) then return; end if; -- Otherwise step to enclosing compilation unit while not Is_Compilation_Unit (E_Scope) loop E_Scope := Scope (E_Scope); end loop; -- For the case of not in an instance, or call within instance -- We recompute E_Scope for the error message, since we -- do NOT want to go to the unit which has the ultimate -- declaration in the case of renaming and derivation and -- we also want to go to the generic unit in the case of -- an instance, and no further. else -- Loop to carefully follow renamings and derivations -- one step outside the current unit, but not further. if not Inst_Case and then Present (Alias (Ent)) then E_Scope := Alias (Ent); else E_Scope := Ent; end if; loop while not Is_Compilation_Unit (E_Scope) loop E_Scope := Scope (E_Scope); end loop; -- If E_Scope is the same as C_Scope, it means that there -- definitely was a local renaming or derivation, and we -- are not yet out of the current unit. exit when E_Scope /= C_Scope; Ent := Alias (Ent); E_Scope := Ent; end loop; end if; if not Suppress_Elaboration_Warnings (Ent) and then not Suppress_Elaboration_Warnings (E_Scope) and then Elab_Warnings and then Generate_Warnings then Warn_On_Instance := True; if Inst_Case then Error_Msg_NE ("instantiation of& may raise Program_Error?", N, Ent); else Error_Msg_NE ("call to & may raise Program_Error?", N, Ent); end if; Error_Msg_Qual_Level := Nat'Last; Error_Msg_NE ("\missing pragma Elaborate_All for&?", N, E_Scope); Error_Msg_Qual_Level := 0; Output_Calls (N); Warn_On_Instance := False; -- Set flag to prevent further warnings for same unit -- unless in All_Errors_Mode. if not All_Errors_Mode and not Dynamic_Elaboration_Checks then Set_Suppress_Elaboration_Warnings (E_Scope); end if; end if; -- Check for runtime elaboration check required if Dynamic_Elaboration_Checks then if not Elaboration_Checks_Suppressed (Ent) and then not Suppress_Elaboration_Checks (E_Scope) and then not Cunit_SC then -- Runtime elaboration check required. generate check of the -- elaboration Boolean for the unit containing the entity. Insert_Elab_Check (N, Make_Attribute_Reference (Loc, Attribute_Name => Name_Elaborated, Prefix => New_Occurrence_Of (Spec_Entity (E_Scope), Loc))); end if; -- If no dynamic check required, then ask binder to guarantee -- that the necessary elaborations will be done properly! else if not Suppress_Elaboration_Warnings (E) and then not Suppress_Elaboration_Warnings (E_Scope) and then Elab_Warnings and then Generate_Warnings and then not Inst_Case then Error_Msg_Node_2 := E_Scope; Error_Msg_NE ("call to& in elaboration code " & "requires pragma Elaborate_All on&?", N, E); end if; Set_Elaborate_All_Desirable (E_Scope); Set_Suppress_Elaboration_Warnings (E_Scope); end if; -- Case of entity is in same unit as call or instantiation elsif not Inter_Unit_Only then Check_Internal_Call (N, Ent, Outer_Scope, E); end if; end Check_A_Call; ----------------------------- -- Check_Bad_Instantiation -- ----------------------------- procedure Check_Bad_Instantiation (N : Node_Id) is Nam : Node_Id; Ent : Entity_Id; begin -- Nothing to do if we do not have an instantiation (happens in some -- error cases, and also in the formal package declaration case) if Nkind (N) not in N_Generic_Instantiation then return; -- Nothing to do if errors already detected (avoid cascaded errors) elsif Errors_Detected /= 0 then return; -- Nothing to do if not in full analysis mode elsif not Full_Analysis then return; -- Nothing to do if inside a generic template elsif Inside_A_Generic then return; -- Nothing to do if a library level instantiation elsif Nkind (Parent (N)) = N_Compilation_Unit then return; -- Nothing to do if we are compiling a proper body for semantic -- purposes only. The generic body may be in another proper body. elsif Nkind (Parent (Unit_Declaration_Node (Main_Unit_Entity))) = N_Subunit then return; end if; Nam := Name (N); Ent := Entity (Nam); -- The case we are interested in is when the generic spec is in the -- current declarative part if not Same_Elaboration_Scope (Current_Scope, Scope (Ent)) or else not In_Same_Extended_Unit (Sloc (N), Sloc (Ent)) then return; end if; -- If the generic entity is within a deeper instance than we are, then -- either the instantiation to which we refer itself caused an ABE, in -- which case that will be handled separately. Otherwise, we know that -- the body we need appears as needed at the point of the instantiation. -- If they are both at the same level but not within the same instance -- then the body of the generic will be in the earlier instance. declare D1 : constant Int := Instantiation_Depth (Sloc (Ent)); D2 : constant Int := Instantiation_Depth (Sloc (N)); begin if D1 > D2 then return; elsif D1 = D2 and then Is_Generic_Instance (Scope (Ent)) and then not In_Open_Scopes (Scope (Ent)) then return; end if; end; -- Now we can proceed, if the entity being called has a completion, -- then we are definitely OK, since we have already seen the body. if Has_Completion (Ent) then return; end if; -- If there is no body, then nothing to do if not Has_Generic_Body (N) then return; end if; -- Here we definitely have a bad instantiation Error_Msg_NE ("?cannot instantiate& before body seen", N, Ent); if Present (Instance_Spec (N)) then Supply_Bodies (Instance_Spec (N)); end if; Error_Msg_N ("\?Program_Error will be raised at run time", N); Insert_Elab_Check (N); Set_ABE_Is_Certain (N); end Check_Bad_Instantiation; --------------------- -- Check_Elab_Call -- --------------------- procedure Check_Elab_Call (N : Node_Id; Outer_Scope : Entity_Id := Empty) is Nam : Node_Id; Ent : Entity_Id; P : Node_Id; begin -- For an entry call, check relevant restriction if Nkind (N) = N_Entry_Call_Statement and then not In_Subprogram_Or_Concurrent_Unit then Check_Restriction (No_Entry_Calls_In_Elaboration_Code, N); -- Nothing to do if this is not a call (happens in some error -- conditions, and in some cases where rewriting occurs). elsif Nkind (N) /= N_Function_Call and then Nkind (N) /= N_Procedure_Call_Statement then return; -- Nothing to do if this is a call already rewritten for elab checking. elsif Nkind (Parent (N)) = N_Conditional_Expression then return; -- Nothing to do if inside a generic template elsif Inside_A_Generic and then not Present (Enclosing_Generic_Body (N)) then return; end if; -- Here we have a call at elaboration time which must be checked if Debug_Flag_LL then Write_Str (" Check_Elab_Call: "); if No (Name (N)) or else not Is_Entity_Name (Name (N)) then Write_Str ("<<not entity name>> "); else Write_Name (Chars (Entity (Name (N)))); end if; Write_Str (" call at "); Write_Location (Sloc (N)); Write_Eol; end if; -- Climb up the tree to make sure we are not inside a -- default expression of a parameter specification or -- a record component, since in both these cases, we -- will be doing the actual call later, not now, and it -- is at the time of the actual call (statically speaking) -- that we must do our static check, not at the time of -- its initial analysis). P := Parent (N); while Present (P) loop if Nkind (P) = N_Parameter_Specification or else Nkind (P) = N_Component_Declaration then return; else P := Parent (P); end if; end loop; -- Stuff that happens only at the outer level if No (Outer_Scope) then Elab_Visited.Set_Last (0); -- Nothing to do if current scope is Standard (this is a bit -- odd, but it happens in the case of generic instantiations). C_Scope := Current_Scope; if C_Scope = Standard_Standard then return; end if; -- First case, we are in elaboration code From_Elab_Code := not In_Subprogram_Or_Concurrent_Unit; if From_Elab_Code then -- Complain if call that comes from source in preelaborated -- unit and we are not inside a subprogram (i.e. we are in -- elab code) if Comes_From_Source (N) and then In_Preelaborated_Unit then Error_Msg_N ("non-static call not allowed in preelaborated unit", N); return; end if; -- Second case, we are inside a subprogram or concurrent unit -- i.e, we are not in elaboration code. else -- In this case, the issue is whether we are inside the -- declarative part of the unit in which we live, or inside -- its statements. In the latter case, there is no issue of -- ABE calls at this level (a call from outside to the unit -- in which we live might cause an ABE, but that will be -- detected when we analyze that outer level call, as it -- recurses into the called unit). -- Climb up the tree, doing this test, and also testing -- for being inside a default expression, which, as -- discussed above, is not checked at this stage. declare P : Node_Id; L : List_Id; begin P := N; loop -- If we find a parentless subtree, it seems safe to -- assume that we are not in a declarative part and -- that no checking is required. if No (P) then return; end if; if Is_List_Member (P) then L := List_Containing (P); P := Parent (L); else L := No_List; P := Parent (P); end if; exit when Nkind (P) = N_Subunit; -- Filter out case of default expressions, where -- we do not do the check at this stage. if Nkind (P) = N_Parameter_Specification or else Nkind (P) = N_Component_Declaration then return; end if; if Nkind (P) = N_Subprogram_Body or else Nkind (P) = N_Protected_Body or else Nkind (P) = N_Task_Body or else Nkind (P) = N_Block_Statement then if L = Declarations (P) then exit; -- We are not in elaboration code, but we are doing -- dynamic elaboration checks, in this case, we still -- need to do the call, since the subprogram we are in -- could be called from another unit, also in dynamic -- elaboration check mode, at elaboration time. elsif Dynamic_Elaboration_Checks then -- This is a rather new check, going into version -- 3.14a1 for the first time (V1.80 of this unit), -- so we provide a debug flag to enable it. That -- way we have an easy work around for regressions -- that are caused by this new check. This debug -- flag can be removed later. if Debug_Flag_DD then return; end if; -- Do the check in this case exit; -- Static model, call is not in elaboration code, we -- never need to worry, because in the static model -- the top level caller always takes care of things. else return; end if; end if; end loop; end; end if; end if; -- Retrieve called entity. If this is a call to a protected subprogram, -- the entity is a selected component. -- The callable entity may be absent, in which case there is nothing -- to do. This happens with non-analyzed calls in nested generics. Nam := Name (N); if No (Nam) then return; elsif Nkind (Nam) = N_Selected_Component then Ent := Entity (Selector_Name (Nam)); elsif not Is_Entity_Name (Nam) then return; else Ent := Entity (Nam); end if; if No (Ent) then return; end if; -- Nothing to do if this is a recursive call (i.e. a call to -- an entity that is already in the Elab_Call stack) for J in 1 .. Elab_Visited.Last loop if Ent = Elab_Visited.Table (J) then return; end if; end loop; -- See if we need to analyze this call. We analyze it if either of -- the following conditions is met: -- It is an inner level call (since in this case it was triggered -- by an outer level call from elaboration code), but only if the -- call is within the scope of the original outer level call. -- It is an outer level call from elaboration code, or the called -- entity is in the same elaboration scope. -- And in these cases, we will check both inter-unit calls and -- intra-unit (within a single unit) calls. C_Scope := Current_Scope; -- If not outer level call, then we follow it if it is within -- the original scope of the outer call. if Present (Outer_Scope) and then Within (Scope (Ent), Outer_Scope) then Set_C_Scope; Check_A_Call (N, Ent, Outer_Scope, Inter_Unit_Only => False); elsif Elaboration_Checks_Suppressed (Current_Scope) then null; elsif From_Elab_Code then Set_C_Scope; Check_A_Call (N, Ent, Standard_Standard, Inter_Unit_Only => False); elsif Same_Elaboration_Scope (C_Scope, Scope (Ent)) then Set_C_Scope; Check_A_Call (N, Ent, Scope (Ent), Inter_Unit_Only => False); -- If none of those cases holds, but Dynamic_Elaboration_Checks mode -- is set, then we will do the check, but only in the inter-unit case -- (this is to accommodate unguarded elaboration calls from other units -- in which this same mode is set). We don't want warnings in this case, -- it would generate warnings having nothing to do with elaboration. elsif Dynamic_Elaboration_Checks then Set_C_Scope; Check_A_Call (N, Ent, Standard_Standard, Inter_Unit_Only => True, Generate_Warnings => False); else return; end if; end Check_Elab_Call; ---------------------- -- Check_Elab_Calls -- ---------------------- procedure Check_Elab_Calls is begin -- If expansion is disabled, do not generate any checks. Also -- skip checks if any subunits are missing because in either -- case we lack the full information that we need, and no object -- file will be created in any case. if not Expander_Active or else Subunits_Missing then return; end if; -- Skip delayed calls if we had any errors if Errors_Detected = 0 then Delaying_Elab_Checks := False; Expander_Mode_Save_And_Set (True); for J in Delay_Check.First .. Delay_Check.Last loop New_Scope (Delay_Check.Table (J).Curscop); From_Elab_Code := Delay_Check.Table (J).From_Elab_Code; Check_Internal_Call_Continue ( N => Delay_Check.Table (J).N, E => Delay_Check.Table (J).E, Outer_Scope => Delay_Check.Table (J).Outer_Scope, Orig_Ent => Delay_Check.Table (J).Orig_Ent); Pop_Scope; end loop; -- Set Delaying_Elab_Checks back on for next main compilation Expander_Mode_Restore; Delaying_Elab_Checks := True; end if; end Check_Elab_Calls; ------------------------------ -- Check_Elab_Instantiation -- ------------------------------ procedure Check_Elab_Instantiation (N : Node_Id; Outer_Scope : Entity_Id := Empty) is Nam : Node_Id; Ent : Entity_Id; begin -- Check for and deal with bad instantiation case. There is some -- duplicated code here, but we will worry about this later ??? Check_Bad_Instantiation (N); if ABE_Is_Certain (N) then return; end if; -- Nothing to do if we do not have an instantiation (happens in some -- error cases, and also in the formal package declaration case) if Nkind (N) not in N_Generic_Instantiation then return; end if; -- Nothing to do if inside a generic template if Inside_A_Generic then return; end if; Nam := Name (N); Ent := Entity (Nam); From_Elab_Code := not In_Subprogram_Or_Concurrent_Unit; -- See if we need to analyze this instantiation. We analyze it if -- either of the following conditions is met: -- It is an inner level instantiation (since in this case it was -- triggered by an outer level call from elaboration code), but -- only if the instantiation is within the scope of the original -- outer level call. -- It is an outer level instantiation from elaboration code, or the -- instantiated entity is in the same elaboratoin scope. -- And in these cases, we will check both the inter-unit case and -- the intra-unit (within a single unit) case. C_Scope := Current_Scope; if Present (Outer_Scope) and then Within (Scope (Ent), Outer_Scope) then Set_C_Scope; Check_A_Call (N, Ent, Outer_Scope, Inter_Unit_Only => False); elsif From_Elab_Code then Set_C_Scope; Check_A_Call (N, Ent, Standard_Standard, Inter_Unit_Only => False); elsif Same_Elaboration_Scope (C_Scope, Scope (Ent)) then Set_C_Scope; Check_A_Call (N, Ent, Scope (Ent), Inter_Unit_Only => False); -- If none of those cases holds, but Dynamic_Elaboration_Checks mode -- is set, then we will do the check, but only in the inter-unit case -- (this is to accommodate unguarded elaboration calls from other units -- in which this same mode is set). We inhibit warnings in this case, -- since this instantiation is not occurring in elaboration code. elsif Dynamic_Elaboration_Checks then Set_C_Scope; Check_A_Call (N, Ent, Standard_Standard, Inter_Unit_Only => True, Generate_Warnings => False); else return; end if; end Check_Elab_Instantiation; ------------------------- -- Check_Internal_Call -- ------------------------- procedure Check_Internal_Call (N : Node_Id; E : Entity_Id; Outer_Scope : Entity_Id; Orig_Ent : Entity_Id) is Inst_Case : constant Boolean := Nkind (N) in N_Generic_Instantiation; begin -- If not function or procedure call or instantiation, then ignore -- call (this happens in some error case and rewriting cases) if Nkind (N) /= N_Function_Call and then Nkind (N) /= N_Procedure_Call_Statement and then not Inst_Case then return; -- Nothing to do if this is a call or instantiation that has -- already been found to be a sure ABE elsif ABE_Is_Certain (N) then return; -- Nothing to do if errors already detected (avoid cascaded errors) elsif Errors_Detected /= 0 then return; -- Nothing to do if not in full analysis mode elsif not Full_Analysis then return; -- Nothing to do if within a default expression, since the call -- is not actualy being made at this time. elsif In_Default_Expression then return; -- Nothing to do for call to intrinsic subprogram elsif Is_Intrinsic_Subprogram (E) then return; -- No need to trace local calls if checking task activation, because -- other local bodies are elaborated already. elsif In_Task_Activation then return; end if; -- Delay this call if we are still delaying calls if Delaying_Elab_Checks then Delay_Check.Increment_Last; Delay_Check.Table (Delay_Check.Last) := (N => N, E => E, Orig_Ent => Orig_Ent, Curscop => Current_Scope, Outer_Scope => Outer_Scope, From_Elab_Code => From_Elab_Code); return; -- Otherwise, call phase 2 continuation right now else Check_Internal_Call_Continue (N, E, Outer_Scope, Orig_Ent); end if; end Check_Internal_Call; ---------------------------------- -- Check_Internal_Call_Continue -- ---------------------------------- procedure Check_Internal_Call_Continue (N : Node_Id; E : Entity_Id; Outer_Scope : Entity_Id; Orig_Ent : Entity_Id) is Loc : constant Source_Ptr := Sloc (N); Inst_Case : constant Boolean := Is_Generic_Unit (E); Sbody : Node_Id; Ebody : Entity_Id; function Process (N : Node_Id) return Traverse_Result; -- Function applied to each node as we traverse the body. -- Checks for call that needs checking, and if so checks -- it. Always returns OK, so entire tree is traversed. function Process (N : Node_Id) return Traverse_Result is begin -- If user has specified that there are no entry calls in elaboration -- code, do not trace past an accept statement, because the rendez- -- vous will happen after elaboration. if (Nkind (Original_Node (N)) = N_Accept_Statement or else Nkind (Original_Node (N)) = N_Selective_Accept) and then Restrictions (No_Entry_Calls_In_Elaboration_Code) then return Abandon; -- If we have a subprogram call, check it elsif Nkind (N) = N_Function_Call or else Nkind (N) = N_Procedure_Call_Statement then Check_Elab_Call (N, Outer_Scope); return OK; -- If we have a generic instantiation, check it elsif Nkind (N) in N_Generic_Instantiation then Check_Elab_Instantiation (N, Outer_Scope); return OK; -- Skip subprogram bodies that come from source (wait for -- call to analyze these). The reason for the come from -- source test is to avoid catching task bodies. -- For task bodies, we should really avoid these too, waiting -- for the task activation, but that's too much trouble to -- catch for now, so we go in unconditionally. This is not -- so terrible, it means the error backtrace is not quite -- complete, and we are too eager to scan bodies of tasks -- that are unused, but this is hardly very significant! elsif Nkind (N) = N_Subprogram_Body and then Comes_From_Source (N) then return Skip; else return OK; end if; end Process; procedure Traverse is new Atree.Traverse_Proc; -- Traverse procedure using above Process function -- Start of processing for Check_Internal_Call_Continue begin -- Save outer level call if at outer level if Elab_Call.Last = 0 then Outer_Level_Sloc := Loc; end if; Elab_Visited.Increment_Last; Elab_Visited.Table (Elab_Visited.Last) := E; -- If the call is to a function that renames a literal, no check -- is needed. if Ekind (E) = E_Enumeration_Literal then return; end if; Sbody := Unit_Declaration_Node (E); if Nkind (Sbody) /= N_Subprogram_Body and then Nkind (Sbody) /= N_Package_Body then Ebody := Corresponding_Body (Sbody); if No (Ebody) then return; else Sbody := Unit_Declaration_Node (Ebody); end if; end if; -- If the body appears after the outer level call or -- instantiation then we have an error case handled below. if Earlier_In_Extended_Unit (Outer_Level_Sloc, Sloc (Sbody)) and then not In_Task_Activation then null; -- If we have the instantiation case we are done, since we now -- know that the body of the generic appeared earlier. elsif Inst_Case then return; -- Otherwise we have a call, so we trace through the called -- body to see if it has any problems .. else pragma Assert (Nkind (Sbody) = N_Subprogram_Body); Elab_Call.Increment_Last; Elab_Call.Table (Elab_Call.Last).Cloc := Loc; Elab_Call.Table (Elab_Call.Last).Ent := E; if Debug_Flag_LL then Write_Str ("Elab_Call.Last = "); Write_Int (Int (Elab_Call.Last)); Write_Str (" Ent = "); Write_Name (Chars (E)); Write_Str (" at "); Write_Location (Sloc (N)); Write_Eol; end if; -- Now traverse declarations and statements of subprogram body. -- Note that we cannot simply Traverse (Sbody), since traverse -- does not normally visit subprogram bodies. declare Decl : Node_Id := First (Declarations (Sbody)); begin while Present (Decl) loop Traverse (Decl); Next (Decl); end loop; end; Traverse (Handled_Statement_Sequence (Sbody)); Elab_Call.Decrement_Last; return; end if; -- Here is the case of calling a subprogram where the body has -- not yet been encountered, a warning message is needed. Warn_On_Instance := True; -- If we have nothing in the call stack, then this is at the -- outer level, and the ABE is bound to occur. if Elab_Call.Last = 0 then if Inst_Case then Error_Msg_NE ("?cannot instantiate& before body seen", N, Orig_Ent); else Error_Msg_NE ("?cannot call& before body seen", N, Orig_Ent); end if; Error_Msg_N ("\?Program_Error will be raised at run time", N); Insert_Elab_Check (N); -- Call is not at outer level else -- Deal with dynamic elaboration check if not Elaboration_Checks_Suppressed (E) then Set_Elaboration_Entity_Required (E); -- Case of no elaboration entity allocated yet if No (Elaboration_Entity (E)) then -- Create object declaration for elaboration entity, and put it -- just in front of the spec of the subprogram or generic unit, -- in the same scope as this unit. declare Loce : constant Source_Ptr := Sloc (E); Ent : constant Entity_Id := Make_Defining_Identifier (Loc, Chars => New_External_Name (Chars (E), 'E')); begin Set_Elaboration_Entity (E, Ent); New_Scope (Scope (E)); Insert_Action (Declaration_Node (E), Make_Object_Declaration (Loce, Defining_Identifier => Ent, Object_Definition => New_Occurrence_Of (Standard_Boolean, Loce), Expression => New_Occurrence_Of (Standard_False, Loce))); -- Set elaboration flag at the point of the body Set_Elaboration_Flag (Sbody, E); Pop_Scope; end; end if; -- Generate check of the elaboration Boolean Insert_Elab_Check (N, New_Occurrence_Of (Elaboration_Entity (E), Loc)); end if; -- Generate the warning if not Suppress_Elaboration_Warnings (E) then if Inst_Case then Error_Msg_NE ("instantiation of& may occur before body is seen?", N, Orig_Ent); else Error_Msg_NE ("call to& may occur before body is seen?", N, Orig_Ent); end if; Error_Msg_N ("\Program_Error may be raised at run time?", N); Output_Calls (N); end if; end if; Warn_On_Instance := False; -- Set flag to suppress further warnings on same subprogram -- unless in all errors mode if not All_Errors_Mode then Set_Suppress_Elaboration_Warnings (E); end if; end Check_Internal_Call_Continue; ---------------------------- -- Check_Task_Activation -- ---------------------------- procedure Check_Task_Activation (N : Node_Id) is Loc : constant Source_Ptr := Sloc (N); Ent : Entity_Id; P : Entity_Id; Task_Scope : Entity_Id; Cunit_SC : Boolean := False; Decl : Node_Id; Elmt : Elmt_Id; Inter_Procs : Elist_Id := New_Elmt_List; Intra_Procs : Elist_Id := New_Elmt_List; Enclosing : Entity_Id; procedure Add_Task_Proc (Typ : Entity_Id); -- Add to Task_Procs the task body procedure(s) of task types in Typ. -- For record types, this procedure recurses over component types. procedure Collect_Tasks (Decls : List_Id); -- Collect the types of the tasks that are to be activated in the given -- list of declarations, in order to perform elaboration checks on the -- corresponding task procedures which are called implicitly here. function Outer_Unit (E : Entity_Id) return Entity_Id; -- find enclosing compilation unit of Entity, ignoring subunits, or -- else enclosing subprogram. If E is not a package, there is no need -- for inter-unit elaboration checks. ------------------- -- Add_Task_Proc -- ------------------- procedure Add_Task_Proc (Typ : Entity_Id) is Comp : Entity_Id; Proc : Entity_Id := Empty; begin if Is_Task_Type (Typ) then Proc := Get_Task_Body_Procedure (Typ); elsif Is_Array_Type (Typ) and then Has_Task (Base_Type (Typ)) then Add_Task_Proc (Component_Type (Typ)); elsif Is_Record_Type (Typ) and then Has_Task (Base_Type (Typ)) then Comp := First_Component (Typ); while Present (Comp) loop Add_Task_Proc (Etype (Comp)); Comp := Next_Component (Comp); end loop; end if; -- If the task type is another unit, we will perform the usual -- elaboration check on its enclosing unit. If the type is in the -- same unit, we can trace the task body as for an internal call, -- but we only need to examine other external calls, because at -- the point the task is activated, internal subprogram bodies -- will have been elaborated already. We keep separate lists for -- each kind of task. if Present (Proc) then if Outer_Unit (Scope (Proc)) = Enclosing then if No (Corresponding_Body (Unit_Declaration_Node (Proc))) and then (not Is_Generic_Instance (Scope (Proc)) or else Scope (Proc) = Scope (Defining_Identifier (Decl))) then Error_Msg_N ("task will be activated before elaboration of its body?", Decl); Error_Msg_N ("Program_Error will be raised at run-time?", Decl); elsif Present (Corresponding_Body (Unit_Declaration_Node (Proc))) then Append_Elmt (Proc, Intra_Procs); end if; else Elmt := First_Elmt (Inter_Procs); -- No need for multiple entries of the same type. while Present (Elmt) loop if Node (Elmt) = Proc then return; end if; Next_Elmt (Elmt); end loop; Append_Elmt (Proc, Inter_Procs); end if; end if; end Add_Task_Proc; ------------------- -- Collect_Tasks -- ------------------- procedure Collect_Tasks (Decls : List_Id) is begin if Present (Decls) then Decl := First (Decls); while Present (Decl) loop if Nkind (Decl) = N_Object_Declaration and then Has_Task (Etype (Defining_Identifier (Decl))) then Add_Task_Proc (Etype (Defining_Identifier (Decl))); end if; Next (Decl); end loop; end if; end Collect_Tasks; ---------------- -- Outer_Unit -- ---------------- function Outer_Unit (E : Entity_Id) return Entity_Id is Outer : Entity_Id := E; begin while Present (Outer) loop if Suppress_Elaboration_Checks (Outer) then Cunit_SC := True; end if; exit when Is_Child_Unit (Outer) or else Scope (Outer) = Standard_Standard or else Ekind (Outer) /= E_Package; Outer := Scope (Outer); end loop; return Outer; end Outer_Unit; -- Start of processing for Check_Task_Activation begin Enclosing := Outer_Unit (Current_Scope); -- Find all tasks declared in the current unit. if Nkind (N) = N_Package_Body then P := Unit_Declaration_Node (Corresponding_Spec (N)); Collect_Tasks (Declarations (N)); Collect_Tasks (Visible_Declarations (Specification (P))); Collect_Tasks (Private_Declarations (Specification (P))); elsif Nkind (N) = N_Package_Declaration then Collect_Tasks (Visible_Declarations (Specification (N))); Collect_Tasks (Private_Declarations (Specification (N))); else Collect_Tasks (Declarations (N)); end if; -- We only perform detailed checks in all tasks are library level -- entities. If the master is a subprogram or task, activation will -- depend on the activation of the master itself. -- Should dynamic checks be added in the more general case??? if Ekind (Enclosing) /= E_Package then return; end if; -- For task types defined in other units, we want the unit containing -- the task body to be elaborated before the current one. Elmt := First_Elmt (Inter_Procs); while Present (Elmt) loop Ent := Node (Elmt); Task_Scope := Outer_Unit (Scope (Ent)); if not Is_Compilation_Unit (Task_Scope) then null; elsif Suppress_Elaboration_Warnings (Task_Scope) then null; elsif Dynamic_Elaboration_Checks then if not Elaboration_Checks_Suppressed (Ent) and then not Cunit_SC and then not Restrictions (No_Entry_Calls_In_Elaboration_Code) then -- Runtime elaboration check required. generate check of the -- elaboration Boolean for the unit containing the entity. Insert_Elab_Check (N, Make_Attribute_Reference (Loc, Attribute_Name => Name_Elaborated, Prefix => New_Occurrence_Of (Spec_Entity (Task_Scope), Loc))); end if; else -- Force the binder to elaborate other unit first. if not Suppress_Elaboration_Warnings (Ent) and then Elab_Warnings and then not Suppress_Elaboration_Warnings (Task_Scope) then Error_Msg_Node_2 := Task_Scope; Error_Msg_NE ("activation of an instance of task type&" & " requires pragma Elaborate_All on &?", N, Ent); end if; Set_Elaborate_All_Desirable (Task_Scope); Set_Suppress_Elaboration_Warnings (Task_Scope); end if; Next_Elmt (Elmt); end loop; -- For tasks declared in the current unit, trace other calls within -- the task procedure bodies, which are available. In_Task_Activation := True; Elmt := First_Elmt (Intra_Procs); while Present (Elmt) loop Ent := Node (Elmt); Check_Internal_Call_Continue (N, Ent, Enclosing, Ent); Next_Elmt (Elmt); end loop; In_Task_Activation := False; end Check_Task_Activation; ---------------------- -- Has_Generic_Body -- ---------------------- function Has_Generic_Body (N : Node_Id) return Boolean is Ent : constant Entity_Id := Entity (Name (N)); Decl : constant Node_Id := Unit_Declaration_Node (Ent); Scop : Entity_Id; function Find_Body_In (E : Entity_Id; N : Node_Id) return Node_Id; -- Determine if the list of nodes headed by N and linked by Next -- contains a package body for the package spec entity E, and if -- so return the package body. If not, then returns Empty. function Load_Package_Body (Nam : Unit_Name_Type) return Node_Id; -- This procedure is called load the unit whose name is given by Nam. -- This unit is being loaded to see whether it contains an optional -- generic body. The returned value is the loaded unit, which is -- always a package body (only package bodies can contain other -- entities in the sense in which Has_Generic_Body is interested). -- We only attempt to load bodies if we are generating code. If we -- are in semantics check only mode, then it would be wrong to load -- bodies that are not required from a semantic point of view, so -- in this case we return Empty. The result is that the caller may -- incorrectly decide that a generic spec does not have a body when -- in fact it does, but the only harm in this is that some warnings -- on elaboration problems may be lost in semantic checks only mode, -- which is not big loss. We also return Empty if we go for a body -- and it is not there. function Locate_Corresponding_Body (PE : Entity_Id) return Node_Id; -- PE is the entity for a package spec. This function locates the -- corresponding package body, returning Empty if none is found. -- The package body returned is fully parsed but may not yet be -- analyzed, so only syntactic fields should be referenced. ------------------ -- Find_Body_In -- ------------------ function Find_Body_In (E : Entity_Id; N : Node_Id) return Node_Id is Nod : Node_Id; begin Nod := N; while Present (Nod) loop -- If we found the package body we are looking for, return it if Nkind (Nod) = N_Package_Body and then Chars (Defining_Unit_Name (Nod)) = Chars (E) then return Nod; -- If we found the stub for the body, go after the subunit, -- loading it if necessary. elsif Nkind (Nod) = N_Package_Body_Stub and then Chars (Defining_Identifier (Nod)) = Chars (E) then if Present (Library_Unit (Nod)) then return Unit (Library_Unit (Nod)); else return Load_Package_Body (Get_Unit_Name (Nod)); end if; -- If neither package body nor stub, keep looking on chain else Next (Nod); end if; end loop; return Empty; end Find_Body_In; ----------------------- -- Load_Package_Body -- ----------------------- function Load_Package_Body (Nam : Unit_Name_Type) return Node_Id is U : Unit_Number_Type; begin if Operating_Mode /= Generate_Code then return Empty; else U := Load_Unit (Load_Name => Nam, Required => False, Subunit => False, Error_Node => N); if U = No_Unit then return Empty; else return Unit (Cunit (U)); end if; end if; end Load_Package_Body; ------------------------------- -- Locate_Corresponding_Body -- ------------------------------- function Locate_Corresponding_Body (PE : Entity_Id) return Node_Id is Spec : constant Node_Id := Declaration_Node (PE); Decl : constant Node_Id := Parent (Spec); Scop : constant Entity_Id := Scope (PE); PBody : Node_Id; begin if Is_Library_Level_Entity (PE) then -- If package is a library unit that requires a body, we have -- no choice but to go after that body because it might contain -- an optional body for the original generic package. if Unit_Requires_Body (PE) then -- Load the body. Note that we are a little careful here to -- use Spec to get the unit number, rather than PE or Decl, -- since in the case where the package is itself a library -- level instantiation, Spec will properly reference the -- generic template, which is what we really want. return Load_Package_Body (Get_Body_Name (Unit_Name (Get_Source_Unit (Spec)))); -- But if the package is a library unit that does NOT require -- a body, then no body is permitted, so we are sure that there -- is no body for the original generic package. else return Empty; end if; -- Otherwise look and see if we are embedded in a further package elsif Is_Package (Scop) then -- If so, get the body of the enclosing package, and look in -- its package body for the package body we are looking for. PBody := Locate_Corresponding_Body (Scop); if No (PBody) then return Empty; else return Find_Body_In (PE, First (Declarations (PBody))); end if; -- If we are not embedded in a further package, then the body -- must be in the same declarative part as we are. else return Find_Body_In (PE, Next (Decl)); end if; end Locate_Corresponding_Body; -- Start of processing for Has_Generic_Body begin if Present (Corresponding_Body (Decl)) then return True; elsif Unit_Requires_Body (Ent) then return True; -- Compilation units cannot have optional bodies elsif Is_Compilation_Unit (Ent) then return False; -- Otherwise look at what scope we are in else Scop := Scope (Ent); -- Case of entity is in other than a package spec, in this case -- the body, if present, must be in the same declarative part. if not Is_Package (Scop) then declare P : Node_Id; begin P := Declaration_Node (Ent); -- Declaration node may get us a spec, so if so, go to -- the parent declaration. while not Is_List_Member (P) loop P := Parent (P); end loop; return Present (Find_Body_In (Ent, Next (P))); end; -- If the entity is in a package spec, then we have to locate -- the corresponding package body, and look there. else declare PBody : constant Node_Id := Locate_Corresponding_Body (Scop); begin if No (PBody) then return False; else return Present (Find_Body_In (Ent, (First (Declarations (PBody))))); end if; end; end if; end if; end Has_Generic_Body; ----------------------- -- Insert_Elab_Check -- ----------------------- procedure Insert_Elab_Check (N : Node_Id; C : Node_Id := Empty) is Nod : Node_Id; Loc : constant Source_Ptr := Sloc (N); begin -- If expansion is disabled, do not generate any checks. Also -- skip checks if any subunits are missing because in either -- case we lack the full information that we need, and no object -- file will be created in any case. if not Expander_Active or else Subunits_Missing then return; end if; -- If we have a generic instantiation, where Instance_Spec is set, -- then this field points to a generic instance spec that has -- been inserted before the instantiation node itself, so that -- is where we want to insert a check. if Nkind (N) in N_Generic_Instantiation and then Present (Instance_Spec (N)) then Nod := Instance_Spec (N); else Nod := N; end if; -- If we are inserting at the top level, insert in Aux_Decls if Nkind (Parent (Nod)) = N_Compilation_Unit then declare ADN : constant Node_Id := Aux_Decls_Node (Parent (Nod)); R : Node_Id; begin if No (C) then R := Make_Raise_Program_Error (Loc); else R := Make_Raise_Program_Error (Loc, Make_Op_Not (Loc, C)); end if; if No (Declarations (ADN)) then Set_Declarations (ADN, New_List (R)); else Append_To (Declarations (ADN), R); end if; Analyze (R); end; -- Otherwise just insert before the node in question. However, if -- the context of the call has already been analyzed, an insertion -- will not work if it depends on subsequent expansion (e.g. a call in -- a branch of a short-circuit). In that case we replace the call with -- a conditional expression, or with a Raise if it is unconditional. -- Unfortunately this does not work if the call has a dynamic size, -- because gigi regards it as a dynamic-sized temporary. If such a call -- appears in a short-circuit expression, the elaboration check will be -- missed (rare enough ???). else if Nkind (N) = N_Function_Call and then Analyzed (Parent (N)) and then Size_Known_At_Compile_Time (Etype (N)) then declare Typ : constant Entity_Id := Etype (N); R : constant Node_Id := Make_Raise_Program_Error (Loc); Chk : constant Boolean := Do_Range_Check (N); begin Set_Etype (R, Typ); if No (C) then Rewrite (N, R); else Rewrite (N, Make_Conditional_Expression (Loc, Expressions => New_List (C, Relocate_Node (N), R))); end if; Analyze_And_Resolve (N, Typ); -- If the original call requires a range check, so does the -- conditional expression. if Chk then Enable_Range_Check (N); else Set_Do_Range_Check (N, False); end if; end; else if No (C) then Insert_Action (Nod, Make_Raise_Program_Error (Loc)); else Insert_Action (Nod, Make_Raise_Program_Error (Loc, Condition => Make_Op_Not (Loc, Right_Opnd => C))); end if; end if; end if; end Insert_Elab_Check; ------------------ -- Output_Calls -- ------------------ procedure Output_Calls (N : Node_Id) is Ent : Entity_Id; function Is_Printable_Error_Name (Nm : Name_Id) return Boolean; -- An internal function, used to determine if a name, Nm, is either -- a non-internal name, or is an internal name that is printable -- by the error message circuits (i.e. it has a single upper -- case letter at the end). function Is_Printable_Error_Name (Nm : Name_Id) return Boolean is begin if not Is_Internal_Name (Nm) then return True; elsif Name_Len = 1 then return False; else Name_Len := Name_Len - 1; return not Is_Internal_Name; end if; end Is_Printable_Error_Name; -- Start of processing for Output_Calls begin for J in reverse 1 .. Elab_Call.Last loop Error_Msg_Sloc := Elab_Call.Table (J).Cloc; Ent := Elab_Call.Table (J).Ent; if Is_Generic_Unit (Ent) then Error_Msg_NE ("\?& instantiated #", N, Ent); elsif Chars (Ent) = Name_uInit_Proc then Error_Msg_N ("\?initialization procedure called #", N); elsif Is_Printable_Error_Name (Chars (Ent)) then Error_Msg_NE ("\?& called #", N, Ent); else Error_Msg_N ("\? called #", N); end if; end loop; end Output_Calls; ---------------------------- -- Same_Elaboration_Scope -- ---------------------------- function Same_Elaboration_Scope (Scop1, Scop2 : Entity_Id) return Boolean is S1 : Entity_Id := Scop1; S2 : Entity_Id := Scop2; begin while S1 /= Standard_Standard and then (Ekind (S1) = E_Package or else Ekind (S1) = E_Block) loop S1 := Scope (S1); end loop; while S2 /= Standard_Standard and then (Ekind (S2) = E_Package or else Ekind (S2) = E_Protected_Type or else Ekind (S2) = E_Block) loop S2 := Scope (S2); end loop; return S1 = S2; end Same_Elaboration_Scope; ----------------- -- Set_C_Scope -- ----------------- procedure Set_C_Scope is begin while not Is_Compilation_Unit (C_Scope) loop C_Scope := Scope (C_Scope); end loop; end Set_C_Scope; ----------------- -- Spec_Entity -- ----------------- function Spec_Entity (E : Entity_Id) return Entity_Id is Decl : Node_Id; begin -- Check for case of body entity -- Why is the check for E_Void needed??? if Ekind (E) = E_Void or else Ekind (E) = E_Subprogram_Body or else Ekind (E) = E_Package_Body then Decl := E; loop Decl := Parent (Decl); exit when Nkind (Decl) in N_Proper_Body; end loop; return Corresponding_Spec (Decl); else return E; end if; end Spec_Entity; ------------------- -- Supply_Bodies -- ------------------- procedure Supply_Bodies (N : Node_Id) is begin if Nkind (N) = N_Subprogram_Declaration then declare Ent : constant Entity_Id := Defining_Unit_Name (Specification (N)); begin Set_Is_Imported (Ent); Set_Convention (Ent, Convention_Stubbed); end; elsif Nkind (N) = N_Package_Declaration then declare Spec : constant Node_Id := Specification (N); begin New_Scope (Defining_Unit_Name (Spec)); Supply_Bodies (Visible_Declarations (Spec)); Supply_Bodies (Private_Declarations (Spec)); Pop_Scope; end; end if; end Supply_Bodies; procedure Supply_Bodies (L : List_Id) is Elmt : Node_Id; begin if Present (L) then Elmt := First (L); while Present (Elmt) loop Supply_Bodies (Elmt); Next (Elmt); end loop; end if; end Supply_Bodies; ------------ -- Within -- ------------ function Within (E1, E2 : Entity_Id) return Boolean is Scop : Entity_Id; begin Scop := E1; loop if Scop = E2 then return True; elsif Scop = Standard_Standard then return False; else Scop := Scope (Scop); end if; end loop; raise Program_Error; end Within; end Sem_Elab;
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- R T S F I N D -- -- -- -- 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 Casing; use Casing; with Csets; use Csets; with Debug; use Debug; with Einfo; use Einfo; with Elists; use Elists; with Errout; use Errout; with Exp_Dist; with Fname; use Fname; with Fname.UF; use Fname.UF; with Ghost; use Ghost; with Lib; use Lib; with Lib.Load; use Lib.Load; with Namet; use Namet; with Nlists; use Nlists; with Nmake; use Nmake; with Output; use Output; with Opt; use Opt; with Restrict; use Restrict; with Sem; use Sem; with Sem_Aux; use Sem_Aux; with Sem_Ch7; use Sem_Ch7; with Sem_Dist; use Sem_Dist; with Sem_Util; use Sem_Util; with Sinfo; use Sinfo; with Stand; use Stand; with Snames; use Snames; with Tbuild; use Tbuild; with Uname; use Uname; package body Rtsfind is RTE_Available_Call : Boolean := False; -- Set True during call to RTE from RTE_Available (or from call to -- RTE_Record_Component from RTE_Record_Component_Available). Tells -- the called subprogram to set RTE_Is_Available to False rather than -- generating an error message. RTE_Is_Available : Boolean; -- Set True by RTE_Available on entry. When RTE_Available_Call is set -- True, set False if RTE would otherwise generate an error message. ---------------- -- Unit table -- ---------------- -- The unit table has one entry for each unit included in the definition -- of the type RTU_Id in the spec. The table entries are initialized in -- Initialize to set the Entity field to Empty, indicating that the -- corresponding unit has not yet been loaded. The fields are set when -- a unit is loaded to contain the defining entity for the unit, the -- unit name, and the unit number. -- Note that a unit can be loaded either by a call to find an entity -- within the unit (e.g. RTE), or by an explicit with of the unit. In -- the latter case it is critical to make a call to Set_RTU_Loaded to -- ensure that the entry in this table reflects the load. -- A unit retrieved through rtsfind may end up in the context of several -- other units, in addition to the main unit. These additional with_clauses -- are needed to generate a proper traversal order for CodePeer. To -- minimize somewhat the redundancy created by numerous calls to rtsfind -- from different units, we keep track of the list of implicit with_clauses -- already created for the current loaded unit. type RT_Unit_Table_Record is record Entity : Entity_Id; Uname : Unit_Name_Type; First_Implicit_With : Node_Id; Unum : Unit_Number_Type; end record; RT_Unit_Table : array (RTU_Id) of RT_Unit_Table_Record; -------------------------- -- Runtime Entity Table -- -------------------------- -- There is one entry in the runtime entity table for each entity that is -- included in the definition of the RE_Id type in the spec. The entries -- are set by Initialize_Rtsfind to contain Empty, indicating that the -- entity has not yet been located. Once the entity is located for the -- first time, its ID is stored in this array, so that subsequent calls -- for the same entity can be satisfied immediately. -- NOTE: In order to avoid conflicts between record components and subprgs -- that have the same name (i.e. subprogram External_Tag and -- component External_Tag of package Ada.Tags) this table is not used -- with Record_Components. RE_Table : array (RE_Id) of Entity_Id; -------------------------------- -- Generation of with_clauses -- -------------------------------- -- When a unit is implicitly loaded as a result of a call to RTE, it is -- necessary to create one or two implicit with_clauses. We add such -- with_clauses to the extended main unit if needed, and also to whatever -- unit needs them, which is not necessarily the main unit. The former -- ensures that the object is correctly loaded by the binder. The latter -- is necessary for CodePeer. -- The field First_Implicit_With in the unit table record are used to -- avoid creating duplicate with_clauses. ---------------------------------------------- -- Table of Predefined RE_Id Error Messages -- ---------------------------------------------- -- If an attempt is made to load an entity, given an RE_Id value, and the -- entity is not available in the current configuration, an error message -- is given (see Entity_Not_Defined below). The general form of such an -- error message is for example: -- entity "System.Pack_43.Bits_43" not defined -- The following table defines a set of RE_Id image values for which this -- error message is specialized and replaced by specific text indicating -- the exact message to be output. For example, in the case above, for the -- RE_Id value RE_Bits_43, we do indeed specialize the message, and the -- above generic message is replaced by: -- packed component size of 43 is not supported type CString_Ptr is access constant String; type PRE_Id_Entry is record Str : CString_Ptr; -- Pointer to string with the RE_Id image. The sequence ?? may appear -- in which case it will match any characters in the RE_Id image value. -- This is used to avoid the need for dozens of entries for RE_Bits_??. Msg : CString_Ptr; -- Pointer to string with the corresponding error text. The sequence -- ?? may appear, in which case, it is replaced by the corresponding -- sequence ?? in the Str value (if the first ? is zero, then it is -- omitted from the message). end record; Str1 : aliased constant String := "RE_BITS_??"; Str2 : aliased constant String := "RE_GET_??"; Str3 : aliased constant String := "RE_SET_??"; Str4 : aliased constant String := "RE_CALL_SIMPLE"; MsgPack : aliased constant String := "packed component size of ?? is not supported"; MsgRV : aliased constant String := "task rendezvous is not supported"; PRE_Id_Table : constant array (Natural range <>) of PRE_Id_Entry := (1 => (Str1'Access, MsgPack'Access), 2 => (Str2'Access, MsgPack'Access), 3 => (Str3'Access, MsgPack'Access), 4 => (Str4'Access, MsgRV'Access)); -- We will add entries to this table as we find cases where it is a good -- idea to do so. By no means all the RE_Id values need entries, because -- the expander often gives clear messages before it makes the Rtsfind -- call expecting to find the entity. ----------------------- -- Local Subprograms -- ----------------------- function Check_CRT (E : RE_Id; Eid : Entity_Id) return Entity_Id; -- Check entity Eid to ensure that configurable run-time restrictions are -- met. May generate an error message (if RTE_Available_Call is false) and -- raise RE_Not_Available if entity E does not exist (e.g. Eid is Empty). -- Also check that entity is not overloaded. procedure Entity_Not_Defined (Id : RE_Id); -- Outputs error messages for an entity that is not defined in the run-time -- library (the form of the error message is tailored for no run time or -- configurable run time mode as required). See also table of pre-defined -- messages for entities above (RE_Id_Messages). function Get_Unit_Name (U_Id : RTU_Id) return Unit_Name_Type; -- Retrieves the Unit Name given a unit id represented by its enumeration -- value in RTU_Id. procedure Load_Fail (S : String; U_Id : RTU_Id; Id : RE_Id); pragma No_Return (Load_Fail); -- Internal procedure called if we can't successfully locate or process a -- run-time unit. The parameters give information about the error message -- to be given. S is a reason for failing to compile the file and U_Id is -- the unit id. RE_Id is the RE_Id originally passed to RTE. The message in -- S is one of the following: -- -- "not found" -- "had parser errors" -- "had semantic errors" -- -- The "not found" case is treated specially in that it is considered -- a normal situation in configurable run-time mode, and generates -- a warning, but is otherwise ignored. procedure Load_RTU (U_Id : RTU_Id; Id : RE_Id := RE_Null; Use_Setting : Boolean := False); -- Load the unit whose Id is given if not already loaded. The unit is -- loaded and analyzed, and the entry in RT_Unit_Table is updated to -- reflect the load. Use_Setting is used to indicate the initial setting -- for the Is_Potentially_Use_Visible flag of the entity for the loaded -- unit (if it is indeed loaded). A value of False means nothing special -- need be done. A value of True indicates that this flag must be set to -- True. It is needed only in the Check_Text_IO_Special_Unit procedure, -- which may materialize an entity of Text_IO (or [Wide_]Wide_Text_IO) that -- was previously unknown. Id is the RE_Id value of the entity which was -- originally requested. Id is used only for error message detail, and if -- it is RE_Null, then the attempt to output the entity name is ignored. function Make_Unit_Name (U : RT_Unit_Table_Record; N : Node_Id) return Node_Id; -- If the unit is a child unit, build fully qualified name for use in -- With_Clause. procedure Maybe_Add_With (U : in out RT_Unit_Table_Record); -- If necessary, add an implicit with_clause from the current unit to the -- one represented by U. procedure Output_Entity_Name (Id : RE_Id; Msg : String); -- Output continuation error message giving qualified name of entity -- corresponding to Id, appending the string given by Msg. function RE_Chars (E : RE_Id) return Name_Id; -- Given a RE_Id value returns the Chars of the corresponding entity procedure RTE_Error_Msg (Msg : String); -- Generates a message by calling Error_Msg_N specifying Current_Error_Node -- as the node location using the given Msg text. Special processing in the -- case where RTE_Available_Call is set. In this case, no message is output -- and instead RTE_Is_Available is set to False. Note that this can only be -- used if you are sure that the message comes directly or indirectly from -- a call to the RTE function. --------------- -- Check_CRT -- --------------- function Check_CRT (E : RE_Id; Eid : Entity_Id) return Entity_Id is U_Id : constant RTU_Id := RE_Unit_Table (E); begin if No (Eid) then if RTE_Available_Call then RTE_Is_Available := False; else Entity_Not_Defined (E); end if; raise RE_Not_Available; -- Entity is available else -- If in No_Run_Time mode and entity is neither in the current unit -- nor in one of the specially permitted units, raise the exception. if No_Run_Time_Mode and then not OK_No_Run_Time_Unit (U_Id) -- If the entity being referenced is defined in the current scope, -- using it is always fine as such usage can never introduce any -- dependency on an additional unit. The presence of this test -- helps generating meaningful error messages for CRT violations. and then Scope (Eid) /= Current_Scope then Entity_Not_Defined (E); raise RE_Not_Available; end if; -- Check entity is not overloaded, checking for special exceptions if Has_Homonym (Eid) and then E /= RE_Save_Occurrence then Set_Standard_Error; Write_Str ("Run-time configuration error ("); Write_Str ("rtsfind entity """); Get_Decoded_Name_String (Chars (Eid)); Set_Casing (Mixed_Case); Write_Str (Name_Buffer (1 .. Name_Len)); Write_Str (""" is overloaded)"); Write_Eol; raise Unrecoverable_Error; end if; -- Otherwise entity is accessible return Eid; end if; end Check_CRT; -------------------------------- -- Check_Text_IO_Special_Unit -- -------------------------------- procedure Check_Text_IO_Special_Unit (Nam : Node_Id) is Chrs : Name_Id; type Name_Map_Type is array (Text_IO_Package_Name) of RTU_Id; Name_Map : constant Name_Map_Type := Name_Map_Type'( Name_Decimal_IO => Ada_Text_IO_Decimal_IO, Name_Enumeration_IO => Ada_Text_IO_Enumeration_IO, Name_Fixed_IO => Ada_Text_IO_Fixed_IO, Name_Float_IO => Ada_Text_IO_Float_IO, Name_Integer_IO => Ada_Text_IO_Integer_IO, Name_Modular_IO => Ada_Text_IO_Modular_IO); Wide_Name_Map : constant Name_Map_Type := Name_Map_Type'( Name_Decimal_IO => Ada_Wide_Text_IO_Decimal_IO, Name_Enumeration_IO => Ada_Wide_Text_IO_Enumeration_IO, Name_Fixed_IO => Ada_Wide_Text_IO_Fixed_IO, Name_Float_IO => Ada_Wide_Text_IO_Float_IO, Name_Integer_IO => Ada_Wide_Text_IO_Integer_IO, Name_Modular_IO => Ada_Wide_Text_IO_Modular_IO); Wide_Wide_Name_Map : constant Name_Map_Type := Name_Map_Type'( Name_Decimal_IO => Ada_Wide_Wide_Text_IO_Decimal_IO, Name_Enumeration_IO => Ada_Wide_Wide_Text_IO_Enumeration_IO, Name_Fixed_IO => Ada_Wide_Wide_Text_IO_Fixed_IO, Name_Float_IO => Ada_Wide_Wide_Text_IO_Float_IO, Name_Integer_IO => Ada_Wide_Wide_Text_IO_Integer_IO, Name_Modular_IO => Ada_Wide_Wide_Text_IO_Modular_IO); To_Load : RTU_Id; -- Unit to be loaded, from one of the above maps begin -- Nothing to do if name is not an identifier or a selected component -- whose selector_name is an identifier. if Nkind (Nam) = N_Identifier then Chrs := Chars (Nam); elsif Nkind (Nam) = N_Selected_Component and then Nkind (Selector_Name (Nam)) = N_Identifier then Chrs := Chars (Selector_Name (Nam)); else return; end if; -- Nothing to do if name is not one of the Text_IO subpackages -- Otherwise look through loaded units, and if we find Text_IO -- or [Wide_]Wide_Text_IO already loaded, then load the proper child. if Chrs in Text_IO_Package_Name then for U in Main_Unit .. Last_Unit loop Get_Name_String (Unit_File_Name (U)); if Name_Len = 12 then -- Here is where we do the loads if we find one of the units -- Ada.Text_IO or Ada.[Wide_]Wide_Text_IO. An interesting -- detail is that these units may already be used (i.e. their -- In_Use flags may be set). Normally when the In_Use flag is -- set, the Is_Potentially_Use_Visible flag of all entities in -- the package is set, but the new entity we are mysteriously -- adding was not there to have its flag set at the time. So -- that's why we pass the extra parameter to RTU_Find, to make -- sure the flag does get set now. Given that those generic -- packages are in fact child units, we must indicate that -- they are visible. if Name_Buffer (1 .. 12) = "a-textio.ads" then To_Load := Name_Map (Chrs); elsif Name_Buffer (1 .. 12) = "a-witeio.ads" then To_Load := Wide_Name_Map (Chrs); elsif Name_Buffer (1 .. 12) = "a-ztexio.ads" then To_Load := Wide_Wide_Name_Map (Chrs); else goto Continue; end if; Load_RTU (To_Load, Use_Setting => In_Use (Cunit_Entity (U))); Set_Is_Visible_Lib_Unit (RT_Unit_Table (To_Load).Entity); -- Prevent creation of an implicit 'with' from (for example) -- Ada.Wide_Text_IO.Integer_IO to Ada.Text_IO.Integer_IO, -- because these could create cycles. First check whether the -- simple names match ("integer_io" = "integer_io"), and then -- check whether the parent is indeed one of the -- [[Wide_]Wide_]Text_IO packages. if Chrs = Chars (Cunit_Entity (Current_Sem_Unit)) then declare Parent_Name : constant Unit_Name_Type := Get_Parent_Spec_Name (Unit_Name (Current_Sem_Unit)); begin if Parent_Name /= No_Unit_Name then Get_Name_String (Parent_Name); declare P : String renames Name_Buffer (1 .. Name_Len); begin if P = "ada.text_io%s" or else P = "ada.wide_text_io%s" or else P = "ada.wide_wide_text_io%s" then goto Continue; end if; end; end if; end; end if; -- Add an implicit with clause from the current unit to the -- [[Wide_]Wide_]Text_IO child (if necessary). Maybe_Add_With (RT_Unit_Table (To_Load)); end if; <<Continue>> null; end loop; end if; exception -- Generate error message if run-time unit not available when RE_Not_Available => Error_Msg_N ("& not available", Nam); end Check_Text_IO_Special_Unit; ------------------------ -- Entity_Not_Defined -- ------------------------ procedure Entity_Not_Defined (Id : RE_Id) is begin if No_Run_Time_Mode then -- If the error occurs when compiling the body of a predefined -- unit for inlining purposes, the body must be illegal in this -- mode, and there is no point in continuing. if In_Predefined_Unit (Current_Error_Node) then Error_Msg_N ("construct not allowed in no run time mode!", Current_Error_Node); raise Unrecoverable_Error; else RTE_Error_Msg ("|construct not allowed in no run time mode"); end if; elsif Configurable_Run_Time_Mode then RTE_Error_Msg ("|construct not allowed in this configuration>"); else RTE_Error_Msg ("run-time configuration error"); end if; -- See if this entry is to be found in the PRE_Id table that provides -- specialized messages for some RE_Id values. for J in PRE_Id_Table'Range loop declare TStr : constant String := PRE_Id_Table (J).Str.all; RStr : constant String := RE_Id'Image (Id); TMsg : String := PRE_Id_Table (J).Msg.all; LMsg : Natural := TMsg'Length; begin if TStr'Length = RStr'Length then for J in TStr'Range loop if TStr (J) /= RStr (J) and then TStr (J) /= '?' then goto Continue; end if; end loop; for J in TMsg'First .. TMsg'Last - 1 loop if TMsg (J) = '?' then for K in 1 .. TStr'Last loop if TStr (K) = '?' then if RStr (K) = '0' then TMsg (J) := RStr (K + 1); TMsg (J + 1 .. LMsg - 1) := TMsg (J + 2 .. LMsg); LMsg := LMsg - 1; else TMsg (J .. J + 1) := RStr (K .. K + 1); end if; exit; end if; end loop; end if; end loop; RTE_Error_Msg (TMsg (1 .. LMsg)); return; end if; end; <<Continue>> null; end loop; -- We did not find an entry in the table, so output the generic entity -- not found message, where the name of the entity corresponds to the -- given RE_Id value. Output_Entity_Name (Id, "not defined"); end Entity_Not_Defined; ------------------- -- Get_Unit_Name -- ------------------- -- The following subtypes include all the proper descendants of each unit -- that has such descendants. For example, Ada_Calendar_Descendant includes -- all the descendents of Ada.Calendar (except Ada.Calendar itself). These -- are used by Get_Unit_Name to know where to change "_" to ".", and by -- Is_Text_IO_Special_Package to detect the special generic pseudo-children -- of [[Wide_]Wide_]Text_IO. subtype Ada_Descendant is RTU_Id range Ada_Calendar .. Ada_Wide_Wide_Text_IO_Modular_IO; subtype Ada_Calendar_Descendant is Ada_Descendant range Ada_Calendar_Delays .. Ada_Calendar_Delays; subtype Ada_Dispatching_Descendant is Ada_Descendant range Ada_Dispatching_EDF .. Ada_Dispatching_EDF; subtype Ada_Interrupts_Descendant is Ada_Descendant range Ada_Interrupts_Names .. Ada_Interrupts_Names; subtype Ada_Numerics_Descendant is Ada_Descendant range Ada_Numerics_Generic_Elementary_Functions .. Ada_Numerics_Generic_Elementary_Functions; subtype Ada_Real_Time_Descendant is Ada_Descendant range Ada_Real_Time_Delays .. Ada_Real_Time_Timing_Events; subtype Ada_Streams_Descendant is Ada_Descendant range Ada_Streams_Stream_IO .. Ada_Streams_Stream_IO; subtype Ada_Strings_Descendant is Ada_Descendant range Ada_Strings_Superbounded .. Ada_Strings_Text_Output_Buffers; subtype Ada_Strings_Text_Output_Descendant is Ada_Strings_Descendant range Ada_Strings_Text_Output_Utils .. Ada_Strings_Text_Output_Buffers; subtype Ada_Text_IO_Descendant is Ada_Descendant range Ada_Text_IO_Decimal_IO .. Ada_Text_IO_Modular_IO; subtype Ada_Wide_Text_IO_Descendant is Ada_Descendant range Ada_Wide_Text_IO_Decimal_IO .. Ada_Wide_Text_IO_Modular_IO; subtype Ada_Wide_Wide_Text_IO_Descendant is Ada_Descendant range Ada_Wide_Wide_Text_IO_Decimal_IO .. Ada_Wide_Wide_Text_IO_Modular_IO; subtype CUDA_Descendant is RTU_Id range CUDA_Driver_Types .. CUDA_Vector_Types; subtype Interfaces_Descendant is RTU_Id range Interfaces_C .. Interfaces_C_Strings; subtype Interfaces_C_Descendant is Interfaces_Descendant range Interfaces_C_Strings .. Interfaces_C_Strings; subtype System_Descendant is RTU_Id range System_Address_Image .. System_Tasking_Stages; subtype System_Dim_Descendant is System_Descendant range System_Dim_Float_IO .. System_Dim_Integer_IO; subtype System_Multiprocessors_Descendant is System_Descendant range System_Multiprocessors_Dispatching_Domains .. System_Multiprocessors_Dispatching_Domains; subtype System_Storage_Pools_Descendant is System_Descendant range System_Storage_Pools_Subpools .. System_Storage_Pools_Subpools; subtype System_Strings_Descendant is System_Descendant range System_Strings_Stream_Ops .. System_Strings_Stream_Ops; subtype System_Tasking_Descendant is System_Descendant range System_Tasking_Async_Delays .. System_Tasking_Stages; subtype System_Tasking_Protected_Objects_Descendant is System_Tasking_Descendant range System_Tasking_Protected_Objects_Entries .. System_Tasking_Protected_Objects_Single_Entry; subtype System_Tasking_Restricted_Descendant is System_Tasking_Descendant range System_Tasking_Restricted_Stages .. System_Tasking_Restricted_Stages; subtype System_Tasking_Async_Delays_Descendant is System_Tasking_Descendant range System_Tasking_Async_Delays_Enqueue_Calendar .. System_Tasking_Async_Delays_Enqueue_RT; function Get_Unit_Name (U_Id : RTU_Id) return Unit_Name_Type is Uname_Chars : constant String := RTU_Id'Image (U_Id); begin Name_Len := Uname_Chars'Length; Name_Buffer (1 .. Name_Len) := Uname_Chars; Set_Casing (All_Lower_Case); if U_Id in Ada_Descendant then Name_Buffer (4) := '.'; if U_Id in Ada_Calendar_Descendant then Name_Buffer (13) := '.'; elsif U_Id in Ada_Dispatching_Descendant then Name_Buffer (16) := '.'; elsif U_Id in Ada_Interrupts_Descendant then Name_Buffer (15) := '.'; elsif U_Id in Ada_Numerics_Descendant then Name_Buffer (13) := '.'; elsif U_Id in Ada_Real_Time_Descendant then Name_Buffer (14) := '.'; elsif U_Id in Ada_Streams_Descendant then Name_Buffer (12) := '.'; elsif U_Id in Ada_Strings_Descendant then Name_Buffer (12) := '.'; if U_Id in Ada_Strings_Text_Output_Descendant then Name_Buffer (24) := '.'; end if; elsif U_Id in Ada_Text_IO_Descendant then Name_Buffer (12) := '.'; elsif U_Id in Ada_Wide_Text_IO_Descendant then Name_Buffer (17) := '.'; elsif U_Id in Ada_Wide_Wide_Text_IO_Descendant then Name_Buffer (22) := '.'; end if; elsif U_Id in CUDA_Descendant then Name_Buffer (5) := '.'; elsif U_Id in Interfaces_Descendant then Name_Buffer (11) := '.'; if U_Id in Interfaces_C_Descendant then Name_Buffer (13) := '.'; end if; elsif U_Id in System_Descendant then Name_Buffer (7) := '.'; if U_Id in System_Dim_Descendant then Name_Buffer (11) := '.'; end if; if U_Id in System_Multiprocessors_Descendant then Name_Buffer (23) := '.'; end if; if U_Id in System_Storage_Pools_Descendant then Name_Buffer (21) := '.'; end if; if U_Id in System_Strings_Descendant then Name_Buffer (15) := '.'; end if; if U_Id in System_Tasking_Descendant then Name_Buffer (15) := '.'; end if; if U_Id in System_Tasking_Restricted_Descendant then Name_Buffer (26) := '.'; end if; if U_Id in System_Tasking_Protected_Objects_Descendant then Name_Buffer (33) := '.'; end if; if U_Id in System_Tasking_Async_Delays_Descendant then Name_Buffer (28) := '.'; end if; end if; -- Add %s at end for spec Name_Buffer (Name_Len + 1) := '%'; Name_Buffer (Name_Len + 2) := 's'; Name_Len := Name_Len + 2; return Name_Find; end Get_Unit_Name; ---------------- -- Initialize -- ---------------- procedure Initialize is begin -- Initialize the unit table for J in RTU_Id loop RT_Unit_Table (J).Entity := Empty; RT_Unit_Table (J).First_Implicit_With := Empty; end loop; for J in RE_Id loop RE_Table (J) := Empty; end loop; RTE_Is_Available := False; end Initialize; ------------ -- Is_RTE -- ------------ function Is_RTE (Ent : Entity_Id; E : RE_Id) return Boolean is E_Unit_Name : Unit_Name_Type; Ent_Unit_Name : Unit_Name_Type; S : Entity_Id; E1 : Entity_Id; E2 : Entity_Id; begin if No (Ent) then return False; -- If E has already a corresponding entity, check it directly, -- going to full views if they exist to deal with the incomplete -- and private type cases properly. elsif Present (RE_Table (E)) then E1 := Ent; if Is_Type (E1) and then Present (Full_View (E1)) then E1 := Full_View (E1); end if; E2 := RE_Table (E); if Is_Type (E2) and then Present (Full_View (E2)) then E2 := Full_View (E2); end if; return E1 = E2; end if; -- If the unit containing E is not loaded, we already know that the -- entity we have cannot have come from this unit. E_Unit_Name := Get_Unit_Name (RE_Unit_Table (E)); if not Is_Loaded (E_Unit_Name) then return False; end if; -- Here the unit containing the entity is loaded. We have not made -- an explicit call to RTE to get the entity in question, but we may -- have obtained a reference to it indirectly from some other entity -- in the same unit, or some other unit that references it. -- Get the defining unit of the entity S := Scope (Ent); if No (S) or else Ekind (S) /= E_Package then return False; end if; Ent_Unit_Name := Get_Unit_Name (Unit_Declaration_Node (S)); -- If the defining unit of the entity we are testing is not the -- unit containing E, then they cannot possibly match. if Ent_Unit_Name /= E_Unit_Name then return False; end if; -- If the units match, then compare the names (remember that no -- overloading is permitted in entities fetched using Rtsfind). if RE_Chars (E) = Chars (Ent) then RE_Table (E) := Ent; -- If front-end inlining is enabled, we may be within a body that -- contains inlined functions, which has not been retrieved through -- rtsfind, and therefore is not yet recorded in the RT_Unit_Table. -- Add the unit information now, it must be fully available. declare U : RT_Unit_Table_Record renames RT_Unit_Table (RE_Unit_Table (E)); begin if No (U.Entity) then U.Entity := S; U.Uname := E_Unit_Name; U.Unum := Get_Source_Unit (S); end if; end; return True; else return False; end if; end Is_RTE; ------------ -- Is_RTU -- ------------ function Is_RTU (Ent : Entity_Id; U : RTU_Id) return Boolean is E : constant Entity_Id := RT_Unit_Table (U).Entity; begin return Present (E) and then E = Ent; end Is_RTU; -------------------------------- -- Is_Text_IO_Special_Package -- -------------------------------- function Is_Text_IO_Special_Package (E : Entity_Id) return Boolean is begin pragma Assert (Is_Package_Or_Generic_Package (E)); -- ??? detection with a scope climbing might be more efficient for U in Ada_Text_IO_Descendant loop if Is_RTU (E, U) then return True; end if; end loop; for U in Ada_Wide_Text_IO_Descendant loop if Is_RTU (E, U) then return True; end if; end loop; for U in Ada_Wide_Wide_Text_IO_Descendant loop if Is_RTU (E, U) then return True; end if; end loop; return False; end Is_Text_IO_Special_Package; ----------------------------- -- Is_Text_IO_Special_Unit -- ----------------------------- function Is_Text_IO_Special_Unit (Nam : Node_Id) return Boolean is Prf : Node_Id; Sel : Node_Id; begin if Nkind (Nam) /= N_Expanded_Name then return False; end if; Prf := Prefix (Nam); Sel := Selector_Name (Nam); if Nkind (Sel) /= N_Expanded_Name or else Nkind (Prf) /= N_Identifier or else Chars (Prf) /= Name_Ada then return False; end if; Prf := Prefix (Sel); Sel := Selector_Name (Sel); return Nkind (Prf) = N_Identifier and then Chars (Prf) in Name_Text_IO | Name_Wide_Text_IO | Name_Wide_Wide_Text_IO and then Nkind (Sel) = N_Identifier and then Chars (Sel) in Text_IO_Package_Name; end Is_Text_IO_Special_Unit; --------------- -- Load_Fail -- --------------- procedure Load_Fail (S : String; U_Id : RTU_Id; Id : RE_Id) is M : String (1 .. 100); P : Natural := 0; begin -- Output header message if Configurable_Run_Time_Mode then RTE_Error_Msg ("construct not allowed in configurable run-time mode"); else RTE_Error_Msg ("run-time library configuration error"); end if; -- Output file name and reason string M (1 .. 6) := "\file "; P := 6; Get_Name_String (Get_File_Name (RT_Unit_Table (U_Id).Uname, Subunit => False)); M (P + 1 .. P + Name_Len) := Name_Buffer (1 .. Name_Len); P := P + Name_Len; M (P + 1) := ' '; P := P + 1; M (P + 1 .. P + S'Length) := S; P := P + S'Length; RTE_Error_Msg (M (1 .. P)); -- Output entity name Output_Entity_Name (Id, "not available"); -- In configurable run time mode, we raise RE_Not_Available, and the -- caller is expected to deal gracefully with this. In the case of a -- call to RTE_Available, this exception will be caught in Rtsfind, -- and result in a returned value of False for the call. if Configurable_Run_Time_Mode then raise RE_Not_Available; -- Here we have a load failure in normal full run time mode. See if we -- are in the context of an RTE_Available call. If so, we just raise -- RE_Not_Available. This can happen if a unit is unavailable, which -- happens for example in the VM case, where the run-time is not -- complete, but we do not regard it as a configurable run-time. -- If the caller has done an explicit call to RTE_Available, then -- clearly the caller is prepared to deal with a result of False. elsif RTE_Available_Call then RTE_Is_Available := False; raise RE_Not_Available; -- If we are not in the context of an RTE_Available call, we are really -- trying to load an entity that is not there, and that should never -- happen, so in this case we signal a fatal error. else raise Unrecoverable_Error; end if; end Load_Fail; -------------- -- Load_RTU -- -------------- -- WARNING: This routine manages Ghost and SPARK regions. Return statements -- must be replaced by gotos which jump to the end of the routine in order -- to restore the Ghost and SPARK modes. procedure Load_RTU (U_Id : RTU_Id; Id : RE_Id := RE_Null; Use_Setting : Boolean := False) is U : RT_Unit_Table_Record renames RT_Unit_Table (U_Id); Priv_Par : constant Elist_Id := New_Elmt_List; Lib_Unit : Node_Id; procedure Save_Private_Visibility; -- If the current unit is the body of child unit or the spec of a -- private child unit, the private declarations of the parent(s) are -- visible. If the unit to be loaded is another public sibling, its -- compilation will affect the visibility of the common ancestors. -- Indicate those that must be restored. procedure Restore_Private_Visibility; -- Restore the visibility of ancestors after compiling RTU -------------------------------- -- Restore_Private_Visibility -- -------------------------------- procedure Restore_Private_Visibility is E_Par : Elmt_Id; begin E_Par := First_Elmt (Priv_Par); while Present (E_Par) loop if not In_Private_Part (Node (E_Par)) then Install_Private_Declarations (Node (E_Par)); end if; Next_Elmt (E_Par); end loop; end Restore_Private_Visibility; ----------------------------- -- Save_Private_Visibility -- ----------------------------- procedure Save_Private_Visibility is Par : Entity_Id; begin Par := Scope (Current_Scope); while Present (Par) and then Par /= Standard_Standard loop if Ekind (Par) = E_Package and then Is_Compilation_Unit (Par) and then In_Private_Part (Par) then Append_Elmt (Par, Priv_Par); end if; Par := Scope (Par); end loop; end Save_Private_Visibility; -- Local variables Saved_GM : constant Ghost_Mode_Type := Ghost_Mode; Saved_IGR : constant Node_Id := Ignored_Ghost_Region; Saved_ISMP : constant Boolean := Ignore_SPARK_Mode_Pragmas_In_Instance; Saved_SM : constant SPARK_Mode_Type := SPARK_Mode; Saved_SMP : constant Node_Id := SPARK_Mode_Pragma; -- Save Ghost and SPARK mode-related data to restore on exit -- Start of processing for Load_RTU begin -- Nothing to do if unit is already loaded if Present (U.Entity) then return; end if; -- Provide a clean environment for the unit Ignore_SPARK_Mode_Pragmas_In_Instance := False; Install_Ghost_Region (None, Empty); Install_SPARK_Mode (None, Empty); -- Otherwise we need to load the unit, First build unit name from the -- enumeration literal name in type RTU_Id. U.Uname := Get_Unit_Name (U_Id); U.First_Implicit_With := Empty; -- Now do the load call, note that setting Error_Node to Empty is a -- signal to Load_Unit that we will regard a failure to find the file as -- a fatal error, and that it should not output any kind of diagnostics, -- since we will take care of it here. -- We save style checking switches and turn off style checking for -- loading the unit, since we don't want any style checking. declare Save_Style_Check : constant Boolean := Style_Check; begin Style_Check := False; U.Unum := Load_Unit (Load_Name => U.Uname, Required => False, Subunit => False, Error_Node => Empty); Style_Check := Save_Style_Check; end; -- Check for bad unit load if U.Unum = No_Unit then Load_Fail ("not found", U_Id, Id); elsif Fatal_Error (U.Unum) = Error_Detected then Load_Fail ("had parser errors", U_Id, Id); end if; -- Make sure that the unit is analyzed declare Was_Analyzed : constant Boolean := Analyzed (Cunit (Current_Sem_Unit)); begin -- Pretend that the current unit is analyzed, in case it is System -- or some such. This allows us to put some declarations, such as -- exceptions and packed arrays of Boolean, into System even though -- expanding them requires System... -- This is a bit odd but works fine. If the RTS unit does not depend -- in any way on the current unit, then it never gets back into the -- current unit's tree, and the change we make to the current unit -- tree is never noticed by anyone (it is undone in a moment). That -- is the normal situation. -- If the RTS Unit *does* depend on the current unit, for instance, -- when you are compiling System, then you had better have finished -- analyzing the part of System that is depended on before you try to -- load the RTS Unit. This means having the code in System ordered in -- an appropriate manner. Set_Analyzed (Cunit (Current_Sem_Unit), True); if not Analyzed (Cunit (U.Unum)) then -- If the unit is already loaded through a limited_with_clause, -- the relevant entities must already be available. We do not -- want to load and analyze the unit because this would create -- a real semantic dependence when the purpose of the limited_with -- is precisely to avoid such. if From_Limited_With (Cunit_Entity (U.Unum)) then null; else Save_Private_Visibility; Semantics (Cunit (U.Unum)); Restore_Private_Visibility; if Fatal_Error (U.Unum) = Error_Detected then Load_Fail ("had semantic errors", U_Id, Id); end if; end if; end if; -- Undo the pretence Set_Analyzed (Cunit (Current_Sem_Unit), Was_Analyzed); end; Lib_Unit := Unit (Cunit (U.Unum)); U.Entity := Defining_Entity (Lib_Unit); if Use_Setting then Set_Is_Potentially_Use_Visible (U.Entity, True); end if; Ignore_SPARK_Mode_Pragmas_In_Instance := Saved_ISMP; Restore_Ghost_Region (Saved_GM, Saved_IGR); Restore_SPARK_Mode (Saved_SM, Saved_SMP); end Load_RTU; -------------------- -- Make_Unit_Name -- -------------------- function Make_Unit_Name (U : RT_Unit_Table_Record; N : Node_Id) return Node_Id is Nam : Node_Id; Scop : Entity_Id; begin Nam := New_Occurrence_Of (U.Entity, Standard_Location); Scop := Scope (U.Entity); if Nkind (N) = N_Defining_Program_Unit_Name then while Scop /= Standard_Standard loop Nam := Make_Expanded_Name (Standard_Location, Chars => Chars (U.Entity), Prefix => New_Occurrence_Of (Scop, Standard_Location), Selector_Name => Nam); Set_Entity (Nam, U.Entity); Scop := Scope (Scop); end loop; end if; return Nam; end Make_Unit_Name; -------------------- -- Maybe_Add_With -- -------------------- procedure Maybe_Add_With (U : in out RT_Unit_Table_Record) is begin -- We do not need to generate a with_clause for a call issued from -- RTE_Component_Available. However, for CodePeer, we need these -- additional with's, because for a sequence like "if RTE_Available (X) -- then ... RTE (X)" the RTE call fails to create some necessary with's. if RTE_Available_Call and not Generate_SCIL then return; end if; -- Avoid creating directly self-referential with clauses if Current_Sem_Unit = U.Unum then return; end if; -- Add the with_clause, if we have not already added an implicit with -- for this unit to the current compilation unit. declare LibUnit : constant Node_Id := Unit (Cunit (U.Unum)); Clause : Node_Id; Withn : Node_Id; begin Clause := U.First_Implicit_With; while Present (Clause) loop if Parent (Clause) = Cunit (Current_Sem_Unit) then return; end if; Clause := Next_Implicit_With (Clause); end loop; Withn := Make_With_Clause (Standard_Location, Name => Make_Unit_Name (U, Defining_Unit_Name (Specification (LibUnit)))); Set_Corresponding_Spec (Withn, U.Entity); Set_First_Name (Withn); Set_Implicit_With (Withn); Set_Library_Unit (Withn, Cunit (U.Unum)); Set_Next_Implicit_With (Withn, U.First_Implicit_With); U.First_Implicit_With := Withn; Mark_Rewrite_Insertion (Withn); Append (Withn, Context_Items (Cunit (Current_Sem_Unit))); Check_Restriction_No_Dependence (Name (Withn), Current_Error_Node); end; end Maybe_Add_With; ------------------------ -- Output_Entity_Name -- ------------------------ procedure Output_Entity_Name (Id : RE_Id; Msg : String) is M : String (1 .. 2048); P : Natural := 0; -- M (1 .. P) is current message to be output RE_Image : constant String := RE_Id'Image (Id); S : Natural; -- RE_Image (S .. RE_Image'Last) is the name of the entity without the -- "RE_" or "RO_XX_" prefix. begin if Id = RE_Null then return; end if; M (1 .. 9) := "\entity """; P := 9; -- Add unit name to message, excluding %s or %b at end Get_Name_String (Get_Unit_Name (RE_Unit_Table (Id))); Name_Len := Name_Len - 2; Set_Casing (Mixed_Case); M (P + 1 .. P + Name_Len) := Name_Buffer (1 .. Name_Len); P := P + Name_Len; -- Add a qualifying period M (P + 1) := '.'; P := P + 1; -- Strip "RE" if RE_Image (2) = 'E' then S := 4; -- Strip "RO_XX" else S := 7; end if; -- Add entity name and closing quote to message Name_Len := RE_Image'Length - S + 1; Name_Buffer (1 .. Name_Len) := RE_Image (S .. RE_Image'Last); Set_Casing (Mixed_Case); M (P + 1 .. P + Name_Len) := Name_Buffer (1 .. Name_Len); P := P + Name_Len; M (P + 1) := '"'; P := P + 1; -- Add message M (P + 1) := ' '; P := P + 1; M (P + 1 .. P + Msg'Length) := Msg; P := P + Msg'Length; -- Output message at current error node location RTE_Error_Msg (M (1 .. P)); end Output_Entity_Name; -------------- -- RE_Chars -- -------------- function RE_Chars (E : RE_Id) return Name_Id is RE_Name_Chars : constant String := RE_Id'Image (E); begin -- Copy name skipping initial RE_ or RO_XX characters if RE_Name_Chars (1 .. 2) = "RE" then for J in 4 .. RE_Name_Chars'Last loop Name_Buffer (J - 3) := Fold_Lower (RE_Name_Chars (J)); end loop; Name_Len := RE_Name_Chars'Length - 3; else for J in 7 .. RE_Name_Chars'Last loop Name_Buffer (J - 6) := Fold_Lower (RE_Name_Chars (J)); end loop; Name_Len := RE_Name_Chars'Length - 6; end if; return Name_Find; end RE_Chars; --------- -- RTE -- --------- function RTE (E : RE_Id) return Entity_Id is procedure Check_RPC; -- Reject programs that make use of distribution features not supported -- on the current target. Also check that the PCS is compatible with the -- code generator version. On such targets (Vxworks, others?) we provide -- a minimal body for System.Rpc that only supplies an implementation of -- Partition_Id. function Find_Local_Entity (E : RE_Id) return Entity_Id; -- This function is used when entity E is in this compilation's main -- unit. It gets the value from the already compiled declaration. --------------- -- Check_RPC -- --------------- procedure Check_RPC is begin -- Bypass this check if debug flag -gnatdR set if Debug_Flag_RR then return; end if; -- Otherwise we need the check if we are going after one of the -- critical entities in System.RPC / System.Partition_Interface. if E = RE_Do_Rpc or else E = RE_Do_Apc or else E = RE_Params_Stream_Type or else E = RE_Request_Access then -- If generating RCI stubs, check that we have a real PCS if (Distribution_Stub_Mode = Generate_Receiver_Stub_Body or else Distribution_Stub_Mode = Generate_Caller_Stub_Body) and then Get_PCS_Name = Name_No_DSA then Set_Standard_Error; Write_Str ("distribution feature not supported"); Write_Eol; raise Unrecoverable_Error; -- In all cases, check Exp_Dist and System.Partition_Interface -- consistency. elsif Get_PCS_Version /= Exp_Dist.PCS_Version_Number (Get_PCS_Name) then Set_Standard_Error; Write_Str ("PCS version mismatch: expander "); Write_Int (Exp_Dist.PCS_Version_Number (Get_PCS_Name)); Write_Str (", PCS ("); Write_Name (Get_PCS_Name); Write_Str (") "); Write_Int (Get_PCS_Version); Write_Eol; raise Unrecoverable_Error; end if; end if; end Check_RPC; ----------------------- -- Find_Local_Entity -- ----------------------- function Find_Local_Entity (E : RE_Id) return Entity_Id is RE_Str : constant String := RE_Id'Image (E); Nam : Name_Id; Ent : Entity_Id; Save_Nam : constant String := Name_Buffer (1 .. Name_Len); -- Save name buffer and length over call begin Name_Len := Natural'Max (0, RE_Str'Length - 3); Name_Buffer (1 .. Name_Len) := RE_Str (RE_Str'First + 3 .. RE_Str'Last); Nam := Name_Find; Ent := Entity_Id (Get_Name_Table_Int (Nam)); Name_Len := Save_Nam'Length; Name_Buffer (1 .. Name_Len) := Save_Nam; return Ent; end Find_Local_Entity; -- Local variables U_Id : constant RTU_Id := RE_Unit_Table (E); U : RT_Unit_Table_Record renames RT_Unit_Table (U_Id); Ename : Name_Id; Lib_Unit : Node_Id; Pkg_Ent : Entity_Id; Save_Front_End_Inlining : constant Boolean := Front_End_Inlining; -- This flag is used to disable front-end inlining when RTE is invoked. -- This prevents the analysis of other runtime bodies when a particular -- spec is loaded through Rtsfind. This is both efficient, and prevents -- spurious visibility conflicts between use-visible user entities, and -- entities in run-time packages. -- Start of processing for RTE begin -- Doing a rtsfind in system.ads is special, as we cannot do this -- when compiling System itself. So if we are compiling system then -- we should already have acquired and processed the declaration -- of the entity. The test is to see if this compilation's main unit -- is System. If so, return the value from the already compiled -- declaration and otherwise do a regular find. -- Not pleasant, but these kinds of annoying recursion scenarios when -- writing an Ada compiler in Ada have to be broken somewhere. if Present (Main_Unit_Entity) and then Chars (Main_Unit_Entity) = Name_System and then Analyzed (Main_Unit_Entity) and then not Is_Child_Unit (Main_Unit_Entity) then return Check_CRT (E, Find_Local_Entity (E)); end if; Front_End_Inlining := False; -- Load unit if unit not previously loaded if No (RE_Table (E)) then Load_RTU (U_Id, Id => E); Lib_Unit := Unit (Cunit (U.Unum)); -- In the subprogram case, we are all done, the entity we want -- is the entity for the subprogram itself. Note that we do not -- bother to check that it is the entity that was requested. -- the only way that could fail to be the case is if runtime is -- hopelessly misconfigured, and it isn't worth testing for this. if Nkind (Lib_Unit) = N_Subprogram_Declaration then RE_Table (E) := U.Entity; -- Otherwise we must have the package case. First check package -- entity itself (e.g. RTE_Name for System.Interrupts.Name) else pragma Assert (Nkind (Lib_Unit) = N_Package_Declaration); Ename := RE_Chars (E); -- First we search the package entity chain. If the package -- only has a limited view, scan the corresponding list of -- incomplete types. if From_Limited_With (U.Entity) then Pkg_Ent := First_Entity (Limited_View (U.Entity)); else Pkg_Ent := First_Entity (U.Entity); end if; while Present (Pkg_Ent) loop if Ename = Chars (Pkg_Ent) then RE_Table (E) := Pkg_Ent; Check_RPC; goto Found; end if; Next_Entity (Pkg_Ent); end loop; -- If we did not find the entity in the package entity chain, -- then check if the package entity itself matches. Note that -- we do this check after searching the entity chain, since -- the rule is that in case of ambiguity, we prefer the entity -- defined within the package, rather than the package itself. if Ename = Chars (U.Entity) then RE_Table (E) := U.Entity; end if; -- If we didn't find the entity we want, something is wrong. -- We just leave RE_Table (E) set to Empty and the appropriate -- action will be taken by Check_CRT when we exit. end if; end if; <<Found>> -- Record whether the secondary stack is in use in order to generate -- the proper binder code. No action is taken when the secondary stack -- is pulled within an ignored Ghost context because all this code will -- disappear. if U_Id = System_Secondary_Stack and then Ghost_Mode /= Ignore then Sec_Stack_Used := True; end if; Maybe_Add_With (U); Front_End_Inlining := Save_Front_End_Inlining; return Check_CRT (E, RE_Table (E)); end RTE; ------------------- -- RTE_Available -- ------------------- function RTE_Available (E : RE_Id) return Boolean is Dummy : Entity_Id; pragma Warnings (Off, Dummy); Result : Boolean; Save_RTE_Available_Call : constant Boolean := RTE_Available_Call; Save_RTE_Is_Available : constant Boolean := RTE_Is_Available; -- These are saved recursively because the call to load a unit -- caused by an upper level call may perform a recursive call -- to this routine during analysis of the corresponding unit. begin RTE_Available_Call := True; RTE_Is_Available := True; Dummy := RTE (E); Result := RTE_Is_Available; RTE_Available_Call := Save_RTE_Available_Call; RTE_Is_Available := Save_RTE_Is_Available; return Result; exception when RE_Not_Available => RTE_Available_Call := Save_RTE_Available_Call; RTE_Is_Available := Save_RTE_Is_Available; return False; end RTE_Available; -------------------------- -- RTE_Record_Component -- -------------------------- function RTE_Record_Component (E : RE_Id) return Entity_Id is U_Id : constant RTU_Id := RE_Unit_Table (E); U : RT_Unit_Table_Record renames RT_Unit_Table (U_Id); E1 : Entity_Id; Ename : Name_Id; Found_E : Entity_Id; Lib_Unit : Node_Id; Pkg_Ent : Entity_Id; -- The following flag is used to disable front-end inlining when -- RTE_Record_Component is invoked. This prevents the analysis of other -- runtime bodies when a particular spec is loaded through Rtsfind. This -- is both efficient, and it prevents spurious visibility conflicts -- between use-visible user entities, and entities in run-time packages. Save_Front_End_Inlining : Boolean; begin -- Note: Contrary to subprogram RTE, there is no need to do any special -- management with package system.ads because it has no record type -- declarations. Save_Front_End_Inlining := Front_End_Inlining; Front_End_Inlining := False; -- Load unit if unit not previously loaded if not Present (U.Entity) then Load_RTU (U_Id, Id => E); end if; Lib_Unit := Unit (Cunit (U.Unum)); pragma Assert (Nkind (Lib_Unit) = N_Package_Declaration); Ename := RE_Chars (E); -- Search the entity in the components of record type declarations -- found in the package entity chain. Found_E := Empty; Pkg_Ent := First_Entity (U.Entity); Search : while Present (Pkg_Ent) loop if Is_Record_Type (Pkg_Ent) then E1 := First_Entity (Pkg_Ent); while Present (E1) loop if Ename = Chars (E1) then pragma Assert (not Present (Found_E)); Found_E := E1; end if; Next_Entity (E1); end loop; end if; Next_Entity (Pkg_Ent); end loop Search; -- If we didn't find the entity we want, something is wrong. The -- appropriate action will be taken by Check_CRT when we exit. Maybe_Add_With (U); Front_End_Inlining := Save_Front_End_Inlining; return Check_CRT (E, Found_E); end RTE_Record_Component; ------------------------------------ -- RTE_Record_Component_Available -- ------------------------------------ function RTE_Record_Component_Available (E : RE_Id) return Boolean is Dummy : Entity_Id; pragma Warnings (Off, Dummy); Result : Boolean; Save_RTE_Available_Call : constant Boolean := RTE_Available_Call; Save_RTE_Is_Available : constant Boolean := RTE_Is_Available; -- These are saved recursively because the call to load a unit -- caused by an upper level call may perform a recursive call -- to this routine during analysis of the corresponding unit. begin RTE_Available_Call := True; RTE_Is_Available := True; Dummy := RTE_Record_Component (E); Result := RTE_Is_Available; RTE_Available_Call := Save_RTE_Available_Call; RTE_Is_Available := Save_RTE_Is_Available; return Result; exception when RE_Not_Available => RTE_Available_Call := Save_RTE_Available_Call; RTE_Is_Available := Save_RTE_Is_Available; return False; end RTE_Record_Component_Available; ------------------- -- RTE_Error_Msg -- ------------------- procedure RTE_Error_Msg (Msg : String) is begin if RTE_Available_Call then RTE_Is_Available := False; else Error_Msg_N (Msg, Current_Error_Node); -- Bump count of violations if we are in configurable run-time -- mode and this is not a continuation message. if Configurable_Run_Time_Mode and then Msg (Msg'First) /= '\' then Configurable_Run_Time_Violations := Configurable_Run_Time_Violations + 1; end if; end if; end RTE_Error_Msg; ---------------- -- RTU_Entity -- ---------------- function RTU_Entity (U : RTU_Id) return Entity_Id is begin return RT_Unit_Table (U).Entity; end RTU_Entity; ---------------- -- RTU_Loaded -- ---------------- function RTU_Loaded (U : RTU_Id) return Boolean is begin return Present (RT_Unit_Table (U).Entity); end RTU_Loaded; -------------------- -- Set_RTU_Loaded -- -------------------- procedure Set_RTU_Loaded (N : Node_Id) is Loc : constant Source_Ptr := Sloc (N); Unum : constant Unit_Number_Type := Get_Source_Unit (Loc); Uname : constant Unit_Name_Type := Unit_Name (Unum); E : constant Entity_Id := Defining_Entity (Unit (Cunit (Unum))); begin pragma Assert (Is_Predefined_Unit (Unum)); -- Loop through entries in RTU table looking for matching entry for U_Id in RTU_Id'Range loop -- Here we have a match if Get_Unit_Name (U_Id) = Uname then declare U : RT_Unit_Table_Record renames RT_Unit_Table (U_Id); -- The RT_Unit_Table entry that may need updating begin -- If entry is not set, set it now, and indicate that it was -- loaded through an explicit context clause. if No (U.Entity) then U := (Entity => E, Uname => Get_Unit_Name (U_Id), Unum => Unum, First_Implicit_With => Empty); end if; return; end; end if; end loop; end Set_RTU_Loaded; ------------------------- -- SPARK_Implicit_Load -- ------------------------- procedure SPARK_Implicit_Load (E : RE_Id) is Unused : Entity_Id; begin pragma Assert (GNATprove_Mode); -- Force loading of a predefined unit Unused := RTE (E); end SPARK_Implicit_Load; end Rtsfind;
-- -- The author disclaims copyright to this source code. In place of -- a legal notice, here is a blessing: -- -- May you do good and not evil. -- May you find forgiveness for yourself and forgive others. -- May you share freely, not taking more than you give. -- with Ada.Containers.Doubly_Linked_Lists; with Ada.Unchecked_Deallocation; with Debugs; with Config_Tables; with Prop_Links; with Symbol_Sets; with Errors; with Symbols; package body Config_Lists is function Config_New return Configs.Config_Access; -- Return a pointer to a new configuration. procedure Config_Delete (Config : in out Configs.Config_Access); -- The configuration "old" is no longer Used. use type Configs.Config_Access; package Configuration_Lists is new Ada.Containers.Doubly_Linked_Lists (Element_Type => Configs.Config_Access); Config_List : Configuration_Lists.List := Configuration_Lists.Empty_List; Basis_List : Configuration_Lists.List := Configuration_Lists.Empty_List; procedure Init is begin Config_List.Clear; Basis_List.Clear; Config_Tables.Init; end Init; function Add (Rule : in Rule_Access; Dot : in Rules.Dot_Type) return Configs.Config_Access is use Configs; Model : aliased Config_Record; Config : Config_Access; begin Model.Rule := Rule; Model.Dot := Dot; Config := Config_Tables.Find (Model'Unchecked_Access); if Config = null then Config := Config_New; Config.all := Config_Record'(Rule => Rule, Dot => Dot, Follow_Set => Symbol_Sets.Set_New, State => null, Forward_PL => Prop_Links.Propagation_Lists.Empty_List, Backward_PL => Prop_Links.Propagation_Lists.Empty_List, Status => Incomplete, -- XXX Do not know Next => null, Basis => null); Config_List.Append (Config); Config_Tables.Insert (Config); end if; return Config; end Add; function Add_Basis (Rule : in Rule_Access; Dot : in Rules.Dot_Type) return Configs.Config_Access is use Configs; Model : aliased Config_Record; Config : Config_Access; begin Model.Rule := Rule; Model.Dot := Dot; Config := Config_Tables.Find (Model'Unchecked_Access); if Config = null then Config := Config_New; Config.all := Config_Record'(Rule => Rule, Dot => Dot, Follow_Set => Symbol_Sets.Set_New, State => null, Forward_PL => Prop_Links.Propagation_Lists.Empty_List, Backward_PL => Prop_Links.Propagation_Lists.Empty_List, Status => Incomplete, -- XXX Do not know Next => null, Basis => null); Config_List.Append (Config); Basis_List.Append (Config); Config_Tables.Insert (Config); end if; return Config; end Add_Basis; procedure Closure (Session : in Sessions.Session_Type) is use Configs; -- use Rules; use Symbols; use Symbol_Sets; use type Configuration_Lists.Cursor; use type Rules.Dot_Type; use type Rule_Access; New_Config : Config_Access; Rule : Rule_Access; New_Rule : Rule_Access; Symbol : Symbol_Access; RHS_Symbol : Symbol_Access; Dot : Rules.Dot_Type; Dummy : Boolean; Last_RHS : Boolean; Config_Pos : Configuration_Lists.Cursor; begin pragma Assert (not Config_List.Is_Empty); -- Use cursor for looping because there will be appended element in loop. Config_Pos := Config_List.First; while Config_Pos /= Configuration_Lists.No_Element loop declare Config : constant Config_Access := Configuration_Lists.Element (Config_Pos); begin Rule := Config.Rule; Dot := Config.Dot; Debugs.Debug (True, "Dot: " & Dot'Image); if Dot < Rule.RHS.Last_Index then Symbol := Symbol_Access (Rule.RHS.Element (Dot)); if Symbol.Kind = Non_Terminal then if Symbol.Rule = null and Symbol /= Session.Error_Symbol then Errors.Parser_Error (Errors.E401, Line => Rule.Line, Argument_1 => Name_Of (Symbol)); end if; New_Rule := Rule_Access (Symbol.Rule); while New_Rule /= null loop New_Config := Add (New_Rule, Dot => 0); Last_RHS := False; Debugs.Debug (True, "Rule.RHS.Length: " & Rule.RHS.Length'Image); for I in Dot + 1 .. Rule.RHS.Last_Index loop if I = Rule.RHS.Last_Index then Last_RHS := True; end if; RHS_Symbol := Symbol_Access (Rule.RHS.Element (I)); case RHS_Symbol.Kind is when Terminal => Dummy := Set_Add (New_Config.Follow_Set, RHS_Symbol.Index); exit; when Multi_Terminal => for K in Integer range 0 .. Integer (RHS_Symbol.Sub_Symbol.Length) - 1 loop Dummy := Set_Add (New_Config.Follow_Set, RHS_Symbol.Sub_Symbol.Element (K).Index); end loop; exit; when others => Dummy := Set_Union (New_Config.Follow_Set, RHS_Symbol.First_Set); exit when not RHS_Symbol.Lambda; end case; end loop; if Last_RHS then Config.Forward_PL.Append (Prop_Links.Config_Access (New_Config)); end if; New_Rule := Rule_Access (New_Rule.Next_LHS); end loop; end if; end if; end; Configuration_Lists.Next (Config_Pos); end loop; end Closure; procedure Sort is package Config_Sorts is new Configuration_Lists.Generic_Sorting; begin Config_Sorts.Sort (Config_List); end Sort; procedure Sort_Basis is package Basis_Sorts is new Configuration_Lists.Generic_Sorting; begin Basis_Sorts.Sort (Basis_List); end Sort_Basis; function Xreturn return Configs.Config_Access is Old : constant Configs.Config_Access := Config_List.First_Element; begin Config_List.Clear; return Old; end Xreturn; function Basis return Configs.Config_Access is Old : constant Configs.Config_Access := Basis_List.First_Element; begin Basis_List.Clear; return Old; end Basis; procedure Eat (Config : in out Configs.Config_Access) is use Symbol_Sets; use Configs; Next_Config : Config_Access; begin while Config /= null loop Next_Config := Config.Next; pragma Assert (Config.Forward_PL.Is_Empty); pragma Assert (Config.Backward_PL.Is_Empty); if Config.Follow_Set /= Null_Set then Symbol_Sets.Set_Free (Config.Follow_Set); end if; Config_Delete (Config); Config := Next_Config; end loop; end Eat; procedure Reset is begin Config_List.Clear; Basis_List.Clear; Config_Tables.Clear; end Reset; function Config_New return Configs.Config_Access is begin return new Configs.Config_Record; end Config_New; procedure Config_Delete (Config : in out Configs.Config_Access) is use Configs; procedure Free is new Ada.Unchecked_Deallocation (Object => Config_Record, Name => Config_Access); begin Free (Config); Config := null; end Config_Delete; end Config_Lists;
generic package any_Math.any_Arithmetic is pragma Pure; pragma Optimize (Time); end any_Math.any_Arithmetic;
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> <!DOCTYPE boost_serialization> <boost_serialization signature="serialization::archive" version="14"> <syndb class_id="0" tracking_level="0" version="0"> <userIPLatency>-1</userIPLatency> <userIPName></userIPName> <cdfg class_id="1" tracking_level="1" version="0" object_id="_0"> <name>yuv2rgb</name> <ret_bitwidth>0</ret_bitwidth> <ports class_id="2" tracking_level="0" version="0"> <count>10</count> <item_version>0</item_version> <item class_id="3" tracking_level="1" version="0" object_id="_1"> <Value class_id="4" tracking_level="0" version="0"> <Obj class_id="5" tracking_level="0" version="0"> <type>1</type> <id>1</id> <name>in_channels_ch1</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo class_id="6" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>in.channels.ch1</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>0</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs class_id="7" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_2"> <Value> <Obj> <type>1</type> <id>2</id> <name>in_channels_ch2</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>in.channels.ch2</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>0</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <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>in_channels_ch3</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>in.channels.ch3</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>0</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <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>in_width</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>in.width</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</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="_5"> <Value> <Obj> <type>1</type> <id>5</id> <name>in_height</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>in.height</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</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="_6"> <Value> <Obj> <type>1</type> <id>6</id> <name>out_channels_ch1</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>out.channels.ch1</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>1</direction> <if_type>1</if_type> <array_size>2457600</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_7"> <Value> <Obj> <type>1</type> <id>7</id> <name>out_channels_ch2</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>out.channels.ch2</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>1</direction> <if_type>1</if_type> <array_size>2457600</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_8"> <Value> <Obj> <type>1</type> <id>8</id> <name>out_channels_ch3</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>out.channels.ch3</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>1</direction> <if_type>1</if_type> <array_size>2457600</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_9"> <Value> <Obj> <type>1</type> <id>9</id> <name>out_width</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>out.width</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</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="_10"> <Value> <Obj> <type>1</type> <id>10</id> <name>out_height</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>out.height</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</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>86</count> <item_version>0</item_version> <item class_id="9" tracking_level="1" version="0" object_id="_11"> <Value> <Obj> <type>0</type> <id>16</id> <name>width</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>83</lineNumber> <contextFuncName>yuv2rgb</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item class_id="10" tracking_level="0" version="0"> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</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>yuv_filter.c</first> <second>yuv2rgb</second> </first> <second>83</second> </item> </second> </item> </inlineStackInfo> <originalName>width</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</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> </item> <item class_id_reference="9" object_id="_12"> <Value> <Obj> <type>0</type> <id>17</id> <name>height</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>84</lineNumber> <contextFuncName>yuv2rgb</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>yuv_filter.c</first> <second>yuv2rgb</second> </first> <second>84</second> </item> </second> </item> </inlineStackInfo> <originalName>height</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</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> </item> <item class_id_reference="9" object_id="_13"> <Value> <Obj> <type>0</type> <id>18</id> <name></name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>85</lineNumber> <contextFuncName>yuv2rgb</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>yuv_filter.c</first> <second>yuv2rgb</second> </first> <second>85</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>118</item> <item>119</item> <item>120</item> </oprand_edges> <opcode>write</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_14"> <Value> <Obj> <type>0</type> <id>19</id> <name></name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>86</lineNumber> <contextFuncName>yuv2rgb</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>yuv_filter.c</first> <second>yuv2rgb</second> </first> <second>86</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>121</item> <item>122</item> <item>123</item> </oprand_edges> <opcode>write</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_15"> <Value> <Obj> <type>0</type> <id>20</id> <name>cast</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>83</lineNumber> <contextFuncName>yuv2rgb</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>yuv_filter.c</first> <second>yuv2rgb</second> </first> <second>83</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>124</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_16"> <Value> <Obj> <type>0</type> <id>21</id> <name>cast1</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>84</lineNumber> <contextFuncName>yuv2rgb</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>yuv_filter.c</first> <second>yuv2rgb</second> </first> <second>84</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>125</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_17"> <Value> <Obj> <type>0</type> <id>22</id> <name>bound</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>84</lineNumber> <contextFuncName>yuv2rgb</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>yuv_filter.c</first> <second>yuv2rgb</second> </first> <second>84</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>126</item> <item>127</item> </oprand_edges> <opcode>mul</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_18"> <Value> <Obj> <type>0</type> <id>23</id> <name></name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>89</lineNumber> <contextFuncName>yuv2rgb</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>yuv_filter.c</first> <second>yuv2rgb</second> </first> <second>89</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>128</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_19"> <Value> <Obj> <type>0</type> <id>25</id> <name>indvar_flatten</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> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>130</item> <item>131</item> <item>132</item> <item>133</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_20"> <Value> <Obj> <type>0</type> <id>26</id> <name>x</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>94</lineNumber> <contextFuncName>yuv2rgb</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>yuv_filter.c</first> <second>yuv2rgb</second> </first> <second>94</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>135</item> <item>136</item> <item>137</item> <item>138</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_21"> <Value> <Obj> <type>0</type> <id>27</id> <name>y</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>y</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>139</item> <item>140</item> <item>141</item> <item>142</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_22"> <Value> <Obj> <type>0</type> <id>28</id> <name>exitcond_flatten</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>84</lineNumber> <contextFuncName>yuv2rgb</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>yuv_filter.c</first> <second>yuv2rgb</second> </first> <second>84</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>143</item> <item>144</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_23"> <Value> <Obj> <type>0</type> <id>29</id> <name>indvar_flatten_next</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> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>145</item> <item>147</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_24"> <Value> <Obj> <type>0</type> <id>30</id> <name></name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>84</lineNumber> <contextFuncName>yuv2rgb</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>yuv_filter.c</first> <second>yuv2rgb</second> </first> <second>84</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>148</item> <item>149</item> <item>150</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_25"> <Value> <Obj> <type>0</type> <id>32</id> <name>x_1</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>89</lineNumber> <contextFuncName>yuv2rgb</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>yuv_filter.c</first> <second>yuv2rgb</second> </first> <second>89</second> </item> </second> </item> </inlineStackInfo> <originalName>x</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>152</item> <item>153</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_26"> <Value> <Obj> <type>0</type> <id>35</id> <name>exitcond</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>92</lineNumber> <contextFuncName>yuv2rgb</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>yuv_filter.c</first> <second>yuv2rgb</second> </first> <second>92</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>154</item> <item>155</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_27"> <Value> <Obj> <type>0</type> <id>36</id> <name>y_mid2</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>92</lineNumber> <contextFuncName>yuv2rgb</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>yuv_filter.c</first> <second>yuv2rgb</second> </first> <second>92</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>156</item> <item>157</item> <item>158</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_28"> <Value> <Obj> <type>0</type> <id>37</id> <name>tmp_mid2_v</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>94</lineNumber> <contextFuncName>yuv2rgb</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>yuv_filter.c</first> <second>yuv2rgb</second> </first> <second>94</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>159</item> <item>160</item> <item>161</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_29"> <Value> <Obj> <type>0</type> <id>38</id> <name>tmp</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>94</lineNumber> <contextFuncName>yuv2rgb</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>yuv_filter.c</first> <second>yuv2rgb</second> </first> <second>94</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>13</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>162</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_30"> <Value> <Obj> <type>0</type> <id>39</id> <name>p_shl2_cast</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>94</lineNumber> <contextFuncName>yuv2rgb</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>yuv_filter.c</first> <second>yuv2rgb</second> </first> <second>94</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>23</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>164</item> <item>165</item> <item>167</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_31"> <Value> <Obj> <type>0</type> <id>40</id> <name>tmp_1</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>94</lineNumber> <contextFuncName>yuv2rgb</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>yuv_filter.c</first> <second>yuv2rgb</second> </first> <second>94</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>15</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>168</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_32"> <Value> <Obj> <type>0</type> <id>41</id> <name>p_shl3_cast</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>103</lineNumber> <contextFuncName>yuv2rgb</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>yuv_filter.c</first> <second>yuv2rgb</second> </first> <second>103</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>23</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>170</item> <item>171</item> <item>173</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_33"> <Value> <Obj> <type>0</type> <id>42</id> <name>tmp_7</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>103</lineNumber> <contextFuncName>yuv2rgb</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>yuv_filter.c</first> <second>yuv2rgb</second> </first> <second>103</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>23</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>174</item> <item>175</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_34"> <Value> <Obj> <type>0</type> <id>46</id> <name>tmp_cast</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>103</lineNumber> <contextFuncName>yuv2rgb</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>yuv_filter.c</first> <second>yuv2rgb</second> </first> <second>103</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>23</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>176</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_35"> <Value> <Obj> <type>0</type> <id>47</id> <name>tmp_s</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>103</lineNumber> <contextFuncName>yuv2rgb</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>yuv_filter.c</first> <second>yuv2rgb</second> </first> <second>103</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>23</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>177</item> <item>178</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_36"> <Value> <Obj> <type>0</type> <id>48</id> <name>tmp_15_cast</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>103</lineNumber> <contextFuncName>yuv2rgb</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>yuv_filter.c</first> <second>yuv2rgb</second> </first> <second>103</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>179</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_37"> <Value> <Obj> <type>0</type> <id>49</id> <name>out_channels_ch1_add</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>103</lineNumber> <contextFuncName>yuv2rgb</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>yuv_filter.c</first> <second>yuv2rgb</second> </first> <second>103</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>22</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>180</item> <item>182</item> <item>183</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_38"> <Value> <Obj> <type>0</type> <id>50</id> <name>out_channels_ch2_add</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>104</lineNumber> <contextFuncName>yuv2rgb</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>yuv_filter.c</first> <second>yuv2rgb</second> </first> <second>104</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>22</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>184</item> <item>185</item> <item>186</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_39"> <Value> <Obj> <type>0</type> <id>51</id> <name>out_channels_ch3_add</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>105</lineNumber> <contextFuncName>yuv2rgb</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>yuv_filter.c</first> <second>yuv2rgb</second> </first> <second>105</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>22</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>187</item> <item>188</item> <item>189</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_40"> <Value> <Obj> <type>0</type> <id>52</id> <name>Y</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>94</lineNumber> <contextFuncName>yuv2rgb</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>yuv_filter.c</first> <second>yuv2rgb</second> </first> <second>94</second> </item> </second> </item> </inlineStackInfo> <originalName>Y</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>191</item> <item>192</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_41"> <Value> <Obj> <type>0</type> <id>53</id> <name>U</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>95</lineNumber> <contextFuncName>yuv2rgb</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>yuv_filter.c</first> <second>yuv2rgb</second> </first> <second>95</second> </item> </second> </item> </inlineStackInfo> <originalName>U</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>193</item> <item>194</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_42"> <Value> <Obj> <type>0</type> <id>54</id> <name>V</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>96</lineNumber> <contextFuncName>yuv2rgb</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>yuv_filter.c</first> <second>yuv2rgb</second> </first> <second>96</second> </item> </second> </item> </inlineStackInfo> <originalName>V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>195</item> <item>196</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_43"> <Value> <Obj> <type>0</type> <id>55</id> <name>tmp_13_cast</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>97</lineNumber> <contextFuncName>yuv2rgb</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>yuv_filter.c</first> <second>yuv2rgb</second> </first> <second>97</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>197</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_44"> <Value> <Obj> <type>0</type> <id>56</id> <name>C</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>97</lineNumber> <contextFuncName>yuv2rgb</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>yuv_filter.c</first> <second>yuv2rgb</second> </first> <second>97</second> </item> </second> </item> </inlineStackInfo> <originalName>C</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>199</item> <item>200</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_45"> <Value> <Obj> <type>0</type> <id>57</id> <name>D</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>98</lineNumber> <contextFuncName>yuv2rgb</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>yuv_filter.c</first> <second>yuv2rgb</second> </first> <second>98</second> </item> </second> </item> </inlineStackInfo> <originalName>D</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>201</item> <item>203</item> </oprand_edges> <opcode>xor</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_46"> <Value> <Obj> <type>0</type> <id>58</id> <name>E</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>99</lineNumber> <contextFuncName>yuv2rgb</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>yuv_filter.c</first> <second>yuv2rgb</second> </first> <second>99</second> </item> </second> </item> </inlineStackInfo> <originalName>E</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>204</item> <item>205</item> </oprand_edges> <opcode>xor</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_47"> <Value> <Obj> <type>0</type> <id>59</id> <name>tmp_16_cast</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>100</lineNumber> <contextFuncName>yuv2rgb</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>yuv_filter.c</first> <second>yuv2rgb</second> </first> <second>100</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>206</item> </oprand_edges> <opcode>sext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_48"> <Value> <Obj> <type>0</type> <id>60</id> <name>tmp_3</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>100</lineNumber> <contextFuncName>yuv2rgb</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>yuv_filter.c</first> <second>yuv2rgb</second> </first> <second>100</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>208</item> <item>209</item> </oprand_edges> <opcode>mul</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_49"> <Value> <Obj> <type>0</type> <id>61</id> <name>tmp_18_cast4</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>101</lineNumber> <contextFuncName>yuv2rgb</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>yuv_filter.c</first> <second>yuv2rgb</second> </first> <second>101</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>210</item> </oprand_edges> <opcode>sext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_50"> <Value> <Obj> <type>0</type> <id>62</id> <name>tmp_18_cast4_cast</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>100</lineNumber> <contextFuncName>yuv2rgb</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>yuv_filter.c</first> <second>yuv2rgb</second> </first> <second>100</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>211</item> </oprand_edges> <opcode>sext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_51"> <Value> <Obj> <type>0</type> <id>63</id> <name>tmp_4</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>100</lineNumber> <contextFuncName>yuv2rgb</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>yuv_filter.c</first> <second>yuv2rgb</second> </first> <second>100</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>213</item> <item>214</item> </oprand_edges> <opcode>mul</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_52"> <Value> <Obj> <type>0</type> <id>64</id> <name>tmp_5</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>100</lineNumber> <contextFuncName>yuv2rgb</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>yuv_filter.c</first> <second>yuv2rgb</second> </first> <second>100</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>216</item> <item>217</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_53"> <Value> <Obj> <type>0</type> <id>65</id> <name>tmp_20_cast</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>100</lineNumber> <contextFuncName>yuv2rgb</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>yuv_filter.c</first> <second>yuv2rgb</second> </first> <second>100</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>218</item> </oprand_edges> <opcode>sext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_54"> <Value> <Obj> <type>0</type> <id>66</id> <name>tmp_6</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>100</lineNumber> <contextFuncName>yuv2rgb</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>yuv_filter.c</first> <second>yuv2rgb</second> </first> <second>100</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>219</item> <item>220</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_55"> <Value> <Obj> <type>0</type> <id>67</id> <name>tmp_8</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>100</lineNumber> <contextFuncName>yuv2rgb</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>yuv_filter.c</first> <second>yuv2rgb</second> </first> <second>100</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>222</item> <item>223</item> <item>225</item> <item>227</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_56"> <Value> <Obj> <type>0</type> <id>68</id> <name>icmp</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>100</lineNumber> <contextFuncName>yuv2rgb</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>yuv_filter.c</first> <second>yuv2rgb</second> </first> <second>100</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>228</item> <item>230</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_57"> <Value> <Obj> <type>0</type> <id>69</id> <name>tmp_9</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>100</lineNumber> <contextFuncName>yuv2rgb</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>yuv_filter.c</first> <second>yuv2rgb</second> </first> <second>100</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>232</item> <item>233</item> <item>234</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_58"> <Value> <Obj> <type>0</type> <id>70</id> <name>phitmp</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>100</lineNumber> <contextFuncName>yuv2rgb</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>yuv_filter.c</first> <second>yuv2rgb</second> </first> <second>100</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>236</item> <item>237</item> <item>239</item> <item>241</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_59"> <Value> <Obj> <type>0</type> <id>71</id> <name>p_phitmp</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>100</lineNumber> <contextFuncName>yuv2rgb</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>yuv_filter.c</first> <second>yuv2rgb</second> </first> <second>100</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>242</item> <item>244</item> <item>245</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_60"> <Value> <Obj> <type>0</type> <id>72</id> <name>tmp_10</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>100</lineNumber> <contextFuncName>yuv2rgb</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>yuv_filter.c</first> <second>yuv2rgb</second> </first> <second>100</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>246</item> <item>247</item> </oprand_edges> <opcode>or</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_61"> <Value> <Obj> <type>0</type> <id>73</id> <name>R</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>100</lineNumber> <contextFuncName>yuv2rgb</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>yuv_filter.c</first> <second>yuv2rgb</second> </first> <second>100</second> </item> </second> </item> </inlineStackInfo> <originalName>R</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>248</item> <item>249</item> <item>250</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_62"> <Value> <Obj> <type>0</type> <id>74</id> <name>tmp_26_cast3_cast</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>101</lineNumber> <contextFuncName>yuv2rgb</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>yuv_filter.c</first> <second>yuv2rgb</second> </first> <second>101</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>251</item> </oprand_edges> <opcode>sext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_63"> <Value> <Obj> <type>0</type> <id>75</id> <name>tmp_11</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>101</lineNumber> <contextFuncName>yuv2rgb</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>yuv_filter.c</first> <second>yuv2rgb</second> </first> <second>101</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>253</item> <item>254</item> </oprand_edges> <opcode>mul</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_64"> <Value> <Obj> <type>0</type> <id>76</id> <name>tmp_11_cast</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>101</lineNumber> <contextFuncName>yuv2rgb</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>yuv_filter.c</first> <second>yuv2rgb</second> </first> <second>101</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>255</item> </oprand_edges> <opcode>sext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_65"> <Value> <Obj> <type>0</type> <id>77</id> <name>tmp_12</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>101</lineNumber> <contextFuncName>yuv2rgb</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>yuv_filter.c</first> <second>yuv2rgb</second> </first> <second>101</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>17</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>257</item> <item>258</item> </oprand_edges> <opcode>mul</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_66"> <Value> <Obj> <type>0</type> <id>78</id> <name>tmp1</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>101</lineNumber> <contextFuncName>yuv2rgb</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>yuv_filter.c</first> <second>yuv2rgb</second> </first> <second>101</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>17</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>259</item> <item>260</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_67"> <Value> <Obj> <type>0</type> <id>79</id> <name>tmp1_cast</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>101</lineNumber> <contextFuncName>yuv2rgb</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>yuv_filter.c</first> <second>yuv2rgb</second> </first> <second>101</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>261</item> </oprand_edges> <opcode>sext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_68"> <Value> <Obj> <type>0</type> <id>80</id> <name>tmp_13</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>101</lineNumber> <contextFuncName>yuv2rgb</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>yuv_filter.c</first> <second>yuv2rgb</second> </first> <second>101</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>262</item> <item>263</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_69"> <Value> <Obj> <type>0</type> <id>81</id> <name>tmp_14</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>101</lineNumber> <contextFuncName>yuv2rgb</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>yuv_filter.c</first> <second>yuv2rgb</second> </first> <second>101</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>264</item> <item>265</item> <item>266</item> <item>267</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_70"> <Value> <Obj> <type>0</type> <id>82</id> <name>icmp1</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>101</lineNumber> <contextFuncName>yuv2rgb</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>yuv_filter.c</first> <second>yuv2rgb</second> </first> <second>101</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>268</item> <item>269</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_71"> <Value> <Obj> <type>0</type> <id>83</id> <name>tmp_15</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>101</lineNumber> <contextFuncName>yuv2rgb</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>yuv_filter.c</first> <second>yuv2rgb</second> </first> <second>101</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>270</item> <item>271</item> <item>272</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_72"> <Value> <Obj> <type>0</type> <id>84</id> <name>phitmp2</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>101</lineNumber> <contextFuncName>yuv2rgb</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>yuv_filter.c</first> <second>yuv2rgb</second> </first> <second>101</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>273</item> <item>274</item> <item>275</item> <item>276</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_73"> <Value> <Obj> <type>0</type> <id>85</id> <name>p_phitmp2</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>101</lineNumber> <contextFuncName>yuv2rgb</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>yuv_filter.c</first> <second>yuv2rgb</second> </first> <second>101</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>277</item> <item>278</item> <item>279</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_74"> <Value> <Obj> <type>0</type> <id>86</id> <name>tmp_16</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>101</lineNumber> <contextFuncName>yuv2rgb</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>yuv_filter.c</first> <second>yuv2rgb</second> </first> <second>101</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>280</item> <item>281</item> </oprand_edges> <opcode>or</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_75"> <Value> <Obj> <type>0</type> <id>87</id> <name>G</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>101</lineNumber> <contextFuncName>yuv2rgb</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>yuv_filter.c</first> <second>yuv2rgb</second> </first> <second>101</second> </item> </second> </item> </inlineStackInfo> <originalName>G</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>282</item> <item>283</item> <item>284</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_76"> <Value> <Obj> <type>0</type> <id>88</id> <name>p_shl</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>102</lineNumber> <contextFuncName>yuv2rgb</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>yuv_filter.c</first> <second>yuv2rgb</second> </first> <second>102</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>17</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>286</item> <item>287</item> <item>289</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_77"> <Value> <Obj> <type>0</type> <id>89</id> <name>p_shl_cast</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>102</lineNumber> <contextFuncName>yuv2rgb</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>yuv_filter.c</first> <second>yuv2rgb</second> </first> <second>102</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>290</item> </oprand_edges> <opcode>sext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_78"> <Value> <Obj> <type>0</type> <id>90</id> <name>p_shl1</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>102</lineNumber> <contextFuncName>yuv2rgb</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>yuv_filter.c</first> <second>yuv2rgb</second> </first> <second>102</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>10</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>292</item> <item>293</item> <item>295</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_79"> <Value> <Obj> <type>0</type> <id>91</id> <name>p_shl1_cast</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>102</lineNumber> <contextFuncName>yuv2rgb</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>yuv_filter.c</first> <second>yuv2rgb</second> </first> <second>102</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>296</item> </oprand_edges> <opcode>sext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_80"> <Value> <Obj> <type>0</type> <id>92</id> <name>tmp_17</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>102</lineNumber> <contextFuncName>yuv2rgb</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>yuv_filter.c</first> <second>yuv2rgb</second> </first> <second>102</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>297</item> <item>298</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_81"> <Value> <Obj> <type>0</type> <id>93</id> <name>tmp_35_cast</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>102</lineNumber> <contextFuncName>yuv2rgb</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>yuv_filter.c</first> <second>yuv2rgb</second> </first> <second>102</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>299</item> </oprand_edges> <opcode>sext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_82"> <Value> <Obj> <type>0</type> <id>94</id> <name>tmp_18</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>102</lineNumber> <contextFuncName>yuv2rgb</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>yuv_filter.c</first> <second>yuv2rgb</second> </first> <second>102</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>300</item> <item>301</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_83"> <Value> <Obj> <type>0</type> <id>95</id> <name>tmp_19</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>102</lineNumber> <contextFuncName>yuv2rgb</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>yuv_filter.c</first> <second>yuv2rgb</second> </first> <second>102</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>19</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>302</item> <item>303</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_84"> <Value> <Obj> <type>0</type> <id>96</id> <name>tmp_20</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>102</lineNumber> <contextFuncName>yuv2rgb</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>yuv_filter.c</first> <second>yuv2rgb</second> </first> <second>102</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>305</item> <item>306</item> <item>307</item> <item>309</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_85"> <Value> <Obj> <type>0</type> <id>97</id> <name>icmp2</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>102</lineNumber> <contextFuncName>yuv2rgb</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>yuv_filter.c</first> <second>yuv2rgb</second> </first> <second>102</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>310</item> <item>312</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_86"> <Value> <Obj> <type>0</type> <id>98</id> <name>tmp_21</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>102</lineNumber> <contextFuncName>yuv2rgb</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>yuv_filter.c</first> <second>yuv2rgb</second> </first> <second>102</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>314</item> <item>315</item> <item>316</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_87"> <Value> <Obj> <type>0</type> <id>99</id> <name>phitmp3</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>102</lineNumber> <contextFuncName>yuv2rgb</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>yuv_filter.c</first> <second>yuv2rgb</second> </first> <second>102</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>317</item> <item>318</item> <item>319</item> <item>320</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_88"> <Value> <Obj> <type>0</type> <id>100</id> <name>p_phitmp3</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>102</lineNumber> <contextFuncName>yuv2rgb</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>yuv_filter.c</first> <second>yuv2rgb</second> </first> <second>102</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>321</item> <item>322</item> <item>323</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_89"> <Value> <Obj> <type>0</type> <id>101</id> <name>tmp_22</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>102</lineNumber> <contextFuncName>yuv2rgb</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>yuv_filter.c</first> <second>yuv2rgb</second> </first> <second>102</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>324</item> <item>325</item> </oprand_edges> <opcode>or</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_90"> <Value> <Obj> <type>0</type> <id>102</id> <name>B</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>102</lineNumber> <contextFuncName>yuv2rgb</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>yuv_filter.c</first> <second>yuv2rgb</second> </first> <second>102</second> </item> </second> </item> </inlineStackInfo> <originalName>B</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>326</item> <item>327</item> <item>328</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_91"> <Value> <Obj> <type>0</type> <id>103</id> <name></name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>103</lineNumber> <contextFuncName>yuv2rgb</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>yuv_filter.c</first> <second>yuv2rgb</second> </first> <second>103</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>329</item> <item>330</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_92"> <Value> <Obj> <type>0</type> <id>104</id> <name></name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>104</lineNumber> <contextFuncName>yuv2rgb</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>yuv_filter.c</first> <second>yuv2rgb</second> </first> <second>104</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>331</item> <item>332</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_93"> <Value> <Obj> <type>0</type> <id>105</id> <name></name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>105</lineNumber> <contextFuncName>yuv2rgb</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>yuv_filter.c</first> <second>yuv2rgb</second> </first> <second>105</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>333</item> <item>334</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_94"> <Value> <Obj> <type>0</type> <id>107</id> <name>y_1</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>92</lineNumber> <contextFuncName>yuv2rgb</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>yuv_filter.c</first> <second>yuv2rgb</second> </first> <second>92</second> </item> </second> </item> </inlineStackInfo> <originalName>y</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>335</item> <item>336</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_95"> <Value> <Obj> <type>0</type> <id>108</id> <name></name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>92</lineNumber> <contextFuncName>yuv2rgb</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>yuv_filter.c</first> <second>yuv2rgb</second> </first> <second>92</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>337</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_96"> <Value> <Obj> <type>0</type> <id>110</id> <name></name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>108</lineNumber> <contextFuncName>yuv2rgb</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>yuv_filter.c</first> <second>yuv2rgb</second> </first> <second>108</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>0</count> <item_version>0</item_version> </oprand_edges> <opcode>ret</opcode> <m_Display>0</m_Display> </item> </nodes> <consts class_id="15" tracking_level="0" version="0"> <count>24</count> <item_version>0</item_version> <item class_id="16" tracking_level="1" version="0" object_id="_97"> <Value> <Obj> <type>2</type> <id>129</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>0</content> </item> <item class_id_reference="16" object_id="_98"> <Value> <Obj> <type>2</type> <id>134</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="_99"> <Value> <Obj> <type>2</type> <id>146</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="_100"> <Value> <Obj> <type>2</type> <id>151</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>1</content> </item> <item class_id_reference="16" object_id="_101"> <Value> <Obj> <type>2</type> <id>166</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>10</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_102"> <Value> <Obj> <type>2</type> <id>172</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_103"> <Value> <Obj> <type>2</type> <id>181</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="_104"> <Value> <Obj> <type>2</type> <id>198</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>9</bitwidth> </Value> <const_type>0</const_type> <content>496</content> </item> <item class_id_reference="16" object_id="_105"> <Value> <Obj> <type>2</type> <id>202</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <const_type>0</const_type> <content>128</content> </item> <item class_id_reference="16" object_id="_106"> <Value> <Obj> <type>2</type> <id>207</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>18</bitwidth> </Value> <const_type>0</const_type> <content>298</content> </item> <item class_id_reference="16" object_id="_107"> <Value> <Obj> <type>2</type> <id>212</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>18</bitwidth> </Value> <const_type>0</const_type> <content>409</content> </item> <item class_id_reference="16" object_id="_108"> <Value> <Obj> <type>2</type> <id>215</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>18</bitwidth> </Value> <const_type>0</const_type> <content>128</content> </item> <item class_id_reference="16" object_id="_109"> <Value> <Obj> <type>2</type> <id>224</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>16</content> </item> <item class_id_reference="16" object_id="_110"> <Value> <Obj> <type>2</type> <id>226</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>17</content> </item> <item class_id_reference="16" object_id="_111"> <Value> <Obj> <type>2</type> <id>229</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>1</content> </item> <item class_id_reference="16" object_id="_112"> <Value> <Obj> <type>2</type> <id>238</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>8</content> </item> <item class_id_reference="16" object_id="_113"> <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>32</bitwidth> </Value> <const_type>0</const_type> <content>15</content> </item> <item class_id_reference="16" object_id="_114"> <Value> <Obj> <type>2</type> <id>243</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <const_type>0</const_type> <content>255</content> </item> <item class_id_reference="16" object_id="_115"> <Value> <Obj> <type>2</type> <id>252</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>65436</content> </item> <item class_id_reference="16" object_id="_116"> <Value> <Obj> <type>2</type> <id>256</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>17</bitwidth> </Value> <const_type>0</const_type> <content>130864</content> </item> <item class_id_reference="16" object_id="_117"> <Value> <Obj> <type>2</type> <id>288</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>9</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_118"> <Value> <Obj> <type>2</type> <id>294</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="_119"> <Value> <Obj> <type>2</type> <id>308</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>18</content> </item> <item class_id_reference="16" object_id="_120"> <Value> <Obj> <type>2</type> <id>311</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>4</count> <item_version>0</item_version> <item class_id="18" tracking_level="1" version="0" object_id="_121"> <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>8</count> <item_version>0</item_version> <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="_122"> <Obj> <type>3</type> <id>31</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>6</count> <item_version>0</item_version> <item>25</item> <item>26</item> <item>27</item> <item>28</item> <item>29</item> <item>30</item> </node_objs> </item> <item class_id_reference="18" object_id="_123"> <Obj> <type>3</type> <id>109</id> <name>.reset</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>71</count> <item_version>0</item_version> <item>32</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>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> <item>65</item> <item>66</item> <item>67</item> <item>68</item> <item>69</item> <item>70</item> <item>71</item> <item>72</item> <item>73</item> <item>74</item> <item>75</item> <item>76</item> <item>77</item> <item>78</item> <item>79</item> <item>80</item> <item>81</item> <item>82</item> <item>83</item> <item>84</item> <item>85</item> <item>86</item> <item>87</item> <item>88</item> <item>89</item> <item>90</item> <item>91</item> <item>92</item> <item>93</item> <item>94</item> <item>95</item> <item>96</item> <item>97</item> <item>98</item> <item>99</item> <item>100</item> <item>101</item> <item>102</item> <item>103</item> <item>104</item> <item>105</item> <item>107</item> <item>108</item> </node_objs> </item> <item class_id_reference="18" object_id="_124"> <Obj> <type>3</type> <id>111</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>110</item> </node_objs> </item> </blocks> <edges class_id="19" tracking_level="0" version="0"> <count>174</count> <item_version>0</item_version> <item class_id="20" tracking_level="1" version="0" object_id="_125"> <id>114</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>16</sink_obj> </item> <item class_id_reference="20" object_id="_126"> <id>116</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>17</sink_obj> </item> <item class_id_reference="20" object_id="_127"> <id>119</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>18</sink_obj> </item> <item class_id_reference="20" object_id="_128"> <id>120</id> <edge_type>1</edge_type> <source_obj>16</source_obj> <sink_obj>18</sink_obj> </item> <item class_id_reference="20" object_id="_129"> <id>122</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>19</sink_obj> </item> <item class_id_reference="20" object_id="_130"> <id>123</id> <edge_type>1</edge_type> <source_obj>17</source_obj> <sink_obj>19</sink_obj> </item> <item class_id_reference="20" object_id="_131"> <id>124</id> <edge_type>1</edge_type> <source_obj>16</source_obj> <sink_obj>20</sink_obj> </item> <item class_id_reference="20" object_id="_132"> <id>125</id> <edge_type>1</edge_type> <source_obj>17</source_obj> <sink_obj>21</sink_obj> </item> <item class_id_reference="20" object_id="_133"> <id>126</id> <edge_type>1</edge_type> <source_obj>21</source_obj> <sink_obj>22</sink_obj> </item> <item class_id_reference="20" object_id="_134"> <id>127</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>22</sink_obj> </item> <item class_id_reference="20" object_id="_135"> <id>128</id> <edge_type>2</edge_type> <source_obj>31</source_obj> <sink_obj>23</sink_obj> </item> <item class_id_reference="20" object_id="_136"> <id>130</id> <edge_type>1</edge_type> <source_obj>129</source_obj> <sink_obj>25</sink_obj> </item> <item class_id_reference="20" object_id="_137"> <id>131</id> <edge_type>2</edge_type> <source_obj>24</source_obj> <sink_obj>25</sink_obj> </item> <item class_id_reference="20" object_id="_138"> <id>132</id> <edge_type>1</edge_type> <source_obj>29</source_obj> <sink_obj>25</sink_obj> </item> <item class_id_reference="20" object_id="_139"> <id>133</id> <edge_type>2</edge_type> <source_obj>109</source_obj> <sink_obj>25</sink_obj> </item> <item class_id_reference="20" object_id="_140"> <id>135</id> <edge_type>1</edge_type> <source_obj>134</source_obj> <sink_obj>26</sink_obj> </item> <item class_id_reference="20" object_id="_141"> <id>136</id> <edge_type>2</edge_type> <source_obj>24</source_obj> <sink_obj>26</sink_obj> </item> <item class_id_reference="20" object_id="_142"> <id>137</id> <edge_type>1</edge_type> <source_obj>37</source_obj> <sink_obj>26</sink_obj> </item> <item class_id_reference="20" object_id="_143"> <id>138</id> <edge_type>2</edge_type> <source_obj>109</source_obj> <sink_obj>26</sink_obj> </item> <item class_id_reference="20" object_id="_144"> <id>139</id> <edge_type>1</edge_type> <source_obj>134</source_obj> <sink_obj>27</sink_obj> </item> <item class_id_reference="20" object_id="_145"> <id>140</id> <edge_type>2</edge_type> <source_obj>24</source_obj> <sink_obj>27</sink_obj> </item> <item class_id_reference="20" object_id="_146"> <id>141</id> <edge_type>1</edge_type> <source_obj>107</source_obj> <sink_obj>27</sink_obj> </item> <item class_id_reference="20" object_id="_147"> <id>142</id> <edge_type>2</edge_type> <source_obj>109</source_obj> <sink_obj>27</sink_obj> </item> <item class_id_reference="20" object_id="_148"> <id>143</id> <edge_type>1</edge_type> <source_obj>25</source_obj> <sink_obj>28</sink_obj> </item> <item class_id_reference="20" object_id="_149"> <id>144</id> <edge_type>1</edge_type> <source_obj>22</source_obj> <sink_obj>28</sink_obj> </item> <item class_id_reference="20" object_id="_150"> <id>145</id> <edge_type>1</edge_type> <source_obj>25</source_obj> <sink_obj>29</sink_obj> </item> <item class_id_reference="20" object_id="_151"> <id>147</id> <edge_type>1</edge_type> <source_obj>146</source_obj> <sink_obj>29</sink_obj> </item> <item class_id_reference="20" object_id="_152"> <id>148</id> <edge_type>1</edge_type> <source_obj>28</source_obj> <sink_obj>30</sink_obj> </item> <item class_id_reference="20" object_id="_153"> <id>149</id> <edge_type>2</edge_type> <source_obj>109</source_obj> <sink_obj>30</sink_obj> </item> <item class_id_reference="20" object_id="_154"> <id>150</id> <edge_type>2</edge_type> <source_obj>111</source_obj> <sink_obj>30</sink_obj> </item> <item class_id_reference="20" object_id="_155"> <id>152</id> <edge_type>1</edge_type> <source_obj>151</source_obj> <sink_obj>32</sink_obj> </item> <item class_id_reference="20" object_id="_156"> <id>153</id> <edge_type>1</edge_type> <source_obj>26</source_obj> <sink_obj>32</sink_obj> </item> <item class_id_reference="20" object_id="_157"> <id>154</id> <edge_type>1</edge_type> <source_obj>27</source_obj> <sink_obj>35</sink_obj> </item> <item class_id_reference="20" object_id="_158"> <id>155</id> <edge_type>1</edge_type> <source_obj>17</source_obj> <sink_obj>35</sink_obj> </item> <item class_id_reference="20" object_id="_159"> <id>156</id> <edge_type>1</edge_type> <source_obj>35</source_obj> <sink_obj>36</sink_obj> </item> <item class_id_reference="20" object_id="_160"> <id>157</id> <edge_type>1</edge_type> <source_obj>134</source_obj> <sink_obj>36</sink_obj> </item> <item class_id_reference="20" object_id="_161"> <id>158</id> <edge_type>1</edge_type> <source_obj>27</source_obj> <sink_obj>36</sink_obj> </item> <item class_id_reference="20" object_id="_162"> <id>159</id> <edge_type>1</edge_type> <source_obj>35</source_obj> <sink_obj>37</sink_obj> </item> <item class_id_reference="20" object_id="_163"> <id>160</id> <edge_type>1</edge_type> <source_obj>32</source_obj> <sink_obj>37</sink_obj> </item> <item class_id_reference="20" object_id="_164"> <id>161</id> <edge_type>1</edge_type> <source_obj>26</source_obj> <sink_obj>37</sink_obj> </item> <item class_id_reference="20" object_id="_165"> <id>162</id> <edge_type>1</edge_type> <source_obj>37</source_obj> <sink_obj>38</sink_obj> </item> <item class_id_reference="20" object_id="_166"> <id>165</id> <edge_type>1</edge_type> <source_obj>38</source_obj> <sink_obj>39</sink_obj> </item> <item class_id_reference="20" object_id="_167"> <id>167</id> <edge_type>1</edge_type> <source_obj>166</source_obj> <sink_obj>39</sink_obj> </item> <item class_id_reference="20" object_id="_168"> <id>168</id> <edge_type>1</edge_type> <source_obj>37</source_obj> <sink_obj>40</sink_obj> </item> <item class_id_reference="20" object_id="_169"> <id>171</id> <edge_type>1</edge_type> <source_obj>40</source_obj> <sink_obj>41</sink_obj> </item> <item class_id_reference="20" object_id="_170"> <id>173</id> <edge_type>1</edge_type> <source_obj>172</source_obj> <sink_obj>41</sink_obj> </item> <item class_id_reference="20" object_id="_171"> <id>174</id> <edge_type>1</edge_type> <source_obj>41</source_obj> <sink_obj>42</sink_obj> </item> <item class_id_reference="20" object_id="_172"> <id>175</id> <edge_type>1</edge_type> <source_obj>39</source_obj> <sink_obj>42</sink_obj> </item> <item class_id_reference="20" object_id="_173"> <id>176</id> <edge_type>1</edge_type> <source_obj>36</source_obj> <sink_obj>46</sink_obj> </item> <item class_id_reference="20" object_id="_174"> <id>177</id> <edge_type>1</edge_type> <source_obj>42</source_obj> <sink_obj>47</sink_obj> </item> <item class_id_reference="20" object_id="_175"> <id>178</id> <edge_type>1</edge_type> <source_obj>46</source_obj> <sink_obj>47</sink_obj> </item> <item class_id_reference="20" object_id="_176"> <id>179</id> <edge_type>1</edge_type> <source_obj>47</source_obj> <sink_obj>48</sink_obj> </item> <item class_id_reference="20" object_id="_177"> <id>180</id> <edge_type>1</edge_type> <source_obj>6</source_obj> <sink_obj>49</sink_obj> </item> <item class_id_reference="20" object_id="_178"> <id>182</id> <edge_type>1</edge_type> <source_obj>181</source_obj> <sink_obj>49</sink_obj> </item> <item class_id_reference="20" object_id="_179"> <id>183</id> <edge_type>1</edge_type> <source_obj>48</source_obj> <sink_obj>49</sink_obj> </item> <item class_id_reference="20" object_id="_180"> <id>184</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>50</sink_obj> </item> <item class_id_reference="20" object_id="_181"> <id>185</id> <edge_type>1</edge_type> <source_obj>181</source_obj> <sink_obj>50</sink_obj> </item> <item class_id_reference="20" object_id="_182"> <id>186</id> <edge_type>1</edge_type> <source_obj>48</source_obj> <sink_obj>50</sink_obj> </item> <item class_id_reference="20" object_id="_183"> <id>187</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>51</sink_obj> </item> <item class_id_reference="20" object_id="_184"> <id>188</id> <edge_type>1</edge_type> <source_obj>181</source_obj> <sink_obj>51</sink_obj> </item> <item class_id_reference="20" object_id="_185"> <id>189</id> <edge_type>1</edge_type> <source_obj>48</source_obj> <sink_obj>51</sink_obj> </item> <item class_id_reference="20" object_id="_186"> <id>192</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>52</sink_obj> </item> <item class_id_reference="20" object_id="_187"> <id>194</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>53</sink_obj> </item> <item class_id_reference="20" object_id="_188"> <id>196</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>54</sink_obj> </item> <item class_id_reference="20" object_id="_189"> <id>197</id> <edge_type>1</edge_type> <source_obj>52</source_obj> <sink_obj>55</sink_obj> </item> <item class_id_reference="20" object_id="_190"> <id>199</id> <edge_type>1</edge_type> <source_obj>198</source_obj> <sink_obj>56</sink_obj> </item> <item class_id_reference="20" object_id="_191"> <id>200</id> <edge_type>1</edge_type> <source_obj>55</source_obj> <sink_obj>56</sink_obj> </item> <item class_id_reference="20" object_id="_192"> <id>201</id> <edge_type>1</edge_type> <source_obj>53</source_obj> <sink_obj>57</sink_obj> </item> <item class_id_reference="20" object_id="_193"> <id>203</id> <edge_type>1</edge_type> <source_obj>202</source_obj> <sink_obj>57</sink_obj> </item> <item class_id_reference="20" object_id="_194"> <id>204</id> <edge_type>1</edge_type> <source_obj>54</source_obj> <sink_obj>58</sink_obj> </item> <item class_id_reference="20" object_id="_195"> <id>205</id> <edge_type>1</edge_type> <source_obj>202</source_obj> <sink_obj>58</sink_obj> </item> <item class_id_reference="20" object_id="_196"> <id>206</id> <edge_type>1</edge_type> <source_obj>56</source_obj> <sink_obj>59</sink_obj> </item> <item class_id_reference="20" object_id="_197"> <id>208</id> <edge_type>1</edge_type> <source_obj>207</source_obj> <sink_obj>60</sink_obj> </item> <item class_id_reference="20" object_id="_198"> <id>209</id> <edge_type>1</edge_type> <source_obj>59</source_obj> <sink_obj>60</sink_obj> </item> <item class_id_reference="20" object_id="_199"> <id>210</id> <edge_type>1</edge_type> <source_obj>58</source_obj> <sink_obj>61</sink_obj> </item> <item class_id_reference="20" object_id="_200"> <id>211</id> <edge_type>1</edge_type> <source_obj>58</source_obj> <sink_obj>62</sink_obj> </item> <item class_id_reference="20" object_id="_201"> <id>213</id> <edge_type>1</edge_type> <source_obj>212</source_obj> <sink_obj>63</sink_obj> </item> <item class_id_reference="20" object_id="_202"> <id>214</id> <edge_type>1</edge_type> <source_obj>61</source_obj> <sink_obj>63</sink_obj> </item> <item class_id_reference="20" object_id="_203"> <id>216</id> <edge_type>1</edge_type> <source_obj>215</source_obj> <sink_obj>64</sink_obj> </item> <item class_id_reference="20" object_id="_204"> <id>217</id> <edge_type>1</edge_type> <source_obj>60</source_obj> <sink_obj>64</sink_obj> </item> <item class_id_reference="20" object_id="_205"> <id>218</id> <edge_type>1</edge_type> <source_obj>64</source_obj> <sink_obj>65</sink_obj> </item> <item class_id_reference="20" object_id="_206"> <id>219</id> <edge_type>1</edge_type> <source_obj>64</source_obj> <sink_obj>66</sink_obj> </item> <item class_id_reference="20" object_id="_207"> <id>220</id> <edge_type>1</edge_type> <source_obj>63</source_obj> <sink_obj>66</sink_obj> </item> <item class_id_reference="20" object_id="_208"> <id>223</id> <edge_type>1</edge_type> <source_obj>66</source_obj> <sink_obj>67</sink_obj> </item> <item class_id_reference="20" object_id="_209"> <id>225</id> <edge_type>1</edge_type> <source_obj>224</source_obj> <sink_obj>67</sink_obj> </item> <item class_id_reference="20" object_id="_210"> <id>227</id> <edge_type>1</edge_type> <source_obj>226</source_obj> <sink_obj>67</sink_obj> </item> <item class_id_reference="20" object_id="_211"> <id>228</id> <edge_type>1</edge_type> <source_obj>67</source_obj> <sink_obj>68</sink_obj> </item> <item class_id_reference="20" object_id="_212"> <id>230</id> <edge_type>1</edge_type> <source_obj>229</source_obj> <sink_obj>68</sink_obj> </item> <item class_id_reference="20" object_id="_213"> <id>233</id> <edge_type>1</edge_type> <source_obj>66</source_obj> <sink_obj>69</sink_obj> </item> <item class_id_reference="20" object_id="_214"> <id>234</id> <edge_type>1</edge_type> <source_obj>226</source_obj> <sink_obj>69</sink_obj> </item> <item class_id_reference="20" object_id="_215"> <id>237</id> <edge_type>1</edge_type> <source_obj>66</source_obj> <sink_obj>70</sink_obj> </item> <item class_id_reference="20" object_id="_216"> <id>239</id> <edge_type>1</edge_type> <source_obj>238</source_obj> <sink_obj>70</sink_obj> </item> <item class_id_reference="20" object_id="_217"> <id>241</id> <edge_type>1</edge_type> <source_obj>240</source_obj> <sink_obj>70</sink_obj> </item> <item class_id_reference="20" object_id="_218"> <id>242</id> <edge_type>1</edge_type> <source_obj>68</source_obj> <sink_obj>71</sink_obj> </item> <item class_id_reference="20" object_id="_219"> <id>244</id> <edge_type>1</edge_type> <source_obj>243</source_obj> <sink_obj>71</sink_obj> </item> <item class_id_reference="20" object_id="_220"> <id>245</id> <edge_type>1</edge_type> <source_obj>172</source_obj> <sink_obj>71</sink_obj> </item> <item class_id_reference="20" object_id="_221"> <id>246</id> <edge_type>1</edge_type> <source_obj>68</source_obj> <sink_obj>72</sink_obj> </item> <item class_id_reference="20" object_id="_222"> <id>247</id> <edge_type>1</edge_type> <source_obj>69</source_obj> <sink_obj>72</sink_obj> </item> <item class_id_reference="20" object_id="_223"> <id>248</id> <edge_type>1</edge_type> <source_obj>72</source_obj> <sink_obj>73</sink_obj> </item> <item class_id_reference="20" object_id="_224"> <id>249</id> <edge_type>1</edge_type> <source_obj>71</source_obj> <sink_obj>73</sink_obj> </item> <item class_id_reference="20" object_id="_225"> <id>250</id> <edge_type>1</edge_type> <source_obj>70</source_obj> <sink_obj>73</sink_obj> </item> <item class_id_reference="20" object_id="_226"> <id>251</id> <edge_type>1</edge_type> <source_obj>57</source_obj> <sink_obj>74</sink_obj> </item> <item class_id_reference="20" object_id="_227"> <id>253</id> <edge_type>1</edge_type> <source_obj>252</source_obj> <sink_obj>75</sink_obj> </item> <item class_id_reference="20" object_id="_228"> <id>254</id> <edge_type>1</edge_type> <source_obj>74</source_obj> <sink_obj>75</sink_obj> </item> <item class_id_reference="20" object_id="_229"> <id>255</id> <edge_type>1</edge_type> <source_obj>75</source_obj> <sink_obj>76</sink_obj> </item> <item class_id_reference="20" object_id="_230"> <id>257</id> <edge_type>1</edge_type> <source_obj>256</source_obj> <sink_obj>77</sink_obj> </item> <item class_id_reference="20" object_id="_231"> <id>258</id> <edge_type>1</edge_type> <source_obj>62</source_obj> <sink_obj>77</sink_obj> </item> <item class_id_reference="20" object_id="_232"> <id>259</id> <edge_type>1</edge_type> <source_obj>76</source_obj> <sink_obj>78</sink_obj> </item> <item class_id_reference="20" object_id="_233"> <id>260</id> <edge_type>1</edge_type> <source_obj>77</source_obj> <sink_obj>78</sink_obj> </item> <item class_id_reference="20" object_id="_234"> <id>261</id> <edge_type>1</edge_type> <source_obj>78</source_obj> <sink_obj>79</sink_obj> </item> <item class_id_reference="20" object_id="_235"> <id>262</id> <edge_type>1</edge_type> <source_obj>79</source_obj> <sink_obj>80</sink_obj> </item> <item class_id_reference="20" object_id="_236"> <id>263</id> <edge_type>1</edge_type> <source_obj>64</source_obj> <sink_obj>80</sink_obj> </item> <item class_id_reference="20" object_id="_237"> <id>265</id> <edge_type>1</edge_type> <source_obj>80</source_obj> <sink_obj>81</sink_obj> </item> <item class_id_reference="20" object_id="_238"> <id>266</id> <edge_type>1</edge_type> <source_obj>224</source_obj> <sink_obj>81</sink_obj> </item> <item class_id_reference="20" object_id="_239"> <id>267</id> <edge_type>1</edge_type> <source_obj>226</source_obj> <sink_obj>81</sink_obj> </item> <item class_id_reference="20" object_id="_240"> <id>268</id> <edge_type>1</edge_type> <source_obj>81</source_obj> <sink_obj>82</sink_obj> </item> <item class_id_reference="20" object_id="_241"> <id>269</id> <edge_type>1</edge_type> <source_obj>229</source_obj> <sink_obj>82</sink_obj> </item> <item class_id_reference="20" object_id="_242"> <id>271</id> <edge_type>1</edge_type> <source_obj>80</source_obj> <sink_obj>83</sink_obj> </item> <item class_id_reference="20" object_id="_243"> <id>272</id> <edge_type>1</edge_type> <source_obj>226</source_obj> <sink_obj>83</sink_obj> </item> <item class_id_reference="20" object_id="_244"> <id>274</id> <edge_type>1</edge_type> <source_obj>80</source_obj> <sink_obj>84</sink_obj> </item> <item class_id_reference="20" object_id="_245"> <id>275</id> <edge_type>1</edge_type> <source_obj>238</source_obj> <sink_obj>84</sink_obj> </item> <item class_id_reference="20" object_id="_246"> <id>276</id> <edge_type>1</edge_type> <source_obj>240</source_obj> <sink_obj>84</sink_obj> </item> <item class_id_reference="20" object_id="_247"> <id>277</id> <edge_type>1</edge_type> <source_obj>82</source_obj> <sink_obj>85</sink_obj> </item> <item class_id_reference="20" object_id="_248"> <id>278</id> <edge_type>1</edge_type> <source_obj>243</source_obj> <sink_obj>85</sink_obj> </item> <item class_id_reference="20" object_id="_249"> <id>279</id> <edge_type>1</edge_type> <source_obj>172</source_obj> <sink_obj>85</sink_obj> </item> <item class_id_reference="20" object_id="_250"> <id>280</id> <edge_type>1</edge_type> <source_obj>82</source_obj> <sink_obj>86</sink_obj> </item> <item class_id_reference="20" object_id="_251"> <id>281</id> <edge_type>1</edge_type> <source_obj>83</source_obj> <sink_obj>86</sink_obj> </item> <item class_id_reference="20" object_id="_252"> <id>282</id> <edge_type>1</edge_type> <source_obj>86</source_obj> <sink_obj>87</sink_obj> </item> <item class_id_reference="20" object_id="_253"> <id>283</id> <edge_type>1</edge_type> <source_obj>85</source_obj> <sink_obj>87</sink_obj> </item> <item class_id_reference="20" object_id="_254"> <id>284</id> <edge_type>1</edge_type> <source_obj>84</source_obj> <sink_obj>87</sink_obj> </item> <item class_id_reference="20" object_id="_255"> <id>287</id> <edge_type>1</edge_type> <source_obj>57</source_obj> <sink_obj>88</sink_obj> </item> <item class_id_reference="20" object_id="_256"> <id>289</id> <edge_type>1</edge_type> <source_obj>288</source_obj> <sink_obj>88</sink_obj> </item> <item class_id_reference="20" object_id="_257"> <id>290</id> <edge_type>1</edge_type> <source_obj>88</source_obj> <sink_obj>89</sink_obj> </item> <item class_id_reference="20" object_id="_258"> <id>293</id> <edge_type>1</edge_type> <source_obj>57</source_obj> <sink_obj>90</sink_obj> </item> <item class_id_reference="20" object_id="_259"> <id>295</id> <edge_type>1</edge_type> <source_obj>294</source_obj> <sink_obj>90</sink_obj> </item> <item class_id_reference="20" object_id="_260"> <id>296</id> <edge_type>1</edge_type> <source_obj>90</source_obj> <sink_obj>91</sink_obj> </item> <item class_id_reference="20" object_id="_261"> <id>297</id> <edge_type>1</edge_type> <source_obj>89</source_obj> <sink_obj>92</sink_obj> </item> <item class_id_reference="20" object_id="_262"> <id>298</id> <edge_type>1</edge_type> <source_obj>91</source_obj> <sink_obj>92</sink_obj> </item> <item class_id_reference="20" object_id="_263"> <id>299</id> <edge_type>1</edge_type> <source_obj>92</source_obj> <sink_obj>93</sink_obj> </item> <item class_id_reference="20" object_id="_264"> <id>300</id> <edge_type>1</edge_type> <source_obj>92</source_obj> <sink_obj>94</sink_obj> </item> <item class_id_reference="20" object_id="_265"> <id>301</id> <edge_type>1</edge_type> <source_obj>64</source_obj> <sink_obj>94</sink_obj> </item> <item class_id_reference="20" object_id="_266"> <id>302</id> <edge_type>1</edge_type> <source_obj>65</source_obj> <sink_obj>95</sink_obj> </item> <item class_id_reference="20" object_id="_267"> <id>303</id> <edge_type>1</edge_type> <source_obj>93</source_obj> <sink_obj>95</sink_obj> </item> <item class_id_reference="20" object_id="_268"> <id>306</id> <edge_type>1</edge_type> <source_obj>95</source_obj> <sink_obj>96</sink_obj> </item> <item class_id_reference="20" object_id="_269"> <id>307</id> <edge_type>1</edge_type> <source_obj>224</source_obj> <sink_obj>96</sink_obj> </item> <item class_id_reference="20" object_id="_270"> <id>309</id> <edge_type>1</edge_type> <source_obj>308</source_obj> <sink_obj>96</sink_obj> </item> <item class_id_reference="20" object_id="_271"> <id>310</id> <edge_type>1</edge_type> <source_obj>96</source_obj> <sink_obj>97</sink_obj> </item> <item class_id_reference="20" object_id="_272"> <id>312</id> <edge_type>1</edge_type> <source_obj>311</source_obj> <sink_obj>97</sink_obj> </item> <item class_id_reference="20" object_id="_273"> <id>315</id> <edge_type>1</edge_type> <source_obj>95</source_obj> <sink_obj>98</sink_obj> </item> <item class_id_reference="20" object_id="_274"> <id>316</id> <edge_type>1</edge_type> <source_obj>308</source_obj> <sink_obj>98</sink_obj> </item> <item class_id_reference="20" object_id="_275"> <id>318</id> <edge_type>1</edge_type> <source_obj>94</source_obj> <sink_obj>99</sink_obj> </item> <item class_id_reference="20" object_id="_276"> <id>319</id> <edge_type>1</edge_type> <source_obj>238</source_obj> <sink_obj>99</sink_obj> </item> <item class_id_reference="20" object_id="_277"> <id>320</id> <edge_type>1</edge_type> <source_obj>240</source_obj> <sink_obj>99</sink_obj> </item> <item class_id_reference="20" object_id="_278"> <id>321</id> <edge_type>1</edge_type> <source_obj>97</source_obj> <sink_obj>100</sink_obj> </item> <item class_id_reference="20" object_id="_279"> <id>322</id> <edge_type>1</edge_type> <source_obj>243</source_obj> <sink_obj>100</sink_obj> </item> <item class_id_reference="20" object_id="_280"> <id>323</id> <edge_type>1</edge_type> <source_obj>172</source_obj> <sink_obj>100</sink_obj> </item> <item class_id_reference="20" object_id="_281"> <id>324</id> <edge_type>1</edge_type> <source_obj>97</source_obj> <sink_obj>101</sink_obj> </item> <item class_id_reference="20" object_id="_282"> <id>325</id> <edge_type>1</edge_type> <source_obj>98</source_obj> <sink_obj>101</sink_obj> </item> <item class_id_reference="20" object_id="_283"> <id>326</id> <edge_type>1</edge_type> <source_obj>101</source_obj> <sink_obj>102</sink_obj> </item> <item class_id_reference="20" object_id="_284"> <id>327</id> <edge_type>1</edge_type> <source_obj>100</source_obj> <sink_obj>102</sink_obj> </item> <item class_id_reference="20" object_id="_285"> <id>328</id> <edge_type>1</edge_type> <source_obj>99</source_obj> <sink_obj>102</sink_obj> </item> <item class_id_reference="20" object_id="_286"> <id>329</id> <edge_type>1</edge_type> <source_obj>73</source_obj> <sink_obj>103</sink_obj> </item> <item class_id_reference="20" object_id="_287"> <id>330</id> <edge_type>1</edge_type> <source_obj>49</source_obj> <sink_obj>103</sink_obj> </item> <item class_id_reference="20" object_id="_288"> <id>331</id> <edge_type>1</edge_type> <source_obj>87</source_obj> <sink_obj>104</sink_obj> </item> <item class_id_reference="20" object_id="_289"> <id>332</id> <edge_type>1</edge_type> <source_obj>50</source_obj> <sink_obj>104</sink_obj> </item> <item class_id_reference="20" object_id="_290"> <id>333</id> <edge_type>1</edge_type> <source_obj>102</source_obj> <sink_obj>105</sink_obj> </item> <item class_id_reference="20" object_id="_291"> <id>334</id> <edge_type>1</edge_type> <source_obj>51</source_obj> <sink_obj>105</sink_obj> </item> <item class_id_reference="20" object_id="_292"> <id>335</id> <edge_type>1</edge_type> <source_obj>151</source_obj> <sink_obj>107</sink_obj> </item> <item class_id_reference="20" object_id="_293"> <id>336</id> <edge_type>1</edge_type> <source_obj>36</source_obj> <sink_obj>107</sink_obj> </item> <item class_id_reference="20" object_id="_294"> <id>337</id> <edge_type>2</edge_type> <source_obj>31</source_obj> <sink_obj>108</sink_obj> </item> <item class_id_reference="20" object_id="_295"> <id>457</id> <edge_type>2</edge_type> <source_obj>24</source_obj> <sink_obj>31</sink_obj> </item> <item class_id_reference="20" object_id="_296"> <id>458</id> <edge_type>2</edge_type> <source_obj>31</source_obj> <sink_obj>111</sink_obj> </item> <item class_id_reference="20" object_id="_297"> <id>459</id> <edge_type>2</edge_type> <source_obj>31</source_obj> <sink_obj>109</sink_obj> </item> <item class_id_reference="20" object_id="_298"> <id>460</id> <edge_type>2</edge_type> <source_obj>109</source_obj> <sink_obj>31</sink_obj> </item> </edges> </cdfg> <cdfg_regions class_id="21" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="22" tracking_level="1" version="0" object_id="_299"> <mId>1</mId> <mTag>yuv2rgb</mTag> <mType>0</mType> <sub_regions> <count>3</count> <item_version>0</item_version> <item>2</item> <item>3</item> <item>4</item> </sub_regions> <basic_blocks> <count>0</count> <item_version>0</item_version> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>2457610</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_300"> <mId>2</mId> <mTag>Entry</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>24</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>1</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_301"> <mId>3</mId> <mTag>YUV2RGB_LOOP_X_YUV2RGB_LOOP_Y</mTag> <mType>1</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>31</item> <item>109</item> </basic_blocks> <mII>1</mII> <mDepth>9</mDepth> <mMinTripCount>40000</mMinTripCount> <mMaxTripCount>2457600</mMaxTripCount> <mMinLatency>2457607</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_302"> <mId>4</mId> <mTag>Return</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>111</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> </cdfg_regions> <fsm class_id="-1"></fsm> <res class_id="-1"></res> <node_label_latency class_id="26" tracking_level="0" version="0"> <count>86</count> <item_version>0</item_version> <item class_id="27" tracking_level="0" version="0"> <first>16</first> <second class_id="28" tracking_level="0" version="0"> <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>1</first> <second>0</second> </second> </item> <item> <first>19</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>20</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>21</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>22</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>23</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>25</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>26</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>27</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>28</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>29</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>30</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>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>0</second> </second> </item> <item> <first>38</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>39</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>40</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>41</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>42</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>46</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>47</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>48</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>49</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>50</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>51</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>52</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>53</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>54</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>55</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>56</first> <second> <first>7</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>3</first> <second>0</second> </second> </item> <item> <first>59</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>60</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>61</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>62</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>63</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>64</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>65</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>66</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>67</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>68</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>69</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>70</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>72</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>73</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>74</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>75</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>76</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>77</first> <second> <first>4</first> <second>2</second> </second> </item> <item> <first>78</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>79</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>80</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>81</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>82</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>83</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>84</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>85</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>86</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>87</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>88</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>89</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>90</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>91</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>92</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>93</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>94</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>95</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>96</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>97</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>98</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>99</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>100</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>101</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>102</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>103</first> <second> <first>9</first> <second>1</second> </second> </item> <item> <first>104</first> <second> <first>9</first> <second>1</second> </second> </item> <item> <first>105</first> <second> <first>9</first> <second>1</second> </second> </item> <item> <first>107</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>108</first> <second> <first>10</first> <second>0</second> </second> </item> <item> <first>110</first> <second> <first>3</first> <second>0</second> </second> </item> </node_label_latency> <bblk_ent_exit class_id="29" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="30" tracking_level="0" version="0"> <first>24</first> <second class_id="31" tracking_level="0" version="0"> <first>0</first> <second>1</second> </second> </item> <item> <first>31</first> <second> <first>2</first> <second>2</second> </second> </item> <item> <first>109</first> <second> <first>2</first> <second>10</second> </second> </item> <item> <first>111</first> <second> <first>3</first> <second>3</second> </second> </item> </bblk_ent_exit> <regions class_id="32" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="33" tracking_level="1" version="0" object_id="_303"> <region_name>YUV2RGB_LOOP_X_YUV2RGB_LOOP_Y</region_name> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>31</item> <item>109</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>9</pipe_depth> </item> </regions> <dp_fu_nodes class_id="34" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_fu_nodes> <dp_fu_nodes_expression class_id="35" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_fu_nodes_expression> <dp_fu_nodes_module> <count>0</count> <item_version>0</item_version> </dp_fu_nodes_module> <dp_fu_nodes_io> <count>0</count> <item_version>0</item_version> </dp_fu_nodes_io> <return_ports> <count>0</count> <item_version>0</item_version> </return_ports> <dp_mem_port_nodes class_id="36" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_mem_port_nodes> <dp_reg_nodes> <count>0</count> <item_version>0</item_version> </dp_reg_nodes> <dp_regname_nodes> <count>0</count> <item_version>0</item_version> </dp_regname_nodes> <dp_reg_phi> <count>0</count> <item_version>0</item_version> </dp_reg_phi> <dp_regname_phi> <count>0</count> <item_version>0</item_version> </dp_regname_phi> <dp_port_io_nodes class_id="37" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_port_io_nodes> <port2core class_id="38" 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>
-- C93005C.ADA -- Grant of Unlimited Rights -- -- Under contracts F33600-87-D-0337, F33600-84-D-0280, MDA903-79-C-0687, -- F08630-91-C-0015, and DCA100-97-D-0025, the U.S. Government obtained -- unlimited rights in the software and documentation contained herein. -- Unlimited rights are defined in DFAR 252.227-7013(a)(19). By making -- this public release, the Government intends to confer upon all -- recipients unlimited rights equal to those held by the Government. -- These rights include rights to use, duplicate, release or disclose the -- released technical data and computer software in whole or in part, in -- any manner and for any purpose whatsoever, and to have or permit others -- to do so. -- -- DISCLAIMER -- -- ALL MATERIALS OR INFORMATION HEREIN RELEASED, MADE AVAILABLE OR -- DISCLOSED ARE AS IS. THE GOVERNMENT MAKES NO EXPRESS OR IMPLIED -- WARRANTY AS TO ANY MATTER WHATSOEVER, INCLUDING THE CONDITIONS OF THE -- SOFTWARE, DOCUMENTATION OR OTHER INFORMATION RELEASED, MADE AVAILABLE -- OR DISCLOSED, OR THE OWNERSHIP, MERCHANTABILITY, OR FITNESS FOR A -- PARTICULAR PURPOSE OF SAID MATERIAL. --* -- CHECK THAT IF AN EXCEPTION IS RAISED IN A DECLARATIVE PART OR PACKAGE -- SPECIFICATION, A TASK DECLARED IN THE SAME DECLARATIVE PART BECOMES -- COMPLETED BEFORE IT HAS BEEN ACTIVATED; ANY TASKS AWAITING A -- RENDEZVOUS WITH THE COMPLETED RECEIVE TASKING_ERROR. -- CASE 1: TASKS IN DECLARATIVE PART OF A BLOCK AND PACKAGE -- SPECIFICATION. THE TASKS DEPEND ON THE DECLARATIVE PART. -- RAC 19-MAR-1985 -- JBG 06/03/85 -- EG 10/30/85 ELIMINATE THE USE OF NUMERIC_ERROR IN TEST. -- PWN 09/11/94 REMOVED PRAGMA PRIORITY FOR ADA 9X. WITH REPORT; USE REPORT; WITH SYSTEM; USE SYSTEM; PRAGMA ELABORATE (REPORT); with Impdef; PACKAGE C93005C_PK1 IS -- THIS TYPE OF TASK IS ALWAYS UNACTIVATED. TASK TYPE UNACTIVATED IS ENTRY E; END UNACTIVATED; TYPE ACC_UNACTIVATED IS ACCESS UNACTIVATED; -- ******************************************* -- DEFINITIONS FOR MUST NOT BE TERMINATED TASKS -- ******************************************* -- -- THIS SET OF DECLARATIONS DEFINES A RECORD TYPE MNT (MUST NOT -- TERMINATE). WHENEVER SUCH A RECORD IS DECLARED, A COUNT IS -- INCREMENTED AND A TASK IS CREATED. THE TASK WILL DECREMENT THE -- COUNT UNLESS IT IS INCORRECTLY AND PREMATURELY TERMINATED. -- THE ROUTINE CHECK IS CALLED TO VERIFY WHETHER THE COUNT -- HAS RETURNED TO 0 (ALL MNT TASKS GOT A CHANCE TO DO THEIR -- DECREMENT). -- AN MNT TASK. SUCH TASKS MUST NOT BE TERMINATED -- BY ANYONE BUT THEMSELVES. -- TASK TYPE MNT_TASK IS END MNT_TASK; FUNCTION F RETURN INTEGER; -- THE RECORD THAT IS DECLARED TO HOLD AN MNT TASK -- AND FORCE CALLING F BEFORE CREATING THE TASK. -- F INCREMENTS THE COUNT, THE TASK DECREMENTS THE -- COUNT. -- TYPE MNT IS RECORD DUMMY : INTEGER := F; T : MNT_TASK; END RECORD; PROCEDURE CHECK; -- ******************************************* -- END OF DEFINITIONS FOR MUST NOT BE TERMINATED TASKS -- ******************************************* END C93005C_PK1; PACKAGE BODY C93005C_PK1 IS -- THIS TASK IS CALLED IF AN UNACTIVATED TASK -- IS EVER INCORRECTLY ACTIVATED. IT REPORTS FAILURE. TASK T IS ENTRY E; END; -- *********************************************** -- START OF DEFINITIONS FOR MUST NOT TERMINATE TASKS -- *********************************************** -- COUNT OF TASKS THAT MUST NOT BE TERMINATED AND -- ARE STILL ACTIVE. MNT_COUNT : INTEGER := 0; -- TASK TO SYNCHRONIZE THE MNT_COUNT VARIABLE TASK MNT_COUNTER IS ENTRY INCR; ENTRY DECR; END MNT_COUNTER; -- SYNCHRONIZING TASK TASK BODY MNT_COUNTER IS BEGIN LOOP SELECT ACCEPT INCR DO MNT_COUNT := MNT_COUNT +1; END INCR; OR ACCEPT DECR DO MNT_COUNT := MNT_COUNT -1; END DECR; OR TERMINATE; END SELECT; END LOOP; END MNT_COUNTER; -- INCREMENT THE MNT_COUNT WHEN A TASK IS CREATED -- FUNCTION F RETURN INTEGER IS BEGIN MNT_COUNTER.INCR; RETURN 0; END F; -- CHECK THAT THE MUST NOT BE TERMINATED TASKS ARE -- NOT YET TERMINATED AND THAT THE SYNCRHONIZING TASK -- ITSELF IS NOT TERMINATED. -- PROCEDURE CHECK IS BEGIN IF MNT_COUNT /= 0 OR MNT_COUNTER'TERMINATED THEN FAILED ("SOME MUST-NOT-TERMINATE TASK WAS PREMATURELY " & "TERMINATED"); END IF; -- RESET THE COUNT FOR THE NEXT SUBTEST: MNT_COUNT := 0; END CHECK; -- A MUST NOT BE TERMINATED TASK. DELAY LONG ENOUGH -- TO BE THE LAST TASK OF A SCOPE TO TERMINATE. THEN -- DECREMENT THE COUNTER. -- TASK BODY MNT_TASK IS BEGIN DELAY 5.0 * Impdef.One_Second; MNT_COUNTER.DECR; END MNT_TASK; -- *********************************************** -- END OF DEFINITIONS FOR MUST NOT TERMINATE TASKS -- *********************************************** TASK BODY T IS BEGIN LOOP SELECT ACCEPT E DO FAILED ("SOME TYPE U TASK WAS ACTIVATED"); END E; OR TERMINATE; END SELECT; END LOOP; END T; -- TASKS OF TYPE UNACTIVATED MUST NEVER BE ACTIVATED. -- TASK BODY UNACTIVATED IS BEGIN T.E; END UNACTIVATED; END C93005C_PK1; WITH REPORT, C93005C_PK1; USE REPORT, C93005C_PK1; WITH SYSTEM; USE SYSTEM; PROCEDURE C93005C IS BEGIN TEST("C93005C", "TEST EXCEPTIONS TERMINATE NOT YET ACTIVATED " & "TASKS"); COMMENT("SUBTEST 1: TASKS IN DECL PART OF A BLOCK AND A PACKAGE " & "SPEC"); COMMENT(" THE TASKS DEPEND ON THE DECLARATIVE PART"); B1: DECLARE X : MNT; BEGIN B2: BEGIN B3: DECLARE TYPE ACC_MNT IS ACCESS MNT; T1 : UNACTIVATED; M2 : ACC_MNT := NEW MNT; PACKAGE RAISES_EXCEPTION IS T2 : UNACTIVATED; M3 : ACC_MNT := NEW MNT; I : POSITIVE := IDENT_INT(0); -- RAISE -- CONSTRAINT_ERROR EXCEPTION END RAISES_EXCEPTION; USE RAISES_EXCEPTION; BEGIN -- WOULD HAVE BEEN ACTIVATED HERE IF EQUAL (I, I) THEN FAILED ("EXCEPTION NOT RAISED"); END IF; EXCEPTION WHEN OTHERS => FAILED ("EXCEPTION RAISED IN WRONG SCOPE"); END B3; EXCEPTION WHEN CONSTRAINT_ERROR => COMMENT ("SUBTEST 1 COMPLETED"); WHEN OTHERS => FAILED ("WRONG EXCEPTION RAISED IN B2"); END B2; END B1; CHECK; RESULT; EXCEPTION WHEN OTHERS => FAILED ("EXCEPTION NOT ABSORBED"); RESULT; END C93005C;
private package Testsuite.Encode_Decode.Random is procedure Add_Tests (Suite : in out AUnit.Test_Suites.Test_Suite'Class); end Testsuite.Encode_Decode.Random;
------------------------------------------------------------------------------ -- -- -- Copyright (C) 2020, 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 System; with HAL; use HAL; with Cortex_M_SVD.Debug; use Cortex_M_SVD.Debug; with NRF_SVD.CLOCK; use NRF_SVD.CLOCK; with NRF_SVD.FICR; use NRF_SVD.FICR; with NRF_SVD.POWER; use NRF_SVD.POWER; with NRF_SVD.TEMP; use NRF_SVD.TEMP; package body nRF.Device is Undocumented_Reg_FE0 : UInt32 with Address => System'To_Address (16#F0000FE0#); Undocumented_Reg_FE4 : UInt32 with Address => System'To_Address (16#F0000FE4#); Undocumented_Reg_FE8 : UInt32 with Address => System'To_Address (16#F0000FE8#); FE0_Is_Six : constant Boolean := (Undocumented_Reg_FE0 and 16#FF#) = 6; FE4_Is_Zero : constant Boolean := (Undocumented_Reg_FE0 and 16#0F#) = 0; function Errata_12 return Boolean; function Errata_16 return Boolean; function Errata_31 return Boolean; function Errata_32 return Boolean; function Errata_36 return Boolean; function Errata_37 return Boolean; function Errata_57 return Boolean; function Errata_66 return Boolean; function Errata_136 return Boolean; function Errata_182 return Boolean; function Errata_108 return Boolean; --------------- -- Errata_12 -- --------------- function Errata_12 return Boolean is begin if FE0_Is_Six and FE4_Is_Zero then case Undocumented_Reg_FE8 and 16#F0# is when 16#30# => return True; when 16#40# => return True; when 16#50# => return True; when others => return False; end case; end if; return False; end Errata_12; E12_Undocumented_COMP_Reg_540 : UInt32 with Address => System'To_Address (16#40013540#); E12_Undocumented_FICR_Reg_324 : UInt32 with Address => System'To_Address (16#10000324#); --------------- -- Errata_16 -- --------------- function Errata_16 return Boolean is begin if FE0_Is_Six and FE4_Is_Zero and Undocumented_Reg_FE8 = 16#30# then return True; end if; return False; end Errata_16; E16_Undocumented_Reg_074 : UInt32 with Address => System'To_Address (16#4007C074#); --------------- -- Errata_31 -- --------------- function Errata_31 return Boolean is begin return Errata_12; end Errata_31; E31_Undocumented_CLOCK_Reg_53C : UInt32 with Address => System'To_Address (16#4000053C#); E31_Undocumented_FICR_Reg_244 : UInt32 with Address => System'To_Address (16#10000244#); --------------- -- Errata_32 -- --------------- function Errata_32 return Boolean is begin return Errata_16; end Errata_32; --------------- -- Errata_36 -- --------------- function Errata_36 return Boolean is begin return Errata_12; end Errata_36; --------------- -- Errata_37 -- --------------- function Errata_37 return Boolean is begin return Errata_16; end Errata_37; E37_Undocumented_Reg_5A0 : UInt32 with Address => System'To_Address (16#400005A0#); --------------- -- Errata_57 -- --------------- function Errata_57 return Boolean is begin return Errata_16; end Errata_57; E57_Undocumented_NFCT_Reg_610 : UInt32 with Address => System'To_Address (16#40005610#); E57_Undocumented_NFCT_Reg_614 : UInt32 with Address => System'To_Address (16#40005614#); E57_Undocumented_NFCT_Reg_618 : UInt32 with Address => System'To_Address (16#40005618#); E57_Undocumented_NFCT_Reg_688 : UInt32 with Address => System'To_Address (16#40005688#); --------------- -- Errata_66 -- --------------- function Errata_66 return Boolean is begin if FE0_Is_Six and FE4_Is_Zero and Undocumented_Reg_FE8 = 16#50# then return True; end if; return False; end Errata_66; ---------------- -- Errata_108 -- ---------------- function Errata_108 return Boolean is begin return Errata_12; end Errata_108; E108_Undocumented_Reg_EE4 : UInt32 with Address => System'To_Address (16#40000EE4#); E108_Undocumented_FICR_Reg_258 : UInt32 with Address => System'To_Address (16#10000258#); ---------------- -- Errata_136 -- ---------------- function Errata_136 return Boolean is begin return Errata_12; end Errata_136; ---------------- -- Errata_182 -- ---------------- function Errata_182 return Boolean is Undocumented_FICR_Reg_130 : UInt32 with Address => System'To_Address (16#10000130#); Undocumented_FICR_Reg_134 : UInt32 with Address => System'To_Address (16#10000130#); begin return Undocumented_FICR_Reg_130 = 6 and Undocumented_FICR_Reg_134 = 6; end Errata_182; E182_Undocumented_Reg_73C : UInt32 with Address => System'To_Address (16#4000173C#); begin if Errata_12 then -- Workaround for Errata 12 "COMP: Reference ladder not correctly -- calibrated" E12_Undocumented_COMP_Reg_540 := Shift_Right (E12_Undocumented_FICR_Reg_324 and 16#1F00#, 8); end if; if Errata_16 then -- Workaround for Errata 16 "System: RAM may be corrupt on wakeup from CPU -- IDLE" E16_Undocumented_Reg_074 := 3131961357; end if; if Errata_31 then -- Workaround for Errata 31 "CLOCK: Calibration values are not correctly -- loaded from FICR at reset" E31_Undocumented_CLOCK_Reg_53C := Shift_Right (E31_Undocumented_FICR_Reg_244 and 16#E000#, 13); end if; if Errata_32 then -- Workaround for Errata 32 "DIF: Debug session automatically enables -- TracePort pins" Debug_Periph.DEMCR.TRCENA := False; end if; if Errata_36 then -- Workaround for Errata 36 "CLOCK: Some registers are not reset when -- expected" CLOCK_Periph.EVENTS_DONE := 0; CLOCK_Periph.EVENTS_CTTO := 0; CLOCK_Periph.CTIV.CTIV := 0; end if; if Errata_37 then -- Workaround for Errata 37 "RADIO: Encryption engine is slow by default" E37_Undocumented_Reg_5A0 := 3; end if; if Errata_57 then -- Workaround for Errata 57 "NFCT: NFC Modulation amplitude" E57_Undocumented_NFCT_Reg_610 := 5; E57_Undocumented_NFCT_Reg_688 := 1; E57_Undocumented_NFCT_Reg_618 := 0; E57_Undocumented_NFCT_Reg_614 := 16#3F#; end if; if Errata_66 then -- Workaround for Errata 66 "TEMP: Linearity specification not met with -- default settings" TEMP_Periph.A0.A0 := FICR_Periph.TEMP.A0.A; TEMP_Periph.A1.A1 := FICR_Periph.TEMP.A1.A; TEMP_Periph.A2.A2 := FICR_Periph.TEMP.A2.A; TEMP_Periph.A3.A3 := FICR_Periph.TEMP.A3.A; TEMP_Periph.A4.A4 := FICR_Periph.TEMP.A4.A; TEMP_Periph.A5.A5 := FICR_Periph.TEMP.A5.A; TEMP_Periph.B0.B0 := FICR_Periph.TEMP.B0.B; TEMP_Periph.B1.B1 := FICR_Periph.TEMP.B1.B; TEMP_Periph.B2.B2 := FICR_Periph.TEMP.B2.B; TEMP_Periph.B3.B3 := FICR_Periph.TEMP.B3.B; TEMP_Periph.B4.B4 := FICR_Periph.TEMP.B4.B; TEMP_Periph.B5.B5 := FICR_Periph.TEMP.B5.B; TEMP_Periph.T0.T0 := FICR_Periph.TEMP.T0.T; TEMP_Periph.T1.T1 := FICR_Periph.TEMP.T1.T; TEMP_Periph.T2.T2 := FICR_Periph.TEMP.T2.T; TEMP_Periph.T3.T3 := FICR_Periph.TEMP.T3.T; TEMP_Periph.T4.T4 := FICR_Periph.TEMP.T4.T; end if; if Errata_108 then -- Workaround for Errata 108 "RAM: RAM content cannot be trusted upon -- waking up from System ON Idle or System OFF mode" E108_Undocumented_Reg_EE4 := E108_Undocumented_FICR_Reg_258 and 16#4F#; end if; if Errata_136 then -- Workaround for Errata 136 "System: Bits in RESETREAS are set when they -- should not be" if POWER_Periph.RESETREAS.RESETPIN = Detected then POWER_Periph.RESETREAS.RESETPIN := Notdetected; end if; end if; if Errata_182 then -- Workaround for Errata 182 "RADIO: Fixes for anomalies #102, #106, and -- #107 do not take effect" E182_Undocumented_Reg_73C := E182_Undocumented_Reg_73C or Shift_Left (1, 10); end if; end nRF.Device;
------------------------------------------------------------------------------ -- -- -- Ada binding for OpenGL/WebGL -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 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. -- -- -- ------------------------------------------------------------------------------ with OpenGL.Contexts.Internals; with Interfaces.C.Strings; with GLEW; use GLEW; package body OpenGL.Shaders is ------------------------- -- Compile_Source_Code -- ------------------------- function Compile_Source_Code (Self : in out OpenGL_Shader'Class; Source : League.Strings.Universal_String) return Boolean is use type GLEW.GLuint; use type GLFW.GLFWwindow_Access; begin if Self.Context = null then Self.Context := OpenGL.Contexts.Internals.Current_GLFW_Context; if Self.Context = null then return False; end if; end if; if Self.Shader = 0 then Self.Shader := glCreateShader ((case Self.Shader_Type is when Vertex => VERTEX_SHADER, when Fragment => FRAGMENT_SHADER)); if Self.Shader = 0 then return False; end if; end if; declare Text : Interfaces.C.Strings.chars_ptr := Interfaces.C.Strings.New_String (Source.To_UTF_8_String); Length : OpenGL.GLsizei := OpenGL.GLsizei (Interfaces.C.Strings.Strlen (Text)); begin glShaderSource (Self.Shader, 1, (1 => Text), (1 => Length)); Interfaces.C.Strings.Free (Text); end; glCompileShader (Self.Shader); declare Status : aliased OpenGL.GLint; begin glGetShaderiv (Self.Shader, COMPILE_STATUS, Status'Access); if Status = 0 then declare Buffer : Interfaces.C.char_array (1 .. 1024); Last : aliased OpenGL.GLsizei; begin glGetShaderInfoLog (Self.Shader, Buffer'Length, Last'Access, Buffer); glDeleteShader (Self.Shader); Self.Shader := 0; Self.Context := null; -- XXX Error handling must be implemented. raise Program_Error with "glCompileShader: " & Interfaces.C.To_Ada (Buffer (1 .. Interfaces.C.size_t (Last)), False); end; end if; return True; end; end Compile_Source_Code; end OpenGL.Shaders;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME LIBRARY (GNARL) COMPONENTS -- -- -- -- S Y S T E M . T A S K _ P R I M I T I V E S . O P E R A T I O N S -- -- -- -- B o d y -- -- -- -- Copyright (C) 1992-2005, 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, 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. -- -- -- -- GNARL was developed by the GNARL team at Florida State University. -- -- Extensive contributions were provided by Ada Core Technologies, Inc. -- -- -- ------------------------------------------------------------------------------ -- This is a no tasking version of this package -- This package contains all the GNULL primitives that interface directly -- with the underlying OS. pragma Polling (Off); -- Turn off polling, we do not want ATC polling to take place during -- tasking operations. It causes infinite loops and other problems. with System.Error_Reporting; -- used for Shutdown package body System.Task_Primitives.Operations is use System.Tasking; use System.Parameters; pragma Warnings (Off); -- Turn off warnings since so many unreferenced parameters ---------------- -- Abort_Task -- ---------------- procedure Abort_Task (T : Task_Id) is begin null; end Abort_Task; ---------------- -- Check_Exit -- ---------------- -- Dummy version function Check_Exit (Self_ID : ST.Task_Id) return Boolean is begin return True; end Check_Exit; -------------------- -- Check_No_Locks -- -------------------- function Check_No_Locks (Self_ID : ST.Task_Id) return Boolean is begin return True; end Check_No_Locks; ------------------- -- Current_State -- ------------------- function Current_State (S : Suspension_Object) return Boolean is begin return False; end Current_State; ---------------------- -- Environment_Task -- ---------------------- function Environment_Task return Task_Id is begin return null; end Environment_Task; ----------------- -- Create_Task -- ----------------- procedure Create_Task (T : Task_Id; Wrapper : System.Address; Stack_Size : System.Parameters.Size_Type; Priority : System.Any_Priority; Succeeded : out Boolean) is begin Succeeded := False; end Create_Task; ---------------- -- Enter_Task -- ---------------- procedure Enter_Task (Self_ID : Task_Id) is begin null; end Enter_Task; --------------- -- Exit_Task -- --------------- procedure Exit_Task is begin null; end Exit_Task; -------------- -- Finalize -- -------------- procedure Finalize (S : in out Suspension_Object) is begin null; end Finalize; ------------------- -- Finalize_Lock -- ------------------- procedure Finalize_Lock (L : access Lock) is begin null; end Finalize_Lock; procedure Finalize_Lock (L : access RTS_Lock) is begin null; end Finalize_Lock; ------------------ -- Finalize_TCB -- ------------------ procedure Finalize_TCB (T : Task_Id) is begin null; end Finalize_TCB; ------------------ -- Get_Priority -- ------------------ function Get_Priority (T : Task_Id) return System.Any_Priority is begin return 0; end Get_Priority; -------------------- -- Get_Thread_Id -- -------------------- function Get_Thread_Id (T : ST.Task_Id) return OSI.Thread_Id is begin return OSI.Thread_Id (T.Common.LL.Thread); end Get_Thread_Id; ---------------- -- Initialize -- ---------------- procedure Initialize (Environment_Task : Task_Id) is No_Tasking : Boolean; begin No_Tasking := System.Error_Reporting.Shutdown ("Tasking not implemented on this configuration"); end Initialize; procedure Initialize (S : in out Suspension_Object) is begin null; end Initialize; --------------------- -- Initialize_Lock -- --------------------- procedure Initialize_Lock (Prio : System.Any_Priority; L : access Lock) is begin null; end Initialize_Lock; procedure Initialize_Lock (L : access RTS_Lock; Level : Lock_Level) is begin null; end Initialize_Lock; -------------------- -- Initialize_TCB -- -------------------- procedure Initialize_TCB (Self_ID : Task_Id; Succeeded : out Boolean) is begin Succeeded := False; end Initialize_TCB; ------------------- -- Is_Valid_Task -- ------------------- function Is_Valid_Task return Boolean is begin return False; end Is_Valid_Task; -------------- -- Lock_RTS -- -------------- procedure Lock_RTS is begin null; end Lock_RTS; --------------------- -- Monotonic_Clock -- --------------------- function Monotonic_Clock return Duration is begin return 0.0; end Monotonic_Clock; -------------- -- New_ATCB -- -------------- function New_ATCB (Entry_Num : Task_Entry_Index) return Task_Id is begin return new Ada_Task_Control_Block (Entry_Num); end New_ATCB; --------------- -- Read_Lock -- --------------- procedure Read_Lock (L : access Lock; Ceiling_Violation : out Boolean) is begin Ceiling_Violation := False; end Read_Lock; ----------------------------- -- Register_Foreign_Thread -- ----------------------------- function Register_Foreign_Thread return Task_Id is begin return null; end Register_Foreign_Thread; ----------------- -- Resume_Task -- ----------------- function Resume_Task (T : ST.Task_Id; Thread_Self : OSI.Thread_Id) return Boolean is begin return False; end Resume_Task; ------------------- -- RT_Resolution -- ------------------- function RT_Resolution return Duration is begin return 10#1.0#E-6; end RT_Resolution; ---------- -- Self -- ---------- function Self return Task_Id is begin return Null_Task; end Self; --------------- -- Set_False -- --------------- procedure Set_False (S : in out Suspension_Object) is begin null; end Set_False; ------------------ -- Set_Priority -- ------------------ procedure Set_Priority (T : Task_Id; Prio : System.Any_Priority; Loss_Of_Inheritance : Boolean := False) is begin null; end Set_Priority; -------------- -- Set_True -- -------------- procedure Set_True (S : in out Suspension_Object) is begin null; end Set_True; ----------- -- Sleep -- ----------- procedure Sleep (Self_ID : Task_Id; Reason : System.Tasking.Task_States) is begin null; end Sleep; ----------------- -- Stack_Guard -- ----------------- procedure Stack_Guard (T : ST.Task_Id; On : Boolean) is begin null; end Stack_Guard; ------------------ -- Suspend_Task -- ------------------ function Suspend_Task (T : ST.Task_Id; Thread_Self : OSI.Thread_Id) return Boolean is begin return False; end Suspend_Task; ------------------------ -- Suspend_Until_True -- ------------------------ procedure Suspend_Until_True (S : in out Suspension_Object) is begin null; end Suspend_Until_True; ----------------- -- Timed_Delay -- ----------------- procedure Timed_Delay (Self_ID : Task_Id; Time : Duration; Mode : ST.Delay_Modes) is begin null; end Timed_Delay; ----------------- -- Timed_Sleep -- ----------------- procedure Timed_Sleep (Self_ID : Task_Id; Time : Duration; Mode : ST.Delay_Modes; Reason : System.Tasking.Task_States; Timedout : out Boolean; Yielded : out Boolean) is begin Timedout := False; Yielded := False; end Timed_Sleep; ------------ -- Unlock -- ------------ procedure Unlock (L : access Lock) is begin null; end Unlock; procedure Unlock (L : access RTS_Lock; Global_Lock : Boolean := False) is begin null; end Unlock; procedure Unlock (T : Task_Id) is begin null; end Unlock; ---------------- -- Unlock_RTS -- ---------------- procedure Unlock_RTS is begin null; end Unlock_RTS; ------------ -- Wakeup -- ------------ procedure Wakeup (T : Task_Id; Reason : System.Tasking.Task_States) is begin null; end Wakeup; ---------------- -- Write_Lock -- ---------------- procedure Write_Lock (L : access Lock; Ceiling_Violation : out Boolean) is begin Ceiling_Violation := False; end Write_Lock; procedure Write_Lock (L : access RTS_Lock; Global_Lock : Boolean := False) is begin null; end Write_Lock; procedure Write_Lock (T : Task_Id) is begin null; end Write_Lock; ----------- -- Yield -- ----------- procedure Yield (Do_Yield : Boolean := True) is begin null; end Yield; end System.Task_Primitives.Operations;