CombinedText
stringlengths
4
3.42M
------------------------------------------------------------------------------ -- -- -- ASIS-for-GNAT COMPONENTS -- -- -- -- A S I S . E X T E N S I O N S -- -- -- -- S p e c -- -- -- -- Copyright (C) 1995-2012, 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, 51 Franklin -- -- Street, Fifth Floor, Boston, MA 02110-1301, 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 AdaCore -- -- (http://www.adacore.com). -- -- -- ------------------------------------------------------------------------------ -- This package contains some ASIS extensions which are needed by the ASIS -- implementation for GNAT itself, or which are considered to be useful for -- ASIS applications. -- -- Most of these extensions may be implemented as secondary ASIS queries, -- but we oftenly use some optimization based on direct traversing of the -- GNAT tree and obtaining the needed semantic information from it. -- In this package we follow the GNAT, but not ASIS coding and documentation -- style, but for some queries we use the ASIS-style lists of Appropriate, -- Expected and returned kinds. with Ada.Containers.Hashed_Sets; with Ada.Unchecked_Deallocation; with Asis.Elements; use Asis.Elements; with Asis.Text; use Asis.Text; with GNAT.OS_Lib; use GNAT.OS_Lib; package Asis.Extensions is ------------------------ -- Element containers -- ------------------------ function Elements_Hash_Wrapper (E : Asis.Element) return Ada.Containers.Hash_Type; -- Wrapper for Asis.Elements.Hash to be used in the instantiation of -- Ada.Containers.Hashed_Sets package Element_Containers is new Ada.Containers.Hashed_Sets (Element_Type => Asis.Element, Hash => Elements_Hash_Wrapper, Equivalent_Elements => Asis.Elements.Is_Equal, "=" => Asis.Elements.Is_Equal); ----------------------- -- List Access Types -- ----------------------- type Element_List_Access is access Element_List; type Compilation_Unit_List_Access is access Compilation_Unit_List; procedure Free is new Ada.Unchecked_Deallocation (Element_List, Element_List_Access); procedure Free is new Ada.Unchecked_Deallocation (Compilation_Unit_List, Compilation_Unit_List_Access); ---------------------------------- -- Access to Program_Text Type -- ---------------------------------- type Program_Text_Access is access Program_Text; procedure Free is new Ada.Unchecked_Deallocation (Program_Text, Program_Text_Access); --------------------------- -- Tree creation routine -- --------------------------- procedure Compile (Source_File : String_Access; Args : Argument_List; Success : out Boolean; GCC : String_Access := null; Use_GNATMAKE : Boolean := False; Use_Temp_Prj : Boolean := False; Compiler_Out : String := ""; All_Warnings_Off : Boolean := True; Display_Call : Boolean := False); -- Calls GNAT to create the tree file in the current directory -- If Use_GNATMAKE is set on and GCC is not null, this procedure calls -- gnatmake, otherwise it calls gcc. -- -- This procedure always sets the following options for the calls it -- generates: -- -- In case of GCC: -- -- "-c -gnatct -gnatws -x ada" -- -- (except in case of calling GNAAMP, for GNAAMP '-x ada' is not set); -- -- In case of GNATMAKE: -- -- "-c -gnatct -gnatws -u -f -q .... -cargs -gnatws -o obj_file_name" -- -- where obj_file_name is created from Source_File by replacing its suffix -- with '.o' If Use_Temp_Prj is set ON '-gnatws -o obj_file_name' is not -- set. -- -- This procedure always creates the tree file in the current directory. -- -- so there is no need to set these options as a part of the value of Args -- parameter (basically Args contains only needed -I, -gnatA, -gnatec -- options, and -P in case of the GNATMAKE call) GCC parameter should -- contain the full path to gcc (or gnatmake) to be used to create the tree -- (use GNAT.OS_Lib.Locate_Exec_On_Path in the client code to detect this -- path). If this parameter is not set, the standard gcc/GNAT installation -- is used (even if Use_GNATMAKE is set ON). Success is set ON if the -- required tree has been created. Otherwise it is set OFF. -- -- If Compiler_Out is a non-empty string, this string is treated as the -- name of a text file to redirect the compiler output into (if the file -- does not exist, it is created). Otherwise the compiler output is -- sent to Stderr -- -- If All_Warnings_Off is ON, '-gnatws -gnatyN' is appended to the set of -- switches passed to GCC or GNATMAKE to disable any warnings and style -- checks that can propagate to the set of the call options from a project -- file in case if an ASIS tool is called from the GNAT driver. -- -- If Display_Call is ON, outputs into Stderr the command used to call -- GNAT. ------------------------------------------------------ -- Placeholders for Traverse_Element instantiations -- ------------------------------------------------------ -- If you do not need the state of traversing, and if you do not need -- actual for Post-Operation in this case (this is the common case for -- many situations when some simple traversing is required), the following -- declarations may be used: type No_State is (Not_Used); -- Placeholder for the State_Information formal type procedure No_Op (Element : Asis.Element; Control : in out Traverse_Control; State : in out No_State); -- Placeholder for the formal Post_Operation procedure -------------------- -- Test functions -- -------------------- function Is_RCI_Unit (C : Asis.Compilation_Unit) return Boolean; -- Checks if the argument compilation is a remote call interface (RCI) -- unit (See E.2.3). Returns False for any unexpected element. -- -- Expected Unit_Kinds: -- A_Package -- A_Procedure_Body -- A_Function_Body -- A_Generic_Package function Acts_As_Spec (Declaration : Asis.Element) return Boolean; -- Checks if its argument is a subprogram body declaration for which no -- separate subprogram declaration exists. Returns False for any -- unexpected argument -- -- Expected Declaration_Kinds: -- A_Procedure_Body_Declaration -- A_Function_Body_Declaration -- An_Expression_Function_Declaration -- A_Procedure_Body_Stub -- A_Function_Body_Stub function Is_Aspect_Mark (Element : Asis.Element) return Boolean; -- Checks if Element is an aspect mark from aspect_specification. -- Returns False for any unexpected Element -- -- Expected Expression_Kinds -- An_Identifier -- -- Expected Attribute_Kinds -- A_Class_Attribute function Is_Aspect_Specific_Identifier (Element : Asis.Element) return Boolean; -- Checks if Element is an identifier specific for some aspect definition. -- Returns False for any unexpected Element -- -- Expected Expression_Kinds -- An_Identifier function Is_Class_Wide (Declaration : Asis.Declaration) return Boolean; -- Checks if the argument subtype is a subtype of some class-wide type. -- Returns False for any unexpected Element -- -- Expected Declaration_Kinds: -- A_Subtype_Declaration function Is_Default_For_Null_Procedure (Reference : Asis.Element) return Boolean; -- Checks if Reference is a reference for the default actual that is used -- in expanded generic for a null procedure. Returns False for any -- unexpected argument. -- -- Expected Expression_Kinds: -- An_Identifier function Is_Renaming_As_Body (Declaration : Asis.Element) return Boolean; -- Checks if its argument is a renaming-as-body declaration. -- -- -- Expected Element_Kinds: -- A_Procedure_Renaning_Declaration -- A_Function_Renaming_Declaration function Is_Completed (Declaration : Asis.Element) return Boolean; -- Checks is its argument (which is expected to be a declaration requiring -- completion) has a completion in its enclosed ASIS Context. -- -- Expected Element_Kinds (this list is not complete ???) -- A_Procedure_Declaration -- A_Function_Declaration function Is_Bool_Eq_Declaration (Declaration : Asis.Element) return Boolean; -- Checks if Declaration is a declaration of the equality operation -- returning the predefined boolean type that implicitly declares "/=" -- (See RM 95). Returns False for any unexpected element -- -- Expected Declaration_Kinds -- A_Function_Declaration -- A_Function_Body_Declaration -- A_Function_Renaming_Declaration function Is_Implicit_Neq_Declaration (Declaration : Asis.Element) return Boolean; -- Checks if Declaration is an implicit declaration of "/=" operator that -- is declared as a consequence of some Is_Bool_Eq_Declaration declaration -- (See RM 95). Returns False for any unexpected element -- -- Expected Declaration_Kinds -- A_Function_Declaration function Is_Overriding_Operation (Declaration : Asis.Element) return Boolean; -- Checks if the argument is a subprogram declaration or subprogram -- instantiation that overrides a user-defined type primitive operation. -- Always returns False for Is_Part_Of_Inherited arguments. Returns False -- for any unexpected element. Note that this function checks operation -- overriding, but not only operation hiding -- -- Expected Declaration_Kinds -- A_Procedure_Declaration -- A_Function_Declaration -- A_Procedure_Instantiation -- A_Function_Instantiation -- A_Procedure_Body_Declaration -- A_Function_Body_Declaration -- A_Null_Procedure_Declaration -- A_Procedure_Renaming_Declaration -- A_Function_Renaming_Declaration function Is_Predefined_Operator (Operator : Asis.Element) return Boolean; -- Checks if the argument is a reference to a predefined operator. -- Returns False for any unexpected Element -- -- Expected Expression_Kinds: -- An_Operator_Symbol function Is_Label (Defining_Name : Asis.Defining_Name) return Boolean; -- Check if the argument is a statement label function Is_True_Expression (Expression : Asis.Expression) return Boolean; -- Checks if Expression is an expression in Ada sense, that is if it -- is an expression as defined in RM 4.4, and the type of this expression -- can be represented in ASIS. For cases of An_Expression Element for -- which Is_True_Expression is True, the Corresponding_Expression_Type -- query should yield non-Nil result. Note that this function returns False -- for an entity having anonymous access type. -- -- Expected Element_Kinds: -- An_Expression function Is_Static (Element : Asis.Element) return Boolean; -- Checks if Element represent a static expression or a static range -- constraint. "Static" is considered in the GNAT sense, that is if the -- compiler computes it during the compilation time. We believe, -- that GNAT notions of a static expression and a static range are close -- to the corresponding definitions in RM 95, but we can not guarantee -- this. Returns False for any unexpected Element -- -- Expected Element_Kinds: -- An_Expression for which Is_True_Expression yields True. -- -- Expected Constraint_Kinds: -- A_Range_Attribute_Reference function Has_Enumeration_Type (Expression : Asis.Expression) return Boolean; -- Checks if Expression has some enumeration type (including types derived -- from enumeration types). Returns False for any unexpected Element -- -- Expected Element_Kinds: -- An_Expression for which Is_True_Expression yields True. function Has_Integer_Type (Expression : Asis.Expression) return Boolean; -- Checks if Expression has some integer type (including types derived -- from integer types). Returns False for any unexpected Element -- -- Expected Element_Kinds: -- An_Expression for which Is_True_Expression yields True. function Is_Uniquely_Defined (Reference : Asis.Expression) return Boolean; -- Check if Reference has a unique definition. The Reference is expected -- to be of An_Identifier, A_Character_Literal, An_Enumeration_Literal or -- An_Operator_Symbol kind, that is, of the same kind as the argument of -- Asis.Expressions.Corresponding_Name_Definition). This test may be used -- to prevent calls of Asis.Expressions.Corresponding_Name_Definition and -- Asis.Expressions.Corresponding_Name_Declaration which raise -- ASIS_Inappropriate_Element (see the documentation of these queries). -- Returns False for any unexpected argument. -- -- Expected Element_Kinds: -- An_Identifier -- An_Operator_Symbol function Is_Private (Declaration : Asis.Element) return Boolean; -- Checks if Declaration is located in the private part of a package, -- a generic package, a task or protected type or object declaration. -- If Declaration is located in the visible part of such a construct, but -- this enclosing construct is itself located in some private part -- (immediately or being nested in some other constructs), this function -- also returns True. Returns False for any unexpected argument. -- -- Because of the performance reasons the implementation of this -- function is based on the direct traversal of the GNAT tree, so it is not -- an ASIS secondary query. -- -- Expected Element_Kinds: -- A_Declaration -- -- Expected Declaration_Kinds -- All except A_Loop_Parameter_Specification -- A_Generalized_Iterator_Specification -- An_Element_Iterator_Specification function Is_Exported (Defining_Name : Asis.Defining_Name) return Boolean; -- Checks if pragma Export is applied to the argument entity. In case if -- this entity is from a subprogram body declaration, this check is made -- for the entity from the corresponding subprogram spec (if any) -- -- Because of the performance reasons the implementation of this -- function is based on the direct traversal of the GNAT tree, so it is not -- an ASIS secondary query. -- -- Expected Element_Kinds: -- A_Defining_Name ----------------------------------------------------- -- Modified versions of the "primary" ASIS queries -- ----------------------------------------------------- function Get_Call_Parameters (Call : Asis.Element; Normalized : Boolean := False) return Asis.Element_List; -- Returns the parameter list from the call. Combines the functionality of -- Asis.Statements.Call_Statement_Parameters and -- Asis.Expressions.Function_Call_Parameters -- -- Appropriate Expression_Kinds: -- A_Function_Call -- -- Appropriate Statement_Kinds: -- An_Entry_Call_Statement -- A_Procedure_Call_Statement -- -- Returns Element_Kinds: -- A_Parameter_Association -- The rest of this section contains the modified versions of the queries -- defined in the standard ASIS packages. The names of these modified -- versions may or may not be the same as in the "core" ASIS ----------------------- -- Asis.Declarations -- ----------------------- function Formal_Subprogram_Default (Declaration : Asis.Generic_Formal_Parameter) return Asis.Expression; -- This is a modified version of the query Formal_Subprogram_Default -- adjusted for use in the implementation of Asis.Elements.Traverse_Element -- generic procedure. Similarly to that ASIS query, it returns the name -- appearing after the reserved word IS in the given generic for -- A_Name_Default Element, but if its argument is of another kind from -- Default_Kinds, it returns Nil_Element instead of raising -- ASIS_Inappropriate_Element. -- -- Appropriate Declaration_Kinds: -- A_Formal_Function_Declaration -- A_Formal_Procedure_Declaration -- -- Returns Element_Kinds: -- An_Expression function Primitive_Owner (Declaration : Asis.Declaration) return Asis.Type_Definition; -- In the case that Declaration the explicit declaration of a subprogram -- which Is_Dispatching_Operation for some tagged type, this function -- returns the type definition for which it is a primitive operation. (Note -- that a subprogram declaration may be a primitive operation for more than -- one type, but it may be a primitive operation for at most one tagged -- type. Note also, that for implicitly declared dispatching operations -- the primary ASIS query Asis.Declarations.Corresponding_Type may be used -- to find the type which "owns" the operation). Returns Nil_Element in all -- other cases. -- -- In case of a (non-tagged!) private type that has a tagged full view, a -- type operation declared in visible part is classified as -- Is_Dispatching_Operation, and this function will return private -- non-tagged type definition. -- -- Appropriate Declaration_Kinds (should be the same as expected kinds -- for Asis.Declarations.Is_Dispatching_Operation): -- A_Procedure_Declaration -- A_Function_Declaration -- A_Procedure_Renaming_Declaration -- A_Function_Renaming_Declaration -- A_Null_Procedure_Declaration -- A_Procedure_Body_Declaration -- A_Function_Body_Declaration -- A_Procedure_Body_Stub -- A_Function_Body_Stub -- -- Returns Definition_Kinds: -- A_Private_Type_Definition -- A_Tagged_Private_Type_Definition -- A_Private_Extension_Definition -- -- Returns Type_Kinds: -- A_Derived_Record_Extension_Definition -- A_Tagged_Record_Type_Definition -- -- Returns Element_Kinds -- Not_An_Element ---------------------- -- Asis.Expressions -- ---------------------- function Corresponding_Called_Function_Unwound (Expression : Asis.Expression) return Asis.Declaration; -- A modification of Asis.Expressions.Corresponding_Called_Function which -- unwinds all the renamings in the case where the function name in the -- argument function call is defined by a renaming declaration. This -- function returns the declaration of the called function *entity*. -- -- Appropriate Expression_Kinds: -- A_Function_Call -- -- Returns Declaration_Kinds: -- Not_A_Declaration -- A_Function_Declaration -- A_Function_Body_Declaration -- A_Function_Body_Stub -- A_Function_Renaming_Declaration -- A_Function_Instantiation -- A_Formal_Function_Declaration function Corresponding_Called_Function_Unwinded (Expression : Asis.Expression) return Asis.Declaration renames Corresponding_Called_Function_Unwound; -- For upward compatibility we have to keep the old ungrammatical names of -- this function --------------------- -- Asis.Statements -- --------------------- function Corresponding_Called_Entity_Unwound (Statement : Asis.Statement) return Asis.Declaration; -- A modification of Asis.Statements.Corresponding_Called_Entity which -- unwinds all the renamings in the case where the procedure or entry name -- in the argument call is defined by a renaming declaration. This function -- returns the declaration of the callable *entity*. -- -- Appropriate Statement_Kinds: -- An_Entry_Call_Statement -- A_Procedure_Call_Statement -- -- Returns Declaration_Kinds: -- Not_A_Declaration -- A_Procedure_Declaration -- A_Procedure_Body_Declaration -- A_Procedure_Body_Stub -- A_Procedure_Renaming_Declaration -- A_Procedure_Instantiation -- A_Formal_Procedure_Declaration -- An_Entry_Declaration function Corresponding_Called_Entity_Unwinded (Statement : Asis.Statement) return Asis.Declaration renames Corresponding_Called_Entity_Unwound; -- For upward compatibility we have to keep the old ungrammatical names of -- this function -------------------------------------- -- Extensions of ASIS functionality -- -------------------------------------- ---------------------------- -- Asis.Compilation_Units -- ---------------------------- function CU_Requires_Body (Right : Asis.Compilation_Unit) return Boolean; -- Similar to Asis.Compilation_Units.Is_Body_Required, but also checks -- library subprogram declarations and library generic subprogram -- declarations. For (generic) library subprogram declarations, -- returns True unless the subprogram is completed by pragma Import. function Is_Obsolete (Right : Asis.Compilation_Unit) return Boolean; -- Checks if the argument unit, Right, is obsolete. A unit is not -- obsolete, if the source for this unit is available and if it -- is the same as the source used for creating the trees. All -- unit kinds are expected, except nil, unknown and nonexistent -- units. Always returns True for any non-expected unit. In case -- of '-SA' Context, always returns False for any expected unit. type Source_File_Statuses is ( -- Status of the source file corresponding to a given unit No_File_Status, -- Nil value, used for nil, non-existent, and unknown units Absent, -- No source file available. This is always the case for the -- predefined Standard package, nil, unknown and non-existent -- units. Older, -- The available source file is older then the source used -- to create tree files Newer, -- The available source file is newer then the source used -- to create tree files Up_To_Date); -- The available source file is the same as the source used -- to create tree files function Source_File_Status (Right : Asis.Compilation_Unit) return Source_File_Statuses; -- Checks the status of the source file for the argument unit. function Is_Main_Unit_In_Tree (Right : Asis.Compilation_Unit) return Boolean; -- Checks if the argument unit, Right, is a main unit from some compilation -- which has created a tree within the set of tree files making up the -- enclosing Context of this unit. function Main_Unit_In_Current_Tree (The_Context : Asis.Context) return Asis.Compilation_Unit; -- If the tree currently accessed by ASIS is from the set of trees making -- up The_Context, then this function returns the corresponding main unit, -- that is, the Compilation_Unit corresponding to the source file which -- has been compiled to create this tree file. Otherwise (this also -- includes the case when the currently accessed tree is null tree), -- returns the main unit for the first tree in the set of trees making up -- The_Context (the meaning of the notion "the first tree" is -- implementation-dependent), and if this set is empty, returns -- Nil_Compilation_Unit. -- -- This function does not check if the argument Context is open. -- -- This function is practically useful for "-C1" Contexts function Compilation_Dependencies (Main_Unit : Asis.Compilation_Unit) return Asis.Compilation_Unit_List; -- Provides the full list of units upon which Main_Unit depends -- in the GNAT compilation system. The kind of dependencies -- reported by this query combine semantic dependencies as -- defined by RM 95 and GNAT-specific dependencies. Main_Unit -- should be recompiled if any of the units from the returned -- list has been changed. -- -- Main_Unit should be a main unit from some compilation which -- has created a tree wile from the set of tree files making up -- the enclosing Context of Main_Unit. -- -- ASIS_Inappropriate_Compilation_Unit is raised if Main_Unit -- does not satisfy this restriction. -- -- Note, that this query is supposed to be used for ASIS Contexts -- representing complete Ada partitions, otherwise it may return -- formally correct, but meaningless results. -- -- The interface of this query is still subject to design discussions??? -- In particular, some limitations may be imposed on appropriate unit -- kinds, or a special parameter may be added to filter out some parts -- of the result -- -- Appropriate Unit_Kinds: -- A_Procedure -- A_Function -- A_Package -- A_Generic_Procedure -- A_Generic_Function -- A_Generic_Package -- -- A_Procedure_Instance -- A_Function_Instance -- A_Package_Instance -- -- A_Procedure_Renaming -- A_Function_Renaming -- A_Package_Renaming -- -- A_Generic_Procedure_Renaming -- A_Generic_Function_Renaming -- A_Generic_Package_Renaming -- -- A_Procedure_Body -- A_Function_Body -- A_Package_Body -- -- A_Procedure_Body_Subunit -- A_Function_Body_Subunit -- A_Package_Body_Subunit -- A_Task_Body_Subunit -- A_Protected_Body_Subunit -- -- Returns Unit_Kinds: -- A_Procedure -- A_Function -- A_Package -- A_Generic_Procedure -- A_Generic_Function -- A_Generic_Package -- -- A_Procedure_Instance -- A_Function_Instance -- A_Package_Instance -- -- A_Procedure_Renaming -- A_Function_Renaming -- A_Package_Renaming -- -- A_Generic_Procedure_Renaming -- A_Generic_Function_Renaming -- A_Generic_Package_Renaming -- -- A_Procedure_Body -- A_Function_Body -- A_Package_Body -- -- A_Procedure_Body_Subunit -- A_Function_Body_Subunit -- A_Package_Body_Subunit -- A_Task_Body_Subunit -- A_Protected_Body_Subunit function Original_Text_Name (Compilation_Unit : Asis.Compilation_Unit) return Wide_String; -- In case if the source of the Compilation_Unit contains a -- Source_Reference pragma, returns the file name from this pragma, -- otherwise returns the same result as Asis.Compilation_Units.Text_Name -- -- All Unit_Kinds are appropriate. ------------------------------------- -- Extensions to Asis.Declarations -- ------------------------------------- function First_Name (Dcl : Asis.Element) return Asis.Element; -- Returns the first defining name from an argument declaration. Is -- equivalent to -- -- Names (Dcl) (Names (Dcl)'First) -- -- Appropriate Element_Kinds: -- A_Declaration -- -- Returns Element_Kinds -- A_Defining_Name function Corresponding_Overridden_Operation (Declaration : Asis.Declaration) return Asis.Declaration; -- In case if Is_Overriding_Operation (Declaration) is True, returns the -- declaration of the subpogram that is overridden by Declaration (it may -- be explicit or implicit declaration). Otherwise returns Nil_Element. -- Note, that this query knows nothing about multiple inheritance! -- -- Appropriate Declaration_Kinds: -- A_Procedure_Declaration -- A_Function_Declaration -- A_Procedure_Instantiation -- A_Function_Instantiation -- A_Procedure_Body_Declaration -- A_Function_Body_Declaration -- A_Null_Procedure_Declaration -- A_Procedure_Renaming_Declaration -- A_Function_Renaming_Declaration -- -- Returns Declaration_Kinds: -- A_Procedure_Declaration -- A_Function_Declaration -- A_Procedure_Instantiation -- A_Function_Instantiation -- A_Procedure_Body_Declaration -- A_Function_Body_Declaration -- A_Null_Procedure_Declaration -- A_Procedure_Renaming_Declaration -- A_Function_Renaming_Declaration function Corresponding_Overridden_Operations (Declaration : Asis.Declaration) return Asis.Element_List; -- The difference with the previous Corresponding_Overridden_Operation -- in case of multiple unheritance this query returns all the operations -- of the parent type and all the interface types from which the owner -- of the argument primitive is derived. Returns Nil_Element_List if -- not Is_Overriding_Operation (Declaration). -- -- Not implemented yet!!! -- -- Appropriate Declaration_Kinds: -- A_Procedure_Declaration -- A_Function_Declaration -- A_Procedure_Instantiation -- A_Function_Instantiation -- A_Procedure_Body_Declaration -- A_Function_Body_Declaration -- A_Procedure_Renaming_Declaration -- A_Function_Renaming_Declaration -- -- Returns Declaration_Kinds: -- A_Procedure_Declaration -- A_Function_Declaration -- A_Procedure_Instantiation -- A_Function_Instantiation -- A_Procedure_Body_Declaration -- A_Function_Body_Declaration -- A_Procedure_Renaming_Declaration -- A_Function_Renaming_Declaration ------------------------------------ -- Extensions to Asis.Definitions -- ------------------------------------ function Inherited_Type_Operators (Type_Definition : Asis.Type_Definition) return Asis.Declaration_List; -- Returns a list of user-defined operator functions inherited by this -- type. (Each operator function in the result list has parameter (s) or -- (and) result of the argument type. -- This function is used in the implementation of -- Asis.Definitions.Corresponding_Type_Operators, that's why the list of -- appropriate kinds include type definitions that can not have any -- inherited declarations associated with them. For these arguments -- Nil_Element_List is returned. For non-null result each component of the -- result list Is_Part_Of_Implicit and Is_part_Of_Inherited -- -- Appropriate Definition_Kinds: -- A_Type_Definition -- A_Formal_Type_Declaration -- A_Private_Type_Definition -- A_Tagged_Private_Type_Definition -- A_Private_Extension_Definition -- A_Task_Definition -- A_Protected_Definition -- -- Returns Declaration_Kinds: -- A_Function_Declaration function Explicit_Type_Operators (Type_Definition : Asis.Type_Definition) return Asis.Declaration_List; -- If the argument is of A_Formal_Type_Definition kind, returns a list of -- formal operator function from the same formal part that have a parameter -- or return the result of this formal type. Otherwise returns a list of -- explicitly declared operator functions that are primitive operations -- of the argument type -- -- Appropriate Definition_Kinds: -- A_Type_Definition -- A_Formal_Type_Declaration -- A_Private_Type_Definition -- A_Tagged_Private_Type_Definition -- A_Private_Extension_Definition -- A_Task_Definition -- A_Protected_Definition -- -- Returns Declaration_Kinds: -- A_Function_Declaration -- A_Function_Body_Declaration -- A_Function_Body_Stub -- A_Function_Renaming_Declaration -- A_Function_Instantiation -- A_Formal_Function_Declaration function Corresponding_Parent_Subtype_Unwind_Base (Type_Definition : Asis.Type_Definition) return Asis.Declaration; -- This query differs from Asis.Definitions,Corresponding_Parent_Subtype -- in the following. If the argument type definition contains the ('Base) -- attribute reference as the parent subtype mark, it gets to the prefix -- of this attribute and applies -- Asis.Declarations.Corresponding_First_Subtype to it. ------------------------------------ -- Extensions to Asis.Expressions -- ------------------------------------ function Full_Name_Image (Expression : Asis.Expression) return Program_Text; -- Similar to Asis.Expressions.Name_Image, but also works on full expanded -- names function Normalize_Reference (Ref : Asis.Element) return Asis.Element; -- This function is supposed to be called for the ASIS Elements -- representing a subtype mark. A subtype mark can be represented by -- an Element of one of the tree following kinds: -- -- An_Identifier -- A_Selected_Component -- An_Attribute_Reference -- -- This function "prepares" its argument for applying the ASIS -- Corresponding_Name_Definition and Corresponding_Name_Declaration -- queries, that is, returns its argument if it is of An_Identifier kind, -- returns the selector of the argument if it is of A_Selected_Component -- kind, and applies itself to the attribute prefix in case of -- An_Attribute_Reference function Corresponding_First_Definition (Defining_Name : Asis.Defining_Name) return Asis.Defining_Name; -- In case there is more than one defining occurrence of an argument -- Defining_Name representing the same view of the same entity (such as a -- defining unit name for a program unit for which separate spec and body -- are present and a formal parameter name for a generic subprogram or -- subprogram having a separate spec) this function returns the first -- defining occurrence which actually introduces the corresponding entity. -- If there are only one defining occurrence of the argument Name, or if -- for some reason the first defining occurrence cannot be returned, the -- argument name is returned. -- -- Appropriate Element kinds: -- A_Defining_Name -- -- Returns Element kinds: -- A_Defining_Name function Corresponding_Body_Parameter_Definition (Defining_Name : Asis.Defining_Name) return Asis.Defining_Name; -- When applying to a defining name which is a name of a formal parameter -- of a subprogram, this function returns the defining name of this -- parameter from a subprogram body. If there is no body for this -- subprogram, Nil_Element is returned. If Defining_Name is not a -- defining name of a formal subprogram parameter, Nil_Element is -- returned. -- -- Appropriate Element kinds: -- A_Defining_Identifier -- -- Returns Element kinds: -- A_Defining_Identifier -- Not_An_Element function Static_Expression_Value_Image (Expression : Asis.Expression) return Wide_String; -- PARTIALLY IMPLEMENTED!!! -- Computes the value of Expression (which should be a static expression!) -- and represents it as a (wide) string. For enumeration expressions, the -- image of the Pos value of the defining enumeration or character literal -- corresponding to the value of the expression is returned (see -- Asis.Declarations.Position_Number_Image query). -- -- For ASIS Expression Elements for which Is_True_Expression yields False -- and empty string is returned -- -- For non-static expressions, an empty string is returned. -- -- Currently this function is implemented only for discrete and string -- types. For other types an empty string is returned. -- -- Appropriate Element_Kinds: -- An_Expression function Static_Range_Low_Bound_Value_Image (Range_Element : Asis.Range_Constraint) return Wide_String; -- PARTIALLY IMPLEMENTED!!! -- For A_Range_Attribute_Reference constraint defining by a static range, -- this function computes the value of the corresponding low bound and -- represents it as a (wide) string. For enumeration ranges, the -- image of the Pos value of the defining enumeration or character literal -- corresponding to the value of the low bound is returned (see -- Asis.Extensions.Static_Expression_Value_Image and -- Asis.Declarations.Position_Number_Image queries). -- -- For non-static expressions ranges, an empty string is returned. -- -- Currently this function is implemented only for discrete types. For -- other types an empty string is returned. -- -- Appropriate Constraint_Kinds: -- A_Range_Attribute_Reference function Static_Range_High_Bound_Value_Image (Range_Element : Asis.Range_Constraint) return Wide_String; -- PARTIALLY IMPLEMENTED!!! -- For A_Range_Attribute_Reference constraint defining by a static range, -- this function computes the value of the corresponding high bound and -- represents it as a (wide) string. For enumeration ranges, the -- image of the Pos value of the defining enumeration or character literal -- corresponding to the value of the high bound is returned (see -- Asis.Extensions.Static_Expression_Value_Image and -- Asis.Declarations.Position_Number_Image queries). -- -- For non-static expressions ranges, an empty string is returned. -- -- Currently this function is implemented only for discrete types. For -- other types an empty string is returned. -- -- Appropriate Constraint_Kinds: -- A_Range_Attribute_Reference -- -- Appropriate Discrete_Range_Kinds: -- A_Discrete_Range_Attribute_Reference ----------------------------- -- Extensions to Asis.Text -- ----------------------------- function Element_Span_In_Template (Element : Asis.Element) return Asis.Text.Span; -- If Is_Part_Of_Instance is True for the argument Element, then this -- function returns the span of the corresponding piece of code in the -- generic template. Otherwise a Nil_Span is returned. Nil_Span is also -- returned if Is_Part_Of_Implicit Element is True for Element. function Element_Image_In_Template (Element : Asis.Element) return Program_Text; -- If Is_Part_Of_Instancce is True for the argument Element, then this -- function returns the image of the corresponding piece of code in the -- generic template. Otherwise a null string is returned. A null string -- is also returned if Is_Part_Of_Implicit_ELement is true for Element function Original_Line_Number (Element : Asis.Element; Compiled_Line : Line_Number_Positive) return Line_Number; -- If the enclosing compilation unit of the argument Element contains a -- Source_Reference pragma, this function converts the line number of -- the file which actually was compiled ("physical" file) into the -- corresponding line number in the original file. For the line containing -- a Source_Reference pragma zero is returned. -- -- Returns 0 if not Is_Text_Available(Element). -- -- Raises ASIS_Inappropriate_Line_Number if Is_Text_Available(Element) and -- Compiled_Line is greater than the maximum line number of the compiled -- file -------------------------------- -- General_Purpose Extensions -- -------------------------------- function Get_Last_Component (E : Asis.Element) return Asis.Element; -- Returns the right-most direct component of its argument. Returns -- Nil_Element if its argument has no components. It is an error to -- call this function for Nil_Element function Components (E : Asis.Element) return Asis.Element_List; -- Returns the list of all the first-level components of its argument. -- Nil_Element is returned for a terminal component. -- The implementation -- of this function is not very effective - we do not use any dynamic -- element lists, we simply compute the components twice - first time -- to get to know the overall number of components, and second -- time to fill in the result Element_List end Asis.Extensions;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME LIBRARY (GNARL) COMPONENTS -- -- -- -- SYSTEM.TASK_PRIMITIVES.OPERATIONS.SPECIFIC -- -- -- -- B o d y -- -- -- -- Copyright (C) 1992-2020, Free Software Foundation, Inc. -- -- -- -- GNARL is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNARL was developed by the GNARL team at Florida State University. -- -- Extensive contributions were provided by Ada Core Technologies, Inc. -- -- -- ------------------------------------------------------------------------------ -- This is a POSIX-like version of this package separate (System.Task_Primitives.Operations) package body Specific is ATCB_Key : aliased pthread_key_t; -- Key used to find the Ada Task_Id associated with a thread ---------------- -- Initialize -- ---------------- procedure Initialize (Environment_Task : Task_Id) is pragma Warnings (Off, Environment_Task); Result : Interfaces.C.int; begin Result := pthread_key_create (ATCB_Key'Access, null); pragma Assert (Result = 0); end Initialize; ------------------- -- Is_Valid_Task -- ------------------- function Is_Valid_Task return Boolean is begin return pthread_getspecific (ATCB_Key) /= System.Null_Address; end Is_Valid_Task; --------- -- Set -- --------- procedure Set (Self_Id : Task_Id) is Result : Interfaces.C.int; begin Result := pthread_setspecific (ATCB_Key, To_Address (Self_Id)); pragma Assert (Result = 0); end Set; ---------- -- Self -- ---------- function Self return Task_Id is begin return To_Task_Id (pthread_getspecific (ATCB_Key)); end Self; end Specific;
with ada.text_io, ada.Integer_text_IO, Ada.Text_IO.Text_Streams, Ada.Strings.Fixed, Interfaces.C; use ada.text_io, ada.Integer_text_IO, Ada.Strings, Ada.Strings.Fixed, Interfaces.C; procedure aaa_041comment is type stringptr is access all char_array; procedure PInt(i : in Integer) is begin String'Write (Text_Streams.Stream (Current_Output), Trim(Integer'Image(i), Left)); end; i : Integer; begin i := 4; --while i < 10 do PInt(i); i := i + 1; -- end PInt(i); end;
package Oalign2 is Klunk2 : Integer := 12; for Klunk2'Alignment use Standard'Maximum_Alignment; end;
------------------------------------------------------------------------------ -- -- -- 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$ ------------------------------------------------------------------------------ with System.Storage_Elements; package body Matreshka.Internals.SQL_Drivers.MySQL is ---------------- -- Initialize -- ---------------- procedure Initialize (Item : in out MYSQL_BIND_Array) is use type System.Storage_Elements.Storage_Offset; Aux : System.Storage_Elements.Storage_Array (1 .. Item'Size / System.Storage_Elements.Storage_Element'Size); for Aux'Address use Item'Address; pragma Import (Ada, Aux); begin Aux := (others => 0); end Initialize; end Matreshka.Internals.SQL_Drivers.MySQL;
----------------------------------------------------------------------- -- net-sockets-udp -- UDP socket-like interface -- Copyright (C) 2016 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 Net.Headers; with Net.Protos.IPv4; package body Net.Sockets.Udp is List : access Socket'Class; procedure Bind (Endpoint : access Socket'Class; Ifnet : access Net.Interfaces.Ifnet_Type'Class; Addr : in Sockaddr_In) is begin if Endpoint.Ifnet = null then Endpoint.Next := List; List := Endpoint.all'Unchecked_Access; Endpoint.Ifnet := Ifnet; end if; Endpoint.Listen.Port := Addr.Port; Endpoint.Listen.Addr := Ifnet.Ip; end Bind; procedure Send (Endpoint : in out Socket; To : in Sockaddr_In; Packet : in out Net.Buffers.Buffer_Type; Status : out Error_Code) is Ip : constant Net.Headers.IP_Header_Access := Packet.IP; Hdr : constant Net.Headers.UDP_Header_Access := Packet.UDP; Len : constant Net.Uint16 := Packet.Get_Data_Size (Net.Buffers.IP_PACKET); begin Packet.Set_Length (Len + 20 + 14); Hdr.Uh_Dport := To.Port; Hdr.Uh_Sport := Endpoint.Listen.Port; Hdr.Uh_Sum := 0; Hdr.Uh_Ulen := Net.Headers.To_Network (Len); if Endpoint.Listen.Addr = (0, 0, 0, 0) then Net.Protos.IPv4.Make_Header (Ip, Endpoint.Ifnet.Ip, To.Addr, Net.Protos.IPv4.P_UDP, Len + 20); else Net.Protos.IPv4.Make_Header (Ip, Endpoint.Listen.Addr, To.Addr, Net.Protos.IPv4.P_UDP, Len + 20); end if; Net.Protos.IPv4.Send_Raw (Endpoint.Ifnet.all, To.Addr, Packet, Status); end Send; -- ------------------------------ -- Input a UDP packet and dispatch it to the associated UDP socket. -- ------------------------------ procedure Input (Ifnet : in out Net.Interfaces.Ifnet_Type'Class; Packet : in out Net.Buffers.Buffer_Type) is Ip : constant Net.Headers.IP_Header_Access := Packet.IP; Hdr : constant Net.Headers.UDP_Header_Access := Packet.UDP; Addr : Net.Sockets.Sockaddr_In; Soc : access Socket'Class := List; Len : Net.Uint16; begin Addr.Addr := Ip.Ip_Src; Addr.Port := Hdr.Uh_Sport; while Soc /= null loop if Soc.Listen.Port = Hdr.Uh_Dport then Len := Net.Headers.To_Host (Hdr.Uh_Ulen) - 8; Packet.Set_Type (Net.Buffers.UDP_PACKET); if Len < Packet.Get_Data_Size (Net.Buffers.UDP_PACKET) then Packet.Set_Length (Len + 8 + 20 + 14); end if; Soc.Receive (Addr, Packet); return; end if; Soc := Soc.Next; end loop; Ifnet.Rx_Stats.Ignored := Ifnet.Rx_Stats.Ignored + 1; end Input; -- ------------------------------ -- Send a raw packet. The packet must have the Ethernet, IP and UDP headers initialized. -- ------------------------------ procedure Send (Endpoint : in out Raw_Socket; Packet : in out Net.Buffers.Buffer_Type) is begin Endpoint.Ifnet.Send (Packet); end Send; end Net.Sockets.Udp;
------------------------------------------------------------------------------ -- Copyright (c) 2014, Natacha Porté -- -- -- -- Permission to use, copy, modify, and distribute this software for any -- -- purpose with or without fee is hereby granted, provided that the above -- -- copyright notice and this permission notice appear in all copies. -- -- -- -- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -- -- WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -- -- MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR -- -- ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -- -- WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -- -- ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF -- -- OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -- ------------------------------------------------------------------------------ ------------------------------------------------------------------------------ -- Simple_Webapps.Commands is an empty root package for all generated -- -- static hash maps for interpreter command parsing. -- ------------------------------------------------------------------------------ package Simple_Webapps.Commands is pragma Pure; end Simple_Webapps.Commands;
------------------------------------------------------------------------------ -- -- -- GNU ADA RUN-TIME LIBRARY (GNARL) COMPONENTS -- -- -- -- SYSTEM.INTERRUPT_MANAGEMENT.OPERATIONS -- -- -- -- B o d y -- -- -- -- $Revision$ -- -- -- Copyright (C) 1997-1998, 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). -- -- -- ------------------------------------------------------------------------------ -- This is a POSIX-like version of this package. -- Note: this file can only be used for POSIX compliant systems. with Interfaces.C; -- used for int -- size_t -- unsigned with System.OS_Interface; -- used for various type, constant, and operations with System.Storage_Elements; -- used for To_Address -- Integer_Address with Unchecked_Conversion; package body System.Interrupt_Management.Operations is use Interfaces.C; use System.OS_Interface; type Interrupt_Mask_Ptr is access all Interrupt_Mask; function "+" is new Unchecked_Conversion (Interrupt_Mask_Ptr, sigset_t_ptr); --------------------- -- Local Variables -- --------------------- Initial_Action : array (Signal) of aliased struct_sigaction; Default_Action : aliased struct_sigaction; Ignore_Action : aliased struct_sigaction; ---------------------------- -- Thread_Block_Interrupt -- ---------------------------- procedure Thread_Block_Interrupt (Interrupt : Interrupt_ID) is Result : Interfaces.C.int; Mask : aliased sigset_t; begin Result := sigemptyset (Mask'Access); pragma Assert (Result = 0); Result := sigaddset (Mask'Access, Signal (Interrupt)); pragma Assert (Result = 0); Result := pthread_sigmask (SIG_BLOCK, Mask'Unchecked_Access, null); pragma Assert (Result = 0); end Thread_Block_Interrupt; ------------------------------ -- Thread_Unblock_Interrupt -- ------------------------------ procedure Thread_Unblock_Interrupt (Interrupt : Interrupt_ID) is Mask : aliased sigset_t; Result : Interfaces.C.int; begin Result := sigemptyset (Mask'Access); pragma Assert (Result = 0); Result := sigaddset (Mask'Access, Signal (Interrupt)); pragma Assert (Result = 0); Result := pthread_sigmask (SIG_UNBLOCK, Mask'Unchecked_Access, null); pragma Assert (Result = 0); end Thread_Unblock_Interrupt; ------------------------ -- Set_Interrupt_Mask -- ------------------------ procedure Set_Interrupt_Mask (Mask : access Interrupt_Mask) is Result : Interfaces.C.int; begin Result := pthread_sigmask (SIG_SETMASK, +Interrupt_Mask_Ptr (Mask), null); pragma Assert (Result = 0); end Set_Interrupt_Mask; procedure Set_Interrupt_Mask (Mask : access Interrupt_Mask; OMask : access Interrupt_Mask) is Result : Interfaces.C.int; begin Result := pthread_sigmask (SIG_SETMASK, +Interrupt_Mask_Ptr (Mask), +Interrupt_Mask_Ptr (OMask)); pragma Assert (Result = 0); end Set_Interrupt_Mask; ------------------------ -- Get_Interrupt_Mask -- ------------------------ procedure Get_Interrupt_Mask (Mask : access Interrupt_Mask) is Result : Interfaces.C.int; begin Result := pthread_sigmask (SIG_SETMASK, null, +Interrupt_Mask_Ptr (Mask)); pragma Assert (Result = 0); end Get_Interrupt_Mask; -------------------- -- Interrupt_Wait -- -------------------- function Interrupt_Wait (Mask : access Interrupt_Mask) return Interrupt_ID is Result : Interfaces.C.int; Sig : aliased Signal; begin Result := sigwait (Mask, Sig'Access); if Result /= 0 then return 0; end if; return Interrupt_ID (Sig); end Interrupt_Wait; ---------------------------- -- Install_Default_Action -- ---------------------------- procedure Install_Default_Action (Interrupt : Interrupt_ID) is Result : Interfaces.C.int; begin Result := sigaction (Signal (Interrupt), Initial_Action (Signal (Interrupt))'Access, null); pragma Assert (Result = 0); end Install_Default_Action; --------------------------- -- Install_Ignore_Action -- --------------------------- procedure Install_Ignore_Action (Interrupt : Interrupt_ID) is Result : Interfaces.C.int; begin Result := sigaction (Signal (Interrupt), Ignore_Action'Access, null); pragma Assert (Result = 0); end Install_Ignore_Action; ------------------------- -- Fill_Interrupt_Mask -- ------------------------- procedure Fill_Interrupt_Mask (Mask : access Interrupt_Mask) is Result : Interfaces.C.int; begin Result := sigfillset (Mask); pragma Assert (Result = 0); end Fill_Interrupt_Mask; -------------------------- -- Empty_Interrupt_Mask -- -------------------------- procedure Empty_Interrupt_Mask (Mask : access Interrupt_Mask) is Result : Interfaces.C.int; begin Result := sigemptyset (Mask); pragma Assert (Result = 0); end Empty_Interrupt_Mask; --------------------------- -- Add_To_Interrupt_Mask -- --------------------------- procedure Add_To_Interrupt_Mask (Mask : access Interrupt_Mask; Interrupt : Interrupt_ID) is Result : Interfaces.C.int; begin Result := sigaddset (Mask, Signal (Interrupt)); pragma Assert (Result = 0); end Add_To_Interrupt_Mask; -------------------------------- -- Delete_From_Interrupt_Mask -- -------------------------------- procedure Delete_From_Interrupt_Mask (Mask : access Interrupt_Mask; Interrupt : Interrupt_ID) is Result : Interfaces.C.int; begin Result := sigdelset (Mask, Signal (Interrupt)); pragma Assert (Result = 0); end Delete_From_Interrupt_Mask; --------------- -- Is_Member -- --------------- function Is_Member (Mask : access Interrupt_Mask; Interrupt : Interrupt_ID) return Boolean is Result : Interfaces.C.int; begin Result := sigismember (Mask, Signal (Interrupt)); pragma Assert (Result = 0 or else Result = 1); return Result = 1; end Is_Member; ------------------------- -- Copy_Interrupt_Mask -- ------------------------- procedure Copy_Interrupt_Mask (X : out Interrupt_Mask; Y : Interrupt_Mask) is begin X := Y; end Copy_Interrupt_Mask; ---------------------------- -- Interrupt_Self_Process -- ---------------------------- procedure Interrupt_Self_Process (Interrupt : Interrupt_ID) is Result : Interfaces.C.int; begin Result := kill (getpid, Signal (Interrupt)); pragma Assert (Result = 0); end Interrupt_Self_Process; begin declare mask : aliased sigset_t; allmask : aliased sigset_t; Result : Interfaces.C.int; begin for Sig in 1 .. Signal'Last loop Result := sigaction (Sig, null, Initial_Action (Sig)'Unchecked_Access); -- ??? [assert 1] -- we can't check Result here since sigaction will fail on -- SIGKILL, SIGSTOP, and possibly other signals -- pragma Assert (Result = 0); end loop; -- Setup the masks to be exported. Result := sigemptyset (mask'Access); pragma Assert (Result = 0); Result := sigfillset (allmask'Access); pragma Assert (Result = 0); Default_Action.sa_flags := 0; Default_Action.sa_mask := mask; Default_Action.sa_handler := Storage_Elements.To_Address (Storage_Elements.Integer_Address (SIG_DFL)); Ignore_Action.sa_flags := 0; Ignore_Action.sa_mask := mask; Ignore_Action.sa_handler := Storage_Elements.To_Address (Storage_Elements.Integer_Address (SIG_IGN)); for I in Interrupt_ID loop if Keep_Unmasked (I) then Result := sigaddset (mask'Access, Signal (I)); pragma Assert (Result = 0); Result := sigdelset (allmask'Access, Signal (I)); pragma Assert (Result = 0); end if; end loop; -- The Keep_Unmasked signals should be unmasked for Environment task Result := pthread_sigmask (SIG_UNBLOCK, mask'Unchecked_Access, null); pragma Assert (Result = 0); -- Get the signal mask of the Environment Task Result := pthread_sigmask (SIG_SETMASK, null, mask'Unchecked_Access); pragma Assert (Result = 0); -- Setup the constants exported Environment_Mask := Interrupt_Mask (mask); All_Tasks_Mask := Interrupt_Mask (allmask); end; end System.Interrupt_Management.Operations;
pragma License (Unrestricted); -- separated and auto-loaded by compiler private generic type Num is digits <>; package Ada.Wide_Text_IO.Float_IO is Default_Fore : Field := 2; Default_Aft : Field := Num'Digits - 1; Default_Exp : Field := 3; -- procedure Get ( -- File : File_Type; -- Input_File_Type -- Item : out Num; -- Width : Field := 0); -- procedure Get ( -- Item : out Num; -- Width : Field := 0); -- procedure Put ( -- File : File_Type; -- Output_File_Type -- Item : Num; -- Fore : Field := Default_Fore; -- Aft : Field := Default_Aft; -- Exp : Field := Default_Exp); -- procedure Put ( -- Item : Num; -- Fore : Field := Default_Fore; -- Aft : Field := Default_Aft; -- Exp : Field := Default_Exp); -- procedure Get ( -- From : String; -- Item : out Num; -- Last : out Positive); -- procedure Put ( -- To : out String; -- Item : Num; -- Aft : Field := Default_Aft; -- Exp : Field := Default_Exp); end Ada.Wide_Text_IO.Float_IO;
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- SQL Database Access -- -- -- -- 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: 1562 $ $Date: 2011-03-02 11:40:23 +0200 (Ср, 02 мар 2011) $ ------------------------------------------------------------------------------ -- This package provides implementation of SQL statement parameter rewriter -- for Firebird: every :name parameter placeholder is replaced by $N -- parameter placeholder. Duplicate names are replaced by the same parameter -- placeholder. ------------------------------------------------------------------------------ package Matreshka.Internals.SQL_Parameter_Rewriters.Firebird is type Firebird_Parameter_Rewriter is new Abstract_Parameter_Rewriter with null record; overriding procedure Database_Placeholder (Self : Firebird_Parameter_Rewriter; Name : League.Strings.Universal_String; Number : Positive; Placeholder : out League.Strings.Universal_String; Parameters : in out SQL_Parameter_Sets.Parameter_Set); -- Sets Placeholder to database specific placeholder for parameter with -- Name and number Number. Implementation must modify Parameters -- accordingly. end Matreshka.Internals.SQL_Parameter_Rewriters.Firebird;
with Ada.Directories.Temporary; with Ada.Streams; with Ada.Text_IO.Text_Streams; with Ada.Wide_Text_IO; with Ada.Wide_Wide_Text_IO; with System.Form_Parameters; with System.System_Allocators; procedure textio is use type Ada.Streams.Stream_Element_Offset; package System_Allocators renames System.System_Allocators; subtype C is Character; subtype WC is Wide_Character; subtype WWC is Wide_Wide_Character; AIUEO : constant String := ( C'Val (16#e3#), C'Val (16#81#), C'Val (16#82#), C'Val (16#e3#), C'Val (16#81#), C'Val (16#84#), C'Val (16#e3#), C'Val (16#81#), C'Val (16#86#), C'Val (16#e3#), C'Val (16#81#), C'Val (16#88#), C'Val (16#e3#), C'Val (16#81#), C'Val (16#8a#)); Wide_AIUEO : constant Wide_String := ( WC'Val (16#3042#), WC'Val (16#3044#), WC'Val (16#3046#), WC'Val (16#3048#), WC'Val (16#304a#)); Wide_Wide_AIUEO : constant Wide_Wide_String := ( WWC'Val (16#3042#), WWC'Val (16#3044#), WWC'Val (16#3046#), WWC'Val (16#3048#), WWC'Val (16#304a#)); begin Ada.Text_IO.Put_Line ("Hello, Drake runtime!"); Ada.Wide_Text_IO.Put_Line ("Hello, Drake runtime!"); Ada.Wide_Wide_Text_IO.Put_Line ("Hello, Drake runtime!"); Ada.Text_IO.Put_Line (AIUEO); Ada.Wide_Text_IO.Put_Line (Wide_AIUEO); Ada.Wide_Wide_Text_IO.Put_Line (Wide_Wide_AIUEO); -- check inheritance Ada.Wide_Text_IO.Set_Col ( Ada.Wide_Text_IO.Current_Output.all, Ada.Wide_Text_IO.Col (Ada.Wide_Text_IO.Current_Output.all)); Ada.Wide_Wide_Text_IO.Set_Col ( Ada.Wide_Wide_Text_IO.Current_Output.all, Ada.Wide_Wide_Text_IO.Col (Ada.Wide_Wide_Text_IO.Current_Output.all)); -- check sharing mode declare Test_File_Name : constant String := Ada.Directories.Temporary.Create_Temporary_File; File_1, File_2 : Ada.Text_IO.File_Type; begin Ada.Debug.Put (Test_File_Name); -- prepare the file beforehand because Create always acquires write-lock Ada.Text_IO.Create (File_1, Ada.Text_IO.Out_File, Test_File_Name); Ada.Text_IO.Close (File_1); -- double open Ada.Text_IO.Open (File_1, Ada.Text_IO.Out_File, Test_File_Name, "shared=read"); -- shared lock (default is exclusive lock) Ada.Text_IO.Open (File_2, Ada.Text_IO.In_File, Test_File_Name, "shared=yes"); -- dead lock when File_1 acquired exclusive lock Ada.Text_IO.Close (File_2); Ada.Text_IO.Delete (File_1); end; -- check Append_File declare Page_Size : constant Ada.Streams.Stream_Element_Positive_Count := Ada.Streams.Stream_Element_Offset (System_Allocators.Page_Size); Test_File_Name : constant String := Ada.Directories.Temporary.Create_Temporary_File; File : Ada.Text_IO.File_Type; begin Ada.Debug.Put (Test_File_Name); Ada.Text_IO.Create (File, Ada.Text_IO.Out_File, Test_File_Name); Ada.Text_IO.Put (File, "ABC"); Ada.Text_IO.Close (File); Ada.Text_IO.Open (File, Ada.Text_IO.Append_File, Test_File_Name); pragma Assert (Ada.Streams.Index (Ada.Streams.Seekable_Stream_Type'Class (Ada.Text_IO.Text_Streams.Stream (File).all)) = 4); Ada.Text_IO.Put (File, (1 .. Natural (Page_Size) => ' ')); Ada.Text_IO.Close (File); Ada.Text_IO.Open (File, Ada.Text_IO.Append_File, Test_File_Name); pragma Assert (Ada.Streams.Index (Ada.Streams.Seekable_Stream_Type'Class (Ada.Text_IO.Text_Streams.Stream (File).all)) = 4 + Page_Size); Ada.Text_IO.Put_Line (File, "DEF"); Ada.Text_IO.Close (File); Ada.Text_IO.Open (File, Ada.Text_IO.In_File, Test_File_Name); declare Line : constant String := Ada.Text_IO.Get_Line (File); begin pragma Assert (Line = "ABC" & (1 .. Natural (Page_Size) => ' ') & "DEF"); null; end; Ada.Text_IO.Delete (File); end; -- test form parameter declare Keyword_First : Positive; Keyword_Last : Natural; Value_First : Positive; Value_Last : Natural; Last : Natural; Form_1 : constant String := "abc=def"; Form_2 : constant String := "abc=def,ghi"; Form_3 : constant String := "ghi"; Form_4 : constant String := "ghi,abc=def"; begin System.Form_Parameters.Get (Form_1, Keyword_First, Keyword_Last, Value_First, Value_Last, Last); pragma Assert (Form_1 (Keyword_First .. Keyword_Last) = "abc"); pragma Assert (Form_1 (Value_First .. Value_Last) = "def"); pragma Assert (Last = Form_1'Last); System.Form_Parameters.Get (Form_2, Keyword_First, Keyword_Last, Value_First, Value_Last, Last); pragma Assert (Form_2 (Keyword_First .. Keyword_Last) = "abc"); pragma Assert (Form_2 (Value_First .. Value_Last) = "def"); pragma Assert (Form_2 (Last) = ','); System.Form_Parameters.Get (Form_2 (Last + 1 .. Form_2'Last), Keyword_First, Keyword_Last, Value_First, Value_Last, Last); pragma Assert (Form_2 (Keyword_First .. Keyword_Last) = "ghi"); pragma Assert (Form_2 (Value_First .. Value_Last) = ""); pragma Assert (Last = Form_2'Last); System.Form_Parameters.Get (Form_3, Keyword_First, Keyword_Last, Value_First, Value_Last, Last); pragma Assert (Form_3 (Keyword_First .. Keyword_Last) = "ghi"); pragma Assert (Form_3 (Value_First .. Value_Last) = ""); pragma Assert (Last = Form_3'Last); System.Form_Parameters.Get (Form_4, Keyword_First, Keyword_Last, Value_First, Value_Last, Last); pragma Assert (Form_4 (Keyword_First .. Keyword_Last) = "ghi"); pragma Assert (Form_4 (Value_First .. Value_Last) = ""); pragma Assert (Form_4 (Last) = ','); System.Form_Parameters.Get (Form_4 (Last + 1 .. Form_4'Last), Keyword_First, Keyword_Last, Value_First, Value_Last, Last); pragma Assert (Form_4 (Keyword_First .. Keyword_Last) = "abc"); pragma Assert (Form_4 (Value_First .. Value_Last) = "def"); pragma Assert (Last = Form_4'Last); end; pragma Debug (Ada.Debug.Put ("OK")); end textio;
with AFRL.CMASI.AutomationRequest; use AFRL.CMASI.AutomationRequest; with AFRL.CMASI.EntityConfiguration; use AFRL.CMASI.EntityConfiguration; with AFRL.CMASI.EntityState; use AFRL.CMASI.EntityState; with AFRL.CMASI.KeepInZone; use AFRL.CMASI.KeepInZone; with AFRL.CMASI.KeepOutZone; use AFRL.CMASI.KeepOutZone; with AFRL.CMASI.lmcpTask; use AFRL.CMASI.lmcpTask; with AFRL.CMASI.OperatingRegion; use AFRL.CMASI.OperatingRegion; with AFRL.CMASI.RemoveTasks; use AFRL.CMASI.RemoveTasks; with AFRL.CMASI.ServiceStatus; use AFRL.CMASI.ServiceStatus; with AFRL.Impact.AngledAreaSearchTask; with AFRL.Impact.AreaOfInterest; use AFRL.Impact.AreaOfInterest; with AFRL.Impact.ImpactAutomationRequest; use AFRL.Impact.ImpactAutomationRequest; with AFRL.Impact.ImpactLineSearchTask; with AFRL.Impact.ImpactPointSearchTask; with AFRL.Impact.LineOfInterest; use AFRL.Impact.LineOfInterest; with AFRL.Impact.PointOfInterest; use AFRL.Impact.PointOfInterest; with UxAS.Messages.lmcptask.TaskAutomationRequest; use UxAS.Messages.lmcptask.TaskAutomationRequest; with UxAS.Messages.lmcptask.TaskInitialized; use UxAS.Messages.lmcptask.TaskInitialized; with UxAS.Messages.lmcptask.UniqueAutomationResponse; use UxAS.Messages.lmcptask.UniqueAutomationResponse; with DOM.Core.Elements; with Common; use Common; with LMCP_Message_Conversions; use LMCP_Message_Conversions; package body UxAS.Comms.LMCP_Net_Client.Service.Automation_Request_Validation is function UInt32_Attribute (XML_Node : DOM.Core.Element; Name : String; Default : AVTAS.LMCP.Types.UInt32) return AVTAS.LMCP.Types.UInt32; -- convenience function ----------------------- -- Local subprograms -- ----------------------- -- Those are refactored out of Process_Received_LMCP_Message for readability, comprehension, etc. procedure Handle_AreaOfInterest_Msg (This : in out Automation_Request_Validator_Service; Msg : Any_LMCP_Message); procedure Handle_Automation_Request (This : in out Automation_Request_Validator_Service; Msg : Any_LMCP_Message); procedure Handle_Automation_Response (This : in out Automation_Request_Validator_Service; Msg : Any_LMCP_Message); procedure Handle_EntityConfig_Msg (This : in out Automation_Request_Validator_Service; EntityConfig : EntityConfiguration_Any); procedure Handle_InitializedTasks_Msg (This : in out Automation_Request_Validator_Service; Job : lmcpTask_Any); procedure Handle_KeepInZone_Msg (This : in out Automation_Request_Validator_Service; Msg : Any_LMCP_Message); procedure Handle_KeepOutZone_Msg (This : in out Automation_Request_Validator_Service; Msg : Any_LMCP_Message); procedure Handle_LineOfInterest_Msg (This : in out Automation_Request_Validator_Service; Msg : Any_LMCP_Message); procedure Handle_OperatingRegion_Msg (This : in out Automation_Request_Validator_Service; Msg : Any_LMCP_Message); procedure Handle_PointofInterest_Msg (This : in out Automation_Request_Validator_Service; Msg : Any_LMCP_Message); procedure Handle_RemoveTasks_Msg (This : in out Automation_Request_Validator_Service; Msg : Any_LMCP_Message); procedure Handle_ServiceStatus_Msg (This : in out Automation_Request_Validator_Service; Msg : Any_LMCP_Message); procedure Handle_StateEntity_Msg (This : in out Automation_Request_Validator_Service; State : EntityState_Any); procedure Handle_TaskInitialized_Msg (This : in out Automation_Request_Validator_Service; Msg : Any_LMCP_Message); function Is_Any_Automation_Request (Msg : Object_Any) return Boolean; --------------- -- Configure -- --------------- overriding procedure Configure (This : in out Automation_Request_Validator_Service; XML_Node : DOM.Core.Element; Result : out Boolean) is Unused : Boolean; begin -- // configure response time parameter, ensure response time is reasonable -- m_maxResponseTime_ms = ndComponent.attribute("MaxResponseTime_ms").as_uint(m_maxResponseTime_ms); -- if(m_maxResponseTime_ms < 10) m_maxResponseTime_ms = 10; This.Max_Response_Time := UInt32_Attribute (XML_Node, "MaxResponseTime_ms", Default => This.Max_Response_Time); This.Max_Response_Time := AVTAS.LMCP.Types.UInt32'Max (This.Max_Response_Time, 10); -- // translate regular, impact, and task automation requests to unique automation requests -- addSubscriptionAddress(afrl::CMASI::AutomationRequest::Subscription); This.Add_Subscription_Address (AFRL.CMASI.AutomationRequest.Subscription, Unused); -- addSubscriptionAddress(afrl::impact::ImpactAutomationRequest::Subscription); This.Add_Subscription_Address (AFRL.Impact.ImpactAutomationRequest.Subscription, Unused); -- addSubscriptionAddress(UxAS::messages::task::TaskAutomationRequest::Subscription); This.Add_Subscription_Address (UxAS.Messages.lmcptask.TaskAutomationRequest.Subscription, Unused); -- // respond with appropriate automation response based on unique response -- addSubscriptionAddress(UxAS::messages::task::UniqueAutomationResponse::Subscription); This.Add_Subscription_Address (UxAS.Messages.lmcptask.UniqueAutomationResponse.Subscription, Unused); -- // track all entity configurations -- addSubscriptionAddress(afrl::CMASI::EntityConfiguration::Subscription); This.Add_Subscription_Address (AFRL.CMASI.EntityConfiguration.Subscription, Unused); -- std::vector< std::string > childconfigs = afrl::CMASI::EntityConfigurationDescendants(); -- for(auto child : childconfigs) -- addSubscriptionAddress(child); for Descendant of EntityConfiguration_Descendants loop This.Add_Subscription_Address (Descendant, Unused); end loop; -- // track all entity states -- addSubscriptionAddress(afrl::CMASI::EntityState::Subscription); This.Add_Subscription_Address (AFRL.CMASI.EntityState.Subscription, Unused); -- std::vector< std::string > childstates = afrl::CMASI::EntityStateDescendants(); -- for(auto child : childstates) -- addSubscriptionAddress(child); for Descendant of EntityState_Descendants loop This.Add_Subscription_Address (Descendant, Unused); end loop; -- // track airspace constraints -- addSubscriptionAddress(afrl::CMASI::OperatingRegion::Subscription); This.Add_Subscription_Address (AFRL.CMASI.OperatingRegion.Subscription, Unused); -- addSubscriptionAddress(afrl::CMASI::KeepInZone::Subscription); This.Add_Subscription_Address (AFRL.CMASI.KeepInZone.Subscription, Unused); -- addSubscriptionAddress(afrl::CMASI::KeepOutZone::Subscription); This.Add_Subscription_Address (AFRL.CMASI.KeepOutZone.Subscription, Unused); -- // track indicated locations of interest -- addSubscriptionAddress(afrl::impact::AreaOfInterest::Subscription); This.Add_Subscription_Address (AFRL.Impact.AreaOfInterest.Subscription, Unused); -- addSubscriptionAddress(afrl::impact::LineOfInterest::Subscription); This.Add_Subscription_Address (AFRL.Impact.LineOfInterest.Subscription, Unused); -- addSubscriptionAddress(afrl::impact::PointOfInterest::Subscription); This.Add_Subscription_Address (AFRL.Impact.PointOfInterest.Subscription, Unused); -- // track all tasks -- addSubscriptionAddress(afrl::CMASI::Task::Subscription); This.Add_Subscription_Address (AFRL.CMASI.lmcpTask.Subscription, Unused); -- std::vector< std::string > childtasks = afrl::CMASI::TaskDescendants(); -- for(auto child : childtasks) -- addSubscriptionAddress(child); for Descendant of lmcpTask_Descendants loop This.Add_Subscription_Address (Descendant, Unused); end loop; -- // task removal and initialization -- addSubscriptionAddress(afrl::CMASI::RemoveTasks::Subscription); This.Add_Subscription_Address (AFRL.CMASI.RemoveTasks.Subscription, Unused); -- addSubscriptionAddress(UxAS::messages::task::TaskInitialized::Subscription); This.Add_Subscription_Address (UxAS.Messages.lmcptask.TaskInitialized.Subscription, Unused); -- // track errors during automation request pipeline -- addSubscriptionAddress(afrl::CMASI::ServiceStatus::Subscription); This.Add_Subscription_Address (AFRL.CMASI.ServiceStatus.Subscription, Unused); -- return true; Result := True; end Configure; ------------ -- Create -- ------------ function Create return Any_Service is Result : Automation_Request_Validator_Service_Ref; begin Result := new Automation_Request_Validator_Service; Result.Construct_Service (Service_Type => Type_Name, Work_Directory_Name => Directory_Name); return Any_Service (Result); end Create; ------------------------------- -- Handle_AreaOfInterest_Msg -- ------------------------------- procedure Handle_AreaOfInterest_Msg (This : in out Automation_Request_Validator_Service; Msg : Any_LMCP_Message) is -- auto areaOfInterest = std::static_pointer_cast<afrl::impact::AreaOfInterest>(receivedLMCPMessage->m_object); Area : constant AreaOfInterest_Any := AreaOfInterest_Any (Msg.Payload); Id : constant Common.Int64 := Common.Int64 (Area.getAreaID); begin -- m_availableAreaOfInterestIds.insert(areaOfInterest->getAreaID()); if not Contains (This.Config.Available_Area_of_Interest_Ids, Id) then This.Config.Available_Area_of_Interest_Ids := Add (This.Config.Available_Area_of_Interest_Ids, Id); end if; end Handle_AreaOfInterest_Msg; ------------------------------- -- Handle_Automation_Request -- ------------------------------- procedure Handle_Automation_Request (This : in out Automation_Request_Validator_Service; Msg : Any_LMCP_Message) is Payload : constant Object_Any := Msg.Payload; begin if Payload.all in AutomationRequest'Class then Automation_Request_Validator.Handle_Automation_Request (This.Config, This.State, This.Mailbox, As_AutomationRequest_Message (AutomationRequest_Any (Payload))); elsif Payload.all in TaskAutomationRequest'Class then Automation_Request_Validator.Handle_Task_Automation_Request (This.Config, This.State, This.Mailbox, As_TaskAutomationRequest_Message (TaskAutomationRequest_Any (Payload))); elsif Payload.all in ImpactAutomationRequest'Class then Automation_Request_Validator.Handle_Impact_Automation_Request (This.Config, This.State, This.Mailbox, As_ImpactAutomationRequest_Message (ImpactAutomationRequest_Any (Payload))); else raise Program_Error with "Msg is not an AnyAutomationRequest"; end if; end Handle_Automation_Request; -------------------------------- -- Handle_Automation_Response -- -------------------------------- procedure Handle_Automation_Response (This : in out Automation_Request_Validator_Service; Msg : Any_LMCP_Message) is begin Automation_Request_Validator.Handle_Automation_Response (This.State, This.Mailbox, As_UniqueAutomationResponse_Message (UniqueAutomationResponse_Any (Msg.Payload))); end Handle_Automation_Response; ----------------------------- -- Handle_EntityConfig_Msg -- ----------------------------- procedure Handle_EntityConfig_Msg (This : in out Automation_Request_Validator_Service; EntityConfig : EntityConfiguration_Any) is ID : constant Common.Int64 := Common.Int64 (EntityConfig.getID); begin -- m_availableConfigurationEntityIds.insert(entityConfig->getID()); if not Contains (This.Config.Available_Configuration_Entity_Ids, ID) then This.Config.Available_Configuration_Entity_Ids := Add (This.Config.Available_Configuration_Entity_Ids, ID); end if; end Handle_EntityConfig_Msg; --------------------------------- -- Handle_InitializedTasks_Msg -- --------------------------------- procedure Handle_InitializedTasks_Msg (This : in out Automation_Request_Validator_Service; Job : lmcpTask_Any) is ID : constant Common.Int64 := Common.Int64 (Job.getTaskID); Wrapped_Job : constant Task_Kind_And_Id := (if Job.getLmcpTypeName = AFRL.Impact.AngledAreaSearchTask.Subscription then (Kind => Angled_Area_Search_Task, SearchAreaID => Common.Int64 (AFRL.Impact.AngledAreaSearchTask.AngledAreaSearchTask (Job.all).getSearchAreaID)) elsif Job.getLmcpTypeName = AFRL.Impact.ImpactLineSearchTask.Subscription then (Kind => Impact_Line_Search_Task, LineID => Common.Int64 (AFRL.Impact.ImpactLineSearchTask.ImpactLineSearchTask (Job.all).getLineID)) elsif Job.getLmcpTypeName = AFRL.Impact.ImpactPointSearchTask.Subscription then (Kind => Impact_Point_Search_Task, SearchLocationID => Common.Int64 (AFRL.Impact.ImpactPointSearchTask.ImpactPointSearchTask (Job.all).getSearchLocationID)) else (Kind => Other_Task)); begin if Has_Key (This.Config.Available_Tasks, ID) then This.Config.Available_Tasks := Set (This.Config.Available_Tasks, ID, Wrapped_Job); else This.Config.Available_Tasks := Add (This.Config.Available_Tasks, ID, Wrapped_Job); end if; end Handle_InitializedTasks_Msg; --------------------------- -- Handle_KeepInZone_Msg -- --------------------------- procedure Handle_KeepInZone_Msg (This : in out Automation_Request_Validator_Service; Msg : Any_LMCP_Message) is -- auto keepInZone = std::static_pointer_cast<afrl::CMASI::KeepInZone>(receivedLMCPMessage->m_object); Zone : constant KeepInZone_Any := KeepInZone_Any (Msg.Payload); Id : constant Common.Int64 := Common.Int64 (Zone.getZoneID); begin -- m_availableKeepInZonesIds.insert(keepInZone->getZoneID()); if not Contains (This.Config.Available_KeepIn_Zones_Ids, Id) then This.Config.Available_KeepIn_Zones_Ids := Add (This.Config.Available_KeepIn_Zones_Ids, Id); end if; end Handle_KeepInZone_Msg; ---------------------------- -- Handle_KeepOutZone_Msg -- ---------------------------- procedure Handle_KeepOutZone_Msg (This : in out Automation_Request_Validator_Service; Msg : Any_LMCP_Message) is -- auto keepOutZone = std::static_pointer_cast<afrl::CMASI::KeepOutZone>(receivedLMCPMessage->m_object); Zone : constant KeepOutZone_Any := KeepOutZone_Any (Msg.Payload); Id : constant Common.Int64 := Common.Int64 (Zone.getZoneID); begin -- m_availableKeepOutZonesIds.insert(keepOutZone->getZoneID()); if not Contains (This.Config.Available_KeepOut_Zones_Ids, Id) then This.Config.Available_KeepOut_Zones_Ids := Add (This.Config.Available_KeepOut_Zones_Ids, Id); end if; end Handle_KeepOutZone_Msg; ------------------------------- -- Handle_LineOfInterest_Msg -- ------------------------------- procedure Handle_LineOfInterest_Msg (This : in out Automation_Request_Validator_Service; Msg : Any_LMCP_Message) is -- auto lineOfInterest = std::static_pointer_cast<afrl::impact::LineOfInterest>(receivedLMCPMessage->m_object); Line : constant LineOfInterest_Any := LineOfInterest_Any (Msg.Payload); Id : constant Common.Int64 := Common.Int64 (Line.getLineID); begin -- m_availableLineOfInterestIds.insert(lineOfInterest->getLineID()); if not Contains (This.Config.Available_Line_of_Interest_Ids, Id) then This.Config.Available_Line_of_Interest_Ids := Add (This.Config.Available_Line_of_Interest_Ids, Id); end if; end Handle_LineOfInterest_Msg; -------------------------------- -- Handle_OperatingRegion_Msg -- -------------------------------- procedure Handle_OperatingRegion_Msg (This : in out Automation_Request_Validator_Service; Msg : Any_LMCP_Message) is function Get_Areas (Region : OperatingRegion_Any) return OperatingRegionAreas; function Get_Areas (Region : OperatingRegion_Any) return OperatingRegionAreas is InAreas : constant AFRL.CMASI.OperatingRegion.Vect_Int64_Acc := Region.all.getKeepInAreas; OutAreas : constant AFRL.CMASI.OperatingRegion.Vect_Int64_Acc := Region.all.getKeepOutAreas; begin return R : OperatingRegionAreas do for E of InAreas.all loop R.KeepInAreas := Add (R.KeepInAreas, Common.Int64 (E)); end loop; for E of OutAreas.all loop R.KeepOutAreas := Add (R.KeepOutAreas, Common.Int64 (E)); end loop; end return; end Get_Areas; Operating_Region : constant OperatingRegion_Any := OperatingRegion_Any (Msg.Payload); Wrapped_Region : constant OperatingRegionAreas := Get_Areas (Operating_Region); Id : constant Common.Int64 := Common.Int64 (Operating_Region.getID); begin if Has_Key (This.Config.Available_Operating_Regions, Id) then This.Config.Available_Operating_Regions := Set (This.Config.Available_Operating_Regions, Id, Wrapped_Region); else This.Config.Available_Operating_Regions := Add (This.Config.Available_Operating_Regions, Id, Wrapped_Region); end if; end Handle_OperatingRegion_Msg; -------------------------------- -- Handle_PointofInterest_Msg -- -------------------------------- procedure Handle_PointofInterest_Msg (This : in out Automation_Request_Validator_Service; Msg : Any_LMCP_Message) is -- auto pointOfInterest = std::static_pointer_cast<afrl::impact::PointOfInterest>(receivedLMCPMessage->m_object); Point : constant PointOfInterest_Any := PointOfInterest_Any (Msg.Payload); Id : constant Common.Int64 := Common.Int64 (Point.getPointID); begin -- m_availablePointOfInterestIds.insert(pointOfInterest->getPointID()); if not Contains (This.Config.Available_Point_of_Interest_Ids, Id) then This.Config.Available_Point_of_Interest_Ids := Add (This.Config.Available_Point_of_Interest_Ids, Id); end if; end Handle_PointofInterest_Msg; ---------------------------- -- Handle_RemoveTasks_Msg -- ---------------------------- procedure Handle_RemoveTasks_Msg (This : in out Automation_Request_Validator_Service; Msg : Any_LMCP_Message) is -- auto removeTasks = std::static_pointer_cast<afrl::CMASI::RemoveTasks>(receivedLMCPMessage->m_object); Remove_Msg : constant RemoveTasks_Any := RemoveTasks_Any (Msg.Payload); begin -- for (auto& taskId : removeTasks->getTaskList()) for TaskId of Remove_Msg.getTaskList.all loop declare Id : constant Common.Int64 := Common.Int64 (TaskId); begin if Has_Key (This.Config.Available_Tasks, Id) then This.Config.Available_Tasks := Remove (This.Config.Available_Tasks, Id); end if; if Contains (This.Config.Available_Initialized_Tasks, Id) then This.Config.Available_Initialized_Tasks := Remove (This.Config.Available_Initialized_Tasks, Id); end if; end; end loop; end Handle_RemoveTasks_Msg; ------------------------------ -- Handle_ServiceStatus_Msg -- ------------------------------ procedure Handle_ServiceStatus_Msg (This : in out Automation_Request_Validator_Service; Msg : Any_LMCP_Message) is begin -- TODO This procedure is useless while Error Response is not sent -- on timeout. null; end Handle_ServiceStatus_Msg; ---------------------------- -- Handle_StateEntity_Msg -- ---------------------------- procedure Handle_StateEntity_Msg (This : in out Automation_Request_Validator_Service; State : EntityState_Any) is ID : constant Common.Int64 := Common.Int64 (State.getID); begin -- m_availableConfigurationStateIds.insert(state->getID()); if not Contains (This.Config.Available_State_Entity_Ids, ID) then This.Config.Available_State_Entity_Ids := Add (This.Config.Available_State_Entity_Ids, ID); end if; end Handle_StateEntity_Msg; -------------------------------- -- Handle_TaskInitialized_Msg -- -------------------------------- procedure Handle_TaskInitialized_Msg (This : in out Automation_Request_Validator_Service; Msg : Any_LMCP_Message) is -- auto taskInitialized = std::static_pointer_cast<UxAS::messages::task::TaskInitialized>(receivedLMCPMessage->m_object); TaskInit : constant TaskInitialized_Any := TaskInitialized_Any (Msg.Payload); Id : constant Common.Int64 := Common.Int64 (TaskInit.getTaskID); begin -- m_availableInitializedTasks.insert(taskInitialized->getTaskID()); if not Contains (This.Config.Available_Initialized_Tasks, Id) then This.Config.Available_Initialized_Tasks := Add (This.Config.Available_Initialized_Tasks, Id); end if; -- checkTasksInitialized(); Check_Tasks_Initialized (This.Config, This.State, This.Mailbox); end Handle_TaskInitialized_Msg; ---------------- -- Initialize -- ---------------- overriding procedure Initialize (This : in out Automation_Request_Validator_Service; Result : out Boolean) is -- since not doing the Timers begin -- the C++ version creates the timers here (but we don't, unless we implement the timers). Automation_Request_Validator_Communication.Initialize (This.Mailbox, Source_Group => Value (This.Message_Source_Group), Unique_Id => Common.Int64 (UxAS.Comms.LMCP_Net_Client.Unique_Entity_Send_Message_Id), Entity_Id => Common.UInt32 (This.Entity_Id), Service_Id => Common.UInt32 (This.Network_Id)); Result := True; end Initialize; ------------------------------- -- Is_Any_Automation_Request -- ------------------------------- function Is_Any_Automation_Request (Msg : Object_Any) return Boolean is -- else if (afrl::CMASI::isAutomationRequest(receivedLMCPMessage->m_object) || -- afrl::impact::isImpactAutomationRequest(receivedLMCPMessage->m_object) || -- UxAS::messages::task::isTaskAutomationRequest(receivedLMCPMessage->m_object)) (Msg.all in AutomationRequest'Class or Msg.all in ImpactAutomationRequest'Class or Msg.all in TaskAutomationRequest'Class); ----------------------------------- -- Process_Received_LMCP_Message -- ----------------------------------- overriding procedure Process_Received_LMCP_Message (This : in out Automation_Request_Validator_Service; Received_Message : not null Any_LMCP_Message; Should_Terminate : out Boolean) is begin if Received_Message.Payload.all in EntityConfiguration'Class then This.Handle_EntityConfig_Msg (EntityConfiguration_Any (Received_Message.Payload)); elsif Received_Message.Payload.all in EntityState'Class then This.Handle_StateEntity_Msg (EntityState_Any (Received_Message.Payload)); elsif Received_Message.Payload.all in lmcpTask'Class then This.Handle_InitializedTasks_Msg (lmcpTask_Any (Received_Message.Payload)); elsif Received_Message.Payload.all in ServiceStatus'Class then This.Handle_ServiceStatus_Msg (Received_Message); elsif Received_Message.Payload.all in RemoveTasks'Class then This.Handle_RemoveTasks_Msg (Received_Message); elsif Received_Message.Payload.all in TaskInitialized'Class then This.Handle_TaskInitialized_Msg (Received_Message); elsif Received_Message.Payload.all in AreaOfInterest'Class then This.Handle_AreaOfInterest_Msg (Received_Message); elsif Received_Message.Payload.all in LineOfInterest'Class then This.Handle_LineOfInterest_Msg (Received_Message); elsif Received_Message.Payload.all in PointOfInterest'Class then This.Handle_PointofInterest_Msg (Received_Message); elsif Received_Message.Payload.all in KeepInZone'Class then This.Handle_KeepInZone_Msg (Received_Message); elsif Received_Message.Payload.all in KeepOutZone'Class then This.Handle_KeepOutZone_Msg (Received_Message); elsif Received_Message.Payload.all in OperatingRegion'Class then This.Handle_OperatingRegion_Msg (Received_Message); elsif Is_Any_Automation_Request (Received_Message.Payload) then This.Handle_Automation_Request (Received_Message); elsif Received_Message.Payload.all in UniqueAutomationResponse'Class then This.Handle_Automation_Response (Received_Message); end if; -- Note the C++ code never returns anything other than False... Should_Terminate := False; end Process_Received_LMCP_Message; --------------------------------- -- Registry_Service_Type_Names -- --------------------------------- function Registry_Service_Type_Names return Service_Type_Names_List is (Service_Type_Names_List'(1 => Instance (Service_Type_Name_Max_Length, Content => Type_Name))); ---------------------- -- UInt32_Attribute -- ---------------------- function UInt32_Attribute (XML_Node : DOM.Core.Element; Name : String; Default : AVTAS.LMCP.Types.UInt32) return AVTAS.LMCP.Types.UInt32 is use DOM.Core; Attr_Value : constant DOM_String := Elements.Get_Attribute (XML_Node, Name); begin if Attr_Value /= "" and then (for all C of Attr_Value => C in '0' .. '9') then return AVTAS.LMCP.Types.UInt32'Value (Attr_Value); else return Default; end if; end UInt32_Attribute; ----------------------------- -- Package Executable Part -- ----------------------------- -- This is the executable part for the package, invoked automatically and only once. begin -- All concrete service subclasses must call this procedure in their -- own package like this, with their own params. The effect is the same as the -- following: -- -- AutomationRequestValidatorService::ServiceBase::CreationRegistrar<AutomationRequestValidatorService> -- AutomationRequestValidatorService::s_registrar(AutomationRequestValidatorService::s_registryServiceTypeNames()); -- -- located at the top of the cpp file Register_Service_Creation_Function_Pointers (Registry_Service_Type_Names, Create'Access); end UxAS.Comms.LMCP_Net_Client.Service.Automation_Request_Validation;
with ACO.OD_Types; package ACO.Protocols.Service_Data.Clients is type Client (Handler : not null access ACO.CANopen.Handler; Od : not null access ACO.OD.Object_Dictionary'Class) is abstract new SDO with private; function Get_Endpoint (This : Client; Server_Node : ACO.Messages.Node_Nr) return ACO.SDO_Sessions.Endpoint_Type is abstract; procedure Write_Remote_Entry (This : in out Client; Node : in ACO.Messages.Node_Nr; Index : in ACO.OD_Types.Object_Index; Subindex : in ACO.OD_Types.Object_Subindex; An_Entry : in ACO.OD_Types.Entry_Base'Class; Endpoint_Id : out ACO.SDO_Sessions.Endpoint_Nr); procedure Read_Remote_Entry (This : in out Client; Node : in ACO.Messages.Node_Nr; Index : in ACO.OD_Types.Object_Index; Subindex : in ACO.OD_Types.Object_Subindex; Endpoint_Id : out ACO.SDO_Sessions.Endpoint_Nr); procedure Get_Read_Entry (This : in out Client; Endpoint_Id : in ACO.SDO_Sessions.Valid_Endpoint_Nr; Read_Entry : in out ACO.OD_Types.Entry_Base'Class); private type Client (Handler : not null access ACO.CANopen.Handler; Od : not null access ACO.OD.Object_Dictionary'Class) is abstract new SDO (Handler, Od) with null record; procedure Handle_Message (This : in out Client; Msg : in ACO.Messages.Message; Endpoint : in ACO.SDO_Sessions.Endpoint_Type); procedure Download_Init (This : in out Client; Msg : in ACO.Messages.Message; Endpoint : in ACO.SDO_Sessions.Endpoint_Type); procedure Download_Segment (This : in out Client; Msg : in ACO.Messages.Message; Endpoint : in ACO.SDO_Sessions.Endpoint_Type); procedure Upload_Init (This : in out Client; Msg : in ACO.Messages.Message; Endpoint : in ACO.SDO_Sessions.Endpoint_Type); procedure Upload_Segment (This : in out Client; Msg : in ACO.Messages.Message; Endpoint : in ACO.SDO_Sessions.Endpoint_Type); procedure Send_Buffered (This : in out Client; Endpoint : in ACO.SDO_Sessions.Endpoint_Type; Toggle : in Boolean); end ACO.Protocols.Service_Data.Clients;
-- Copyright 2019-2020 Free Software Foundation, Inc. -- -- This program is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- the Free Software Foundation; either version 3 of the License, or -- (at your option) any later version. -- -- This program is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- GNU General Public License for more details. -- -- You should have received a copy of the GNU General Public License -- along with this program. If not, see <http://www.gnu.org/licenses/>. with Pck; use Pck; procedure Bias is type Small is range -7 .. -4; for Small'Size use 2; Y : Small := -5; Y1 : Small := -7; type Repeat_Count_T is range 1 .. 2 ** 6; for Repeat_Count_T'Size use 6; X : Repeat_Count_T := 64; X1 : Repeat_Count_T := 1; type Char_Range is range 65 .. 68; for Char_Range'Size use 2; Cval : Char_Range := 65; type Some_Packed_Record is record R: Small; S: Small; end record; pragma Pack (Some_Packed_Record); SPR : Some_Packed_Record := (R => -4, S => -5); type Packed_Array is array (1 .. 3) of Small; pragma pack (Packed_Array); A : Packed_Array := (-7, -5, -4); begin Do_Nothing (Y'Address); -- STOP Do_Nothing (Y1'Address); Do_Nothing (X'Address); Do_Nothing (X1'Address); Do_Nothing (Cval'Address); Do_Nothing (SPR'Address); Do_Nothing (A'Address); end Bias;
------------------------------------------------------------------------------ -- -- -- 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. ------------------------------------------------------------------------------ with AMF.Internals.Utp_Elements; with AMF.UML.Literal_Specifications; with AMF.Utp.Literal_Anies; with AMF.Visitors; package AMF.Internals.Utp_Literal_Anies is type Utp_Literal_Any_Proxy is limited new AMF.Internals.Utp_Elements.Utp_Element_Proxy and AMF.Utp.Literal_Anies.Utp_Literal_Any with null record; overriding function Get_Base_Literal_Specification (Self : not null access constant Utp_Literal_Any_Proxy) return AMF.UML.Literal_Specifications.UML_Literal_Specification_Access; -- Getter of LiteralAny::base_LiteralSpecification. -- overriding procedure Set_Base_Literal_Specification (Self : not null access Utp_Literal_Any_Proxy; To : AMF.UML.Literal_Specifications.UML_Literal_Specification_Access); -- Setter of LiteralAny::base_LiteralSpecification. -- overriding procedure Enter_Element (Self : not null access constant Utp_Literal_Any_Proxy; Visitor : in out AMF.Visitors.Abstract_Visitor'Class; Control : in out AMF.Visitors.Traverse_Control); overriding procedure Leave_Element (Self : not null access constant Utp_Literal_Any_Proxy; Visitor : in out AMF.Visitors.Abstract_Visitor'Class; Control : in out AMF.Visitors.Traverse_Control); overriding procedure Visit_Element (Self : not null access constant Utp_Literal_Any_Proxy; Iterator : in out AMF.Visitors.Abstract_Iterator'Class; Visitor : in out AMF.Visitors.Abstract_Visitor'Class; Control : in out AMF.Visitors.Traverse_Control); end AMF.Internals.Utp_Literal_Anies;
-- SPDX-FileCopyrightText: 2019 Max Reznik <reznikmm@gmail.com> -- -- SPDX-License-Identifier: MIT ------------------------------------------------------------- with Program.Elements.Declarations; with Program.Lexical_Elements; with Program.Elements.Defining_Names; with Program.Elements.Parameter_Specifications; with Program.Elements.Expressions; with Program.Elements.Aspect_Specifications; package Program.Elements.Procedure_Renaming_Declarations is pragma Pure (Program.Elements.Procedure_Renaming_Declarations); type Procedure_Renaming_Declaration is limited interface and Program.Elements.Declarations.Declaration; type Procedure_Renaming_Declaration_Access is access all Procedure_Renaming_Declaration'Class with Storage_Size => 0; not overriding function Name (Self : Procedure_Renaming_Declaration) return not null Program.Elements.Defining_Names.Defining_Name_Access is abstract; not overriding function Parameters (Self : Procedure_Renaming_Declaration) return Program.Elements.Parameter_Specifications .Parameter_Specification_Vector_Access is abstract; not overriding function Renamed_Procedure (Self : Procedure_Renaming_Declaration) return Program.Elements.Expressions.Expression_Access is abstract; not overriding function Aspects (Self : Procedure_Renaming_Declaration) return Program.Elements.Aspect_Specifications .Aspect_Specification_Vector_Access is abstract; not overriding function Has_Not (Self : Procedure_Renaming_Declaration) return Boolean is abstract; not overriding function Has_Overriding (Self : Procedure_Renaming_Declaration) return Boolean is abstract; type Procedure_Renaming_Declaration_Text is limited interface; type Procedure_Renaming_Declaration_Text_Access is access all Procedure_Renaming_Declaration_Text'Class with Storage_Size => 0; not overriding function To_Procedure_Renaming_Declaration_Text (Self : in out Procedure_Renaming_Declaration) return Procedure_Renaming_Declaration_Text_Access is abstract; not overriding function Not_Token (Self : Procedure_Renaming_Declaration_Text) return Program.Lexical_Elements.Lexical_Element_Access is abstract; not overriding function Overriding_Token (Self : Procedure_Renaming_Declaration_Text) return Program.Lexical_Elements.Lexical_Element_Access is abstract; not overriding function Procedure_Token (Self : Procedure_Renaming_Declaration_Text) return not null Program.Lexical_Elements.Lexical_Element_Access is abstract; not overriding function Left_Bracket_Token (Self : Procedure_Renaming_Declaration_Text) return Program.Lexical_Elements.Lexical_Element_Access is abstract; not overriding function Right_Bracket_Token (Self : Procedure_Renaming_Declaration_Text) return Program.Lexical_Elements.Lexical_Element_Access is abstract; not overriding function Renames_Token (Self : Procedure_Renaming_Declaration_Text) return Program.Lexical_Elements.Lexical_Element_Access is abstract; not overriding function With_Token (Self : Procedure_Renaming_Declaration_Text) return Program.Lexical_Elements.Lexical_Element_Access is abstract; not overriding function Semicolon_Token (Self : Procedure_Renaming_Declaration_Text) return not null Program.Lexical_Elements.Lexical_Element_Access is abstract; end Program.Elements.Procedure_Renaming_Declarations;
----------------------------------------------------------------------- -- package Runge_8th, 8th order Prince and Dormand Runge-Kutta -- Copyright (C) 2008-2018 Jonathan S. Parker. -- -- Permission to use, copy, modify, and/or distribute this software for any -- purpose with or without fee is hereby granted, provided that the above -- copyright notice and this permission notice appear in all copies. -- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -- WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -- MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR -- ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -- WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -- ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF -- OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ----------------------------------------------------------------------- -- PACKAGE Runge_8th -- -- Package implements the 8th order Runge Kutta formula of Prince -- and Dormand (Journal of Computational and Applied Math. -- vol. 7, p. 67 (1981)). -- -- Procedure Integrate solves dY/dt = F (t, Y) where t is the -- independent variable (e.g. time), vector Y is the dependent -- variable, and F is some function. -- -- Just a reminder of why high order is important if you want high -- accuracy: compare a 2nd order method (error per step ~ B*dt^3) -- with a 9th order method (error per step ~ A*dt^10). Suppose each -- method gives for this 'dt' a relative error of 10^(-6), (an error -- of 1 part per million) and we want to reduce this to 10^(-15). -- In other words we want to reduce the error by a factor of 10^(-9). -- If the 2nd order step size dt is divided by 2^10, then its error -- (per step( falls by a factor (1/2^10)^3 = 1/2^30 = 1/10^9 as required. -- If the 9th order step size dt is divided by 2^3, then its error -- falls by a factor (1/2^3)^10 = 1/2^30 = 1/10^9 as required. So -- the 2nd order method needs at least 128 times as many time steps -- to perform an integration over the same time interval as the 9th -- order method. Even if the 2nd order method runs 5 times faster -- per step than the 9th order method, then we should expect the -- 9th order method to be ~25 times faster than the 2nd order method. -- (Actually, globally the error term behaves as though it is an order -- lower than the local (per step) error term, so the higher order is -- even more favorable than the above argument indicates.) -- -- Additional note: the error term per step of the Runge-Kutta looks -- more like A*dt^10 than A*dt^9 as you near machine precision. (Prince -- and Dormand optimized the coefficients to minimize this term.) Yet -- another reason why this Runge-Kutta performs better than expected -- in so many cases. -- -- NOTES ON USE -- -- Runge_8th assumes that the Dynamical Variable is a 1 dimensional -- array of Real numbers. -- -- To use this routine higher order differential equations have to -- be reduced to 1st order equations. -- For example a 3rd order equation in X becomes a first order -- equation in the vector Y = (Y1,Y2,Y3) = (X, dX/dt, d/dt(dX/dt)). -- If the equation in X is (d/dt)**3 X = G(t,X), then the -- equation in vector Y is -- -- d/dt (Y1, Y2, Y3) = (Y2, Y3, G(t,Y1)). -- -- If the equation in X is d/dt(d/dt(dX/dt))) = G(t,X,dX/dt), -- then the equation in Y is -- -- d/dt (Y1, Y2, Y3) = (Y2, Y3, G(t,Y1,Y2)). -- -- So the routine solves the equation dY/dt = F(t,Y), or, more -- explicitly, d/dt (Y1, Y2, Y3) = (Y2, Y3, G(t,Y1,Y2)) = F(t,Y). -- The user plugs in the function F(t,Y) as a generic formal function. -- Even if F is t or Y independent, it must be in the form F(t,Y). -- The user has to do all of the work to convert higher order -- equations to first order equations. On some compilers, -- performance is very sensitive to how this is done. That's -- why this part is best left to the user. I've seen factors of -- 3 improvement in speed when this part of the data structure -- is optimized. A pragma Inline is also worth trying. -- The generic formal parameters "+" and "*" below should be -- compiled Inline. -- -- Uses the elementary math functions Log and Exp (used in -- the error control algorithm to implement the exponentiation -- function (**)). They're used each step, which can be slow! -- -- Runge-Kutta routines can be used to integrate moderately -- stiff equations: use constant step size without error control -- and make the step size sufficiently small. (Routines specially -- designed for stiff equations may be orders of magnitude faster.) -- -- There's no fool proof way of getting the right answer when -- you numerically integrate. In some cases error control does -- not work well. In other cases, integration without -- error control fails simply because it is too ineffient. -- Using error control: if you have 15 digit floating point, -- then don't demand more than 12 or 13 digits of accuracy. -- The error control algorithm begins to fail in that limit. generic type Real is digits <>; -- The independent variable has type Real. It's called Time -- throughout the package as though the differential -- equation dY/dt = F (t, Y) were time dependent. type Dyn_Index is range <>; type Dynamical_Variable is array(Dyn_Index) of Real; -- The dependent variable. Declared as an array here so that -- some inner loop optimizations can be performed below. -- -- To use this routine, reduce higher order differential -- equations to 1st order. -- For example a 3rd order equation in X becomes a first order -- equation in the vector Y = (X, dX/dt, d/dt(dX/dt)). with function F (Time : Real; Y : Dynamical_Variable) return Dynamical_Variable is <>; -- Defines the equation to be integrated: dY/dt = F (t, Y). Even if -- the equation is t or Y independent, it must be entered in this form. with function "*" (Left : Real; Right : Dynamical_Variable) return Dynamical_Variable is <>; -- Multiplication of the independent by the dependent variable. -- An operation of this sort exists by definition of the -- derivative, dY/dt = (Y(t+dt) - Y(t)) / dt, -- which requires multiplication of the (inverse) independent -- variable t, by the Dynamical variable Y (the dependent variable). with function "+" (Left : Dynamical_Variable; Right : Dynamical_Variable) return Dynamical_Variable is <>; -- Summation of the dependent variable. -- The operation must exist by the definition of the derivative, -- dY/dt = (Y(t+dt) - Y(t)) / dt = (Y(t+dt) + (-1)*Y(t)) / dt. with function "-" (Left : Dynamical_Variable; Right : Dynamical_Variable) return Dynamical_Variable is <>; with function Norm (Y1: in Dynamical_Variable) return Real is <>; -- For error control we need to know the distance between two objects. -- Norm define a distance between the two vector, Y1 and Y2 -- using: distance = Norm (Y1 - Y2), -- For example, if Dynamical_Variable is complex, then Norm can -- be Sqrt (Real (Y1(1)) * Conjugate (Y1(1)))); -- If it is a vector then the metric may be -- Sqrt (Transpose(Y1(1)) * Y1(1)), etc. -- -- Recommended: Sum the absolute values of the components of the vector. package Runge_8th is type Step_Integer is range 1 .. 2**31-1; -- The step size Delta_t is never input. Instead -- you input Starting_Time, Final_Time, and No_Of_Steps. -- -- If error control is disabled, then Delta_t is -- (Final_Time - Starting_Time) / No_Of_Steps. -- -- If error control is enabled, then step size Delta_t is variable, -- and procedure Integrate chooses its own Delta_t each time step. -- Each time step, Delta_t is chosen to reduce fractional error -- per step to something less than Error_Tolerance. It does not -- and cannot reduce global error to any given value. -- -- All components of vector Initial_State must be initialized. procedure Integrate (Final_State : out Dynamical_Variable; Final_Time : in Real; Initial_State : in Dynamical_Variable; Initial_Time : in Real; No_Of_Steps : in Step_Integer; Error_Control_Desired : in Boolean := False; Error_Tolerance : in Real := +1.0E-10); private Zero : constant := +0.0; Half : constant := +0.5; One : constant := +1.0; Two : constant := +2.0; Four : constant := +4.0; Nine_Tenths : constant := +0.9; One_Eighth : constant := +0.125; Test_of_Runge_Coeffs_Desired : constant Boolean := False; -- The test (exported by Runge_Coeffs_13) prints an error message if -- failure is detected. Should be set to True during testing. end Runge_8th;
----------------------------------------------------------------------- -- Test -- Test the code generation -- 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. ----------------------------------------------------------------------- package Gen is end Gen;
with agar.gui.widget.button; with agar.gui.widget.textbox; with agar.gui.widget.tlist; with agar.gui.window; package agar.gui.widget.combo is use type c.unsigned; type flags_t is new c.unsigned; COMBO_POLL : constant flags_t := 16#01#; COMBO_TREE : constant flags_t := 16#02#; COMBO_ANY_TEXT : constant flags_t := 16#04#; COMBO_HFILL : constant flags_t := 16#08#; COMBO_VFILL : constant flags_t := 16#10#; COMBO_EXPAND : constant flags_t := COMBO_HFILL or COMBO_VFILL; type combo_t is limited private; type combo_access_t is access all combo_t; pragma convention (c, combo_access_t); -- API function allocate (parent : widget_access_t; flags : flags_t; label : string) return combo_access_t; pragma inline (allocate); procedure size_hint (combo : combo_access_t; text : string; items : integer); pragma inline (size_hint); procedure size_hint_pixels (combo : combo_access_t; width : positive; height : positive); pragma inline (size_hint_pixels); procedure select_item (combo : combo_access_t; item : agar.gui.widget.tlist.tlist_access_t); pragma import (c, select_item, "AG_ComboSelect"); procedure select_pointer (combo : combo_access_t; ptr : agar.core.types.void_ptr_t); pragma import (c, select_pointer, "AG_ComboSelectPointer"); procedure select_text (combo : combo_access_t; text : string); pragma inline (select_text); private type combo_t is record widget : widget_t; flags : flags_t; textbox : agar.gui.widget.textbox.textbox_access_t; button : agar.gui.widget.button.button_access_t; list : agar.gui.widget.tlist.tlist_access_t; panel : agar.gui.window.window_access_t; width_saved : c.int; height_saved : c.int; width_pre : c.int; height_pre : c.int; end record; pragma convention (c, combo_t); end agar.gui.widget.combo;
with Commands.Generate; with Commands.Create; with Commands.Init; with Commands.Destroy; with Commands.Publish; with Commands.Import; with Commands.Deploy; with Commands.Announce; with CLIC.User_Input; with Commands.Topics.Issues; with Commands.Topics.Contribute; package body Commands is ------------------------- -- Set_Global_Switches -- ------------------------- procedure Set_Global_Switches (Config : in out CLIC.Subcommand.Switches_Configuration) is use CLIC.Subcommand; Help_Switch : aliased Boolean := False; -- Catches the -h/--help help switch begin Define_Switch (Config, Help_Switch'Access, "-h", "--help", "Display general or command-specific help"); end Set_Global_Switches; ------------- -- Execute -- ------------- procedure Execute is begin Sub_Cmd.Parse_Global_Switches; CLIC.TTY.Enable_Color (Force => False); begin Sub_Cmd.Execute; exception when Child_Failed | Command_Failed | Wrong_Command_Arguments => GNAT.OS_Lib.OS_Exit (1); when CLIC.User_Input.User_Interrupt => GNAT.OS_Lib.OS_Exit (1); end; end Execute; begin -- Commands -- Sub_Cmd.Register ("General", new Sub_Cmd.Builtin_Help); Sub_Cmd.Register ("General", new Create.Instance); Sub_Cmd.Register ("General", new Init.Instance); Sub_Cmd.Register ("General", new Generate.Instance); Sub_Cmd.Register ("General", new Destroy.Instance); Sub_Cmd.Register ("General", new Publish.Instance); Sub_Cmd.Register ("General", new Import.Instance); Sub_Cmd.Register ("General", new Deploy.Instance); Sub_Cmd.Register ("General", new Announce.Instance); -- Help topics -- Sub_Cmd.Register (new Topics.Issues.Topic); Sub_Cmd.Register (new Topics.Contribute.Topic); end Commands;
package Loop_Optimization16_Pkg is type Index_Base is range 0 .. 127; function F return Natural; end Loop_Optimization16_Pkg;
-- { dg-excess-errors "no code generated" } generic type Length_T is range <>; with function Next return Length_T is <>; type Value_T is private; with function Value (L : Length_T) return Value_T is <>; package Renaming2_Pkg4 is generic type T is private; package Inner is type Slave_T is tagged null record; function Next_Value return Value_T; end Inner; end Renaming2_Pkg4;
-- -- 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. -- -- with types.c; package soc.gpio.interfaces with spark_mode => off is function configure (port : in unsigned_8; pin : in unsigned_8; mode : in t_pin_mode; otype : in t_pin_output_type; ospeed : in t_pin_output_speed; pupd : in t_pin_pupd; af : in t_pin_alt_func) return types.c.t_retval; end soc.gpio.interfaces;
-- C83F01A.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 INSIDE A PACKAGE BODY, AN ATTEMPT TO REFERENCE AN IDENTI- -- FIER DECLARED IN THE CORRESPONDING PACKAGE SPECIFICATION -- IS SUCCESSFUL, EVEN IF THE SAME IDENTIFIER IS DECLARED IN THE -- ENVIRONMENT SURROUNDING THE PACKAGE BODY. -- NESTED PACKAGE BODIES ARE TESTED IN C83F01B , C83F01C , C83F01D -- RM 05 AUGUST 1980 -- JRK 13 NOV 1980 WITH REPORT; PROCEDURE C83F01A IS USE REPORT; X1 , X2 : INTEGER RANGE 1..23 := 17 ; TYPE T1 IS ( A , B , C) ; Z : T1 := A ; BEGIN TEST( "C83F01A" , "CHECK THAT INSIDE A PACKAGE BODY, " & "AN ATTEMPT TO REFERENCE AN IDENTIFIER " & "DECLARED IN THE CORRESPONDING PACKAGE SPECI" & "FICATION IS SUCCESSFUL EVEN IF THE SAME IDEN" & "TIFIER IS DECLARED IN THE ENVIRONMENT SURROUND"& "ING THE PACKAGE BODY" ) ; COMMENT( "NESTED PACKAGE BODIES ARE TESTED IN C83F01B , -C , -D"); DECLARE PACKAGE P IS X1 : BOOLEAN := FALSE ; X2 : INTEGER RANGE 1..23 := 11 ; Y1 : BOOLEAN := TRUE ; Y2 : INTEGER := 5 ; T1 : INTEGER := 6 ; Z : INTEGER := 7 ; END P ; Y1 , Y2 : INTEGER := 13 ; PACKAGE BODY P IS BEGIN X1 := X1 OR Y1 ; Z := Z + T1 ; Y2 := X2 * Y2 ; -- INCORRECT INTERPRETATIONS IN THE FIRST TWO -- ASSIGNMENTS MANIFEST THEMSELVES AT -- COMPILE TIME AS TYPE ERRORS. END P ; BEGIN IF X1 /= 17 OR Z /= A OR Y2 /= 13 OR NOT P.X1 OR P.Z /= 13 OR P.Y2 /= 55 THEN FAILED( "INCORRECT ACCESSING" ); END IF; END ; RESULT; -- POSS. ERROR DURING ELABORATION OF P END C83F01A;
with GMP.Z; with GMP.Q; with GMP.F; with GMP.FR; with GMP.C; with Ada.Text_IO; procedure test_image is package Default_F is new GMP.F; package Default_FR is new GMP.FR; package Default_C is new GMP.C (Default_FR, Default_FR); use GMP.Z; use GMP.Q; use Default_F; use Default_FR; use Default_C; Z : MP_Integer; Q : MP_Rational; F : Default_F.MP_Float; FR : Default_FR.MP_Float; C : MP_Complex; begin pragma Assert (Image (Z) = "0"); pragma Assert (Image (Q) = "0"); pragma Assert (Image (F) = "0"); pragma Assert (Image (FR) = "NAN"); pragma Assert (Image (C) = "(@NaN@ @NaN@)"); Z := To_MP_Integer (99); Q := 5 / 7; F := To_MP_Float (5.0 / 7.0); FR := To_MP_Float (5.0 / 7.0); C := 1.0 - 2.0 * i; pragma Assert (Image (Z) = "99"); pragma Assert (Image (Q) = "5/7"); pragma Assert (Image (F) = "0.714285714285714301575"); pragma Assert (Image (FR) = "0.71428571428571430"); pragma Assert (Image (C) = "(1.0000000000000000 -2.0000000000000000)"); Z := Value ("-2"); Q := Value ("-3/4"); F := Value ("-1e3"); FR := Value ("-1e3"); C := Value ("-1e3"); pragma Assert (Image (Z) = "-2"); pragma Assert (Image (Q) = "-3/4"); pragma Assert (Image (F) = "-1000"); pragma Assert (Image (FR) = "-1000.0000000000000"); pragma Assert (Image (C) = "(-1.0000000000000000e+3 +0)"); F := Value ("+1e3"); FR := Value ("+1e3"); C := Value ("(1.2 1.4)"); pragma Assert (Image (F) = "1000"); pragma Assert (Image (FR) = "1000.0000000000000"); pragma Assert (Image (NaN) = "NAN"); pragma Assert (Image (Infinity) = "INF"); pragma Assert (Image (-Infinity) = "-INF"); pragma Assert (Image (C) = "(1.2000000000000000 1.3999999999999999)"); -- finish Ada.Text_IO.Put_Line (Ada.Text_IO.Standard_Error.all, "ok"); end test_image;
with Ada.Numerics.dSFMT.Generating; with System.Formatting; with System.Long_Long_Integer_Types; with System.Random_Initiators; with System.Storage_Elements; package body Ada.Numerics.dSFMT is pragma Check_Policy (Validate => Ignore); use type Interfaces.Unsigned_32; use type Interfaces.Unsigned_64; use type System.Storage_Elements.Storage_Offset; subtype Word_Unsigned is System.Long_Long_Integer_Types.Word_Unsigned; subtype Long_Long_Unsigned is System.Long_Long_Integer_Types.Long_Long_Unsigned; procedure memset ( b : System.Address; c : Integer; n : System.Storage_Elements.Storage_Count) with Import, Convention => Intrinsic, External_Name => "__builtin_memset"; type Long_Boolean is new Boolean; for Long_Boolean'Size use Long_Integer'Size; function expect (exp, c : Long_Boolean) return Long_Boolean with Import, Convention => Intrinsic, External_Name => "__builtin_expect"; package Impl is new Generating; -- STATIC FUNCTIONS function ini_func1 (x : Unsigned_32) return Unsigned_32 with Convention => Intrinsic; function ini_func2 (x : Unsigned_32) return Unsigned_32 with Convention => Intrinsic; pragma Inline_Always (ini_func1); pragma Inline_Always (ini_func2); procedure gen_rand_array_c1o2 ( dsfmt : in out State; Item : out w128_t_Array_1; size : Integer) with Convention => Intrinsic; procedure gen_rand_array_c0o1 ( dsfmt : in out State; Item : out w128_t_Array_1; size : Integer) with Convention => Intrinsic; procedure gen_rand_array_o0c1 ( dsfmt : in out State; Item : out w128_t_Array_1; size : Integer) with Convention => Intrinsic; procedure gen_rand_array_o0o1 ( dsfmt : in out State; Item : out w128_t_Array_1; size : Integer) with Convention => Intrinsic; pragma Inline_Always (gen_rand_array_c1o2); pragma Inline_Always (gen_rand_array_c0o1); pragma Inline_Always (gen_rand_array_o0c1); pragma Inline_Always (gen_rand_array_o0o1); function idxof (i : Integer) return Integer with Convention => Intrinsic; pragma Inline_Always (idxof); procedure initial_mask (dsfmt : in out State); procedure period_certification (dsfmt : in out State); -- This function simulate a 32-bit array index overlapped to 64-bit array -- of LITTLE ENDIAN in BIG ENDIAN machine. function idxof (i : Integer) return Integer is type Unsigned is mod 2 ** Integer'Size; begin case System.Default_Bit_Order is when System.High_Order_First => return Integer (Unsigned'Mod (i) xor 1); when System.Low_Order_First => return i; end case; end idxof; -- This function fills the user-specified array with double precision -- floating point pseudorandom numbers of the IEEE 754 format. procedure gen_rand_array_c1o2 ( dsfmt : in out State; Item : out w128_t_Array_1; size : Integer) is pragma Suppress (Index_Check); the_array : w128_t_Array (0 .. size - 1); for the_array'Address use Item'Address; i, j : Integer; lung : aliased w128_t := dsfmt.lung; begin Impl.do_recursion ( the_array (0), dsfmt.status (0), dsfmt.status (POS1), lung); i := 1; while i < N - POS1 loop Impl.do_recursion ( the_array (i), dsfmt.status (i), dsfmt.status (i + POS1), lung); i := i + 1; end loop; while i < N loop Impl.do_recursion ( the_array (i), dsfmt.status (i), the_array (i - (N - POS1)), lung); i := i + 1; end loop; while i < size - N loop Impl.do_recursion ( the_array (i), the_array (i - N), the_array (i - (N - POS1)), lung); i := i + 1; end loop; j := 0; while j < N - (size - N) loop dsfmt.status (j) := the_array (j + (size - N)); j := j + 1; end loop; while i < size loop Impl.do_recursion ( the_array (i), the_array (i - N), the_array (i - (N - POS1)), lung); dsfmt.status (j) := the_array (i); i := i + 1; j := j + 1; end loop; dsfmt.lung := lung; end gen_rand_array_c1o2; -- This function fills the user-specified array with double precision -- floating point pseudorandom numbers of the IEEE 754 format. procedure gen_rand_array_c0o1 ( dsfmt : in out State; Item : out w128_t_Array_1; size : Integer) is pragma Suppress (Index_Check); the_array : w128_t_Array (0 .. size - 1); for the_array'Address use Item'Address; i, j : Integer; lung : aliased w128_t := dsfmt.lung; begin Impl.do_recursion ( the_array (0), dsfmt.status (0), dsfmt.status (POS1), lung); i := 1; while i < N - POS1 loop Impl.do_recursion ( the_array (i), dsfmt.status (i), dsfmt.status (i + POS1), lung); i := i + 1; end loop; while i < N loop Impl.do_recursion ( the_array (i), dsfmt.status (i), the_array (i - (N - POS1)), lung); i := i + 1; end loop; while i < size - N loop Impl.do_recursion ( the_array (i), the_array (i - N), the_array (i - (N - POS1)), lung); Impl.convert_c0o1 (the_array (i - N)); -- [0 .. size - 2 * N) i := i + 1; end loop; j := 0; while j < N - (size - N) loop dsfmt.status (j) := the_array (j + (size - N)); j := j + 1; end loop; while i < size loop Impl.do_recursion ( the_array (i), the_array (i - N), the_array (i - (N - POS1)), lung); dsfmt.status (j) := the_array (i); Impl.convert_c0o1 (the_array (i - N)); -- [size - 2 * N .. size - N) i := i + 1; j := j + 1; end loop; i := size - N; while i < size loop Impl.convert_c0o1 (the_array (i)); -- [size - N .. size) i := i + 1; end loop; dsfmt.lung := lung; end gen_rand_array_c0o1; -- This function fills the user-specified array with double precision -- floating point pseudorandom numbers of the IEEE 754 format. procedure gen_rand_array_o0c1 ( dsfmt : in out State; Item : out w128_t_Array_1; size : Integer) is pragma Suppress (Index_Check); the_array : w128_t_Array (0 .. size - 1); for the_array'Address use Item'Address; i, j : Integer; lung : aliased w128_t := dsfmt.lung; begin Impl.do_recursion ( the_array (0), dsfmt.status (0), dsfmt.status (POS1), lung); i := 1; while i < N - POS1 loop Impl.do_recursion ( the_array (i), dsfmt.status (i), dsfmt.status (i + POS1), lung); i := i + 1; end loop; while i < N loop Impl.do_recursion ( the_array (i), dsfmt.status (i), the_array (i - (N - POS1)), lung); i := i + 1; end loop; while i < size - N loop Impl.do_recursion ( the_array (i), the_array (i - N), the_array (i - (N - POS1)), lung); Impl.convert_o0c1 (the_array (i - N)); i := i + 1; end loop; j := 0; while j < N - (size - N) loop dsfmt.status (j) := the_array (j + (size - N)); j := j + 1; end loop; while i < size loop Impl.do_recursion ( the_array (i), the_array (i - N), the_array (i - (N - POS1)), lung); dsfmt.status (j) := the_array (i); Impl.convert_o0c1 (the_array (i - N)); i := i + 1; j := j + 1; end loop; i := size - N; while i < size loop Impl.convert_o0c1 (the_array (i)); i := i + 1; end loop; dsfmt.lung := lung; end gen_rand_array_o0c1; -- This function fills the user-specified array with double precision -- floating point pseudorandom numbers of the IEEE 754 format. procedure gen_rand_array_o0o1 ( dsfmt : in out State; Item : out w128_t_Array_1; size : Integer) is pragma Suppress (Index_Check); the_array : w128_t_Array (0 .. size - 1); for the_array'Address use Item'Address; i, j : Integer; lung : aliased w128_t := dsfmt.lung; begin Impl.do_recursion ( the_array (0), dsfmt.status (0), dsfmt.status (POS1), lung); i := 1; while i < N - POS1 loop Impl.do_recursion ( the_array (i), dsfmt.status (i), dsfmt.status (i + POS1), lung); i := i + 1; end loop; while i < N loop Impl.do_recursion ( the_array (i), dsfmt.status (i), the_array (i - (N - POS1)), lung); i := i + 1; end loop; while i < size - N loop Impl.do_recursion ( the_array (i), the_array (i - N), the_array (i - (N - POS1)), lung); Impl.convert_o0o1 (the_array (i - N)); i := i + 1; end loop; j := 0; while j < N - (size - N) loop dsfmt.status (j) := the_array (j + (size - N)); j := j + 1; end loop; while i < size loop Impl.do_recursion ( the_array (i), the_array (i - N), the_array (i - (N - POS1)), lung); dsfmt.status (j) := the_array (i); Impl.convert_o0o1 (the_array (i - N)); i := i + 1; j := j + 1; end loop; i := size - N; while i < size loop Impl.convert_o0o1 (the_array (i)); i := i + 1; end loop; dsfmt.lung := lung; end gen_rand_array_o0o1; -- This function represents a function used in the initialization by -- init_by_array function ini_func1 (x : Unsigned_32) return Unsigned_32 is begin return (x xor Interfaces.Shift_Right (x, 27)) * Unsigned_32'(1664525); end ini_func1; -- This function represents a function used in the initialization by -- init_by_array function ini_func2 (x : Unsigned_32) return Unsigned_32 is begin return (x xor Interfaces.Shift_Right (x, 27)) * Unsigned_32'(1566083941); end ini_func2; -- This function initializes the internal state array to fit the IEEE 754 -- format. procedure initial_mask (dsfmt : in out State) is psfmt : Unsigned_64_Array (0 .. N * 2 - 1); for psfmt'Address use dsfmt.status'Address; begin for i in 0 .. N * 2 - 1 loop psfmt (i) := (psfmt (i) and LOW_MASK) or HIGH_CONST; end loop; end initial_mask; -- This function certificate the period of 2^{SFMT_MEXP}-1. procedure period_certification (dsfmt : in out State) is pcv : constant array (0 .. 1) of Unsigned_64 := (PCV1, PCV2); tmp : array (0 .. 1) of Unsigned_64; inner : Unsigned_64; work : Unsigned_64; begin tmp (0) := dsfmt.lung (0) xor FIX1; tmp (1) := dsfmt.lung (1) xor FIX2; inner := tmp (0) and pcv (0); inner := inner xor (tmp (1) and pcv (1)); declare i : Natural := 32; begin while i > 0 loop inner := inner xor Interfaces.Shift_Right (inner, i); i := i / 2; end loop; end; inner := inner and 1; -- check OK if inner = 1 then return; end if; -- check NG, and modification if (PCV2 and 1) = 1 then dsfmt.lung (1) := dsfmt.lung (1) xor 1; else for i in reverse 0 .. 1 loop work := 1; for j in 0 .. 64 - 1 loop if (work and pcv (i)) /= 0 then dsfmt.lung (i) := dsfmt.lung (i) xor work; return; end if; work := Interfaces.Shift_Left (work, 1); end loop; end loop; end if; end period_certification; -- PUBLIC FUNCTIONS procedure dsfmt_gen_rand_all (dsfmt : in out State); procedure dsfmt_chk_init_gen_rand ( dsfmt : in out State; seed : Unsigned_32); procedure dsfmt_chk_init_by_array ( dsfmt : in out State; init_key : Unsigned_32_Array); -- This function fills the internal state array with double precision -- floating point pseudorandom numbers of the IEEE 754 format. procedure dsfmt_gen_rand_all (dsfmt : in out State) is pragma Suppress (Index_Check); i : Integer; lung : aliased w128_t := dsfmt.lung; begin Impl.do_recursion ( dsfmt.status (0), dsfmt.status (0), dsfmt.status (POS1), lung); i := 1; while i < N - POS1 loop Impl.do_recursion ( dsfmt.status (i), dsfmt.status (i), dsfmt.status (i + POS1), lung); i := i + 1; end loop; while i < N loop Impl.do_recursion ( dsfmt.status (i), dsfmt.status (i), dsfmt.status (i - (N - POS1)), lung); i := i + 1; end loop; dsfmt.lung := lung; end dsfmt_gen_rand_all; -- This function initializes the internal state array with a 32-bit integer -- seed. procedure dsfmt_chk_init_gen_rand ( dsfmt : in out State; seed : Unsigned_32) is begin -- make sure caller program is compiled with the same MEXP -- fprintf(stderr, "DSFMT_MEXP doesn't match with dSFMT.c\n"); declare psfmt : Unsigned_32_Array (0 .. (N + 1) * 4 - 1); -- including lung for psfmt'Address use dsfmt.status'Address; begin psfmt (idxof (0)) := seed; for i in 1 .. (N + 1) * 4 - 1 loop psfmt (idxof (i)) := 1812433253 * ( psfmt (idxof (i - 1)) xor Interfaces.Shift_Right (psfmt (idxof (i - 1)), 30)) + Unsigned_32'Mod (i); end loop; end; initial_mask (dsfmt); period_certification (dsfmt); dsfmt.idx := N64; end dsfmt_chk_init_gen_rand; -- This function initializes the internal state array, with an array of -- 32-bit integers used as the seeds procedure dsfmt_chk_init_by_array ( dsfmt : in out State; init_key : Unsigned_32_Array) is key_length : constant Natural := init_key'Length; count : Natural; r : Unsigned_32; lag : Natural; mid : Natural; size : constant Natural := (N + 1) * 4; -- pulmonary begin -- make sure caller program is compiled with the same MEXP -- fprintf(stderr, "DSFMT_MEXP doesn't match with dSFMT.c\n"); if size >= 623 then lag := 11; elsif size >= 68 then lag := 7; elsif size >= 39 then lag := 5; else lag := 3; end if; mid := (size - lag) / 2; memset ( dsfmt.status'Address, 16#8b#, System.Storage_Elements.Storage_Offset ( (N + 1) * (128 / Standard'Storage_Unit))); -- including lung if key_length + 1 > size then count := key_length + 1; else count := size; end if; declare psfmt32 : Unsigned_32_Array (0 .. (N + 1) * 4 - 1); -- including lung for psfmt32'Address use dsfmt.status'Address; begin r := ini_func1 (psfmt32 (idxof (0)) xor psfmt32 (idxof (mid rem size)) xor psfmt32 (idxof ((size - 1) rem size))); declare Index : constant Natural := idxof (mid rem size); begin psfmt32 (Index) := psfmt32 (Index) + r; end; r := r + Unsigned_32'Mod (key_length); declare Index : constant Natural := idxof ((mid + lag) rem size); begin psfmt32 (Index) := psfmt32 (Index) + r; end; psfmt32 (idxof (0)) := r; count := count - 1; declare i : Natural := 1; begin declare j : Natural := 0; begin while j < count and then j < key_length loop r := ini_func1 (psfmt32 (idxof (i)) xor psfmt32 (idxof ((i + mid) rem size)) xor psfmt32 (idxof ((i + (size - 1)) rem size))); declare Index : constant Natural := idxof ((i + mid) rem size); begin psfmt32 (Index) := psfmt32 (Index) + r; end; r := r + init_key (j) + Unsigned_32'Mod (i); declare Index : constant Natural := idxof ((i + mid + lag) rem size); begin psfmt32 (Index) := psfmt32 (Index) + r; end; psfmt32 (idxof (i)) := r; i := (i + 1) rem size; j := j + 1; end loop; while j < count loop r := ini_func1 (psfmt32 (idxof (i)) xor psfmt32 (idxof ((i + mid) rem size)) xor psfmt32 (idxof ((i + (size - 1)) rem size))); declare Index : constant Natural := idxof ((i + mid) rem size); begin psfmt32 (Index) := psfmt32 (Index) + r; end; r := r + Unsigned_32'Mod (i); declare Index : constant Natural := idxof ((i + mid + lag) rem size); begin psfmt32 (Index) := psfmt32 (Index) + r; end; psfmt32 (idxof (i)) := r; i := (i + 1) rem size; j := j + 1; end loop; end; for j in 0 .. size - 1 loop r := ini_func2 (psfmt32 (idxof (i)) + psfmt32 (idxof ((i + mid) rem size)) + psfmt32 (idxof ((i + (size - 1)) rem size))); declare Index : constant Natural := idxof ((i + mid) rem size); begin psfmt32 (Index) := psfmt32 (Index) xor r; end; r := r - Unsigned_32'Mod (i); declare Index : constant Natural := idxof ((i + mid + lag) rem size); begin psfmt32 (Index) := psfmt32 (Index) xor r; end; psfmt32 (idxof (i)) := r; i := (i + 1) rem size; end loop; end; end; initial_mask (dsfmt); period_certification (dsfmt); dsfmt.idx := N64; end dsfmt_chk_init_by_array; -- implementation -- This function returns the identification string. The string shows the -- Mersenne exponent, and all parameters of this generator. -- equivalent to dsfmt_get_idstring function Id return String is -- e.g. "dSFMT2-19937:117-19:ffafffffffb3f-ffdfffc90fffd" Result : String ( 1 .. 6 + 1 -- "dSFMT2-" + 6 + 1 + 4 + 1 + 2 + 1 -- "216091:1890-23:" + 13 + 1 + 13); -- "%.13x-%.13x" Last : Natural := 0; Error : Boolean; begin Result (Last + 1 .. Last + 7) := "dSFMT2-"; Last := Last + 7; System.Formatting.Image ( Word_Unsigned (MEXP), Result (Last + 1 .. Result'Last), Last, Error => Error); Result (Last + 1) := ':'; Last := Last + 1; System.Formatting.Image ( Word_Unsigned (POS1), Result (Last + 1 .. Result'Last), Last, Error => Error); Result (Last + 1) := '-'; Last := Last + 1; System.Formatting.Image ( Word_Unsigned (SL1), Result (Last + 1 .. Result'Last), Last, Error => Error); Result (Last + 1) := ':'; Last := Last + 1; if Standard'Word_Size >= 64 then -- 52? System.Formatting.Image ( Word_Unsigned (MSK1), Result (Last + 1 .. Result'Last), Last, Base => 16, Set => System.Formatting.Lower_Case, Width => 13, Error => Error); else System.Formatting.Image ( Long_Long_Unsigned (MSK1), Result (Last + 1 .. Result'Last), Last, Base => 16, Set => System.Formatting.Lower_Case, Width => 13, Error => Error); end if; Result (Last + 1) := '-'; Last := Last + 1; if Standard'Word_Size >= 64 then -- 52? System.Formatting.Image ( Word_Unsigned (MSK2), Result (Last + 1 .. Result'Last), Last, Base => 16, Set => System.Formatting.Lower_Case, Width => 13, Error => Error); else System.Formatting.Image ( Long_Long_Unsigned (MSK2), Result (Last + 1 .. Result'Last), Last, Base => 16, Set => System.Formatting.Lower_Case, Width => 13, Error => Error); end if; return Result (1 .. Last); end Id; -- This function generates and returns double precision pseudorandom number -- which distributes uniformly in the range [1, 2). This is the -- primitive and faster than generating numbers in other ranges. -- equivalent to dsfmt_genrand_close1_open2 function Random_1_To_Less_Than_2 (Gen : aliased in out Generator) return Long_Float is pragma Suppress (Index_Check); dsfmt : State renames Gen.dsfmt; idx : Integer := dsfmt.idx; begin if expect (Long_Boolean (idx >= N64), False) then dsfmt_gen_rand_all (dsfmt); idx := 0; end if; declare psfmt64 : Long_Float_Array (0 .. N * 2 - 1); for psfmt64'Address use dsfmt.status'Address; r : constant Long_Float := psfmt64 (idx); begin dsfmt.idx := idx + 1; return r; end; end Random_1_To_Less_Than_2; -- This function generates and returns double precision pseudorandom number -- which distributes uniformly in the range [0, 1). -- equivalent to dsfmt_genrand_close_open function Random_0_To_Less_Than_1 (Gen : aliased in out Generator) return Long_Float is begin return Random_1_To_Less_Than_2 (Gen) - 1.0; end Random_0_To_Less_Than_1; -- This function generates and returns double precision pseudorandom number -- which distributes uniformly in the range (0, 1]. -- equivalent to dsfmt_genrand_open_close function Random_Greater_Than_0_To_1 (Gen : aliased in out Generator) return Long_Float is begin return 2.0 - Random_1_To_Less_Than_2 (Gen); end Random_Greater_Than_0_To_1; -- This function generates and returns double precision pseudorandom number -- which distributes uniformly in the range (0, 1). -- equivalent to dsfmt_genrand_open_open function Random_Greater_Than_0_To_Less_Than_1 ( Gen : aliased in out Generator) return Long_Float is type union_r_Tag is (d, u); pragma Discard_Names (union_r_Tag); type union_r (Unchecked_Tag : union_r_Tag := d) is record case Unchecked_Tag is when d => d : Long_Float; when u => u : Unsigned_64; end case; end record; pragma Unchecked_Union (union_r); pragma Suppress_Initialization (union_r); r : union_r; begin r.d := Random_1_To_Less_Than_2 (Gen); r.u := r.u or 1; return r.d - 1.0; end Random_Greater_Than_0_To_Less_Than_1; -- This function generates double precision floating point pseudorandom -- numbers which distribute in the range [1, 2) to the specified array[] -- by one call. The number of pseudorandom numbers is specified by the -- argument size, which must be at least (SFMT_MEXP / 128) * 2 and a -- multiple of two. The function get_min_array_size() returns this -- minimum size. The generation by this function is much faster than the -- following fill_array_xxx functions. -- equivalent to dsfmt_fill_array_close1_open2 procedure Fill_Random_1_To_Less_Than_2 ( Gen : aliased in out Generator; Item : out Long_Float_Array) is pragma Suppress (Range_Check); size : constant Natural := Item'Length; begin if Gen.dsfmt.idx /= N64 or else size rem 2 /= 0 or else size < N64 then -- This function can not be used after calling genrand_xxx functions, -- without initialization. for I in Item'Range loop Item (I) := Random_1_To_Less_Than_2 (Gen); end loop; end if; declare the_array : w128_t_Array (0 .. 0); -- size / 2 - 1 for the_array'Address use Item'Address; begin gen_rand_array_c1o2 (Gen.dsfmt, the_array (0 .. 0), size / 2); end; end Fill_Random_1_To_Less_Than_2; -- This function generates double precision floating point pseudorandom -- numbers which distribute in the range [0, 1) to the specified array[] -- by one call. This function is the same as fill_array_close1_open2() -- except the distribution range. -- equivalent to dsfmt_fill_array_close_open procedure Fill_Random_0_To_Less_Than_1 ( Gen : aliased in out Generator; Item : out Long_Float_Array) is pragma Suppress (Range_Check); size : constant Natural := Item'Length; begin if Gen.dsfmt.idx /= N64 or else size rem 2 /= 0 or else size < N64 then for I in Item'Range loop Item (I) := Random_0_To_Less_Than_1 (Gen); end loop; end if; declare the_array : w128_t_Array (0 .. 0); -- size / 2 - 1 for the_array'Address use Item'Address; begin gen_rand_array_c0o1 (Gen.dsfmt, the_array (0 .. 0), size / 2); end; end Fill_Random_0_To_Less_Than_1; -- This function generates double precision floating point pseudorandom -- numbers which distribute in the range (0, 1] to the specified array[] -- by one call. This function is the same as fill_array_close1_open2() -- except the distribution range. -- equivalent to dsfmt_fill_array_open_close procedure Fill_Random_Greater_Than_0_To_1 ( Gen : aliased in out Generator; Item : out Long_Float_Array) is pragma Suppress (Range_Check); size : constant Natural := Item'Length; begin if Gen.dsfmt.idx /= N64 or else size rem 2 /= 0 or else size < N64 then for I in Item'Range loop Item (I) := Random_Greater_Than_0_To_1 (Gen); end loop; end if; declare the_array : w128_t_Array (0 .. 0); -- size / 2 - 1 for the_array'Address use Item'Address; begin gen_rand_array_o0c1 (Gen.dsfmt, the_array (0 .. 0), size / 2); end; end Fill_Random_Greater_Than_0_To_1; -- This function generates double precision floating point pseudorandom -- numbers which distribute in the range (0, 1) to the specified array[] -- by one call. This function is the same as fill_array_close1_open2() -- except the distribution range. -- equivalent to dsfmt_fill_array_open_open procedure Fill_Random_Greater_Than_0_To_Less_Than_1 ( Gen : aliased in out Generator; Item : out Long_Float_Array) is pragma Suppress (Range_Check); size : constant Natural := Item'Length; begin if Gen.dsfmt.idx /= N64 or else size rem 2 /= 0 or else size < N64 then for I in Item'Range loop Item (I) := Random_Greater_Than_0_To_Less_Than_1 (Gen); end loop; end if; declare the_array : w128_t_Array (0 .. 0); -- size / 2 - 1 for the_array'Address use Item'Address; begin gen_rand_array_o0o1 (Gen.dsfmt, the_array (0 .. 0), size / 2); end; end Fill_Random_Greater_Than_0_To_Less_Than_1; function Initialize return Generator is begin return (dsfmt => Initialize); end Initialize; function Initialize (Initiator : Unsigned_32) return Generator is begin return (dsfmt => Initialize (Initiator)); end Initialize; function Initialize (Initiator : Unsigned_32_Array) return Generator is begin return (dsfmt => Initialize (Initiator)); end Initialize; procedure Reset (Gen : in out Generator) is begin Gen.dsfmt := Initialize; end Reset; procedure Reset (Gen : in out Generator; Initiator : Integer) is begin Gen.dsfmt := Initialize (Unsigned_32'Mod (Initiator)); end Reset; function Initialize return State is Init : aliased Unsigned_32_Array (0 .. N32 - 1); begin System.Random_Initiators.Get ( Init'Address, Init'Size / Standard'Storage_Unit); return Initialize (Init); end Initialize; -- This function initializes the internal state array with a 32-bit integer -- seed. -- equivalent to dsfmt_init_gen_rand function Initialize (Initiator : Unsigned_32) return State is begin return Result : State do dsfmt_chk_init_gen_rand (Result, Initiator); end return; end Initialize; -- This function initializes the internal state array, with an array of -- 32-bit integers used as the seeds. -- equivalent to dsfmt_init_by_array function Initialize (Initiator : Unsigned_32_Array) return State is begin return Result : State do dsfmt_chk_init_by_array (Result, Initiator); end return; end Initialize; procedure Save (Gen : Generator; To_State : out State) is begin To_State := Gen.dsfmt; end Save; procedure Reset (Gen : in out Generator; From_State : State) is begin Gen.dsfmt := From_State; end Reset; function Reset (From_State : State) return Generator is begin return (dsfmt => From_State); end Reset; function Image (Of_State : State) return String is procedure Put (To : out String; Item : w128_t); procedure Put (To : out String; Item : w128_t) is Last : Natural := To'First - 1; begin for I in w128_t'Range loop declare E : constant Unsigned_64 := Item (I); Previous_Last : constant Natural := Last; Error : Boolean; begin if Standard'Word_Size >= 64 then System.Formatting.Image ( Word_Unsigned (E), To (Previous_Last + 1 .. Previous_Last + 64 / 4), Last, Base => 16, Width => 64 / 4, Error => Error); else System.Formatting.Image ( Long_Long_Unsigned (E), To (Previous_Last + 1 .. Previous_Last + 64 / 4), Last, Base => 16, Width => 64 / 4, Error => Error); end if; pragma Check (Validate, Check => not Error and then Last = Previous_Last + 64 / 4); end; Last := Last + 1; To (Last) := ':'; end loop; end Put; procedure Put (To : out String; Item : Integer); procedure Put (To : out String; Item : Integer) is Error : Boolean; Last : Natural; begin System.Formatting.Image ( Word_Unsigned (Item), To, Last, Base => 16, Width => 32 / 4, Error => Error); pragma Check (Validate, not Error and then Last = To'Last); end Put; Last : Natural := 0; begin return Result : String (1 .. Max_Image_Width) do for I in w128_t_Array_N'Range loop declare Previous_Last : constant Natural := Last; begin Last := Last + 2 * (64 / 4 + 1); Put (Result (Previous_Last + 1 .. Last), Of_State.status (I)); end; end loop; declare Previous_Last : constant Natural := Last; begin Last := Last + 2 * (64 / 4 + 1); Put (Result (Previous_Last + 1 .. Last), Of_State.lung); end; Put (Result (Last + 1 .. Result'Last), Of_State.idx); end return; end Image; function Value (Coded_State : String) return State is procedure Get (From : String; Item : out w128_t); procedure Get (From : String; Item : out w128_t) is Last : Natural := From'First - 1; begin for I in w128_t'Range loop declare Previous_Last : constant Natural := Last; E : Unsigned_64; Error : Boolean; begin if Standard'Word_Size >= 64 then System.Formatting.Value ( From (Previous_Last + 1 .. Previous_Last + 64 / 4), Last, Word_Unsigned (E), Base => 16, Error => Error); else System.Formatting.Value ( From (Previous_Last + 1 .. Previous_Last + 64 / 4), Last, Long_Long_Unsigned (E), Base => 16, Error => Error); end if; if Error or else Last /= Previous_Last + 64 / 4 then raise Constraint_Error; end if; Item (I) := E; end; Last := Last + 1; if From (Last) /= ':' then raise Constraint_Error; end if; end loop; end Get; procedure Get (From : String; Item : out Integer); procedure Get (From : String; Item : out Integer) is Last : Positive; Error : Boolean; begin System.Formatting.Value ( From, Last, Word_Unsigned (Item), Base => 16, Error => Error); if Error or else Last /= From'Last or else Item not in 0 .. N64 then raise Constraint_Error; end if; end Get; begin if Coded_State'Length /= Max_Image_Width then raise Constraint_Error; end if; return Result : State do declare Last : Natural := Coded_State'First - 1; begin for I in w128_t_Array_N'Range loop declare Previous_Last : constant Natural := Last; begin Last := Last + 2 * (64 / 4 + 1); Get ( Coded_State (Previous_Last + 1 .. Last), Result.status (I)); end; end loop; declare Previous_Last : constant Natural := Last; begin Last := Last + 2 * (64 / 4 + 1); Get (Coded_State (Previous_Last + 1 .. Last), Result.lung); end; Get (Coded_State (Last + 1 .. Coded_State'Last), Result.idx); end; end return; end Value; end Ada.Numerics.dSFMT;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- S Y S T E M . P A C K _ 5 8 -- -- -- -- S p e c -- -- -- -- Copyright (C) 1992-2021, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- -- -- -- -- -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- 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; -- In all subprograms below, Rev_SSO is set True if the array has the -- non-default scalar storage order. function Get_58 (Arr : System.Address; N : Natural; Rev_SSO : Boolean) return Bits_58 with Inline; -- 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; Rev_SSO : Boolean) with Inline; -- Arr is the address of the packed array, N is the zero-based -- subscript. This element is set to the given value. function GetU_58 (Arr : System.Address; N : Natural; Rev_SSO : Boolean) return Bits_58 with Inline; -- Arr is the address of the packed array, N is the zero-based -- subscript. This element is extracted and returned. This version -- is used when Arr may represent an unaligned address. procedure SetU_58 (Arr : System.Address; N : Natural; E : Bits_58; Rev_SSO : Boolean) with Inline; -- Arr is the address of the packed array, N is the zero-based -- subscript. This element is set to the given value. This version -- is used when Arr may represent an unaligned address end System.Pack_58;
-- part of OpenGLAda, (c) 2017 Felix Krause -- released under the terms of the MIT license, see the file "COPYING" with GL.Types; package GL.Low_Level is pragma Preelaborate; use GL.Types; -- This package contains some low-level types that are used by the raw C -- interface of the OpenGL API. They are converted to types that are easier -- to handle by the wrapper and thus are not needed for using the wrapper. -- However, they might be used by other APIs that use OpenGL and thus are -- exposed publicly here. -- Boolean with the representation used by the OpenGL API (unsigned char). -- Is converted to a standard Boolean by the wrapper. type Bool is new Boolean; -- This type is never used directly. However, enumerations refer to it for -- defining their Size attribute. subtype Enum is C.unsigned; -- Bitfields are usually converted to a record with Boolean fields in the -- wrapper. However, for interacting with the OpenGL library, these records -- are converted back to the raw Bitfield type (by means of -- Unchecked_Conversion). Using the record directly with the C interface -- requires it to have the C_Pass_By_Value conversion, which for some reason -- breaks linking on Windows with StdCall convention (possibly a GNAT bug). subtype Bitfield is C.unsigned; -- These types totally are not pointers. No idea why they are named like this. subtype IntPtr is C.long; subtype SizeIPtr is C.long; type Char_Access_Array is array (Size range <>) of access C.char; -- used in API calls type Size_Access is access all Types.Size; type Bool_Access is access all Bool; subtype Zero is Int range 0 .. 0; private for Bool use (False => 0, True => 1); for Bool'Size use C.unsigned_char'Size; pragma Convention (C, Size_Access); pragma Convention (C, Bool_Access); pragma Convention (C, Char_Access_Array); end GL.Low_Level;
------------------------------------------------------------------------------ -- -- -- 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. ------------------------------------------------------------------------------ with League.Holders.Generic_Holders; package AMF.DG.Holders.Skews is new League.Holders.Generic_Holders (AMF.DG.DG_Skew); pragma Preelaborate (AMF.DG.Holders.Skews);
------------------------------------------------------------------------------- -- LSE -- L-System Editor -- Author: Heziode -- -- License: -- MIT License -- -- Copyright (c) 2018 Quentin Dauprat (Heziode) <Heziode@protonmail.com> -- -- 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 Ada.Characters.Handling; with Ada.Characters.Latin_1; with Ada.Integer_Text_IO; with Ada.Strings; with Ada.Strings.Fixed; package body LSE.Utils.Colors is package L renames Ada.Characters.Latin_1; function Str_Hex_To_Int (Input : String) return Natural is use Ada.Characters.Handling; Str_Length : Natural := Input'Length; Result : Natural := 0; begin for C of Input loop case To_Upper (C) is when 'F' => Result := Result + 15**Str_Length; when 'E' => Result := Result + 14**Str_Length; when 'D' => Result := Result + 13**Str_Length; when 'C' => Result := Result + 12**Str_Length; when 'B' => Result := Result + 11**Str_Length; when 'A' => Result := Result + 10**Str_Length; when '0' .. '9' => Result := Result + Natural'Value (C & ""); when others => raise UNEXPECTED_CHARACTER; end case; Str_Length := Str_Length - 1; end loop; return Result; end Str_Hex_To_Int; function Str_Hex_To_Float (Input : String) return Float is begin return Float (Str_Hex_To_Int (Input)) / 255.0; end Str_Hex_To_Float; procedure To_RGB (Input : String; R, G, B : out Natural) is use Ada.Text_IO; Index : Positive := Input'First; begin if Input'Length not in 6 .. 7 then raise STRING_LENGTH; end if; if Input (Index) = '#' then Index := Index + 1; end if; R := Str_Hex_To_Int (Input (Index .. Index + 1)); Index := Index + 2; G := Str_Hex_To_Int (Input (Index .. Index + 1)); Index := Index + 2; B := Str_Hex_To_Int (Input (Index .. Index + 1)); exception when STRING_LENGTH => Put_Line ("Error: bad length of string for RGB conversion"); when UNEXPECTED_CHARACTER => Put_Line ("Error: Unexpected character encountered"); when others => Put_Line ("Error: cannot convert string to RGB"); end To_RGB; procedure To_RGB (Input : String; R, G, B : out Float) is use Ada.Text_IO; Index : Positive := Input'First; begin if Input'Length not in 6 .. 7 then raise STRING_LENGTH; end if; if Input (Index) = '#' then Index := Index + 1; end if; R := Str_Hex_To_Float (Input (Index .. Index + 1)); Index := Index + 2; G := Str_Hex_To_Float (Input (Index .. Index + 1)); Index := Index + 2; B := Str_Hex_To_Float (Input (Index .. Index + 1)); exception when STRING_LENGTH => Put_Line ("Error: bad length of string for RGB conversion"); when UNEXPECTED_CHARACTER => Put_Line ("Error: Unexpected character encountered"); when others => Put_Line ("Error: cannot convert string to RGB"); end To_RGB; -- Convert RGB value to string function RGB_To_String (R, G, B : Natural) return String is use Ada.Strings; use Ada.Strings.Fixed; begin return Trim (Natural'Image (R), Left) & L.Space & Natural'Image (G) & L.Space & Natural'Image (B); end RGB_To_String; -- Convert RGB value to string function RGB_To_String (R, G, B : Float) return String is use Ada.Strings; use Ada.Strings.Fixed; begin return Trim (Fixed_Point'Image (Fixed_Point (R)), Left) & L.Space & Fixed_Point'Image (Fixed_Point (G)) & L.Space & Fixed_Point'Image (Fixed_Point (B)); end RGB_To_String; function RGB_To_Hex_String (R, G, B : Natural) return String is use Ada.Strings; use Ada.Strings.Fixed; Rs : String (1 .. 6); Gs : String (1 .. 6); Bs : String (1 .. 6); begin Ada.Integer_Text_IO.Put (Rs, R, 16); Ada.Integer_Text_IO.Put (Gs, G, 16); Ada.Integer_Text_IO.Put (Bs, B, 16); return "#" & (if Rs (4 .. 4) = "#" then "0" else Rs (4 .. 4)) & (if Rs (4 .. 4) = "#" then Rs (5 .. 5) else Rs (4 .. 4)) & (if Gs (4 .. 4) = "#" then "0" else Gs (4 .. 4)) & (if Gs (4 .. 4) = "#" then Gs (5 .. 5) else Gs (4 .. 4)) & (if Bs (4 .. 4) = "#" then "0" else Bs (4 .. 4)) & (if Bs (4 .. 4) = "#" then Bs (5 .. 5) else Bs (4 .. 4)); end RGB_To_Hex_String; function RGB_To_Hex_String (R, G, B : Float) return String is begin return RGB_To_Hex_String (Natural (R * 255.0), Natural (G * 255.0), Natural (B * 255.0)); end RGB_To_Hex_String; end LSE.Utils.Colors;
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- S Y S T E M . P O O L _ G L O B A L -- -- -- -- S p e c -- -- -- -- -- -- Copyright (C) 1992,1993,1994 Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 2, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING. If not, write -- -- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, -- -- MA 02111-1307, USA. -- -- -- -- 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. -- -- -- ------------------------------------------------------------------------------ -- GBADA: Modified to use arena allocation. -- ------------------------------------------------------------------------------ -- Storage pool corresponding to default global storage pool used for types -- for which no storage pool is specified. with System; with System.Storage_Elements; with System.Allocation.Arenas; with System.Allocation.Memory; pragma Elaborate (System.Allocation.Memory); package System.Pool_Global is package SAA renames System.Allocation.Arenas; package SAM renames System.Allocation.Memory; package SSE renames System.Storage_Elements; -- Pool object used by the compiler when implicit Storage Pool objects are -- explicitly referred to. For instance when writing something like: -- for T'Storage_Pool use Q'Storage_Pool; -- and Q'Storage_Pool hasn't been defined explicitly. Global_Pool_Object : SAA.Heap_Arena renames SAM.Heap; function Storage_Size (Pool : SAA.Heap_Arena) return System.Storage_Elements.Storage_Count renames SAA.Storage_Size; procedure Allocate (Pool : in out SAA.Heap_Arena; Address : out System.Address; Storage_Size : SSE.Storage_Count; Alignment : SSE.Storage_Count) renames SAA.Allocate; -- Deallocation in an arena can only be done by saving and restoring -- a watermark in the System.Allocation.Memory.Heap object. procedure Deallocate (Pool : in out SAA.Heap_Arena; Address : System.Address; Storage_Size : SSE.Storage_Count; Alignment : SSE.Storage_Count) is null; end System.Pool_Global;
with calc; procedure main with SPARK_Mode is begin null; end main;
------------------------------------------------------------------------------ -- -- -- GNAT LIBRARY COMPONENTS -- -- -- -- ADA.CONTAINERS.RED_BLACK_TREES.GENERIC_BOUNDED_KEYS -- -- -- -- B o d y -- -- -- -- Copyright (C) 2004-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/>. -- -- -- -- This unit was originally developed by Matthew J Heaney. -- ------------------------------------------------------------------------------ package body Ada.Containers.Red_Black_Trees.Generic_Bounded_Keys is package Ops renames Tree_Operations; ------------- -- Ceiling -- ------------- -- AKA Lower_Bound function Ceiling (Tree : Tree_Type'Class; Key : Key_Type) return Count_Type is Y : Count_Type; X : Count_Type; N : Nodes_Type renames Tree.Nodes; begin Y := 0; X := Tree.Root; while X /= 0 loop if Is_Greater_Key_Node (Key, N (X)) then X := Ops.Right (N (X)); else Y := X; X := Ops.Left (N (X)); end if; end loop; return Y; end Ceiling; ---------- -- Find -- ---------- function Find (Tree : Tree_Type'Class; Key : Key_Type) return Count_Type is Y : Count_Type; X : Count_Type; N : Nodes_Type renames Tree.Nodes; begin Y := 0; X := Tree.Root; while X /= 0 loop if Is_Greater_Key_Node (Key, N (X)) then X := Ops.Right (N (X)); else Y := X; X := Ops.Left (N (X)); end if; end loop; if Y = 0 then return 0; end if; if Is_Less_Key_Node (Key, N (Y)) then return 0; end if; return Y; end Find; ----------- -- Floor -- ----------- function Floor (Tree : Tree_Type'Class; Key : Key_Type) return Count_Type is Y : Count_Type; X : Count_Type; N : Nodes_Type renames Tree.Nodes; begin Y := 0; X := Tree.Root; while X /= 0 loop if Is_Less_Key_Node (Key, N (X)) then X := Ops.Left (N (X)); else Y := X; X := Ops.Right (N (X)); end if; end loop; return Y; end Floor; -------------------------------- -- Generic_Conditional_Insert -- -------------------------------- procedure Generic_Conditional_Insert (Tree : in out Tree_Type'Class; Key : Key_Type; Node : out Count_Type; Inserted : out Boolean) is Y : Count_Type; X : Count_Type; N : Nodes_Type renames Tree.Nodes; begin -- This is a "conditional" insertion, meaning that the insertion request -- can "fail" in the sense that no new node is created. If the Key is -- equivalent to an existing node, then we return the existing node and -- Inserted is set to False. Otherwise, we allocate a new node (via -- Insert_Post) and Inserted is set to True. -- Note that we are testing for equivalence here, not equality. Key must -- be strictly less than its next neighbor, and strictly greater than -- its previous neighbor, in order for the conditional insertion to -- succeed. -- We search the tree to find the nearest neighbor of Key, which is -- either the smallest node greater than Key (Inserted is True), or the -- largest node less or equivalent to Key (Inserted is False). Y := 0; X := Tree.Root; Inserted := True; while X /= 0 loop Y := X; Inserted := Is_Less_Key_Node (Key, N (X)); X := (if Inserted then Ops.Left (N (X)) else Ops.Right (N (X))); end loop; if Inserted then -- Either Tree is empty, or Key is less than Y. If Y is the first -- node in the tree, then there are no other nodes that we need to -- search for, and we insert a new node into the tree. if Y = Tree.First then Insert_Post (Tree, Y, True, Node); return; end if; -- Y is the next nearest-neighbor of Key. We know that Key is not -- equivalent to Y (because Key is strictly less than Y), so we move -- to the previous node, the nearest-neighbor just smaller or -- equivalent to Key. Node := Ops.Previous (Tree, Y); else -- Y is the previous nearest-neighbor of Key. We know that Key is not -- less than Y, which means either that Key is equivalent to Y, or -- greater than Y. Node := Y; end if; -- Key is equivalent to or greater than Node. We must resolve which is -- the case, to determine whether the conditional insertion succeeds. if Is_Greater_Key_Node (Key, N (Node)) then -- Key is strictly greater than Node, which means that Key is not -- equivalent to Node. In this case, the insertion succeeds, and we -- insert a new node into the tree. Insert_Post (Tree, Y, Inserted, Node); Inserted := True; return; end if; -- Key is equivalent to Node. This is a conditional insertion, so we do -- not insert a new node in this case. We return the existing node and -- report that no insertion has occurred. Inserted := False; end Generic_Conditional_Insert; ------------------------------------------ -- Generic_Conditional_Insert_With_Hint -- ------------------------------------------ procedure Generic_Conditional_Insert_With_Hint (Tree : in out Tree_Type'Class; Position : Count_Type; Key : Key_Type; Node : out Count_Type; Inserted : out Boolean) is N : Nodes_Type renames Tree.Nodes; begin -- The purpose of a hint is to avoid a search from the root of -- tree. If we have it hint it means we only need to traverse the -- subtree rooted at the hint to find the nearest neighbor. Note -- that finding the neighbor means merely walking the tree; this -- is not a search and the only comparisons that occur are with -- the hint and its neighbor. -- If Position is 0, this is interpreted to mean that Key is -- large relative to the nodes in the tree. If the tree is empty, -- or Key is greater than the last node in the tree, then we're -- done; otherwise the hint was "wrong" and we must search. if Position = 0 then -- largest if Tree.Last = 0 or else Is_Greater_Key_Node (Key, N (Tree.Last)) then Insert_Post (Tree, Tree.Last, False, Node); Inserted := True; else Conditional_Insert_Sans_Hint (Tree, Key, Node, Inserted); end if; return; end if; pragma Assert (Tree.Length > 0); -- A hint can either name the node that immediately follows Key, -- or immediately precedes Key. We first test whether Key is -- less than the hint, and if so we compare Key to the node that -- precedes the hint. If Key is both less than the hint and -- greater than the hint's preceding neighbor, then we're done; -- otherwise we must search. -- Note also that a hint can either be an anterior node or a leaf -- node. A new node is always inserted at the bottom of the tree -- (at least prior to rebalancing), becoming the new left or -- right child of leaf node (which prior to the insertion must -- necessarily be null, since this is a leaf). If the hint names -- an anterior node then its neighbor must be a leaf, and so -- (here) we insert after the neighbor. If the hint names a leaf -- then its neighbor must be anterior and so we insert before the -- hint. if Is_Less_Key_Node (Key, N (Position)) then declare Before : constant Count_Type := Ops.Previous (Tree, Position); begin if Before = 0 then Insert_Post (Tree, Tree.First, True, Node); Inserted := True; elsif Is_Greater_Key_Node (Key, N (Before)) then if Ops.Right (N (Before)) = 0 then Insert_Post (Tree, Before, False, Node); else Insert_Post (Tree, Position, True, Node); end if; Inserted := True; else Conditional_Insert_Sans_Hint (Tree, Key, Node, Inserted); end if; end; return; end if; -- We know that Key isn't less than the hint so we try again, -- this time to see if it's greater than the hint. If so we -- compare Key to the node that follows the hint. If Key is both -- greater than the hint and less than the hint's next neighbor, -- then we're done; otherwise we must search. if Is_Greater_Key_Node (Key, N (Position)) then declare After : constant Count_Type := Ops.Next (Tree, Position); begin if After = 0 then Insert_Post (Tree, Tree.Last, False, Node); Inserted := True; elsif Is_Less_Key_Node (Key, N (After)) then if Ops.Right (N (Position)) = 0 then Insert_Post (Tree, Position, False, Node); else Insert_Post (Tree, After, True, Node); end if; Inserted := True; else Conditional_Insert_Sans_Hint (Tree, Key, Node, Inserted); end if; end; return; end if; -- We know that Key is neither less than the hint nor greater -- than the hint, and that's the definition of equivalence. -- There's nothing else we need to do, since a search would just -- reach the same conclusion. Node := Position; Inserted := False; end Generic_Conditional_Insert_With_Hint; ------------------------- -- Generic_Insert_Post -- ------------------------- procedure Generic_Insert_Post (Tree : in out Tree_Type'Class; Y : Count_Type; Before : Boolean; Z : out Count_Type) is N : Nodes_Type renames Tree.Nodes; begin TC_Check (Tree.TC); if Checks and then Tree.Length >= Tree.Capacity then raise Capacity_Error with "not enough capacity to insert new item"; end if; Z := New_Node; pragma Assert (Z /= 0); if Y = 0 then pragma Assert (Tree.Length = 0); pragma Assert (Tree.Root = 0); pragma Assert (Tree.First = 0); pragma Assert (Tree.Last = 0); Tree.Root := Z; Tree.First := Z; Tree.Last := Z; elsif Before then pragma Assert (Ops.Left (N (Y)) = 0); Ops.Set_Left (N (Y), Z); if Y = Tree.First then Tree.First := Z; end if; else pragma Assert (Ops.Right (N (Y)) = 0); Ops.Set_Right (N (Y), Z); if Y = Tree.Last then Tree.Last := Z; end if; end if; Ops.Set_Color (N (Z), Red); Ops.Set_Parent (N (Z), Y); Ops.Rebalance_For_Insert (Tree, Z); Tree.Length := Tree.Length + 1; end Generic_Insert_Post; ----------------------- -- Generic_Iteration -- ----------------------- procedure Generic_Iteration (Tree : Tree_Type'Class; Key : Key_Type) is procedure Iterate (Index : Count_Type); ------------- -- Iterate -- ------------- procedure Iterate (Index : Count_Type) is J : Count_Type; N : Nodes_Type renames Tree.Nodes; begin J := Index; while J /= 0 loop if Is_Less_Key_Node (Key, N (J)) then J := Ops.Left (N (J)); elsif Is_Greater_Key_Node (Key, N (J)) then J := Ops.Right (N (J)); else Iterate (Ops.Left (N (J))); Process (J); J := Ops.Right (N (J)); end if; end loop; end Iterate; -- Start of processing for Generic_Iteration begin Iterate (Tree.Root); end Generic_Iteration; ------------------------------- -- Generic_Reverse_Iteration -- ------------------------------- procedure Generic_Reverse_Iteration (Tree : Tree_Type'Class; Key : Key_Type) is procedure Iterate (Index : Count_Type); ------------- -- Iterate -- ------------- procedure Iterate (Index : Count_Type) is J : Count_Type; N : Nodes_Type renames Tree.Nodes; begin J := Index; while J /= 0 loop if Is_Less_Key_Node (Key, N (J)) then J := Ops.Left (N (J)); elsif Is_Greater_Key_Node (Key, N (J)) then J := Ops.Right (N (J)); else Iterate (Ops.Right (N (J))); Process (J); J := Ops.Left (N (J)); end if; end loop; end Iterate; -- Start of processing for Generic_Reverse_Iteration begin Iterate (Tree.Root); end Generic_Reverse_Iteration; ---------------------------------- -- Generic_Unconditional_Insert -- ---------------------------------- procedure Generic_Unconditional_Insert (Tree : in out Tree_Type'Class; Key : Key_Type; Node : out Count_Type) is Y : Count_Type; X : Count_Type; N : Nodes_Type renames Tree.Nodes; Before : Boolean; begin Y := 0; Before := False; X := Tree.Root; while X /= 0 loop Y := X; Before := Is_Less_Key_Node (Key, N (X)); X := (if Before then Ops.Left (N (X)) else Ops.Right (N (X))); end loop; Insert_Post (Tree, Y, Before, Node); end Generic_Unconditional_Insert; -------------------------------------------- -- Generic_Unconditional_Insert_With_Hint -- -------------------------------------------- procedure Generic_Unconditional_Insert_With_Hint (Tree : in out Tree_Type'Class; Hint : Count_Type; Key : Key_Type; Node : out Count_Type) is N : Nodes_Type renames Tree.Nodes; begin -- There are fewer constraints for an unconditional insertion -- than for a conditional insertion, since we allow duplicate -- keys. So instead of having to check (say) whether Key is -- (strictly) greater than the hint's previous neighbor, here we -- allow Key to be equal to or greater than the previous node. -- There is the issue of what to do if Key is equivalent to the -- hint. Does the new node get inserted before or after the hint? -- We decide that it gets inserted after the hint, reasoning that -- this is consistent with behavior for non-hint insertion, which -- inserts a new node after existing nodes with equivalent keys. -- First we check whether the hint is null, which is interpreted -- to mean that Key is large relative to existing nodes. -- Following our rule above, if Key is equal to or greater than -- the last node, then we insert the new node immediately after -- last. (We don't have an operation for testing whether a key is -- "equal to or greater than" a node, so we must say instead "not -- less than", which is equivalent.) if Hint = 0 then -- largest if Tree.Last = 0 then Insert_Post (Tree, 0, False, Node); elsif Is_Less_Key_Node (Key, N (Tree.Last)) then Unconditional_Insert_Sans_Hint (Tree, Key, Node); else Insert_Post (Tree, Tree.Last, False, Node); end if; return; end if; pragma Assert (Tree.Length > 0); -- We decide here whether to insert the new node prior to the -- hint. Key could be equivalent to the hint, so in theory we -- could write the following test as "not greater than" (same as -- "less than or equal to"). If Key were equivalent to the hint, -- that would mean that the new node gets inserted before an -- equivalent node. That wouldn't break any container invariants, -- but our rule above says that new nodes always get inserted -- after equivalent nodes. So here we test whether Key is both -- less than the hint and equal to or greater than the hint's -- previous neighbor, and if so insert it before the hint. if Is_Less_Key_Node (Key, N (Hint)) then declare Before : constant Count_Type := Ops.Previous (Tree, Hint); begin if Before = 0 then Insert_Post (Tree, Hint, True, Node); elsif Is_Less_Key_Node (Key, N (Before)) then Unconditional_Insert_Sans_Hint (Tree, Key, Node); elsif Ops.Right (N (Before)) = 0 then Insert_Post (Tree, Before, False, Node); else Insert_Post (Tree, Hint, True, Node); end if; end; return; end if; -- We know that Key isn't less than the hint, so it must be equal -- or greater. So we just test whether Key is less than or equal -- to (same as "not greater than") the hint's next neighbor, and -- if so insert it after the hint. declare After : constant Count_Type := Ops.Next (Tree, Hint); begin if After = 0 then Insert_Post (Tree, Hint, False, Node); elsif Is_Greater_Key_Node (Key, N (After)) then Unconditional_Insert_Sans_Hint (Tree, Key, Node); elsif Ops.Right (N (Hint)) = 0 then Insert_Post (Tree, Hint, False, Node); else Insert_Post (Tree, After, True, Node); end if; end; end Generic_Unconditional_Insert_With_Hint; ----------------- -- Upper_Bound -- ----------------- function Upper_Bound (Tree : Tree_Type'Class; Key : Key_Type) return Count_Type is Y : Count_Type; X : Count_Type; N : Nodes_Type renames Tree.Nodes; begin Y := 0; X := Tree.Root; while X /= 0 loop if Is_Less_Key_Node (Key, N (X)) then Y := X; X := Ops.Left (N (X)); else X := Ops.Right (N (X)); end if; end loop; return Y; end Upper_Bound; end Ada.Containers.Red_Black_Trees.Generic_Bounded_Keys;
-- Copyright 2015-2020 Free Software Foundation, Inc. -- -- This program is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- the Free Software Foundation; either version 3 of the License, or -- (at your option) any later version. -- -- This program is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- GNU General Public License for more details. -- -- You should have received a copy of the GNU General Public License -- along with this program. If not, see <http://www.gnu.org/licenses/>. procedure Foo is procedure Nested (L, U : Integer) is subtype Small_Type is Integer range L .. U; type Record_Type (I : Small_Type := L) is record S : String (1 .. I); end record; type Array_Type is array (Integer range <>) of Record_Type; A1 : Array_Type := (1 => (I => 0, S => <>), 2 => (I => 1, S => "A"), 3 => (I => 2, S => "AB")); procedure Discard (R : Record_Type) is begin null; end Discard; begin Discard (A1 (1)); -- STOP end; begin Nested (0, 10); Nested (-10, 10); end Foo;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME LIBRARY (GNARL) COMPONENTS -- -- -- -- S Y S T E M . T R A C E S -- -- -- -- B o d y -- -- -- -- Copyright (C) 2001-2014, Free Software Foundation, Inc. -- -- -- -- GNARL is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ package body System.Traces is pragma Warnings (Off); -- kill warnings on unreferenced formals --------------------- -- Send_Trace_Info -- --------------------- procedure Send_Trace_Info (Id : Trace_T) is begin null; end Send_Trace_Info; --------------------- -- Send_Trace_Info -- --------------------- procedure Send_Trace_Info (Id : Trace_T; Timeout : Duration) is begin null; end Send_Trace_Info; end System.Traces;
<?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>pixel_pack</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>in_stream_data_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo class_id="6" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>in_stream.data.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>24</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs class_id="7" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_2"> <Value> <Obj> <type>1</type> <id>2</id> <name>in_stream_user_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>in_stream.user.V</originalName> <rtlName></rtlName> <coreName></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> <item class_id_reference="3" object_id="_3"> <Value> <Obj> <type>1</type> <id>3</id> <name>in_stream_last_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>in_stream.last.V</originalName> <rtlName></rtlName> <coreName></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> <item class_id_reference="3" object_id="_4"> <Value> <Obj> <type>1</type> <id>4</id> <name>out_stream_data_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>out_stream.data.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <direction>1</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_5"> <Value> <Obj> <type>1</type> <id>5</id> <name>out_stream_user_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>out_stream.user.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <direction>1</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_6"> <Value> <Obj> <type>1</type> <id>6</id> <name>out_stream_last_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>out_stream.last.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <direction>1</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_7"> <Value> <Obj> <type>1</type> <id>7</id> <name>mode</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>mode</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="_8"> <Value> <Obj> <type>1</type> <id>8</id> <name>alpha_V</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> <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>166</count> <item_version>0</item_version> <item class_id="9" tracking_level="1" version="0" object_id="_9"> <Value> <Obj> <type>0</type> <id>9</id> <name>alpha_V_read</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> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>227</item> <item>228</item> </oprand_edges> <opcode>read</opcode> </item> <item class_id_reference="9" object_id="_10"> <Value> <Obj> <type>0</type> <id>10</id> <name>mode_read</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>mode</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>230</item> <item>231</item> </oprand_edges> <opcode>read</opcode> </item> <item class_id_reference="9" object_id="_11"> <Value> <Obj> <type>0</type> <id>26</id> <name></name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>38</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item class_id="11" tracking_level="0" version="0"> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</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>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>38</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>12</count> <item_version>0</item_version> <item>232</item> <item>233</item> <item>235</item> <item>236</item> <item>238</item> <item>239</item> <item>241</item> <item>242</item> <item>244</item> <item>245</item> <item>247</item> <item>248</item> </oprand_edges> <opcode>switch</opcode> </item> <item class_id_reference="9" object_id="_12"> <Value> <Obj> <type>0</type> <id>30</id> <name>empty_28</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>26</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>646</item> <item>647</item> <item>648</item> <item>649</item> </oprand_edges> <opcode>read</opcode> </item> <item class_id_reference="9" object_id="_13"> <Value> <Obj> <type>0</type> <id>31</id> <name>in_stream_data_V_val4</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>24</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>650</item> </oprand_edges> <opcode>extractvalue</opcode> </item> <item class_id_reference="9" object_id="_14"> <Value> <Obj> <type>0</type> <id>32</id> <name>in_stream_user_V_val4</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>651</item> </oprand_edges> <opcode>extractvalue</opcode> </item> <item class_id_reference="9" object_id="_15"> <Value> <Obj> <type>0</type> <id>33</id> <name>empty_29</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>26</bitwidth> </Value> <oprand_edges> <count>5</count> <item_version>0</item_version> <item>652</item> <item>653</item> <item>654</item> <item>655</item> <item>923</item> </oprand_edges> <opcode>read</opcode> </item> <item class_id_reference="9" object_id="_16"> <Value> <Obj> <type>0</type> <id>34</id> <name>in_stream_data_V_val5</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>24</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>656</item> </oprand_edges> <opcode>extractvalue</opcode> </item> <item class_id_reference="9" object_id="_17"> <Value> <Obj> <type>0</type> <id>35</id> <name>in_stream_user_V_val5</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>657</item> </oprand_edges> <opcode>extractvalue</opcode> </item> <item class_id_reference="9" object_id="_18"> <Value> <Obj> <type>0</type> <id>36</id> <name>in_stream_last_V_val3</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>658</item> </oprand_edges> <opcode>extractvalue</opcode> </item> <item class_id_reference="9" object_id="_19"> <Value> <Obj> <type>0</type> <id>37</id> <name>user_2_1</name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>119</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>119</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>659</item> <item>660</item> </oprand_edges> <opcode>or</opcode> </item> <item class_id_reference="9" object_id="_20"> <Value> <Obj> <type>0</type> <id>38</id> <name>p_Result_s_30</name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>125</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>125</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>662</item> <item>663</item> <item>664</item> <item>665</item> </oprand_edges> <opcode>partselect</opcode> </item> <item class_id_reference="9" object_id="_21"> <Value> <Obj> <type>0</type> <id>39</id> <name>tmp</name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>125</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>125</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>666</item> </oprand_edges> <opcode>zext</opcode> </item> <item class_id_reference="9" object_id="_22"> <Value> <Obj> <type>0</type> <id>40</id> <name>p_Result_1</name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>125</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>125</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>667</item> <item>668</item> <item>669</item> <item>670</item> </oprand_edges> <opcode>partselect</opcode> </item> <item class_id_reference="9" object_id="_23"> <Value> <Obj> <type>0</type> <id>41</id> <name>tmp_1</name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>125</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>125</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>671</item> </oprand_edges> <opcode>zext</opcode> </item> <item class_id_reference="9" object_id="_24"> <Value> <Obj> <type>0</type> <id>42</id> <name>out_c1_V</name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>125</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>125</second> </item> </second> </item> </inlineStackInfo> <originalName>out_c1.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>672</item> <item>673</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_25"> <Value> <Obj> <type>0</type> <id>43</id> <name>p_Result_3</name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>126</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>126</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>674</item> <item>675</item> <item>676</item> <item>677</item> </oprand_edges> <opcode>partselect</opcode> </item> <item class_id_reference="9" object_id="_26"> <Value> <Obj> <type>0</type> <id>44</id> <name>tmp_3</name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>126</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>126</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>678</item> </oprand_edges> <opcode>zext</opcode> </item> <item class_id_reference="9" object_id="_27"> <Value> <Obj> <type>0</type> <id>45</id> <name>p_Result_4</name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>126</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>126</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>679</item> <item>680</item> <item>681</item> <item>682</item> </oprand_edges> <opcode>partselect</opcode> </item> <item class_id_reference="9" object_id="_28"> <Value> <Obj> <type>0</type> <id>46</id> <name>tmp_4</name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>126</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>126</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>683</item> </oprand_edges> <opcode>zext</opcode> </item> <item class_id_reference="9" object_id="_29"> <Value> <Obj> <type>0</type> <id>47</id> <name>out_c2_V</name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>126</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>126</second> </item> </second> </item> </inlineStackInfo> <originalName>out_c2.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>684</item> <item>685</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_30"> <Value> <Obj> <type>0</type> <id>48</id> <name>tmp_11</name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>127</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>127</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>686</item> </oprand_edges> <opcode>trunc</opcode> </item> <item class_id_reference="9" object_id="_31"> <Value> <Obj> <type>0</type> <id>49</id> <name>p_Result_6</name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>128</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>128</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>688</item> <item>689</item> <item>690</item> <item>691</item> </oprand_edges> <opcode>partselect</opcode> </item> <item class_id_reference="9" object_id="_32"> <Value> <Obj> <type>0</type> <id>50</id> <name>tmp_12</name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>129</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>129</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>692</item> </oprand_edges> <opcode>trunc</opcode> </item> <item class_id_reference="9" object_id="_33"> <Value> <Obj> <type>0</type> <id>51</id> <name>p_Result_8</name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>130</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>130</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>693</item> <item>694</item> <item>695</item> <item>696</item> </oprand_edges> <opcode>partselect</opcode> </item> <item class_id_reference="9" object_id="_34"> <Value> <Obj> <type>0</type> <id>52</id> <name>p_Result_2</name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>130</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>130</second> </item> </second> </item> </inlineStackInfo> <originalName>__Result__</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>5</count> <item_version>0</item_version> <item>698</item> <item>699</item> <item>700</item> <item>701</item> <item>702</item> </oprand_edges> <opcode>bitconcatenate</opcode> </item> <item class_id_reference="9" object_id="_35"> <Value> <Obj> <type>0</type> <id>53</id> <name></name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>130</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>130</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>7</count> <item_version>0</item_version> <item>703</item> <item>704</item> <item>705</item> <item>706</item> <item>707</item> <item>708</item> <item>709</item> </oprand_edges> <opcode>write</opcode> </item> <item class_id_reference="9" object_id="_36"> <Value> <Obj> <type>0</type> <id>55</id> <name></name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>114</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>114</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>710</item> <item>711</item> <item>712</item> </oprand_edges> <opcode>br</opcode> </item> <item class_id_reference="9" object_id="_37"> <Value> <Obj> <type>0</type> <id>59</id> <name>empty_25</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>26</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>615</item> <item>616</item> <item>617</item> <item>618</item> </oprand_edges> <opcode>read</opcode> </item> <item class_id_reference="9" object_id="_38"> <Value> <Obj> <type>0</type> <id>60</id> <name>in_stream_data_V_val2</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>24</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>619</item> </oprand_edges> <opcode>extractvalue</opcode> </item> <item class_id_reference="9" object_id="_39"> <Value> <Obj> <type>0</type> <id>61</id> <name>in_stream_user_V_val2</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>620</item> </oprand_edges> <opcode>extractvalue</opcode> </item> <item class_id_reference="9" object_id="_40"> <Value> <Obj> <type>0</type> <id>62</id> <name>tmp_8</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> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>621</item> </oprand_edges> <opcode>trunc</opcode> </item> <item class_id_reference="9" object_id="_41"> <Value> <Obj> <type>0</type> <id>63</id> <name>empty_26</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>26</bitwidth> </Value> <oprand_edges> <count>5</count> <item_version>0</item_version> <item>622</item> <item>623</item> <item>624</item> <item>625</item> <item>924</item> </oprand_edges> <opcode>read</opcode> </item> <item class_id_reference="9" object_id="_42"> <Value> <Obj> <type>0</type> <id>64</id> <name>in_stream_data_V_val3</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>24</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>626</item> </oprand_edges> <opcode>extractvalue</opcode> </item> <item class_id_reference="9" object_id="_43"> <Value> <Obj> <type>0</type> <id>65</id> <name>in_stream_user_V_val3</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>627</item> </oprand_edges> <opcode>extractvalue</opcode> </item> <item class_id_reference="9" object_id="_44"> <Value> <Obj> <type>0</type> <id>66</id> <name>in_stream_last_V_val2</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>628</item> </oprand_edges> <opcode>extractvalue</opcode> </item> <item class_id_reference="9" object_id="_45"> <Value> <Obj> <type>0</type> <id>67</id> <name>user_1</name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>102</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</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>629</item> <item>630</item> </oprand_edges> <opcode>or</opcode> </item> <item class_id_reference="9" object_id="_46"> <Value> <Obj> <type>0</type> <id>68</id> <name>tmp_10</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> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>631</item> </oprand_edges> <opcode>trunc</opcode> </item> <item class_id_reference="9" object_id="_47"> <Value> <Obj> <type>0</type> <id>69</id> <name>p_Result_35_1</name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>104</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>104</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>633</item> <item>634</item> <item>635</item> </oprand_edges> <opcode>bitconcatenate</opcode> </item> <item class_id_reference="9" object_id="_48"> <Value> <Obj> <type>0</type> <id>70</id> <name></name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>104</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>104</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>7</count> <item_version>0</item_version> <item>636</item> <item>637</item> <item>638</item> <item>639</item> <item>640</item> <item>641</item> <item>642</item> </oprand_edges> <opcode>write</opcode> </item> <item class_id_reference="9" object_id="_49"> <Value> <Obj> <type>0</type> <id>72</id> <name></name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>97</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>97</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>643</item> <item>644</item> <item>645</item> </oprand_edges> <opcode>br</opcode> </item> <item class_id_reference="9" object_id="_50"> <Value> <Obj> <type>0</type> <id>74</id> <name>p_0464_s</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>1</count> <item_version>0</item_version> <item>253</item> </oprand_edges> <opcode>alloca</opcode> </item> <item class_id_reference="9" object_id="_51"> <Value> <Obj> <type>0</type> <id>75</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>254</item> </oprand_edges> <opcode>br</opcode> </item> <item class_id_reference="9" object_id="_52"> <Value> <Obj> <type>0</type> <id>77</id> <name>p_0464_load</name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>86</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>86</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>490</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_53"> <Value> <Obj> <type>0</type> <id>80</id> <name>empty_20</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>26</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>491</item> <item>492</item> <item>493</item> <item>494</item> </oprand_edges> <opcode>read</opcode> </item> <item class_id_reference="9" object_id="_54"> <Value> <Obj> <type>0</type> <id>81</id> <name>in_stream_data_V_val6</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>24</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>495</item> </oprand_edges> <opcode>extractvalue</opcode> </item> <item class_id_reference="9" object_id="_55"> <Value> <Obj> <type>0</type> <id>82</id> <name>in_stream_user_V_val6</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>496</item> </oprand_edges> <opcode>extractvalue</opcode> </item> <item class_id_reference="9" object_id="_56"> <Value> <Obj> <type>0</type> <id>83</id> <name>in_stream_last_V_val4</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>497</item> </oprand_edges> <opcode>extractvalue</opcode> </item> <item class_id_reference="9" object_id="_57"> <Value> <Obj> <type>0</type> <id>84</id> <name>tmp_15</name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>86</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>86</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>498</item> </oprand_edges> <opcode>trunc</opcode> </item> <item class_id_reference="9" object_id="_58"> <Value> <Obj> <type>0</type> <id>85</id> <name>p_Result_9</name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>86</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>86</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>5</count> <item_version>0</item_version> <item>500</item> <item>501</item> <item>502</item> <item>503</item> <item>505</item> </oprand_edges> <opcode>partset</opcode> </item> <item class_id_reference="9" object_id="_59"> <Value> <Obj> <type>0</type> <id>86</id> <name></name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>83</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>83</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>506</item> <item>507</item> <item>508</item> </oprand_edges> <opcode>br</opcode> </item> <item class_id_reference="9" object_id="_60"> <Value> <Obj> <type>0</type> <id>88</id> <name>empty_21</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>26</bitwidth> </Value> <oprand_edges> <count>5</count> <item_version>0</item_version> <item>509</item> <item>510</item> <item>511</item> <item>512</item> <item>927</item> </oprand_edges> <opcode>read</opcode> </item> <item class_id_reference="9" object_id="_61"> <Value> <Obj> <type>0</type> <id>89</id> <name>in_stream_data_V_val8</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>24</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>513</item> </oprand_edges> <opcode>extractvalue</opcode> </item> <item class_id_reference="9" object_id="_62"> <Value> <Obj> <type>0</type> <id>90</id> <name>in_stream_user_V_val8</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>514</item> </oprand_edges> <opcode>extractvalue</opcode> </item> <item class_id_reference="9" object_id="_63"> <Value> <Obj> <type>0</type> <id>91</id> <name>in_stream_last_V_val6</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>515</item> </oprand_edges> <opcode>extractvalue</opcode> </item> <item class_id_reference="9" object_id="_64"> <Value> <Obj> <type>0</type> <id>92</id> <name>user_3_1</name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>84</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</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>516</item> <item>517</item> </oprand_edges> <opcode>or</opcode> </item> <item class_id_reference="9" object_id="_65"> <Value> <Obj> <type>0</type> <id>93</id> <name>tmp_18</name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>86</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>86</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>518</item> </oprand_edges> <opcode>trunc</opcode> </item> <item class_id_reference="9" object_id="_66"> <Value> <Obj> <type>0</type> <id>94</id> <name>p_Result_33_1</name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>86</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>86</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>5</count> <item_version>0</item_version> <item>519</item> <item>520</item> <item>521</item> <item>523</item> <item>525</item> </oprand_edges> <opcode>partset</opcode> </item> <item class_id_reference="9" object_id="_67"> <Value> <Obj> <type>0</type> <id>95</id> <name></name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>88</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>88</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>526</item> </oprand_edges> <opcode>br</opcode> </item> <item class_id_reference="9" object_id="_68"> <Value> <Obj> <type>0</type> <id>97</id> <name>p_0464_2_1</name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>86</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>86</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>527</item> <item>528</item> <item>529</item> <item>530</item> </oprand_edges> <opcode>phi</opcode> </item> <item class_id_reference="9" object_id="_69"> <Value> <Obj> <type>0</type> <id>98</id> <name>last_6_1</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>531</item> <item>532</item> <item>533</item> <item>534</item> </oprand_edges> <opcode>phi</opcode> </item> <item class_id_reference="9" object_id="_70"> <Value> <Obj> <type>0</type> <id>99</id> <name>user_1_1</name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>84</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>84</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>535</item> <item>536</item> <item>537</item> <item>538</item> </oprand_edges> <opcode>phi</opcode> </item> <item class_id_reference="9" object_id="_71"> <Value> <Obj> <type>0</type> <id>100</id> <name></name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>83</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>83</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>539</item> <item>540</item> <item>541</item> </oprand_edges> <opcode>br</opcode> </item> <item class_id_reference="9" object_id="_72"> <Value> <Obj> <type>0</type> <id>102</id> <name>empty_22</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>26</bitwidth> </Value> <oprand_edges> <count>6</count> <item_version>0</item_version> <item>542</item> <item>543</item> <item>544</item> <item>545</item> <item>928</item> <item>931</item> </oprand_edges> <opcode>read</opcode> </item> <item class_id_reference="9" object_id="_73"> <Value> <Obj> <type>0</type> <id>103</id> <name>in_stream_data_V_val10</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>24</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>546</item> </oprand_edges> <opcode>extractvalue</opcode> </item> <item class_id_reference="9" object_id="_74"> <Value> <Obj> <type>0</type> <id>104</id> <name>in_stream_user_V_val10</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>547</item> </oprand_edges> <opcode>extractvalue</opcode> </item> <item class_id_reference="9" object_id="_75"> <Value> <Obj> <type>0</type> <id>105</id> <name>in_stream_last_V_val8</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>548</item> </oprand_edges> <opcode>extractvalue</opcode> </item> <item class_id_reference="9" object_id="_76"> <Value> <Obj> <type>0</type> <id>106</id> <name>user_3_2</name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>84</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</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>549</item> <item>550</item> </oprand_edges> <opcode>or</opcode> </item> <item class_id_reference="9" object_id="_77"> <Value> <Obj> <type>0</type> <id>107</id> <name>tmp_21</name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>86</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>86</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>551</item> </oprand_edges> <opcode>trunc</opcode> </item> <item class_id_reference="9" object_id="_78"> <Value> <Obj> <type>0</type> <id>108</id> <name>p_Result_33_2</name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>86</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>86</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>5</count> <item_version>0</item_version> <item>552</item> <item>553</item> <item>554</item> <item>556</item> <item>557</item> </oprand_edges> <opcode>partset</opcode> </item> <item class_id_reference="9" object_id="_79"> <Value> <Obj> <type>0</type> <id>109</id> <name></name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>88</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>88</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>558</item> </oprand_edges> <opcode>br</opcode> </item> <item class_id_reference="9" object_id="_80"> <Value> <Obj> <type>0</type> <id>111</id> <name>p_0464_2_2</name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>86</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>86</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>559</item> <item>560</item> <item>561</item> <item>562</item> </oprand_edges> <opcode>phi</opcode> </item> <item class_id_reference="9" object_id="_81"> <Value> <Obj> <type>0</type> <id>112</id> <name>last_6_2</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>563</item> <item>564</item> <item>565</item> <item>566</item> </oprand_edges> <opcode>phi</opcode> </item> <item class_id_reference="9" object_id="_82"> <Value> <Obj> <type>0</type> <id>113</id> <name>user_1_2</name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>84</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>84</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>567</item> <item>568</item> <item>569</item> <item>570</item> </oprand_edges> <opcode>phi</opcode> </item> <item class_id_reference="9" object_id="_83"> <Value> <Obj> <type>0</type> <id>114</id> <name></name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>83</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>83</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>571</item> <item>572</item> <item>573</item> </oprand_edges> <opcode>br</opcode> </item> <item class_id_reference="9" object_id="_84"> <Value> <Obj> <type>0</type> <id>116</id> <name>empty_23</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>26</bitwidth> </Value> <oprand_edges> <count>7</count> <item_version>0</item_version> <item>574</item> <item>575</item> <item>576</item> <item>577</item> <item>930</item> <item>932</item> <item>933</item> </oprand_edges> <opcode>read</opcode> </item> <item class_id_reference="9" object_id="_85"> <Value> <Obj> <type>0</type> <id>117</id> <name>in_stream_data_V_val12</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>24</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>578</item> </oprand_edges> <opcode>extractvalue</opcode> </item> <item class_id_reference="9" object_id="_86"> <Value> <Obj> <type>0</type> <id>118</id> <name>in_stream_user_V_val12</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>579</item> </oprand_edges> <opcode>extractvalue</opcode> </item> <item class_id_reference="9" object_id="_87"> <Value> <Obj> <type>0</type> <id>119</id> <name>in_stream_last_V_val10</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>580</item> </oprand_edges> <opcode>extractvalue</opcode> </item> <item class_id_reference="9" object_id="_88"> <Value> <Obj> <type>0</type> <id>120</id> <name>user_3_3</name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>84</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</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>581</item> <item>582</item> </oprand_edges> <opcode>or</opcode> </item> <item class_id_reference="9" object_id="_89"> <Value> <Obj> <type>0</type> <id>121</id> <name>tmp_24</name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>86</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>86</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>583</item> </oprand_edges> <opcode>trunc</opcode> </item> <item class_id_reference="9" object_id="_90"> <Value> <Obj> <type>0</type> <id>122</id> <name>p_Result_33_3</name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>86</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>86</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>5</count> <item_version>0</item_version> <item>584</item> <item>585</item> <item>586</item> <item>587</item> <item>589</item> </oprand_edges> <opcode>partset</opcode> </item> <item class_id_reference="9" object_id="_91"> <Value> <Obj> <type>0</type> <id>123</id> <name></name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>88</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>88</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>590</item> </oprand_edges> <opcode>br</opcode> </item> <item class_id_reference="9" object_id="_92"> <Value> <Obj> <type>0</type> <id>125</id> <name>p_0464_2_3</name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>86</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>86</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>591</item> <item>592</item> <item>593</item> <item>594</item> </oprand_edges> <opcode>phi</opcode> </item> <item class_id_reference="9" object_id="_93"> <Value> <Obj> <type>0</type> <id>126</id> <name>last_6_3</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>595</item> <item>596</item> <item>597</item> <item>598</item> </oprand_edges> <opcode>phi</opcode> </item> <item class_id_reference="9" object_id="_94"> <Value> <Obj> <type>0</type> <id>127</id> <name>user_1_3</name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>84</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>84</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>599</item> <item>600</item> <item>601</item> <item>602</item> </oprand_edges> <opcode>phi</opcode> </item> <item class_id_reference="9" object_id="_95"> <Value> <Obj> <type>0</type> <id>128</id> <name></name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>86</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>86</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>7</count> <item_version>0</item_version> <item>603</item> <item>604</item> <item>605</item> <item>606</item> <item>607</item> <item>608</item> <item>609</item> </oprand_edges> <opcode>write</opcode> </item> <item class_id_reference="9" object_id="_96"> <Value> <Obj> <type>0</type> <id>130</id> <name></name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>86</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</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>610</item> <item>611</item> <item>929</item> </oprand_edges> <opcode>store</opcode> </item> <item class_id_reference="9" object_id="_97"> <Value> <Obj> <type>0</type> <id>131</id> <name></name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>78</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>78</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>612</item> <item>613</item> <item>614</item> </oprand_edges> <opcode>br</opcode> </item> <item class_id_reference="9" object_id="_98"> <Value> <Obj> <type>0</type> <id>135</id> <name>empty_18</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>26</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>469</item> <item>470</item> <item>471</item> <item>472</item> </oprand_edges> <opcode>read</opcode> </item> <item class_id_reference="9" object_id="_99"> <Value> <Obj> <type>0</type> <id>136</id> <name>in_stream_data_V_val1</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>24</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>473</item> </oprand_edges> <opcode>extractvalue</opcode> </item> <item class_id_reference="9" object_id="_100"> <Value> <Obj> <type>0</type> <id>137</id> <name>in_stream_user_V_val1</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>474</item> </oprand_edges> <opcode>extractvalue</opcode> </item> <item class_id_reference="9" object_id="_101"> <Value> <Obj> <type>0</type> <id>138</id> <name>in_stream_last_V_val1</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>475</item> </oprand_edges> <opcode>extractvalue</opcode> </item> <item class_id_reference="9" object_id="_102"> <Value> <Obj> <type>0</type> <id>139</id> <name>p_Result_s</name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>68</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>68</second> </item> </second> </item> </inlineStackInfo> <originalName>__Result__</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>477</item> <item>478</item> <item>479</item> </oprand_edges> <opcode>bitconcatenate</opcode> </item> <item class_id_reference="9" object_id="_103"> <Value> <Obj> <type>0</type> <id>140</id> <name></name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>68</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>68</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>7</count> <item_version>0</item_version> <item>480</item> <item>481</item> <item>482</item> <item>483</item> <item>484</item> <item>485</item> <item>486</item> </oprand_edges> <opcode>write</opcode> </item> <item class_id_reference="9" object_id="_104"> <Value> <Obj> <type>0</type> <id>142</id> <name></name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>64</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>64</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>487</item> <item>488</item> <item>489</item> </oprand_edges> <opcode>br</opcode> </item> <item class_id_reference="9" object_id="_105"> <Value> <Obj> <type>0</type> <id>144</id> <name>p_084_s</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>96</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>249</item> </oprand_edges> <opcode>alloca</opcode> </item> <item class_id_reference="9" object_id="_106"> <Value> <Obj> <type>0</type> <id>145</id> <name>p_067_s</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>250</item> </oprand_edges> <opcode>alloca</opcode> </item> <item class_id_reference="9" object_id="_107"> <Value> <Obj> <type>0</type> <id>146</id> <name>p_071_s</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>251</item> </oprand_edges> <opcode>alloca</opcode> </item> <item class_id_reference="9" object_id="_108"> <Value> <Obj> <type>0</type> <id>147</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>252</item> </oprand_edges> <opcode>br</opcode> </item> <item class_id_reference="9" object_id="_109"> <Value> <Obj> <type>0</type> <id>149</id> <name>p_084_load</name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>47</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>47</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>96</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>255</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_110"> <Value> <Obj> <type>0</type> <id>150</id> <name>p_067_load</name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>49</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>256</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_111"> <Value> <Obj> <type>0</type> <id>151</id> <name>p_071_load</name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>48</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>48</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>257</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_112"> <Value> <Obj> <type>0</type> <id>154</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>26</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>259</item> <item>260</item> <item>261</item> <item>262</item> </oprand_edges> <opcode>read</opcode> </item> <item class_id_reference="9" object_id="_113"> <Value> <Obj> <type>0</type> <id>155</id> <name>in_stream_data_V_val</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>24</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>263</item> </oprand_edges> <opcode>extractvalue</opcode> </item> <item class_id_reference="9" object_id="_114"> <Value> <Obj> <type>0</type> <id>156</id> <name>in_stream_user_V_val</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>264</item> </oprand_edges> <opcode>extractvalue</opcode> </item> <item class_id_reference="9" object_id="_115"> <Value> <Obj> <type>0</type> <id>157</id> <name>in_stream_last_V_val</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>265</item> </oprand_edges> <opcode>extractvalue</opcode> </item> <item class_id_reference="9" object_id="_116"> <Value> <Obj> <type>0</type> <id>158</id> <name>p_Result_7</name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>47</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>47</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>96</bitwidth> </Value> <oprand_edges> <count>5</count> <item_version>0</item_version> <item>267</item> <item>268</item> <item>269</item> <item>270</item> <item>272</item> </oprand_edges> <opcode>partset</opcode> </item> <item class_id_reference="9" object_id="_117"> <Value> <Obj> <type>0</type> <id>159</id> <name>tmp_13</name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>48</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>48</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>274</item> <item>275</item> <item>276</item> <item>277</item> </oprand_edges> <opcode>bitset</opcode> </item> <item class_id_reference="9" object_id="_118"> <Value> <Obj> <type>0</type> <id>160</id> <name>tmp_14</name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>49</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>278</item> <item>279</item> <item>280</item> <item>281</item> </oprand_edges> <opcode>bitset</opcode> </item> <item class_id_reference="9" object_id="_119"> <Value> <Obj> <type>0</type> <id>161</id> <name></name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>46</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>46</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>282</item> <item>283</item> <item>284</item> </oprand_edges> <opcode>br</opcode> </item> <item class_id_reference="9" object_id="_120"> <Value> <Obj> <type>0</type> <id>163</id> <name>empty_14</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>26</bitwidth> </Value> <oprand_edges> <count>5</count> <item_version>0</item_version> <item>285</item> <item>286</item> <item>287</item> <item>288</item> <item>934</item> </oprand_edges> <opcode>read</opcode> </item> <item class_id_reference="9" object_id="_121"> <Value> <Obj> <type>0</type> <id>164</id> <name>in_stream_data_V_val7</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>24</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>289</item> </oprand_edges> <opcode>extractvalue</opcode> </item> <item class_id_reference="9" object_id="_122"> <Value> <Obj> <type>0</type> <id>165</id> <name>in_stream_user_V_val7</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>290</item> </oprand_edges> <opcode>extractvalue</opcode> </item> <item class_id_reference="9" object_id="_123"> <Value> <Obj> <type>0</type> <id>166</id> <name>in_stream_last_V_val5</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>291</item> </oprand_edges> <opcode>extractvalue</opcode> </item> <item class_id_reference="9" object_id="_124"> <Value> <Obj> <type>0</type> <id>167</id> <name>p_Result_26_1</name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>47</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>47</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>96</bitwidth> </Value> <oprand_edges> <count>5</count> <item_version>0</item_version> <item>292</item> <item>293</item> <item>294</item> <item>296</item> <item>298</item> </oprand_edges> <opcode>partset</opcode> </item> <item class_id_reference="9" object_id="_125"> <Value> <Obj> <type>0</type> <id>168</id> <name>tmp_16</name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>48</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>48</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>299</item> <item>300</item> <item>301</item> <item>302</item> </oprand_edges> <opcode>bitset</opcode> </item> <item class_id_reference="9" object_id="_126"> <Value> <Obj> <type>0</type> <id>169</id> <name>tmp_17</name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>49</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>303</item> <item>304</item> <item>305</item> <item>306</item> </oprand_edges> <opcode>bitset</opcode> </item> <item class_id_reference="9" object_id="_127"> <Value> <Obj> <type>0</type> <id>170</id> <name></name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>52</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>52</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>307</item> </oprand_edges> <opcode>br</opcode> </item> <item class_id_reference="9" object_id="_128"> <Value> <Obj> <type>0</type> <id>172</id> <name>p_071_2_1</name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>48</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>48</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>308</item> <item>309</item> <item>310</item> <item>311</item> </oprand_edges> <opcode>phi</opcode> </item> <item class_id_reference="9" object_id="_129"> <Value> <Obj> <type>0</type> <id>173</id> <name>p_067_2_1</name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>49</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>312</item> <item>313</item> <item>314</item> <item>315</item> </oprand_edges> <opcode>phi</opcode> </item> <item class_id_reference="9" object_id="_130"> <Value> <Obj> <type>0</type> <id>174</id> <name>p_084_2_1</name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>47</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>47</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>96</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>316</item> <item>317</item> <item>318</item> <item>319</item> </oprand_edges> <opcode>phi</opcode> </item> <item class_id_reference="9" object_id="_131"> <Value> <Obj> <type>0</type> <id>175</id> <name>last_2_1</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>320</item> <item>321</item> <item>322</item> <item>323</item> </oprand_edges> <opcode>phi</opcode> </item> <item class_id_reference="9" object_id="_132"> <Value> <Obj> <type>0</type> <id>176</id> <name></name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>46</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>46</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>324</item> <item>325</item> <item>326</item> </oprand_edges> <opcode>br</opcode> </item> <item class_id_reference="9" object_id="_133"> <Value> <Obj> <type>0</type> <id>178</id> <name>empty_15</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>26</bitwidth> </Value> <oprand_edges> <count>6</count> <item_version>0</item_version> <item>327</item> <item>328</item> <item>329</item> <item>330</item> <item>935</item> <item>940</item> </oprand_edges> <opcode>read</opcode> </item> <item class_id_reference="9" object_id="_134"> <Value> <Obj> <type>0</type> <id>179</id> <name>in_stream_data_V_val9</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>24</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>331</item> </oprand_edges> <opcode>extractvalue</opcode> </item> <item class_id_reference="9" object_id="_135"> <Value> <Obj> <type>0</type> <id>180</id> <name>in_stream_user_V_val9</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>332</item> </oprand_edges> <opcode>extractvalue</opcode> </item> <item class_id_reference="9" object_id="_136"> <Value> <Obj> <type>0</type> <id>181</id> <name>in_stream_last_V_val7</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>333</item> </oprand_edges> <opcode>extractvalue</opcode> </item> <item class_id_reference="9" object_id="_137"> <Value> <Obj> <type>0</type> <id>182</id> <name>p_Result_26_2</name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>47</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>47</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>96</bitwidth> </Value> <oprand_edges> <count>5</count> <item_version>0</item_version> <item>334</item> <item>335</item> <item>336</item> <item>338</item> <item>340</item> </oprand_edges> <opcode>partset</opcode> </item> <item class_id_reference="9" object_id="_138"> <Value> <Obj> <type>0</type> <id>183</id> <name>tmp_19</name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>48</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>48</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>341</item> <item>342</item> <item>343</item> <item>344</item> </oprand_edges> <opcode>bitset</opcode> </item> <item class_id_reference="9" object_id="_139"> <Value> <Obj> <type>0</type> <id>184</id> <name>tmp_20</name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>49</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>345</item> <item>346</item> <item>347</item> <item>348</item> </oprand_edges> <opcode>bitset</opcode> </item> <item class_id_reference="9" object_id="_140"> <Value> <Obj> <type>0</type> <id>185</id> <name></name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>52</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>52</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>349</item> </oprand_edges> <opcode>br</opcode> </item> <item class_id_reference="9" object_id="_141"> <Value> <Obj> <type>0</type> <id>187</id> <name>p_071_2_2</name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>48</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>48</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>350</item> <item>351</item> <item>352</item> <item>353</item> </oprand_edges> <opcode>phi</opcode> </item> <item class_id_reference="9" object_id="_142"> <Value> <Obj> <type>0</type> <id>188</id> <name>p_067_2_2</name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>49</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>354</item> <item>355</item> <item>356</item> <item>357</item> </oprand_edges> <opcode>phi</opcode> </item> <item class_id_reference="9" object_id="_143"> <Value> <Obj> <type>0</type> <id>189</id> <name>p_084_2_2</name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>47</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>47</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>96</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>358</item> <item>359</item> <item>360</item> <item>361</item> </oprand_edges> <opcode>phi</opcode> </item> <item class_id_reference="9" object_id="_144"> <Value> <Obj> <type>0</type> <id>190</id> <name>last_2_2</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>362</item> <item>363</item> <item>364</item> <item>365</item> </oprand_edges> <opcode>phi</opcode> </item> <item class_id_reference="9" object_id="_145"> <Value> <Obj> <type>0</type> <id>191</id> <name></name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>46</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>46</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>366</item> <item>367</item> <item>368</item> </oprand_edges> <opcode>br</opcode> </item> <item class_id_reference="9" object_id="_146"> <Value> <Obj> <type>0</type> <id>193</id> <name>empty_16</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>26</bitwidth> </Value> <oprand_edges> <count>7</count> <item_version>0</item_version> <item>369</item> <item>370</item> <item>371</item> <item>372</item> <item>939</item> <item>941</item> <item>942</item> </oprand_edges> <opcode>read</opcode> </item> <item class_id_reference="9" object_id="_147"> <Value> <Obj> <type>0</type> <id>194</id> <name>in_stream_data_V_val11</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>24</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>373</item> </oprand_edges> <opcode>extractvalue</opcode> </item> <item class_id_reference="9" object_id="_148"> <Value> <Obj> <type>0</type> <id>195</id> <name>in_stream_user_V_val11</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>374</item> </oprand_edges> <opcode>extractvalue</opcode> </item> <item class_id_reference="9" object_id="_149"> <Value> <Obj> <type>0</type> <id>196</id> <name>in_stream_last_V_val9</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>375</item> </oprand_edges> <opcode>extractvalue</opcode> </item> <item class_id_reference="9" object_id="_150"> <Value> <Obj> <type>0</type> <id>197</id> <name>p_Result_26_3</name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>47</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>47</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>96</bitwidth> </Value> <oprand_edges> <count>5</count> <item_version>0</item_version> <item>376</item> <item>377</item> <item>378</item> <item>380</item> <item>382</item> </oprand_edges> <opcode>partset</opcode> </item> <item class_id_reference="9" object_id="_151"> <Value> <Obj> <type>0</type> <id>198</id> <name>tmp_22</name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>48</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>48</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>383</item> <item>384</item> <item>385</item> <item>386</item> </oprand_edges> <opcode>bitset</opcode> </item> <item class_id_reference="9" object_id="_152"> <Value> <Obj> <type>0</type> <id>199</id> <name>tmp_23</name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>49</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>387</item> <item>388</item> <item>389</item> <item>390</item> </oprand_edges> <opcode>bitset</opcode> </item> <item class_id_reference="9" object_id="_153"> <Value> <Obj> <type>0</type> <id>200</id> <name></name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>52</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>52</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>391</item> </oprand_edges> <opcode>br</opcode> </item> <item class_id_reference="9" object_id="_154"> <Value> <Obj> <type>0</type> <id>202</id> <name>p_071_2_3</name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>48</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>48</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>392</item> <item>393</item> <item>394</item> <item>395</item> </oprand_edges> <opcode>phi</opcode> </item> <item class_id_reference="9" object_id="_155"> <Value> <Obj> <type>0</type> <id>203</id> <name>p_067_2_3</name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>49</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>396</item> <item>397</item> <item>398</item> <item>399</item> </oprand_edges> <opcode>phi</opcode> </item> <item class_id_reference="9" object_id="_156"> <Value> <Obj> <type>0</type> <id>204</id> <name>p_084_2_3</name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>47</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>47</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>96</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>400</item> <item>401</item> <item>402</item> <item>403</item> </oprand_edges> <opcode>phi</opcode> </item> <item class_id_reference="9" object_id="_157"> <Value> <Obj> <type>0</type> <id>205</id> <name>last_2_3</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>404</item> <item>405</item> <item>406</item> <item>407</item> </oprand_edges> <opcode>phi</opcode> </item> <item class_id_reference="9" object_id="_158"> <Value> <Obj> <type>0</type> <id>206</id> <name>tmp_25</name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>55</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>55</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>408</item> </oprand_edges> <opcode>trunc</opcode> </item> <item class_id_reference="9" object_id="_159"> <Value> <Obj> <type>0</type> <id>207</id> <name>tmp_26</name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>56</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>56</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>409</item> </oprand_edges> <opcode>trunc</opcode> </item> <item class_id_reference="9" object_id="_160"> <Value> <Obj> <type>0</type> <id>208</id> <name>tmp_27</name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>57</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>57</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>411</item> <item>412</item> <item>413</item> </oprand_edges> <opcode>bitselect</opcode> </item> <item class_id_reference="9" object_id="_161"> <Value> <Obj> <type>0</type> <id>209</id> <name></name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>55</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>55</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>7</count> <item_version>0</item_version> <item>415</item> <item>416</item> <item>417</item> <item>418</item> <item>419</item> <item>420</item> <item>421</item> </oprand_edges> <opcode>write</opcode> </item> <item class_id_reference="9" object_id="_162"> <Value> <Obj> <type>0</type> <id>210</id> <name>p_Result_29_1</name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>55</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>55</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>423</item> <item>424</item> <item>426</item> <item>428</item> </oprand_edges> <opcode>partselect</opcode> </item> <item class_id_reference="9" object_id="_163"> <Value> <Obj> <type>0</type> <id>211</id> <name>tmp_28</name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>56</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>56</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>429</item> <item>430</item> <item>431</item> </oprand_edges> <opcode>bitselect</opcode> </item> <item class_id_reference="9" object_id="_164"> <Value> <Obj> <type>0</type> <id>212</id> <name>tmp_29</name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>57</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>57</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>432</item> <item>433</item> <item>434</item> </oprand_edges> <opcode>bitselect</opcode> </item> <item class_id_reference="9" object_id="_165"> <Value> <Obj> <type>0</type> <id>213</id> <name></name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>55</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>55</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>8</count> <item_version>0</item_version> <item>435</item> <item>436</item> <item>437</item> <item>438</item> <item>439</item> <item>440</item> <item>441</item> <item>926</item> </oprand_edges> <opcode>write</opcode> </item> <item class_id_reference="9" object_id="_166"> <Value> <Obj> <type>0</type> <id>214</id> <name>p_Result_29_2</name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>55</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>55</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>442</item> <item>443</item> <item>445</item> <item>446</item> </oprand_edges> <opcode>partselect</opcode> </item> <item class_id_reference="9" object_id="_167"> <Value> <Obj> <type>0</type> <id>215</id> <name>tmp_30</name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>56</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>56</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>447</item> <item>448</item> <item>449</item> </oprand_edges> <opcode>bitselect</opcode> </item> <item class_id_reference="9" object_id="_168"> <Value> <Obj> <type>0</type> <id>216</id> <name>tmp_31</name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>57</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>57</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>450</item> <item>451</item> <item>452</item> </oprand_edges> <opcode>bitselect</opcode> </item> <item class_id_reference="9" object_id="_169"> <Value> <Obj> <type>0</type> <id>217</id> <name></name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>55</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>55</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>8</count> <item_version>0</item_version> <item>453</item> <item>454</item> <item>455</item> <item>456</item> <item>457</item> <item>458</item> <item>459</item> <item>925</item> </oprand_edges> <opcode>write</opcode> </item> <item class_id_reference="9" object_id="_170"> <Value> <Obj> <type>0</type> <id>219</id> <name></name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>48</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>48</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>460</item> <item>461</item> <item>938</item> </oprand_edges> <opcode>store</opcode> </item> <item class_id_reference="9" object_id="_171"> <Value> <Obj> <type>0</type> <id>220</id> <name></name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>49</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>462</item> <item>463</item> <item>937</item> </oprand_edges> <opcode>store</opcode> </item> <item class_id_reference="9" object_id="_172"> <Value> <Obj> <type>0</type> <id>221</id> <name></name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>47</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>47</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>464</item> <item>465</item> <item>936</item> </oprand_edges> <opcode>store</opcode> </item> <item class_id_reference="9" object_id="_173"> <Value> <Obj> <type>0</type> <id>222</id> <name></name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>40</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>40</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>466</item> <item>467</item> <item>468</item> </oprand_edges> <opcode>br</opcode> </item> <item class_id_reference="9" object_id="_174"> <Value> <Obj> <type>0</type> <id>224</id> <name></name> <fileName>pixel_pack/pixel_pack.cpp</fileName> <fileDirectory>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</fileDirectory> <lineNumber>138</lineNumber> <contextFuncName>pixel_pack</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/matti/TD/VHDL/PYNQ/boards/ip/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>pixel_pack/pixel_pack.cpp</first> <second>pixel_pack</second> </first> <second>138</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>0</count> <item_version>0</item_version> </oprand_edges> <opcode>ret</opcode> </item> </nodes> <consts class_id="15" tracking_level="0" version="0"> <count>20</count> <item_version>0</item_version> <item class_id="16" tracking_level="1" version="0" object_id="_175"> <Value> <Obj> <type>2</type> <id>234</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="_176"> <Value> <Obj> <type>2</type> <id>237</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="_177"> <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>2</content> </item> <item class_id_reference="16" object_id="_178"> <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>32</bitwidth> </Value> <const_type>0</const_type> <content>3</content> </item> <item class_id_reference="16" object_id="_179"> <Value> <Obj> <type>2</type> <id>246</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>4</content> </item> <item class_id_reference="16" object_id="_180"> <Value> <Obj> <type>2</type> <id>271</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>23</content> </item> <item class_id_reference="16" object_id="_181"> <Value> <Obj> <type>2</type> <id>295</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>24</content> </item> <item class_id_reference="16" object_id="_182"> <Value> <Obj> <type>2</type> <id>297</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>47</content> </item> <item class_id_reference="16" object_id="_183"> <Value> <Obj> <type>2</type> <id>337</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>48</content> </item> <item class_id_reference="16" object_id="_184"> <Value> <Obj> <type>2</type> <id>339</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>71</content> </item> <item class_id_reference="16" object_id="_185"> <Value> <Obj> <type>2</type> <id>379</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>72</content> </item> <item class_id_reference="16" object_id="_186"> <Value> <Obj> <type>2</type> <id>381</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>95</content> </item> <item class_id_reference="16" object_id="_187"> <Value> <Obj> <type>2</type> <id>425</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>32</content> </item> <item class_id_reference="16" object_id="_188"> <Value> <Obj> <type>2</type> <id>427</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>63</content> </item> <item class_id_reference="16" object_id="_189"> <Value> <Obj> <type>2</type> <id>444</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>64</content> </item> <item class_id_reference="16" object_id="_190"> <Value> <Obj> <type>2</type> <id>504</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>7</content> </item> <item class_id_reference="16" object_id="_191"> <Value> <Obj> <type>2</type> <id>522</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="_192"> <Value> <Obj> <type>2</type> <id>524</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="_193"> <Value> <Obj> <type>2</type> <id>555</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="_194"> <Value> <Obj> <type>2</type> <id>588</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>31</content> </item> </consts> <blocks class_id="17" tracking_level="0" version="0"> <count>21</count> <item_version>0</item_version> <item class_id="18" tracking_level="1" version="0" object_id="_195"> <Obj> <type>3</type> <id>27</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>3</count> <item_version>0</item_version> <item>9</item> <item>10</item> <item>26</item> </node_objs> </item> <item class_id_reference="18" object_id="_196"> <Obj> <type>3</type> <id>56</id> <name>.preheader</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>25</count> <item_version>0</item_version> <item>30</item> <item>31</item> <item>32</item> <item>33</item> <item>34</item> <item>35</item> <item>36</item> <item>37</item> <item>38</item> <item>39</item> <item>40</item> <item>41</item> <item>42</item> <item>43</item> <item>44</item> <item>45</item> <item>46</item> <item>47</item> <item>48</item> <item>49</item> <item>50</item> <item>51</item> <item>52</item> <item>53</item> <item>55</item> </node_objs> </item> <item class_id_reference="18" object_id="_197"> <Obj> <type>3</type> <id>73</id> <name>.preheader809</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>13</count> <item_version>0</item_version> <item>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>72</item> </node_objs> </item> <item class_id_reference="18" object_id="_198"> <Obj> <type>3</type> <id>76</id> <name>.preheader811.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>2</count> <item_version>0</item_version> <item>74</item> <item>75</item> </node_objs> </item> <item class_id_reference="18" object_id="_199"> <Obj> <type>3</type> <id>87</id> <name>._crit_edge842.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>8</count> <item_version>0</item_version> <item>77</item> <item>80</item> <item>81</item> <item>82</item> <item>83</item> <item>84</item> <item>85</item> <item>86</item> </node_objs> </item> <item class_id_reference="18" object_id="_200"> <Obj> <type>3</type> <id>96</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>88</item> <item>89</item> <item>90</item> <item>91</item> <item>92</item> <item>93</item> <item>94</item> <item>95</item> </node_objs> </item> <item class_id_reference="18" object_id="_201"> <Obj> <type>3</type> <id>101</id> <name>._crit_edge842.1</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>97</item> <item>98</item> <item>99</item> <item>100</item> </node_objs> </item> <item class_id_reference="18" object_id="_202"> <Obj> <type>3</type> <id>110</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>102</item> <item>103</item> <item>104</item> <item>105</item> <item>106</item> <item>107</item> <item>108</item> <item>109</item> </node_objs> </item> <item class_id_reference="18" object_id="_203"> <Obj> <type>3</type> <id>115</id> <name>._crit_edge842.2</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>111</item> <item>112</item> <item>113</item> <item>114</item> </node_objs> </item> <item class_id_reference="18" object_id="_204"> <Obj> <type>3</type> <id>124</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>116</item> <item>117</item> <item>118</item> <item>119</item> <item>120</item> <item>121</item> <item>122</item> <item>123</item> </node_objs> </item> <item class_id_reference="18" object_id="_205"> <Obj> <type>3</type> <id>132</id> <name>._crit_edge842.3</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>125</item> <item>126</item> <item>127</item> <item>128</item> <item>130</item> <item>131</item> </node_objs> </item> <item class_id_reference="18" object_id="_206"> <Obj> <type>3</type> <id>143</id> <name>.preheader813</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>135</item> <item>136</item> <item>137</item> <item>138</item> <item>139</item> <item>140</item> <item>142</item> </node_objs> </item> <item class_id_reference="18" object_id="_207"> <Obj> <type>3</type> <id>148</id> <name>.preheader818.preheader</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>4</count> <item_version>0</item_version> <item>144</item> <item>145</item> <item>146</item> <item>147</item> </node_objs> </item> <item class_id_reference="18" object_id="_208"> <Obj> <type>3</type> <id>162</id> <name>._crit_edge.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>11</count> <item_version>0</item_version> <item>149</item> <item>150</item> <item>151</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> </node_objs> </item> <item class_id_reference="18" object_id="_209"> <Obj> <type>3</type> <id>171</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>163</item> <item>164</item> <item>165</item> <item>166</item> <item>167</item> <item>168</item> <item>169</item> <item>170</item> </node_objs> </item> <item class_id_reference="18" object_id="_210"> <Obj> <type>3</type> <id>177</id> <name>._crit_edge.1</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>172</item> <item>173</item> <item>174</item> <item>175</item> <item>176</item> </node_objs> </item> <item class_id_reference="18" object_id="_211"> <Obj> <type>3</type> <id>186</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>178</item> <item>179</item> <item>180</item> <item>181</item> <item>182</item> <item>183</item> <item>184</item> <item>185</item> </node_objs> </item> <item class_id_reference="18" object_id="_212"> <Obj> <type>3</type> <id>192</id> <name>._crit_edge.2</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>187</item> <item>188</item> <item>189</item> <item>190</item> <item>191</item> </node_objs> </item> <item class_id_reference="18" object_id="_213"> <Obj> <type>3</type> <id>201</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>193</item> <item>194</item> <item>195</item> <item>196</item> <item>197</item> <item>198</item> <item>199</item> <item>200</item> </node_objs> </item> <item class_id_reference="18" object_id="_214"> <Obj> <type>3</type> <id>223</id> <name>.preheader815.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>20</count> <item_version>0</item_version> <item>202</item> <item>203</item> <item>204</item> <item>205</item> <item>206</item> <item>207</item> <item>208</item> <item>209</item> <item>210</item> <item>211</item> <item>212</item> <item>213</item> <item>214</item> <item>215</item> <item>216</item> <item>217</item> <item>219</item> <item>220</item> <item>221</item> <item>222</item> </node_objs> </item> <item class_id_reference="18" object_id="_215"> <Obj> <type>3</type> <id>225</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>1</count> <item_version>0</item_version> <item>224</item> </node_objs> </item> </blocks> <edges class_id="19" tracking_level="0" version="0"> <count>455</count> <item_version>0</item_version> <item class_id="20" tracking_level="1" version="0" object_id="_216"> <id>228</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>9</sink_obj> </item> <item class_id_reference="20" object_id="_217"> <id>231</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>10</sink_obj> </item> <item class_id_reference="20" object_id="_218"> <id>232</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>26</sink_obj> </item> <item class_id_reference="20" object_id="_219"> <id>233</id> <edge_type>2</edge_type> <source_obj>225</source_obj> <sink_obj>26</sink_obj> </item> <item class_id_reference="20" object_id="_220"> <id>235</id> <edge_type>1</edge_type> <source_obj>234</source_obj> <sink_obj>26</sink_obj> </item> <item class_id_reference="20" object_id="_221"> <id>236</id> <edge_type>2</edge_type> <source_obj>148</source_obj> <sink_obj>26</sink_obj> </item> <item class_id_reference="20" object_id="_222"> <id>238</id> <edge_type>1</edge_type> <source_obj>237</source_obj> <sink_obj>26</sink_obj> </item> <item class_id_reference="20" object_id="_223"> <id>239</id> <edge_type>2</edge_type> <source_obj>143</source_obj> <sink_obj>26</sink_obj> </item> <item class_id_reference="20" object_id="_224"> <id>241</id> <edge_type>1</edge_type> <source_obj>240</source_obj> <sink_obj>26</sink_obj> </item> <item class_id_reference="20" object_id="_225"> <id>242</id> <edge_type>2</edge_type> <source_obj>76</source_obj> <sink_obj>26</sink_obj> </item> <item class_id_reference="20" object_id="_226"> <id>244</id> <edge_type>1</edge_type> <source_obj>243</source_obj> <sink_obj>26</sink_obj> </item> <item class_id_reference="20" object_id="_227"> <id>245</id> <edge_type>2</edge_type> <source_obj>73</source_obj> <sink_obj>26</sink_obj> </item> <item class_id_reference="20" object_id="_228"> <id>247</id> <edge_type>1</edge_type> <source_obj>246</source_obj> <sink_obj>26</sink_obj> </item> <item class_id_reference="20" object_id="_229"> <id>248</id> <edge_type>2</edge_type> <source_obj>56</source_obj> <sink_obj>26</sink_obj> </item> <item class_id_reference="20" object_id="_230"> <id>249</id> <edge_type>1</edge_type> <source_obj>237</source_obj> <sink_obj>144</sink_obj> </item> <item class_id_reference="20" object_id="_231"> <id>250</id> <edge_type>1</edge_type> <source_obj>237</source_obj> <sink_obj>145</sink_obj> </item> <item class_id_reference="20" object_id="_232"> <id>251</id> <edge_type>1</edge_type> <source_obj>237</source_obj> <sink_obj>146</sink_obj> </item> <item class_id_reference="20" object_id="_233"> <id>252</id> <edge_type>2</edge_type> <source_obj>162</source_obj> <sink_obj>147</sink_obj> </item> <item class_id_reference="20" object_id="_234"> <id>253</id> <edge_type>1</edge_type> <source_obj>237</source_obj> <sink_obj>74</sink_obj> </item> <item class_id_reference="20" object_id="_235"> <id>254</id> <edge_type>2</edge_type> <source_obj>87</source_obj> <sink_obj>75</sink_obj> </item> <item class_id_reference="20" object_id="_236"> <id>255</id> <edge_type>1</edge_type> <source_obj>144</source_obj> <sink_obj>149</sink_obj> </item> <item class_id_reference="20" object_id="_237"> <id>256</id> <edge_type>1</edge_type> <source_obj>145</source_obj> <sink_obj>150</sink_obj> </item> <item class_id_reference="20" object_id="_238"> <id>257</id> <edge_type>1</edge_type> <source_obj>146</source_obj> <sink_obj>151</sink_obj> </item> <item class_id_reference="20" object_id="_239"> <id>260</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>154</sink_obj> </item> <item class_id_reference="20" object_id="_240"> <id>261</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>154</sink_obj> </item> <item class_id_reference="20" object_id="_241"> <id>262</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>154</sink_obj> </item> <item class_id_reference="20" object_id="_242"> <id>263</id> <edge_type>1</edge_type> <source_obj>154</source_obj> <sink_obj>155</sink_obj> </item> <item class_id_reference="20" object_id="_243"> <id>264</id> <edge_type>1</edge_type> <source_obj>154</source_obj> <sink_obj>156</sink_obj> </item> <item class_id_reference="20" object_id="_244"> <id>265</id> <edge_type>1</edge_type> <source_obj>154</source_obj> <sink_obj>157</sink_obj> </item> <item class_id_reference="20" object_id="_245"> <id>268</id> <edge_type>1</edge_type> <source_obj>149</source_obj> <sink_obj>158</sink_obj> </item> <item class_id_reference="20" object_id="_246"> <id>269</id> <edge_type>1</edge_type> <source_obj>155</source_obj> <sink_obj>158</sink_obj> </item> <item class_id_reference="20" object_id="_247"> <id>270</id> <edge_type>1</edge_type> <source_obj>234</source_obj> <sink_obj>158</sink_obj> </item> <item class_id_reference="20" object_id="_248"> <id>272</id> <edge_type>1</edge_type> <source_obj>271</source_obj> <sink_obj>158</sink_obj> </item> <item class_id_reference="20" object_id="_249"> <id>275</id> <edge_type>1</edge_type> <source_obj>151</source_obj> <sink_obj>159</sink_obj> </item> <item class_id_reference="20" object_id="_250"> <id>276</id> <edge_type>1</edge_type> <source_obj>234</source_obj> <sink_obj>159</sink_obj> </item> <item class_id_reference="20" object_id="_251"> <id>277</id> <edge_type>1</edge_type> <source_obj>156</source_obj> <sink_obj>159</sink_obj> </item> <item class_id_reference="20" object_id="_252"> <id>279</id> <edge_type>1</edge_type> <source_obj>150</source_obj> <sink_obj>160</sink_obj> </item> <item class_id_reference="20" object_id="_253"> <id>280</id> <edge_type>1</edge_type> <source_obj>234</source_obj> <sink_obj>160</sink_obj> </item> <item class_id_reference="20" object_id="_254"> <id>281</id> <edge_type>1</edge_type> <source_obj>157</source_obj> <sink_obj>160</sink_obj> </item> <item class_id_reference="20" object_id="_255"> <id>282</id> <edge_type>1</edge_type> <source_obj>157</source_obj> <sink_obj>161</sink_obj> </item> <item class_id_reference="20" object_id="_256"> <id>283</id> <edge_type>2</edge_type> <source_obj>171</source_obj> <sink_obj>161</sink_obj> </item> <item class_id_reference="20" object_id="_257"> <id>284</id> <edge_type>2</edge_type> <source_obj>177</source_obj> <sink_obj>161</sink_obj> </item> <item class_id_reference="20" object_id="_258"> <id>286</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>163</sink_obj> </item> <item class_id_reference="20" object_id="_259"> <id>287</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>163</sink_obj> </item> <item class_id_reference="20" object_id="_260"> <id>288</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>163</sink_obj> </item> <item class_id_reference="20" object_id="_261"> <id>289</id> <edge_type>1</edge_type> <source_obj>163</source_obj> <sink_obj>164</sink_obj> </item> <item class_id_reference="20" object_id="_262"> <id>290</id> <edge_type>1</edge_type> <source_obj>163</source_obj> <sink_obj>165</sink_obj> </item> <item class_id_reference="20" object_id="_263"> <id>291</id> <edge_type>1</edge_type> <source_obj>163</source_obj> <sink_obj>166</sink_obj> </item> <item class_id_reference="20" object_id="_264"> <id>293</id> <edge_type>1</edge_type> <source_obj>158</source_obj> <sink_obj>167</sink_obj> </item> <item class_id_reference="20" object_id="_265"> <id>294</id> <edge_type>1</edge_type> <source_obj>164</source_obj> <sink_obj>167</sink_obj> </item> <item class_id_reference="20" object_id="_266"> <id>296</id> <edge_type>1</edge_type> <source_obj>295</source_obj> <sink_obj>167</sink_obj> </item> <item class_id_reference="20" object_id="_267"> <id>298</id> <edge_type>1</edge_type> <source_obj>297</source_obj> <sink_obj>167</sink_obj> </item> <item class_id_reference="20" object_id="_268"> <id>300</id> <edge_type>1</edge_type> <source_obj>159</source_obj> <sink_obj>168</sink_obj> </item> <item class_id_reference="20" object_id="_269"> <id>301</id> <edge_type>1</edge_type> <source_obj>237</source_obj> <sink_obj>168</sink_obj> </item> <item class_id_reference="20" object_id="_270"> <id>302</id> <edge_type>1</edge_type> <source_obj>165</source_obj> <sink_obj>168</sink_obj> </item> <item class_id_reference="20" object_id="_271"> <id>304</id> <edge_type>1</edge_type> <source_obj>160</source_obj> <sink_obj>169</sink_obj> </item> <item class_id_reference="20" object_id="_272"> <id>305</id> <edge_type>1</edge_type> <source_obj>237</source_obj> <sink_obj>169</sink_obj> </item> <item class_id_reference="20" object_id="_273"> <id>306</id> <edge_type>1</edge_type> <source_obj>166</source_obj> <sink_obj>169</sink_obj> </item> <item class_id_reference="20" object_id="_274"> <id>307</id> <edge_type>2</edge_type> <source_obj>177</source_obj> <sink_obj>170</sink_obj> </item> <item class_id_reference="20" object_id="_275"> <id>308</id> <edge_type>1</edge_type> <source_obj>168</source_obj> <sink_obj>172</sink_obj> </item> <item class_id_reference="20" object_id="_276"> <id>309</id> <edge_type>2</edge_type> <source_obj>171</source_obj> <sink_obj>172</sink_obj> </item> <item class_id_reference="20" object_id="_277"> <id>310</id> <edge_type>1</edge_type> <source_obj>159</source_obj> <sink_obj>172</sink_obj> </item> <item class_id_reference="20" object_id="_278"> <id>311</id> <edge_type>2</edge_type> <source_obj>162</source_obj> <sink_obj>172</sink_obj> </item> <item class_id_reference="20" object_id="_279"> <id>312</id> <edge_type>1</edge_type> <source_obj>169</source_obj> <sink_obj>173</sink_obj> </item> <item class_id_reference="20" object_id="_280"> <id>313</id> <edge_type>2</edge_type> <source_obj>171</source_obj> <sink_obj>173</sink_obj> </item> <item class_id_reference="20" object_id="_281"> <id>314</id> <edge_type>1</edge_type> <source_obj>160</source_obj> <sink_obj>173</sink_obj> </item> <item class_id_reference="20" object_id="_282"> <id>315</id> <edge_type>2</edge_type> <source_obj>162</source_obj> <sink_obj>173</sink_obj> </item> <item class_id_reference="20" object_id="_283"> <id>316</id> <edge_type>1</edge_type> <source_obj>167</source_obj> <sink_obj>174</sink_obj> </item> <item class_id_reference="20" object_id="_284"> <id>317</id> <edge_type>2</edge_type> <source_obj>171</source_obj> <sink_obj>174</sink_obj> </item> <item class_id_reference="20" object_id="_285"> <id>318</id> <edge_type>1</edge_type> <source_obj>158</source_obj> <sink_obj>174</sink_obj> </item> <item class_id_reference="20" object_id="_286"> <id>319</id> <edge_type>2</edge_type> <source_obj>162</source_obj> <sink_obj>174</sink_obj> </item> <item class_id_reference="20" object_id="_287"> <id>320</id> <edge_type>1</edge_type> <source_obj>166</source_obj> <sink_obj>175</sink_obj> </item> <item class_id_reference="20" object_id="_288"> <id>321</id> <edge_type>2</edge_type> <source_obj>171</source_obj> <sink_obj>175</sink_obj> </item> <item class_id_reference="20" object_id="_289"> <id>322</id> <edge_type>1</edge_type> <source_obj>157</source_obj> <sink_obj>175</sink_obj> </item> <item class_id_reference="20" object_id="_290"> <id>323</id> <edge_type>2</edge_type> <source_obj>162</source_obj> <sink_obj>175</sink_obj> </item> <item class_id_reference="20" object_id="_291"> <id>324</id> <edge_type>1</edge_type> <source_obj>175</source_obj> <sink_obj>176</sink_obj> </item> <item class_id_reference="20" object_id="_292"> <id>325</id> <edge_type>2</edge_type> <source_obj>186</source_obj> <sink_obj>176</sink_obj> </item> <item class_id_reference="20" object_id="_293"> <id>326</id> <edge_type>2</edge_type> <source_obj>192</source_obj> <sink_obj>176</sink_obj> </item> <item class_id_reference="20" object_id="_294"> <id>328</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>178</sink_obj> </item> <item class_id_reference="20" object_id="_295"> <id>329</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>178</sink_obj> </item> <item class_id_reference="20" object_id="_296"> <id>330</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>178</sink_obj> </item> <item class_id_reference="20" object_id="_297"> <id>331</id> <edge_type>1</edge_type> <source_obj>178</source_obj> <sink_obj>179</sink_obj> </item> <item class_id_reference="20" object_id="_298"> <id>332</id> <edge_type>1</edge_type> <source_obj>178</source_obj> <sink_obj>180</sink_obj> </item> <item class_id_reference="20" object_id="_299"> <id>333</id> <edge_type>1</edge_type> <source_obj>178</source_obj> <sink_obj>181</sink_obj> </item> <item class_id_reference="20" object_id="_300"> <id>335</id> <edge_type>1</edge_type> <source_obj>174</source_obj> <sink_obj>182</sink_obj> </item> <item class_id_reference="20" object_id="_301"> <id>336</id> <edge_type>1</edge_type> <source_obj>179</source_obj> <sink_obj>182</sink_obj> </item> <item class_id_reference="20" object_id="_302"> <id>338</id> <edge_type>1</edge_type> <source_obj>337</source_obj> <sink_obj>182</sink_obj> </item> <item class_id_reference="20" object_id="_303"> <id>340</id> <edge_type>1</edge_type> <source_obj>339</source_obj> <sink_obj>182</sink_obj> </item> <item class_id_reference="20" object_id="_304"> <id>342</id> <edge_type>1</edge_type> <source_obj>172</source_obj> <sink_obj>183</sink_obj> </item> <item class_id_reference="20" object_id="_305"> <id>343</id> <edge_type>1</edge_type> <source_obj>240</source_obj> <sink_obj>183</sink_obj> </item> <item class_id_reference="20" object_id="_306"> <id>344</id> <edge_type>1</edge_type> <source_obj>180</source_obj> <sink_obj>183</sink_obj> </item> <item class_id_reference="20" object_id="_307"> <id>346</id> <edge_type>1</edge_type> <source_obj>173</source_obj> <sink_obj>184</sink_obj> </item> <item class_id_reference="20" object_id="_308"> <id>347</id> <edge_type>1</edge_type> <source_obj>240</source_obj> <sink_obj>184</sink_obj> </item> <item class_id_reference="20" object_id="_309"> <id>348</id> <edge_type>1</edge_type> <source_obj>181</source_obj> <sink_obj>184</sink_obj> </item> <item class_id_reference="20" object_id="_310"> <id>349</id> <edge_type>2</edge_type> <source_obj>192</source_obj> <sink_obj>185</sink_obj> </item> <item class_id_reference="20" object_id="_311"> <id>350</id> <edge_type>1</edge_type> <source_obj>183</source_obj> <sink_obj>187</sink_obj> </item> <item class_id_reference="20" object_id="_312"> <id>351</id> <edge_type>2</edge_type> <source_obj>186</source_obj> <sink_obj>187</sink_obj> </item> <item class_id_reference="20" object_id="_313"> <id>352</id> <edge_type>1</edge_type> <source_obj>172</source_obj> <sink_obj>187</sink_obj> </item> <item class_id_reference="20" object_id="_314"> <id>353</id> <edge_type>2</edge_type> <source_obj>177</source_obj> <sink_obj>187</sink_obj> </item> <item class_id_reference="20" object_id="_315"> <id>354</id> <edge_type>1</edge_type> <source_obj>184</source_obj> <sink_obj>188</sink_obj> </item> <item class_id_reference="20" object_id="_316"> <id>355</id> <edge_type>2</edge_type> <source_obj>186</source_obj> <sink_obj>188</sink_obj> </item> <item class_id_reference="20" object_id="_317"> <id>356</id> <edge_type>1</edge_type> <source_obj>173</source_obj> <sink_obj>188</sink_obj> </item> <item class_id_reference="20" object_id="_318"> <id>357</id> <edge_type>2</edge_type> <source_obj>177</source_obj> <sink_obj>188</sink_obj> </item> <item class_id_reference="20" object_id="_319"> <id>358</id> <edge_type>1</edge_type> <source_obj>182</source_obj> <sink_obj>189</sink_obj> </item> <item class_id_reference="20" object_id="_320"> <id>359</id> <edge_type>2</edge_type> <source_obj>186</source_obj> <sink_obj>189</sink_obj> </item> <item class_id_reference="20" object_id="_321"> <id>360</id> <edge_type>1</edge_type> <source_obj>174</source_obj> <sink_obj>189</sink_obj> </item> <item class_id_reference="20" object_id="_322"> <id>361</id> <edge_type>2</edge_type> <source_obj>177</source_obj> <sink_obj>189</sink_obj> </item> <item class_id_reference="20" object_id="_323"> <id>362</id> <edge_type>1</edge_type> <source_obj>181</source_obj> <sink_obj>190</sink_obj> </item> <item class_id_reference="20" object_id="_324"> <id>363</id> <edge_type>2</edge_type> <source_obj>186</source_obj> <sink_obj>190</sink_obj> </item> <item class_id_reference="20" object_id="_325"> <id>364</id> <edge_type>1</edge_type> <source_obj>175</source_obj> <sink_obj>190</sink_obj> </item> <item class_id_reference="20" object_id="_326"> <id>365</id> <edge_type>2</edge_type> <source_obj>177</source_obj> <sink_obj>190</sink_obj> </item> <item class_id_reference="20" object_id="_327"> <id>366</id> <edge_type>1</edge_type> <source_obj>190</source_obj> <sink_obj>191</sink_obj> </item> <item class_id_reference="20" object_id="_328"> <id>367</id> <edge_type>2</edge_type> <source_obj>201</source_obj> <sink_obj>191</sink_obj> </item> <item class_id_reference="20" object_id="_329"> <id>368</id> <edge_type>2</edge_type> <source_obj>223</source_obj> <sink_obj>191</sink_obj> </item> <item class_id_reference="20" object_id="_330"> <id>370</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>193</sink_obj> </item> <item class_id_reference="20" object_id="_331"> <id>371</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>193</sink_obj> </item> <item class_id_reference="20" object_id="_332"> <id>372</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>193</sink_obj> </item> <item class_id_reference="20" object_id="_333"> <id>373</id> <edge_type>1</edge_type> <source_obj>193</source_obj> <sink_obj>194</sink_obj> </item> <item class_id_reference="20" object_id="_334"> <id>374</id> <edge_type>1</edge_type> <source_obj>193</source_obj> <sink_obj>195</sink_obj> </item> <item class_id_reference="20" object_id="_335"> <id>375</id> <edge_type>1</edge_type> <source_obj>193</source_obj> <sink_obj>196</sink_obj> </item> <item class_id_reference="20" object_id="_336"> <id>377</id> <edge_type>1</edge_type> <source_obj>189</source_obj> <sink_obj>197</sink_obj> </item> <item class_id_reference="20" object_id="_337"> <id>378</id> <edge_type>1</edge_type> <source_obj>194</source_obj> <sink_obj>197</sink_obj> </item> <item class_id_reference="20" object_id="_338"> <id>380</id> <edge_type>1</edge_type> <source_obj>379</source_obj> <sink_obj>197</sink_obj> </item> <item class_id_reference="20" object_id="_339"> <id>382</id> <edge_type>1</edge_type> <source_obj>381</source_obj> <sink_obj>197</sink_obj> </item> <item class_id_reference="20" object_id="_340"> <id>384</id> <edge_type>1</edge_type> <source_obj>187</source_obj> <sink_obj>198</sink_obj> </item> <item class_id_reference="20" object_id="_341"> <id>385</id> <edge_type>1</edge_type> <source_obj>243</source_obj> <sink_obj>198</sink_obj> </item> <item class_id_reference="20" object_id="_342"> <id>386</id> <edge_type>1</edge_type> <source_obj>195</source_obj> <sink_obj>198</sink_obj> </item> <item class_id_reference="20" object_id="_343"> <id>388</id> <edge_type>1</edge_type> <source_obj>188</source_obj> <sink_obj>199</sink_obj> </item> <item class_id_reference="20" object_id="_344"> <id>389</id> <edge_type>1</edge_type> <source_obj>243</source_obj> <sink_obj>199</sink_obj> </item> <item class_id_reference="20" object_id="_345"> <id>390</id> <edge_type>1</edge_type> <source_obj>196</source_obj> <sink_obj>199</sink_obj> </item> <item class_id_reference="20" object_id="_346"> <id>391</id> <edge_type>2</edge_type> <source_obj>223</source_obj> <sink_obj>200</sink_obj> </item> <item class_id_reference="20" object_id="_347"> <id>392</id> <edge_type>1</edge_type> <source_obj>198</source_obj> <sink_obj>202</sink_obj> </item> <item class_id_reference="20" object_id="_348"> <id>393</id> <edge_type>2</edge_type> <source_obj>201</source_obj> <sink_obj>202</sink_obj> </item> <item class_id_reference="20" object_id="_349"> <id>394</id> <edge_type>1</edge_type> <source_obj>187</source_obj> <sink_obj>202</sink_obj> </item> <item class_id_reference="20" object_id="_350"> <id>395</id> <edge_type>2</edge_type> <source_obj>192</source_obj> <sink_obj>202</sink_obj> </item> <item class_id_reference="20" object_id="_351"> <id>396</id> <edge_type>1</edge_type> <source_obj>199</source_obj> <sink_obj>203</sink_obj> </item> <item class_id_reference="20" object_id="_352"> <id>397</id> <edge_type>2</edge_type> <source_obj>201</source_obj> <sink_obj>203</sink_obj> </item> <item class_id_reference="20" object_id="_353"> <id>398</id> <edge_type>1</edge_type> <source_obj>188</source_obj> <sink_obj>203</sink_obj> </item> <item class_id_reference="20" object_id="_354"> <id>399</id> <edge_type>2</edge_type> <source_obj>192</source_obj> <sink_obj>203</sink_obj> </item> <item class_id_reference="20" object_id="_355"> <id>400</id> <edge_type>1</edge_type> <source_obj>197</source_obj> <sink_obj>204</sink_obj> </item> <item class_id_reference="20" object_id="_356"> <id>401</id> <edge_type>2</edge_type> <source_obj>201</source_obj> <sink_obj>204</sink_obj> </item> <item class_id_reference="20" object_id="_357"> <id>402</id> <edge_type>1</edge_type> <source_obj>189</source_obj> <sink_obj>204</sink_obj> </item> <item class_id_reference="20" object_id="_358"> <id>403</id> <edge_type>2</edge_type> <source_obj>192</source_obj> <sink_obj>204</sink_obj> </item> <item class_id_reference="20" object_id="_359"> <id>404</id> <edge_type>1</edge_type> <source_obj>196</source_obj> <sink_obj>205</sink_obj> </item> <item class_id_reference="20" object_id="_360"> <id>405</id> <edge_type>2</edge_type> <source_obj>201</source_obj> <sink_obj>205</sink_obj> </item> <item class_id_reference="20" object_id="_361"> <id>406</id> <edge_type>1</edge_type> <source_obj>190</source_obj> <sink_obj>205</sink_obj> </item> <item class_id_reference="20" object_id="_362"> <id>407</id> <edge_type>2</edge_type> <source_obj>192</source_obj> <sink_obj>205</sink_obj> </item> <item class_id_reference="20" object_id="_363"> <id>408</id> <edge_type>1</edge_type> <source_obj>204</source_obj> <sink_obj>206</sink_obj> </item> <item class_id_reference="20" object_id="_364"> <id>409</id> <edge_type>1</edge_type> <source_obj>202</source_obj> <sink_obj>207</sink_obj> </item> <item class_id_reference="20" object_id="_365"> <id>412</id> <edge_type>1</edge_type> <source_obj>203</source_obj> <sink_obj>208</sink_obj> </item> <item class_id_reference="20" object_id="_366"> <id>413</id> <edge_type>1</edge_type> <source_obj>237</source_obj> <sink_obj>208</sink_obj> </item> <item class_id_reference="20" object_id="_367"> <id>416</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>209</sink_obj> </item> <item class_id_reference="20" object_id="_368"> <id>417</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>209</sink_obj> </item> <item class_id_reference="20" object_id="_369"> <id>418</id> <edge_type>1</edge_type> <source_obj>6</source_obj> <sink_obj>209</sink_obj> </item> <item class_id_reference="20" object_id="_370"> <id>419</id> <edge_type>1</edge_type> <source_obj>206</source_obj> <sink_obj>209</sink_obj> </item> <item class_id_reference="20" object_id="_371"> <id>420</id> <edge_type>1</edge_type> <source_obj>207</source_obj> <sink_obj>209</sink_obj> </item> <item class_id_reference="20" object_id="_372"> <id>421</id> <edge_type>1</edge_type> <source_obj>208</source_obj> <sink_obj>209</sink_obj> </item> <item class_id_reference="20" object_id="_373"> <id>424</id> <edge_type>1</edge_type> <source_obj>204</source_obj> <sink_obj>210</sink_obj> </item> <item class_id_reference="20" object_id="_374"> <id>426</id> <edge_type>1</edge_type> <source_obj>425</source_obj> <sink_obj>210</sink_obj> </item> <item class_id_reference="20" object_id="_375"> <id>428</id> <edge_type>1</edge_type> <source_obj>427</source_obj> <sink_obj>210</sink_obj> </item> <item class_id_reference="20" object_id="_376"> <id>430</id> <edge_type>1</edge_type> <source_obj>202</source_obj> <sink_obj>211</sink_obj> </item> <item class_id_reference="20" object_id="_377"> <id>431</id> <edge_type>1</edge_type> <source_obj>237</source_obj> <sink_obj>211</sink_obj> </item> <item class_id_reference="20" object_id="_378"> <id>433</id> <edge_type>1</edge_type> <source_obj>203</source_obj> <sink_obj>212</sink_obj> </item> <item class_id_reference="20" object_id="_379"> <id>434</id> <edge_type>1</edge_type> <source_obj>240</source_obj> <sink_obj>212</sink_obj> </item> <item class_id_reference="20" object_id="_380"> <id>436</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>213</sink_obj> </item> <item class_id_reference="20" object_id="_381"> <id>437</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>213</sink_obj> </item> <item class_id_reference="20" object_id="_382"> <id>438</id> <edge_type>1</edge_type> <source_obj>6</source_obj> <sink_obj>213</sink_obj> </item> <item class_id_reference="20" object_id="_383"> <id>439</id> <edge_type>1</edge_type> <source_obj>210</source_obj> <sink_obj>213</sink_obj> </item> <item class_id_reference="20" object_id="_384"> <id>440</id> <edge_type>1</edge_type> <source_obj>211</source_obj> <sink_obj>213</sink_obj> </item> <item class_id_reference="20" object_id="_385"> <id>441</id> <edge_type>1</edge_type> <source_obj>212</source_obj> <sink_obj>213</sink_obj> </item> <item class_id_reference="20" object_id="_386"> <id>443</id> <edge_type>1</edge_type> <source_obj>204</source_obj> <sink_obj>214</sink_obj> </item> <item class_id_reference="20" object_id="_387"> <id>445</id> <edge_type>1</edge_type> <source_obj>444</source_obj> <sink_obj>214</sink_obj> </item> <item class_id_reference="20" object_id="_388"> <id>446</id> <edge_type>1</edge_type> <source_obj>381</source_obj> <sink_obj>214</sink_obj> </item> <item class_id_reference="20" object_id="_389"> <id>448</id> <edge_type>1</edge_type> <source_obj>202</source_obj> <sink_obj>215</sink_obj> </item> <item class_id_reference="20" object_id="_390"> <id>449</id> <edge_type>1</edge_type> <source_obj>240</source_obj> <sink_obj>215</sink_obj> </item> <item class_id_reference="20" object_id="_391"> <id>451</id> <edge_type>1</edge_type> <source_obj>203</source_obj> <sink_obj>216</sink_obj> </item> <item class_id_reference="20" object_id="_392"> <id>452</id> <edge_type>1</edge_type> <source_obj>243</source_obj> <sink_obj>216</sink_obj> </item> <item class_id_reference="20" object_id="_393"> <id>454</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>217</sink_obj> </item> <item class_id_reference="20" object_id="_394"> <id>455</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>217</sink_obj> </item> <item class_id_reference="20" object_id="_395"> <id>456</id> <edge_type>1</edge_type> <source_obj>6</source_obj> <sink_obj>217</sink_obj> </item> <item class_id_reference="20" object_id="_396"> <id>457</id> <edge_type>1</edge_type> <source_obj>214</source_obj> <sink_obj>217</sink_obj> </item> <item class_id_reference="20" object_id="_397"> <id>458</id> <edge_type>1</edge_type> <source_obj>215</source_obj> <sink_obj>217</sink_obj> </item> <item class_id_reference="20" object_id="_398"> <id>459</id> <edge_type>1</edge_type> <source_obj>216</source_obj> <sink_obj>217</sink_obj> </item> <item class_id_reference="20" object_id="_399"> <id>460</id> <edge_type>1</edge_type> <source_obj>202</source_obj> <sink_obj>219</sink_obj> </item> <item class_id_reference="20" object_id="_400"> <id>461</id> <edge_type>1</edge_type> <source_obj>146</source_obj> <sink_obj>219</sink_obj> </item> <item class_id_reference="20" object_id="_401"> <id>462</id> <edge_type>1</edge_type> <source_obj>203</source_obj> <sink_obj>220</sink_obj> </item> <item class_id_reference="20" object_id="_402"> <id>463</id> <edge_type>1</edge_type> <source_obj>145</source_obj> <sink_obj>220</sink_obj> </item> <item class_id_reference="20" object_id="_403"> <id>464</id> <edge_type>1</edge_type> <source_obj>204</source_obj> <sink_obj>221</sink_obj> </item> <item class_id_reference="20" object_id="_404"> <id>465</id> <edge_type>1</edge_type> <source_obj>144</source_obj> <sink_obj>221</sink_obj> </item> <item class_id_reference="20" object_id="_405"> <id>466</id> <edge_type>1</edge_type> <source_obj>205</source_obj> <sink_obj>222</sink_obj> </item> <item class_id_reference="20" object_id="_406"> <id>467</id> <edge_type>2</edge_type> <source_obj>162</source_obj> <sink_obj>222</sink_obj> </item> <item class_id_reference="20" object_id="_407"> <id>468</id> <edge_type>2</edge_type> <source_obj>225</source_obj> <sink_obj>222</sink_obj> </item> <item class_id_reference="20" object_id="_408"> <id>470</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>135</sink_obj> </item> <item class_id_reference="20" object_id="_409"> <id>471</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>135</sink_obj> </item> <item class_id_reference="20" object_id="_410"> <id>472</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>135</sink_obj> </item> <item class_id_reference="20" object_id="_411"> <id>473</id> <edge_type>1</edge_type> <source_obj>135</source_obj> <sink_obj>136</sink_obj> </item> <item class_id_reference="20" object_id="_412"> <id>474</id> <edge_type>1</edge_type> <source_obj>135</source_obj> <sink_obj>137</sink_obj> </item> <item class_id_reference="20" object_id="_413"> <id>475</id> <edge_type>1</edge_type> <source_obj>135</source_obj> <sink_obj>138</sink_obj> </item> <item class_id_reference="20" object_id="_414"> <id>478</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>139</sink_obj> </item> <item class_id_reference="20" object_id="_415"> <id>479</id> <edge_type>1</edge_type> <source_obj>136</source_obj> <sink_obj>139</sink_obj> </item> <item class_id_reference="20" object_id="_416"> <id>481</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>140</sink_obj> </item> <item class_id_reference="20" object_id="_417"> <id>482</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>140</sink_obj> </item> <item class_id_reference="20" object_id="_418"> <id>483</id> <edge_type>1</edge_type> <source_obj>6</source_obj> <sink_obj>140</sink_obj> </item> <item class_id_reference="20" object_id="_419"> <id>484</id> <edge_type>1</edge_type> <source_obj>139</source_obj> <sink_obj>140</sink_obj> </item> <item class_id_reference="20" object_id="_420"> <id>485</id> <edge_type>1</edge_type> <source_obj>137</source_obj> <sink_obj>140</sink_obj> </item> <item class_id_reference="20" object_id="_421"> <id>486</id> <edge_type>1</edge_type> <source_obj>138</source_obj> <sink_obj>140</sink_obj> </item> <item class_id_reference="20" object_id="_422"> <id>487</id> <edge_type>1</edge_type> <source_obj>138</source_obj> <sink_obj>142</sink_obj> </item> <item class_id_reference="20" object_id="_423"> <id>488</id> <edge_type>2</edge_type> <source_obj>143</source_obj> <sink_obj>142</sink_obj> </item> <item class_id_reference="20" object_id="_424"> <id>489</id> <edge_type>2</edge_type> <source_obj>225</source_obj> <sink_obj>142</sink_obj> </item> <item class_id_reference="20" object_id="_425"> <id>490</id> <edge_type>1</edge_type> <source_obj>74</source_obj> <sink_obj>77</sink_obj> </item> <item class_id_reference="20" object_id="_426"> <id>492</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>80</sink_obj> </item> <item class_id_reference="20" object_id="_427"> <id>493</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>80</sink_obj> </item> <item class_id_reference="20" object_id="_428"> <id>494</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>80</sink_obj> </item> <item class_id_reference="20" object_id="_429"> <id>495</id> <edge_type>1</edge_type> <source_obj>80</source_obj> <sink_obj>81</sink_obj> </item> <item class_id_reference="20" object_id="_430"> <id>496</id> <edge_type>1</edge_type> <source_obj>80</source_obj> <sink_obj>82</sink_obj> </item> <item class_id_reference="20" object_id="_431"> <id>497</id> <edge_type>1</edge_type> <source_obj>80</source_obj> <sink_obj>83</sink_obj> </item> <item class_id_reference="20" object_id="_432"> <id>498</id> <edge_type>1</edge_type> <source_obj>81</source_obj> <sink_obj>84</sink_obj> </item> <item class_id_reference="20" object_id="_433"> <id>501</id> <edge_type>1</edge_type> <source_obj>77</source_obj> <sink_obj>85</sink_obj> </item> <item class_id_reference="20" object_id="_434"> <id>502</id> <edge_type>1</edge_type> <source_obj>84</source_obj> <sink_obj>85</sink_obj> </item> <item class_id_reference="20" object_id="_435"> <id>503</id> <edge_type>1</edge_type> <source_obj>234</source_obj> <sink_obj>85</sink_obj> </item> <item class_id_reference="20" object_id="_436"> <id>505</id> <edge_type>1</edge_type> <source_obj>504</source_obj> <sink_obj>85</sink_obj> </item> <item class_id_reference="20" object_id="_437"> <id>506</id> <edge_type>1</edge_type> <source_obj>83</source_obj> <sink_obj>86</sink_obj> </item> <item class_id_reference="20" object_id="_438"> <id>507</id> <edge_type>2</edge_type> <source_obj>96</source_obj> <sink_obj>86</sink_obj> </item> <item class_id_reference="20" object_id="_439"> <id>508</id> <edge_type>2</edge_type> <source_obj>101</source_obj> <sink_obj>86</sink_obj> </item> <item class_id_reference="20" object_id="_440"> <id>510</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>88</sink_obj> </item> <item class_id_reference="20" object_id="_441"> <id>511</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>88</sink_obj> </item> <item class_id_reference="20" object_id="_442"> <id>512</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>88</sink_obj> </item> <item class_id_reference="20" object_id="_443"> <id>513</id> <edge_type>1</edge_type> <source_obj>88</source_obj> <sink_obj>89</sink_obj> </item> <item class_id_reference="20" object_id="_444"> <id>514</id> <edge_type>1</edge_type> <source_obj>88</source_obj> <sink_obj>90</sink_obj> </item> <item class_id_reference="20" object_id="_445"> <id>515</id> <edge_type>1</edge_type> <source_obj>88</source_obj> <sink_obj>91</sink_obj> </item> <item class_id_reference="20" object_id="_446"> <id>516</id> <edge_type>1</edge_type> <source_obj>82</source_obj> <sink_obj>92</sink_obj> </item> <item class_id_reference="20" object_id="_447"> <id>517</id> <edge_type>1</edge_type> <source_obj>90</source_obj> <sink_obj>92</sink_obj> </item> <item class_id_reference="20" object_id="_448"> <id>518</id> <edge_type>1</edge_type> <source_obj>89</source_obj> <sink_obj>93</sink_obj> </item> <item class_id_reference="20" object_id="_449"> <id>520</id> <edge_type>1</edge_type> <source_obj>85</source_obj> <sink_obj>94</sink_obj> </item> <item class_id_reference="20" object_id="_450"> <id>521</id> <edge_type>1</edge_type> <source_obj>93</source_obj> <sink_obj>94</sink_obj> </item> <item class_id_reference="20" object_id="_451"> <id>523</id> <edge_type>1</edge_type> <source_obj>522</source_obj> <sink_obj>94</sink_obj> </item> <item class_id_reference="20" object_id="_452"> <id>525</id> <edge_type>1</edge_type> <source_obj>524</source_obj> <sink_obj>94</sink_obj> </item> <item class_id_reference="20" object_id="_453"> <id>526</id> <edge_type>2</edge_type> <source_obj>101</source_obj> <sink_obj>95</sink_obj> </item> <item class_id_reference="20" object_id="_454"> <id>527</id> <edge_type>1</edge_type> <source_obj>94</source_obj> <sink_obj>97</sink_obj> </item> <item class_id_reference="20" object_id="_455"> <id>528</id> <edge_type>2</edge_type> <source_obj>96</source_obj> <sink_obj>97</sink_obj> </item> <item class_id_reference="20" object_id="_456"> <id>529</id> <edge_type>1</edge_type> <source_obj>85</source_obj> <sink_obj>97</sink_obj> </item> <item class_id_reference="20" object_id="_457"> <id>530</id> <edge_type>2</edge_type> <source_obj>87</source_obj> <sink_obj>97</sink_obj> </item> <item class_id_reference="20" object_id="_458"> <id>531</id> <edge_type>1</edge_type> <source_obj>91</source_obj> <sink_obj>98</sink_obj> </item> <item class_id_reference="20" object_id="_459"> <id>532</id> <edge_type>2</edge_type> <source_obj>96</source_obj> <sink_obj>98</sink_obj> </item> <item class_id_reference="20" object_id="_460"> <id>533</id> <edge_type>1</edge_type> <source_obj>83</source_obj> <sink_obj>98</sink_obj> </item> <item class_id_reference="20" object_id="_461"> <id>534</id> <edge_type>2</edge_type> <source_obj>87</source_obj> <sink_obj>98</sink_obj> </item> <item class_id_reference="20" object_id="_462"> <id>535</id> <edge_type>1</edge_type> <source_obj>92</source_obj> <sink_obj>99</sink_obj> </item> <item class_id_reference="20" object_id="_463"> <id>536</id> <edge_type>2</edge_type> <source_obj>96</source_obj> <sink_obj>99</sink_obj> </item> <item class_id_reference="20" object_id="_464"> <id>537</id> <edge_type>1</edge_type> <source_obj>82</source_obj> <sink_obj>99</sink_obj> </item> <item class_id_reference="20" object_id="_465"> <id>538</id> <edge_type>2</edge_type> <source_obj>87</source_obj> <sink_obj>99</sink_obj> </item> <item class_id_reference="20" object_id="_466"> <id>539</id> <edge_type>1</edge_type> <source_obj>98</source_obj> <sink_obj>100</sink_obj> </item> <item class_id_reference="20" object_id="_467"> <id>540</id> <edge_type>2</edge_type> <source_obj>110</source_obj> <sink_obj>100</sink_obj> </item> <item class_id_reference="20" object_id="_468"> <id>541</id> <edge_type>2</edge_type> <source_obj>115</source_obj> <sink_obj>100</sink_obj> </item> <item class_id_reference="20" object_id="_469"> <id>543</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>102</sink_obj> </item> <item class_id_reference="20" object_id="_470"> <id>544</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>102</sink_obj> </item> <item class_id_reference="20" object_id="_471"> <id>545</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>102</sink_obj> </item> <item class_id_reference="20" object_id="_472"> <id>546</id> <edge_type>1</edge_type> <source_obj>102</source_obj> <sink_obj>103</sink_obj> </item> <item class_id_reference="20" object_id="_473"> <id>547</id> <edge_type>1</edge_type> <source_obj>102</source_obj> <sink_obj>104</sink_obj> </item> <item class_id_reference="20" object_id="_474"> <id>548</id> <edge_type>1</edge_type> <source_obj>102</source_obj> <sink_obj>105</sink_obj> </item> <item class_id_reference="20" object_id="_475"> <id>549</id> <edge_type>1</edge_type> <source_obj>104</source_obj> <sink_obj>106</sink_obj> </item> <item class_id_reference="20" object_id="_476"> <id>550</id> <edge_type>1</edge_type> <source_obj>99</source_obj> <sink_obj>106</sink_obj> </item> <item class_id_reference="20" object_id="_477"> <id>551</id> <edge_type>1</edge_type> <source_obj>103</source_obj> <sink_obj>107</sink_obj> </item> <item class_id_reference="20" object_id="_478"> <id>553</id> <edge_type>1</edge_type> <source_obj>97</source_obj> <sink_obj>108</sink_obj> </item> <item class_id_reference="20" object_id="_479"> <id>554</id> <edge_type>1</edge_type> <source_obj>107</source_obj> <sink_obj>108</sink_obj> </item> <item class_id_reference="20" object_id="_480"> <id>556</id> <edge_type>1</edge_type> <source_obj>555</source_obj> <sink_obj>108</sink_obj> </item> <item class_id_reference="20" object_id="_481"> <id>557</id> <edge_type>1</edge_type> <source_obj>271</source_obj> <sink_obj>108</sink_obj> </item> <item class_id_reference="20" object_id="_482"> <id>558</id> <edge_type>2</edge_type> <source_obj>115</source_obj> <sink_obj>109</sink_obj> </item> <item class_id_reference="20" object_id="_483"> <id>559</id> <edge_type>1</edge_type> <source_obj>108</source_obj> <sink_obj>111</sink_obj> </item> <item class_id_reference="20" object_id="_484"> <id>560</id> <edge_type>2</edge_type> <source_obj>110</source_obj> <sink_obj>111</sink_obj> </item> <item class_id_reference="20" object_id="_485"> <id>561</id> <edge_type>1</edge_type> <source_obj>97</source_obj> <sink_obj>111</sink_obj> </item> <item class_id_reference="20" object_id="_486"> <id>562</id> <edge_type>2</edge_type> <source_obj>101</source_obj> <sink_obj>111</sink_obj> </item> <item class_id_reference="20" object_id="_487"> <id>563</id> <edge_type>1</edge_type> <source_obj>105</source_obj> <sink_obj>112</sink_obj> </item> <item class_id_reference="20" object_id="_488"> <id>564</id> <edge_type>2</edge_type> <source_obj>110</source_obj> <sink_obj>112</sink_obj> </item> <item class_id_reference="20" object_id="_489"> <id>565</id> <edge_type>1</edge_type> <source_obj>98</source_obj> <sink_obj>112</sink_obj> </item> <item class_id_reference="20" object_id="_490"> <id>566</id> <edge_type>2</edge_type> <source_obj>101</source_obj> <sink_obj>112</sink_obj> </item> <item class_id_reference="20" object_id="_491"> <id>567</id> <edge_type>1</edge_type> <source_obj>106</source_obj> <sink_obj>113</sink_obj> </item> <item class_id_reference="20" object_id="_492"> <id>568</id> <edge_type>2</edge_type> <source_obj>110</source_obj> <sink_obj>113</sink_obj> </item> <item class_id_reference="20" object_id="_493"> <id>569</id> <edge_type>1</edge_type> <source_obj>99</source_obj> <sink_obj>113</sink_obj> </item> <item class_id_reference="20" object_id="_494"> <id>570</id> <edge_type>2</edge_type> <source_obj>101</source_obj> <sink_obj>113</sink_obj> </item> <item class_id_reference="20" object_id="_495"> <id>571</id> <edge_type>1</edge_type> <source_obj>112</source_obj> <sink_obj>114</sink_obj> </item> <item class_id_reference="20" object_id="_496"> <id>572</id> <edge_type>2</edge_type> <source_obj>124</source_obj> <sink_obj>114</sink_obj> </item> <item class_id_reference="20" object_id="_497"> <id>573</id> <edge_type>2</edge_type> <source_obj>132</source_obj> <sink_obj>114</sink_obj> </item> <item class_id_reference="20" object_id="_498"> <id>575</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>116</sink_obj> </item> <item class_id_reference="20" object_id="_499"> <id>576</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>116</sink_obj> </item> <item class_id_reference="20" object_id="_500"> <id>577</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>116</sink_obj> </item> <item class_id_reference="20" object_id="_501"> <id>578</id> <edge_type>1</edge_type> <source_obj>116</source_obj> <sink_obj>117</sink_obj> </item> <item class_id_reference="20" object_id="_502"> <id>579</id> <edge_type>1</edge_type> <source_obj>116</source_obj> <sink_obj>118</sink_obj> </item> <item class_id_reference="20" object_id="_503"> <id>580</id> <edge_type>1</edge_type> <source_obj>116</source_obj> <sink_obj>119</sink_obj> </item> <item class_id_reference="20" object_id="_504"> <id>581</id> <edge_type>1</edge_type> <source_obj>118</source_obj> <sink_obj>120</sink_obj> </item> <item class_id_reference="20" object_id="_505"> <id>582</id> <edge_type>1</edge_type> <source_obj>113</source_obj> <sink_obj>120</sink_obj> </item> <item class_id_reference="20" object_id="_506"> <id>583</id> <edge_type>1</edge_type> <source_obj>117</source_obj> <sink_obj>121</sink_obj> </item> <item class_id_reference="20" object_id="_507"> <id>585</id> <edge_type>1</edge_type> <source_obj>111</source_obj> <sink_obj>122</sink_obj> </item> <item class_id_reference="20" object_id="_508"> <id>586</id> <edge_type>1</edge_type> <source_obj>121</source_obj> <sink_obj>122</sink_obj> </item> <item class_id_reference="20" object_id="_509"> <id>587</id> <edge_type>1</edge_type> <source_obj>295</source_obj> <sink_obj>122</sink_obj> </item> <item class_id_reference="20" object_id="_510"> <id>589</id> <edge_type>1</edge_type> <source_obj>588</source_obj> <sink_obj>122</sink_obj> </item> <item class_id_reference="20" object_id="_511"> <id>590</id> <edge_type>2</edge_type> <source_obj>132</source_obj> <sink_obj>123</sink_obj> </item> <item class_id_reference="20" object_id="_512"> <id>591</id> <edge_type>1</edge_type> <source_obj>122</source_obj> <sink_obj>125</sink_obj> </item> <item class_id_reference="20" object_id="_513"> <id>592</id> <edge_type>2</edge_type> <source_obj>124</source_obj> <sink_obj>125</sink_obj> </item> <item class_id_reference="20" object_id="_514"> <id>593</id> <edge_type>1</edge_type> <source_obj>111</source_obj> <sink_obj>125</sink_obj> </item> <item class_id_reference="20" object_id="_515"> <id>594</id> <edge_type>2</edge_type> <source_obj>115</source_obj> <sink_obj>125</sink_obj> </item> <item class_id_reference="20" object_id="_516"> <id>595</id> <edge_type>1</edge_type> <source_obj>119</source_obj> <sink_obj>126</sink_obj> </item> <item class_id_reference="20" object_id="_517"> <id>596</id> <edge_type>2</edge_type> <source_obj>124</source_obj> <sink_obj>126</sink_obj> </item> <item class_id_reference="20" object_id="_518"> <id>597</id> <edge_type>1</edge_type> <source_obj>112</source_obj> <sink_obj>126</sink_obj> </item> <item class_id_reference="20" object_id="_519"> <id>598</id> <edge_type>2</edge_type> <source_obj>115</source_obj> <sink_obj>126</sink_obj> </item> <item class_id_reference="20" object_id="_520"> <id>599</id> <edge_type>1</edge_type> <source_obj>120</source_obj> <sink_obj>127</sink_obj> </item> <item class_id_reference="20" object_id="_521"> <id>600</id> <edge_type>2</edge_type> <source_obj>124</source_obj> <sink_obj>127</sink_obj> </item> <item class_id_reference="20" object_id="_522"> <id>601</id> <edge_type>1</edge_type> <source_obj>113</source_obj> <sink_obj>127</sink_obj> </item> <item class_id_reference="20" object_id="_523"> <id>602</id> <edge_type>2</edge_type> <source_obj>115</source_obj> <sink_obj>127</sink_obj> </item> <item class_id_reference="20" object_id="_524"> <id>604</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>128</sink_obj> </item> <item class_id_reference="20" object_id="_525"> <id>605</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>128</sink_obj> </item> <item class_id_reference="20" object_id="_526"> <id>606</id> <edge_type>1</edge_type> <source_obj>6</source_obj> <sink_obj>128</sink_obj> </item> <item class_id_reference="20" object_id="_527"> <id>607</id> <edge_type>1</edge_type> <source_obj>125</source_obj> <sink_obj>128</sink_obj> </item> <item class_id_reference="20" object_id="_528"> <id>608</id> <edge_type>1</edge_type> <source_obj>127</source_obj> <sink_obj>128</sink_obj> </item> <item class_id_reference="20" object_id="_529"> <id>609</id> <edge_type>1</edge_type> <source_obj>126</source_obj> <sink_obj>128</sink_obj> </item> <item class_id_reference="20" object_id="_530"> <id>610</id> <edge_type>1</edge_type> <source_obj>125</source_obj> <sink_obj>130</sink_obj> </item> <item class_id_reference="20" object_id="_531"> <id>611</id> <edge_type>1</edge_type> <source_obj>74</source_obj> <sink_obj>130</sink_obj> </item> <item class_id_reference="20" object_id="_532"> <id>612</id> <edge_type>1</edge_type> <source_obj>126</source_obj> <sink_obj>131</sink_obj> </item> <item class_id_reference="20" object_id="_533"> <id>613</id> <edge_type>2</edge_type> <source_obj>87</source_obj> <sink_obj>131</sink_obj> </item> <item class_id_reference="20" object_id="_534"> <id>614</id> <edge_type>2</edge_type> <source_obj>225</source_obj> <sink_obj>131</sink_obj> </item> <item class_id_reference="20" object_id="_535"> <id>616</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>59</sink_obj> </item> <item class_id_reference="20" object_id="_536"> <id>617</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>59</sink_obj> </item> <item class_id_reference="20" object_id="_537"> <id>618</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>59</sink_obj> </item> <item class_id_reference="20" object_id="_538"> <id>619</id> <edge_type>1</edge_type> <source_obj>59</source_obj> <sink_obj>60</sink_obj> </item> <item class_id_reference="20" object_id="_539"> <id>620</id> <edge_type>1</edge_type> <source_obj>59</source_obj> <sink_obj>61</sink_obj> </item> <item class_id_reference="20" object_id="_540"> <id>621</id> <edge_type>1</edge_type> <source_obj>60</source_obj> <sink_obj>62</sink_obj> </item> <item class_id_reference="20" object_id="_541"> <id>623</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>63</sink_obj> </item> <item class_id_reference="20" object_id="_542"> <id>624</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>63</sink_obj> </item> <item class_id_reference="20" object_id="_543"> <id>625</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>63</sink_obj> </item> <item class_id_reference="20" object_id="_544"> <id>626</id> <edge_type>1</edge_type> <source_obj>63</source_obj> <sink_obj>64</sink_obj> </item> <item class_id_reference="20" object_id="_545"> <id>627</id> <edge_type>1</edge_type> <source_obj>63</source_obj> <sink_obj>65</sink_obj> </item> <item class_id_reference="20" object_id="_546"> <id>628</id> <edge_type>1</edge_type> <source_obj>63</source_obj> <sink_obj>66</sink_obj> </item> <item class_id_reference="20" object_id="_547"> <id>629</id> <edge_type>1</edge_type> <source_obj>61</source_obj> <sink_obj>67</sink_obj> </item> <item class_id_reference="20" object_id="_548"> <id>630</id> <edge_type>1</edge_type> <source_obj>65</source_obj> <sink_obj>67</sink_obj> </item> <item class_id_reference="20" object_id="_549"> <id>631</id> <edge_type>1</edge_type> <source_obj>64</source_obj> <sink_obj>68</sink_obj> </item> <item class_id_reference="20" object_id="_550"> <id>634</id> <edge_type>1</edge_type> <source_obj>68</source_obj> <sink_obj>69</sink_obj> </item> <item class_id_reference="20" object_id="_551"> <id>635</id> <edge_type>1</edge_type> <source_obj>62</source_obj> <sink_obj>69</sink_obj> </item> <item class_id_reference="20" object_id="_552"> <id>637</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>70</sink_obj> </item> <item class_id_reference="20" object_id="_553"> <id>638</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>70</sink_obj> </item> <item class_id_reference="20" object_id="_554"> <id>639</id> <edge_type>1</edge_type> <source_obj>6</source_obj> <sink_obj>70</sink_obj> </item> <item class_id_reference="20" object_id="_555"> <id>640</id> <edge_type>1</edge_type> <source_obj>69</source_obj> <sink_obj>70</sink_obj> </item> <item class_id_reference="20" object_id="_556"> <id>641</id> <edge_type>1</edge_type> <source_obj>67</source_obj> <sink_obj>70</sink_obj> </item> <item class_id_reference="20" object_id="_557"> <id>642</id> <edge_type>1</edge_type> <source_obj>66</source_obj> <sink_obj>70</sink_obj> </item> <item class_id_reference="20" object_id="_558"> <id>643</id> <edge_type>1</edge_type> <source_obj>66</source_obj> <sink_obj>72</sink_obj> </item> <item class_id_reference="20" object_id="_559"> <id>644</id> <edge_type>2</edge_type> <source_obj>73</source_obj> <sink_obj>72</sink_obj> </item> <item class_id_reference="20" object_id="_560"> <id>645</id> <edge_type>2</edge_type> <source_obj>225</source_obj> <sink_obj>72</sink_obj> </item> <item class_id_reference="20" object_id="_561"> <id>647</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>30</sink_obj> </item> <item class_id_reference="20" object_id="_562"> <id>648</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>30</sink_obj> </item> <item class_id_reference="20" object_id="_563"> <id>649</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>30</sink_obj> </item> <item class_id_reference="20" object_id="_564"> <id>650</id> <edge_type>1</edge_type> <source_obj>30</source_obj> <sink_obj>31</sink_obj> </item> <item class_id_reference="20" object_id="_565"> <id>651</id> <edge_type>1</edge_type> <source_obj>30</source_obj> <sink_obj>32</sink_obj> </item> <item class_id_reference="20" object_id="_566"> <id>653</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>33</sink_obj> </item> <item class_id_reference="20" object_id="_567"> <id>654</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>33</sink_obj> </item> <item class_id_reference="20" object_id="_568"> <id>655</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>33</sink_obj> </item> <item class_id_reference="20" object_id="_569"> <id>656</id> <edge_type>1</edge_type> <source_obj>33</source_obj> <sink_obj>34</sink_obj> </item> <item class_id_reference="20" object_id="_570"> <id>657</id> <edge_type>1</edge_type> <source_obj>33</source_obj> <sink_obj>35</sink_obj> </item> <item class_id_reference="20" object_id="_571"> <id>658</id> <edge_type>1</edge_type> <source_obj>33</source_obj> <sink_obj>36</sink_obj> </item> <item class_id_reference="20" object_id="_572"> <id>659</id> <edge_type>1</edge_type> <source_obj>32</source_obj> <sink_obj>37</sink_obj> </item> <item class_id_reference="20" object_id="_573"> <id>660</id> <edge_type>1</edge_type> <source_obj>35</source_obj> <sink_obj>37</sink_obj> </item> <item class_id_reference="20" object_id="_574"> <id>663</id> <edge_type>1</edge_type> <source_obj>31</source_obj> <sink_obj>38</sink_obj> </item> <item class_id_reference="20" object_id="_575"> <id>664</id> <edge_type>1</edge_type> <source_obj>522</source_obj> <sink_obj>38</sink_obj> </item> <item class_id_reference="20" object_id="_576"> <id>665</id> <edge_type>1</edge_type> <source_obj>524</source_obj> <sink_obj>38</sink_obj> </item> <item class_id_reference="20" object_id="_577"> <id>666</id> <edge_type>1</edge_type> <source_obj>38</source_obj> <sink_obj>39</sink_obj> </item> <item class_id_reference="20" object_id="_578"> <id>668</id> <edge_type>1</edge_type> <source_obj>34</source_obj> <sink_obj>40</sink_obj> </item> <item class_id_reference="20" object_id="_579"> <id>669</id> <edge_type>1</edge_type> <source_obj>522</source_obj> <sink_obj>40</sink_obj> </item> <item class_id_reference="20" object_id="_580"> <id>670</id> <edge_type>1</edge_type> <source_obj>524</source_obj> <sink_obj>40</sink_obj> </item> <item class_id_reference="20" object_id="_581"> <id>671</id> <edge_type>1</edge_type> <source_obj>40</source_obj> <sink_obj>41</sink_obj> </item> <item class_id_reference="20" object_id="_582"> <id>672</id> <edge_type>1</edge_type> <source_obj>39</source_obj> <sink_obj>42</sink_obj> </item> <item class_id_reference="20" object_id="_583"> <id>673</id> <edge_type>1</edge_type> <source_obj>41</source_obj> <sink_obj>42</sink_obj> </item> <item class_id_reference="20" object_id="_584"> <id>675</id> <edge_type>1</edge_type> <source_obj>31</source_obj> <sink_obj>43</sink_obj> </item> <item class_id_reference="20" object_id="_585"> <id>676</id> <edge_type>1</edge_type> <source_obj>555</source_obj> <sink_obj>43</sink_obj> </item> <item class_id_reference="20" object_id="_586"> <id>677</id> <edge_type>1</edge_type> <source_obj>271</source_obj> <sink_obj>43</sink_obj> </item> <item class_id_reference="20" object_id="_587"> <id>678</id> <edge_type>1</edge_type> <source_obj>43</source_obj> <sink_obj>44</sink_obj> </item> <item class_id_reference="20" object_id="_588"> <id>680</id> <edge_type>1</edge_type> <source_obj>34</source_obj> <sink_obj>45</sink_obj> </item> <item class_id_reference="20" object_id="_589"> <id>681</id> <edge_type>1</edge_type> <source_obj>555</source_obj> <sink_obj>45</sink_obj> </item> <item class_id_reference="20" object_id="_590"> <id>682</id> <edge_type>1</edge_type> <source_obj>271</source_obj> <sink_obj>45</sink_obj> </item> <item class_id_reference="20" object_id="_591"> <id>683</id> <edge_type>1</edge_type> <source_obj>45</source_obj> <sink_obj>46</sink_obj> </item> <item class_id_reference="20" object_id="_592"> <id>684</id> <edge_type>1</edge_type> <source_obj>44</source_obj> <sink_obj>47</sink_obj> </item> <item class_id_reference="20" object_id="_593"> <id>685</id> <edge_type>1</edge_type> <source_obj>46</source_obj> <sink_obj>47</sink_obj> </item> <item class_id_reference="20" object_id="_594"> <id>686</id> <edge_type>1</edge_type> <source_obj>31</source_obj> <sink_obj>48</sink_obj> </item> <item class_id_reference="20" object_id="_595"> <id>689</id> <edge_type>1</edge_type> <source_obj>42</source_obj> <sink_obj>49</sink_obj> </item> <item class_id_reference="20" object_id="_596"> <id>690</id> <edge_type>1</edge_type> <source_obj>237</source_obj> <sink_obj>49</sink_obj> </item> <item class_id_reference="20" object_id="_597"> <id>691</id> <edge_type>1</edge_type> <source_obj>522</source_obj> <sink_obj>49</sink_obj> </item> <item class_id_reference="20" object_id="_598"> <id>692</id> <edge_type>1</edge_type> <source_obj>34</source_obj> <sink_obj>50</sink_obj> </item> <item class_id_reference="20" object_id="_599"> <id>694</id> <edge_type>1</edge_type> <source_obj>47</source_obj> <sink_obj>51</sink_obj> </item> <item class_id_reference="20" object_id="_600"> <id>695</id> <edge_type>1</edge_type> <source_obj>237</source_obj> <sink_obj>51</sink_obj> </item> <item class_id_reference="20" object_id="_601"> <id>696</id> <edge_type>1</edge_type> <source_obj>522</source_obj> <sink_obj>51</sink_obj> </item> <item class_id_reference="20" object_id="_602"> <id>699</id> <edge_type>1</edge_type> <source_obj>51</source_obj> <sink_obj>52</sink_obj> </item> <item class_id_reference="20" object_id="_603"> <id>700</id> <edge_type>1</edge_type> <source_obj>50</source_obj> <sink_obj>52</sink_obj> </item> <item class_id_reference="20" object_id="_604"> <id>701</id> <edge_type>1</edge_type> <source_obj>49</source_obj> <sink_obj>52</sink_obj> </item> <item class_id_reference="20" object_id="_605"> <id>702</id> <edge_type>1</edge_type> <source_obj>48</source_obj> <sink_obj>52</sink_obj> </item> <item class_id_reference="20" object_id="_606"> <id>704</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>53</sink_obj> </item> <item class_id_reference="20" object_id="_607"> <id>705</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>53</sink_obj> </item> <item class_id_reference="20" object_id="_608"> <id>706</id> <edge_type>1</edge_type> <source_obj>6</source_obj> <sink_obj>53</sink_obj> </item> <item class_id_reference="20" object_id="_609"> <id>707</id> <edge_type>1</edge_type> <source_obj>52</source_obj> <sink_obj>53</sink_obj> </item> <item class_id_reference="20" object_id="_610"> <id>708</id> <edge_type>1</edge_type> <source_obj>37</source_obj> <sink_obj>53</sink_obj> </item> <item class_id_reference="20" object_id="_611"> <id>709</id> <edge_type>1</edge_type> <source_obj>36</source_obj> <sink_obj>53</sink_obj> </item> <item class_id_reference="20" object_id="_612"> <id>710</id> <edge_type>1</edge_type> <source_obj>36</source_obj> <sink_obj>55</sink_obj> </item> <item class_id_reference="20" object_id="_613"> <id>711</id> <edge_type>2</edge_type> <source_obj>56</source_obj> <sink_obj>55</sink_obj> </item> <item class_id_reference="20" object_id="_614"> <id>712</id> <edge_type>2</edge_type> <source_obj>225</source_obj> <sink_obj>55</sink_obj> </item> <item class_id_reference="20" object_id="_615"> <id>887</id> <edge_type>2</edge_type> <source_obj>27</source_obj> <sink_obj>225</sink_obj> </item> <item class_id_reference="20" object_id="_616"> <id>888</id> <edge_type>2</edge_type> <source_obj>27</source_obj> <sink_obj>148</sink_obj> </item> <item class_id_reference="20" object_id="_617"> <id>889</id> <edge_type>2</edge_type> <source_obj>27</source_obj> <sink_obj>143</sink_obj> </item> <item class_id_reference="20" object_id="_618"> <id>890</id> <edge_type>2</edge_type> <source_obj>27</source_obj> <sink_obj>76</sink_obj> </item> <item class_id_reference="20" object_id="_619"> <id>891</id> <edge_type>2</edge_type> <source_obj>27</source_obj> <sink_obj>73</sink_obj> </item> <item class_id_reference="20" object_id="_620"> <id>892</id> <edge_type>2</edge_type> <source_obj>27</source_obj> <sink_obj>56</sink_obj> </item> <item class_id_reference="20" object_id="_621"> <id>893</id> <edge_type>2</edge_type> <source_obj>56</source_obj> <sink_obj>225</sink_obj> </item> <item class_id_reference="20" object_id="_622"> <id>894</id> <edge_type>2</edge_type> <source_obj>56</source_obj> <sink_obj>56</sink_obj> </item> <item class_id_reference="20" object_id="_623"> <id>895</id> <edge_type>2</edge_type> <source_obj>73</source_obj> <sink_obj>225</sink_obj> </item> <item class_id_reference="20" object_id="_624"> <id>896</id> <edge_type>2</edge_type> <source_obj>73</source_obj> <sink_obj>73</sink_obj> </item> <item class_id_reference="20" object_id="_625"> <id>897</id> <edge_type>2</edge_type> <source_obj>76</source_obj> <sink_obj>87</sink_obj> </item> <item class_id_reference="20" object_id="_626"> <id>898</id> <edge_type>2</edge_type> <source_obj>87</source_obj> <sink_obj>101</sink_obj> </item> <item class_id_reference="20" object_id="_627"> <id>899</id> <edge_type>2</edge_type> <source_obj>87</source_obj> <sink_obj>96</sink_obj> </item> <item class_id_reference="20" object_id="_628"> <id>900</id> <edge_type>2</edge_type> <source_obj>96</source_obj> <sink_obj>101</sink_obj> </item> <item class_id_reference="20" object_id="_629"> <id>901</id> <edge_type>2</edge_type> <source_obj>101</source_obj> <sink_obj>115</sink_obj> </item> <item class_id_reference="20" object_id="_630"> <id>902</id> <edge_type>2</edge_type> <source_obj>101</source_obj> <sink_obj>110</sink_obj> </item> <item class_id_reference="20" object_id="_631"> <id>903</id> <edge_type>2</edge_type> <source_obj>110</source_obj> <sink_obj>115</sink_obj> </item> <item class_id_reference="20" object_id="_632"> <id>904</id> <edge_type>2</edge_type> <source_obj>115</source_obj> <sink_obj>132</sink_obj> </item> <item class_id_reference="20" object_id="_633"> <id>905</id> <edge_type>2</edge_type> <source_obj>115</source_obj> <sink_obj>124</sink_obj> </item> <item class_id_reference="20" object_id="_634"> <id>906</id> <edge_type>2</edge_type> <source_obj>124</source_obj> <sink_obj>132</sink_obj> </item> <item class_id_reference="20" object_id="_635"> <id>907</id> <edge_type>2</edge_type> <source_obj>132</source_obj> <sink_obj>225</sink_obj> </item> <item class_id_reference="20" object_id="_636"> <id>908</id> <edge_type>2</edge_type> <source_obj>132</source_obj> <sink_obj>87</sink_obj> </item> <item class_id_reference="20" object_id="_637"> <id>909</id> <edge_type>2</edge_type> <source_obj>143</source_obj> <sink_obj>225</sink_obj> </item> <item class_id_reference="20" object_id="_638"> <id>910</id> <edge_type>2</edge_type> <source_obj>143</source_obj> <sink_obj>143</sink_obj> </item> <item class_id_reference="20" object_id="_639"> <id>911</id> <edge_type>2</edge_type> <source_obj>148</source_obj> <sink_obj>162</sink_obj> </item> <item class_id_reference="20" object_id="_640"> <id>912</id> <edge_type>2</edge_type> <source_obj>162</source_obj> <sink_obj>177</sink_obj> </item> <item class_id_reference="20" object_id="_641"> <id>913</id> <edge_type>2</edge_type> <source_obj>162</source_obj> <sink_obj>171</sink_obj> </item> <item class_id_reference="20" object_id="_642"> <id>914</id> <edge_type>2</edge_type> <source_obj>171</source_obj> <sink_obj>177</sink_obj> </item> <item class_id_reference="20" object_id="_643"> <id>915</id> <edge_type>2</edge_type> <source_obj>177</source_obj> <sink_obj>192</sink_obj> </item> <item class_id_reference="20" object_id="_644"> <id>916</id> <edge_type>2</edge_type> <source_obj>177</source_obj> <sink_obj>186</sink_obj> </item> <item class_id_reference="20" object_id="_645"> <id>917</id> <edge_type>2</edge_type> <source_obj>186</source_obj> <sink_obj>192</sink_obj> </item> <item class_id_reference="20" object_id="_646"> <id>918</id> <edge_type>2</edge_type> <source_obj>192</source_obj> <sink_obj>223</sink_obj> </item> <item class_id_reference="20" object_id="_647"> <id>919</id> <edge_type>2</edge_type> <source_obj>192</source_obj> <sink_obj>201</sink_obj> </item> <item class_id_reference="20" object_id="_648"> <id>920</id> <edge_type>2</edge_type> <source_obj>201</source_obj> <sink_obj>223</sink_obj> </item> <item class_id_reference="20" object_id="_649"> <id>921</id> <edge_type>2</edge_type> <source_obj>223</source_obj> <sink_obj>225</sink_obj> </item> <item class_id_reference="20" object_id="_650"> <id>922</id> <edge_type>2</edge_type> <source_obj>223</source_obj> <sink_obj>162</sink_obj> </item> <item class_id_reference="20" object_id="_651"> <id>923</id> <edge_type>4</edge_type> <source_obj>30</source_obj> <sink_obj>33</sink_obj> </item> <item class_id_reference="20" object_id="_652"> <id>924</id> <edge_type>4</edge_type> <source_obj>59</source_obj> <sink_obj>63</sink_obj> </item> <item class_id_reference="20" object_id="_653"> <id>925</id> <edge_type>4</edge_type> <source_obj>213</source_obj> <sink_obj>217</sink_obj> </item> <item class_id_reference="20" object_id="_654"> <id>926</id> <edge_type>4</edge_type> <source_obj>209</source_obj> <sink_obj>213</sink_obj> </item> <item class_id_reference="20" object_id="_655"> <id>927</id> <edge_type>4</edge_type> <source_obj>80</source_obj> <sink_obj>88</sink_obj> </item> <item class_id_reference="20" object_id="_656"> <id>928</id> <edge_type>4</edge_type> <source_obj>80</source_obj> <sink_obj>102</sink_obj> </item> <item class_id_reference="20" object_id="_657"> <id>929</id> <edge_type>4</edge_type> <source_obj>77</source_obj> <sink_obj>130</sink_obj> </item> <item class_id_reference="20" object_id="_658"> <id>930</id> <edge_type>4</edge_type> <source_obj>80</source_obj> <sink_obj>116</sink_obj> </item> <item class_id_reference="20" object_id="_659"> <id>931</id> <edge_type>4</edge_type> <source_obj>88</source_obj> <sink_obj>102</sink_obj> </item> <item class_id_reference="20" object_id="_660"> <id>932</id> <edge_type>4</edge_type> <source_obj>88</source_obj> <sink_obj>116</sink_obj> </item> <item class_id_reference="20" object_id="_661"> <id>933</id> <edge_type>4</edge_type> <source_obj>102</source_obj> <sink_obj>116</sink_obj> </item> <item class_id_reference="20" object_id="_662"> <id>934</id> <edge_type>4</edge_type> <source_obj>154</source_obj> <sink_obj>163</sink_obj> </item> <item class_id_reference="20" object_id="_663"> <id>935</id> <edge_type>4</edge_type> <source_obj>154</source_obj> <sink_obj>178</sink_obj> </item> <item class_id_reference="20" object_id="_664"> <id>936</id> <edge_type>4</edge_type> <source_obj>149</source_obj> <sink_obj>221</sink_obj> </item> <item class_id_reference="20" object_id="_665"> <id>937</id> <edge_type>4</edge_type> <source_obj>150</source_obj> <sink_obj>220</sink_obj> </item> <item class_id_reference="20" object_id="_666"> <id>938</id> <edge_type>4</edge_type> <source_obj>151</source_obj> <sink_obj>219</sink_obj> </item> <item class_id_reference="20" object_id="_667"> <id>939</id> <edge_type>4</edge_type> <source_obj>154</source_obj> <sink_obj>193</sink_obj> </item> <item class_id_reference="20" object_id="_668"> <id>940</id> <edge_type>4</edge_type> <source_obj>163</source_obj> <sink_obj>178</sink_obj> </item> <item class_id_reference="20" object_id="_669"> <id>941</id> <edge_type>4</edge_type> <source_obj>163</source_obj> <sink_obj>193</sink_obj> </item> <item class_id_reference="20" object_id="_670"> <id>942</id> <edge_type>4</edge_type> <source_obj>178</source_obj> <sink_obj>193</sink_obj> </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="_671"> <mId>1</mId> <mTag>pixel_pack</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>-1</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_672"> <mId>2</mId> <mTag>Entry</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>3</count> <item_version>0</item_version> <item>27</item> <item>76</item> <item>148</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="_673"> <mId>3</mId> <mTag>Loop 5</mTag> <mType>1</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>56</item> </basic_blocks> <mII>2</mII> <mDepth>2</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="_674"> <mId>4</mId> <mTag>Loop 4</mTag> <mType>1</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>73</item> </basic_blocks> <mII>2</mII> <mDepth>2</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="_675"> <mId>5</mId> <mTag>Loop 3</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>87</item> <item>96</item> <item>101</item> <item>110</item> <item>115</item> <item>124</item> <item>132</item> </basic_blocks> <mII>4</mII> <mDepth>4</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="_676"> <mId>6</mId> <mTag>Loop 2</mTag> <mType>1</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>143</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="_677"> <mId>7</mId> <mTag>Loop 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>162</item> <item>171</item> <item>177</item> <item>186</item> <item>192</item> <item>201</item> <item>223</item> </basic_blocks> <mII>4</mII> <mDepth>6</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="_678"> <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>225</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>166</count> <item_version>0</item_version> <item class_id="27" tracking_level="0" version="0"> <first>9</first> <second class_id="28" tracking_level="0" version="0"> <first>0</first> <second>1</second> </second> </item> <item> <first>10</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>30</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>31</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>32</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>33</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>34</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>35</first> <second> <first>3</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>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>3</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>43</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>44</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>45</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>2</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>51</first> <second> <first>3</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>55</first> <second> <first>3</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>3</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>3</first> <second>0</second> </second> </item> <item> <first>64</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>65</first> <second> <first>3</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>3</first> <second>0</second> </second> </item> <item> <first>70</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>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>77</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>80</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>81</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>82</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>83</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>84</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>85</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>86</first> <second> <first>2</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>90</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>94</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>97</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>98</first> <second> <first>3</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>102</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>103</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>111</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>112</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>113</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>114</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>116</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>117</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>118</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>119</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>120</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>121</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>122</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>123</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>130</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>131</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>135</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>136</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>137</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>138</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>139</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>140</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>142</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>144</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>145</first> <second> <first>1</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>149</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>150</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>151</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>154</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>155</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>156</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>157</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>158</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>159</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>160</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>161</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>163</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>164</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>165</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>166</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>167</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>168</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>169</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>170</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>172</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>173</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>174</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>175</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>176</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>178</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>179</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>180</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>181</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>182</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>183</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>184</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>185</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>187</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>188</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>189</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>190</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>191</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>193</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>194</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>195</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>196</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>197</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>198</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>199</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>200</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>202</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>203</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>204</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>205</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>206</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>207</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>208</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>209</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>210</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>211</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>212</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>213</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>214</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>215</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>216</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>217</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>219</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>220</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>221</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>222</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>224</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>21</count> <item_version>0</item_version> <item class_id="30" tracking_level="0" version="0"> <first>27</first> <second class_id="31" tracking_level="0" version="0"> <first>0</first> <second>1</second> </second> </item> <item> <first>56</first> <second> <first>2</first> <second>3</second> </second> </item> <item> <first>73</first> <second> <first>2</first> <second>3</second> </second> </item> <item> <first>76</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>87</first> <second> <first>2</first> <second>2</second> </second> </item> <item> <first>96</first> <second> <first>3</first> <second>3</second> </second> </item> <item> <first>101</first> <second> <first>3</first> <second>4</second> </second> </item> <item> <first>110</first> <second> <first>4</first> <second>4</second> </second> </item> <item> <first>115</first> <second> <first>4</first> <second>5</second> </second> </item> <item> <first>124</first> <second> <first>5</first> <second>5</second> </second> </item> <item> <first>132</first> <second> <first>5</first> <second>5</second> </second> </item> <item> <first>143</first> <second> <first>2</first> <second>2</second> </second> </item> <item> <first>148</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>162</first> <second> <first>2</first> <second>2</second> </second> </item> <item> <first>171</first> <second> <first>3</first> <second>3</second> </second> </item> <item> <first>177</first> <second> <first>3</first> <second>4</second> </second> </item> <item> <first>186</first> <second> <first>4</first> <second>4</second> </second> </item> <item> <first>192</first> <second> <first>4</first> <second>5</second> </second> </item> <item> <first>201</first> <second> <first>5</first> <second>5</second> </second> </item> <item> <first>223</first> <second> <first>5</first> <second>7</second> </second> </item> <item> <first>225</first> <second> <first>8</first> <second>8</second> </second> </item> </bblk_ent_exit> <regions class_id="32" tracking_level="0" version="0"> <count>5</count> <item_version>0</item_version> <item class_id="33" tracking_level="1" version="0" object_id="_679"> <region_name>Loop 5</region_name> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>56</item> </basic_blocks> <nodes> <count>0</count> <item_version>0</item_version> </nodes> <anchor_node>-1</anchor_node> <region_type>8</region_type> <interval>2</interval> <pipe_depth>2</pipe_depth> </item> <item class_id_reference="33" object_id="_680"> <region_name>Loop 4</region_name> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>73</item> </basic_blocks> <nodes> <count>0</count> <item_version>0</item_version> </nodes> <anchor_node>-1</anchor_node> <region_type>8</region_type> <interval>2</interval> <pipe_depth>2</pipe_depth> </item> <item class_id_reference="33" object_id="_681"> <region_name>Loop 3</region_name> <basic_blocks> <count>7</count> <item_version>0</item_version> <item>87</item> <item>96</item> <item>101</item> <item>110</item> <item>115</item> <item>124</item> <item>132</item> </basic_blocks> <nodes> <count>0</count> <item_version>0</item_version> </nodes> <anchor_node>-1</anchor_node> <region_type>8</region_type> <interval>4</interval> <pipe_depth>4</pipe_depth> </item> <item class_id_reference="33" object_id="_682"> <region_name>Loop 1</region_name> <basic_blocks> <count>7</count> <item_version>0</item_version> <item>162</item> <item>171</item> <item>177</item> <item>186</item> <item>192</item> <item>201</item> <item>223</item> </basic_blocks> <nodes> <count>0</count> <item_version>0</item_version> </nodes> <anchor_node>-1</anchor_node> <region_type>8</region_type> <interval>4</interval> <pipe_depth>6</pipe_depth> </item> <item class_id_reference="33" object_id="_683"> <region_name>Loop 2</region_name> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>143</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>1</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>
----------------------------------------------------------------------- -- gen-commands-generate -- Generate command for dynamo -- Copyright (C) 2011 Stephane Carrez -- Written by Stephane Carrez (Stephane.Carrez@gmail.com) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- package Gen.Commands.Generate is -- ------------------------------ -- Generator Command -- ------------------------------ type Command is new Gen.Commands.Command with null record; -- Execute the command with the arguments. procedure Execute (Cmd : in Command; Generator : in out Gen.Generator.Handler); -- Write the help associated with the command. procedure Help (Cmd : in Command; Generator : in out Gen.Generator.Handler); end Gen.Commands.Generate;
-- C87B24A.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 OVERLOADING RESOLUTION USES THE RULE THAT: -- THE PREFIX OF A SLICE MUST BE APPROPRIATE FOR A ONE DIMENSIONAL -- ARRAY TYPE. -- TRH 26 JULY 82 WITH REPORT; USE REPORT; PROCEDURE C87B24A IS TYPE LIST IS ARRAY (1 .. 5) OF INTEGER; TYPE GRID IS ARRAY (1 .. 5, 1 .. 5) OF INTEGER; TYPE CUBE IS ARRAY (1 .. 5, 1 .. 5, 1 .. 5) OF INTEGER; TYPE HYPE IS ARRAY (1 .. 5, 1 .. 5, 1 .. 5, 1 .. 5) OF INTEGER; TYPE FLAG IS (PASS, FAIL); L : LIST := (1 .. 5 => 0); G : GRID := (1 .. 5 => (1 .. 5 => 0)); C : CUBE := (1 .. 5 => (1 .. 5 => (1 .. 5 => 0))); H : HYPE := (1 .. 5 => (1 .. 5 => (1 .. 5 => (1 .. 5 => 0)))); GENERIC TYPE T IS PRIVATE; ARG : IN T; STAT : IN FLAG; FUNCTION F1 RETURN T; FUNCTION F1 RETURN T IS BEGIN IF STAT = FAIL THEN FAILED ("SLICE PREFIX MUST BE APPROPRIATE FOR ONE " & "DIMENSIONAL ARRAY"); END IF; RETURN ARG; END F1; FUNCTION F2 IS NEW F1 (LIST, L, PASS); FUNCTION F2 IS NEW F1 (GRID, G, FAIL); FUNCTION F2 IS NEW F1 (CUBE, C, FAIL); FUNCTION F2 IS NEW F1 (HYPE, H, FAIL); BEGIN TEST ("C87B24A","OVERLOADED PREFIX FOR SLICE RESOLVED TO " & "ONE DIMENSIONAL ARRAY TYPE"); DECLARE S1 : INTEGER; BEGIN S1 := F2 (2 .. 3)(2); END; RESULT; END C87B24A;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME LIBRARY (GNARL) COMPONENTS -- -- -- -- S Y S T E M . I N T E R R U P T S -- -- -- -- S p e c -- -- -- -- Copyright (C) 2001-2021, 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/>. -- -- -- -- GNARL was developed by the GNARL team at Florida State University. -- -- Extensive contributions were provided by Ada Core Technologies, Inc. -- -- -- ------------------------------------------------------------------------------ -- This is the Ravenscar version of this package -- Note: the compiler generates direct calls to this interface, via Rtsfind. -- Any changes to this interface may require corresponding compiler changes. -- This package encapsulates the implementation of interrupt or signal -- handlers. It is logically an extension of the body of Ada.Interrupts. -- It is made a child of System to allow visibility of various -- runtime system internal data and operations. with System.OS_Interface; -- used for Max_Interrupt package System.Interrupts is pragma Elaborate_Body; ------------------------- -- Constants and types -- ------------------------- Default_Interrupt_Priority : constant System.Interrupt_Priority := System.Interrupt_Priority'Last; -- Default value used when a pragma Interrupt_Handler or Attach_Handler is -- specified without an Interrupt_Priority pragma, see D.3(10). type Ada_Interrupt_ID is new System.OS_Interface.Interrupt_Range; -- Avoid inheritance by Ada.Interrupts.Interrupt_ID of unwanted operations type Interrupt_ID is new System.OS_Interface.Interrupt_Range; -- The following renaming is introduced so that the type is accessible -- through rtsfind, otherwise the name clashes with its homonym in -- ada.interrupts. subtype System_Interrupt_Id is Interrupt_ID; type Parameterless_Handler is access protected procedure; type Handler_Index is range 0 .. Integer'Last; type Handler_Item is record Interrupt : Interrupt_ID; Handler : Parameterless_Handler; end record; -- Contains all the information from an Attach_Handler pragma type Handler_Array is array (Handler_Index range <>) of Handler_Item; -------------------------------- -- Interrupt entries services -- -------------------------------- ----------------------------- -- Interrupt entry service -- ----------------------------- procedure Install_Restricted_Handlers (Prio : Interrupt_Priority; Handlers : Handler_Array); -- Install the static Handlers for the given Interrupts. There is one call -- per protected object, and one element in Handlers for each handler of -- the protected object (typically only one). Prio is the priority of -- the protected object, so that interrupt controler can be set to that -- priority (if possible). procedure Install_Restricted_Handlers_Sequential; pragma Export (C, Install_Restricted_Handlers_Sequential, "__gnat_attach_all_handlers"); -- When the partition elaboration policy is sequential, attachment of -- interrupts handlers is deferred until the end of elaboration. The -- binder will call this procedure at the end of elaboration, just before -- activating the tasks (if any). end System.Interrupts;
-- Auto_Counters_Suite.Refcounted_Flyweights_Tests -- Unit tests for Auto_Counters Refcounted Flyweights packages -- Copyright (c) 2016, James Humphry - see LICENSE file for details with Ada.Containers, Ada.Finalization; with AUnit.Assertions; with Basic_Refcounted_Flyweights; with Protected_Refcounted_Flyweights; package body Auto_Counters_Suite.Refcounted_Flyweights_Tests is subtype Hash_Type is Ada.Containers.Hash_Type; use type Ada.Containers.Hash_Type; use AUnit.Assertions; Resources_Released : Natural := 0; type TestObj is new Ada.Finalization.Controlled with record Hash : Hash_Type; Value : Integer; end record; type TestObj_Access is access TestObj; pragma Warnings (Off, "not dispatching"); function Hash (E : TestObj) return Ada.Containers.Hash_Type is (E.Hash); pragma Warnings (On, "not dispatching"); overriding procedure Finalize (Object : in out TestObj) is begin Resources_Released := Resources_Released + 1; Object.Hash := 0; Object.Value := -1; end Finalize; package TestObj_Basic_Flyweights is new Basic_Refcounted_Flyweights(Element => TestObj, Element_Access => TestObj_Access, Hash => Hash, Capacity => 4); package TestObj_Protected_Flyweights is new Protected_Refcounted_Flyweights(Element => TestObj, Element_Access => TestObj_Access, Hash => Hash, Capacity => 4); -------------------- -- Register_Tests -- -------------------- procedure Register_Tests (T: in out Refcounted_Flyweights_Test) is use AUnit.Test_Cases.Registration; begin Register_Routine (T, Check_Basic_Usage'Access, "Check Basic_Refcounted_Flyweights"); Register_Routine (T, Check_Basic_Refs_Usage'Access, "Check Basic_Refcounted_Flyweights Element_Refs"); Register_Routine (T, Check_Protected_Usage'Access, "Check Protected_Refcounted_Flyweights"); Register_Routine (T, Check_Protected_Refs_Usage'Access, "Check Protected_Refcounted_Flyweights Element_Refs"); end Register_Tests; ---------- -- Name -- ---------- function Name (T : Refcounted_Flyweights_Test) return Test_String is pragma Unreferenced (T); begin return Format ("Tests of Refcounted Flyweights packages"); end Name; ------------ -- Set_Up -- ------------ procedure Set_Up (T : in out Refcounted_Flyweights_Test) is begin null; end Set_Up; ----------------------- -- Check_Basic_Usage -- ----------------------- procedure Check_Basic_Usage (T : in out Test_Cases.Test_Case'Class) is pragma Unreferenced(T); use TestObj_Basic_Flyweights; F : aliased Flyweight; E : TestObj_Access; P : array (Integer range 0..3) of Element_Ptr; begin -- Tests where elements are spread between buckets. Resources_Released := 0; for I in 0..3 loop E := new TestObj'(Ada.Finalization.Controlled with Hash => Hash_Type(I), Value => I); P(I) := Insert_Ptr(F, E); end loop; Assert(Resources_Released = 0, "Resources being released on insertion into an empty Flyweight."); for I in 0..3 loop Assert(P(I).Get.Hash = Hash_Type(I) and P(I).Get.Value = I, "Flyweight not storing values correctly."); Assert(P(I).P.Hash = Hash_Type(I) and P(I).P.Value = I, "Flyweight not storing values correctly."); end loop; Resources_Released := 0; declare E : TestObj_Access := new TestObj'(Ada.Finalization.Controlled with Hash => 0, Value => 0); Q : Element_Ptr := Insert_Ptr(F, E); pragma Unreferenced(Q); begin Assert(Resources_Released = 1, "Resources not being released on inserting duplicate " & "resource into Flyweight."); end; Resources_Released := 0; declare E : TestObj_Access := new TestObj'(Ada.Finalization.Controlled with Hash => 0, Value => 1); R : Element_Ptr; pragma Unreferenced (R); begin R := Insert_Ptr(F, E); Assert(Resources_Released = 0, "Resources being released on inserting resource into " & "Flyweight despite it not being a duplicate."); end; Assert(Resources_Released = 1, "Resources not being released when last pointer is destroyed."); Resources_Released := 0; declare E : TestObj_Access := P(1).Get; Q : constant Element_Ptr := Insert_Ptr(F, E); begin Assert(E = P(1).Get, "Inserting an access value that is already in the Flyweight " & "changes the access value unnecessarily."); Assert(Q = P(1), "Inserting an access value that is already in the Flyweight " & "does not return the same Element_Ptr as already exists."); Assert(Resources_Released = 0, "Inserting an access value that is already in the Flyweight " & "deallocates the object."); end; -- Tests where all values hit same hash bucket for I in 0..3 loop E := new TestObj'(Ada.Finalization.Controlled with Hash => 0, Value => I); P(I) := Insert_Ptr(F, E); end loop; for I in 0..3 loop Assert(P(I).P.Hash = 0 and P(I).P.Value = I, "Flyweight not storing values correctly."); end loop; Resources_Released := 0; declare E : TestObj_Access := new TestObj'(Ada.Finalization.Controlled with Hash => 0, Value => 0); Q : Element_Ptr := Insert_Ptr(F, E); pragma Unreferenced(Q); begin Assert(Resources_Released = 1, "Resources not being released on inserting duplicate " & "resource into Flyweight."); end; Resources_Released := 0; declare E : TestObj_Access := new TestObj'(Ada.Finalization.Controlled with Hash => 0, Value => 4); R : Element_Ptr; pragma Unreferenced (R); begin R := Insert_Ptr(F, E); Assert(Resources_Released = 0, "Resources being released on inserting resource into " & "Flyweight despite it not being a duplicate."); end; Assert(Resources_Released = 1, "Resources not being released when last pointer is destroyed."); Resources_Released := 0; declare E : TestObj_Access := P(1).Get; Q : constant Element_Ptr := Insert_Ptr(F, E); begin Assert(E = P(1).Get, "Inserting an access value that is already in the Flyweight " & "changes the access value unnecessarily."); Assert(Q = P(1), "Inserting an access value that is already in the Flyweight " & "does not return the same Element_Ptr as already exists."); Assert(Resources_Released = 0, "Inserting an access value that is already in the Flyweight " & "deallocates the object."); end; end Check_Basic_Usage; ---------------------------- -- Check_Basic_Refs_Usage -- ---------------------------- procedure Check_Basic_Refs_Usage (T : in out Test_Cases.Test_Case'Class) is pragma Unreferenced(T); use TestObj_Basic_Flyweights; F : aliased Flyweight; begin declare E : TestObj_Access := new TestObj'(Ada.Finalization.Controlled with Hash => 0, Value => 0); P1 : constant Element_Ptr := Insert_Ptr(F, E); R1 : constant Element_Ref := Make_Ref(P1); begin Assert(P1.Get = R1.Get, "Element_Ref created from Element_Ptr does not point to the" & "same value"); Assert(P1.Get.all = R1, "Element_Ref created from Element_Ptr does not dereference to " & "the same value"); end; declare E : TestObj_Access := new TestObj'(Ada.Finalization.Controlled with Hash => 1, Value => 1); R2 : constant Element_Ref := Insert_Ref(F, E); P2 : constant Element_Ptr := Make_Ptr(R2); begin Assert(P2.Get = R2.Get, "Element_Ptr created from Element_Ref does not point to the" & "same value"); Assert(P2.Get.all = R2, "Element_Ptr created from Element_Ref does not dereference to " & "the same value"); end; Resources_Released := 0; declare E : TestObj_Access := new TestObj'(Ada.Finalization.Controlled with Hash => 0, Value => 4); R : Element_Ref := Insert_Ref(F, E); pragma Unreferenced (R); begin Assert(Resources_Released = 0, "Resources being released on inserting resource into " & "Flyweight despite it not being a duplicate."); end; Assert(Resources_Released = 1, "Resources not being released when last Element_Ref is destroyed."); end Check_Basic_Refs_Usage; --------------------------- -- Check_Protected_Usage -- --------------------------- procedure Check_Protected_Usage (T : in out Test_Cases.Test_Case'Class) is pragma Unreferenced(T); use TestObj_Protected_Flyweights; F : aliased Flyweight; E : TestObj_Access; P : array (Integer range 0..3) of Element_Ptr; begin -- Tests where elements are spread between buckets. Resources_Released := 0; for I in 0..3 loop E := new TestObj'(Ada.Finalization.Controlled with Hash => Hash_Type(I), Value => I); P(I) := Insert_Ptr(F, E); end loop; Assert(Resources_Released = 0, "Resources being released on insertion into an empty Flyweight."); for I in 0..3 loop Assert(P(I).Get.Hash = Hash_Type(I) and P(I).Get.Value = I, "Flyweight not storing values correctly."); Assert(P(I).P.Hash = Hash_Type(I) and P(I).P.Value = I, "Flyweight not storing values correctly."); end loop; Resources_Released := 0; declare E : TestObj_Access := new TestObj'(Ada.Finalization.Controlled with Hash => 0, Value => 0); Q : Element_Ptr := Insert_Ptr(F, E); pragma Unreferenced(Q); begin Assert(Resources_Released = 1, "Resources not being released on inserting duplicate " & "resource into Flyweight."); end; Resources_Released := 0; declare E : TestObj_Access := new TestObj'(Ada.Finalization.Controlled with Hash => 0, Value => 1); R : Element_Ptr; pragma Unreferenced (R); begin R := Insert_Ptr(F, E); Assert(Resources_Released = 0, "Resources being released on inserting resource into " & "Flyweight despite it not being a duplicate."); end; Assert(Resources_Released = 1, "Resources not being released when last pointer is destroyed."); Resources_Released := 0; declare E : TestObj_Access := P(1).Get; Q : constant Element_Ptr := Insert_Ptr(F, E); begin Assert(E = P(1).Get, "Inserting an access value that is already in the Flyweight " & "changes the access value unnecessarily."); Assert(Q = P(1), "Inserting an access value that is already in the Flyweight " & "does not return the same Element_Ptr as already exists."); Assert(Resources_Released = 0, "Inserting an access value that is already in the Flyweight " & "deallocates the object."); end; -- Tests where all values hit same hash bucket for I in 0..3 loop E := new TestObj'(Ada.Finalization.Controlled with Hash => 0, Value => I); P(I) := Insert_Ptr(F, E); end loop; for I in 0..3 loop Assert(P(I).P.Hash = 0 and P(I).P.Value = I, "Flyweight not storing values correctly."); end loop; Resources_Released := 0; declare E : TestObj_Access := new TestObj'(Ada.Finalization.Controlled with Hash => 0, Value => 0); Q : Element_Ptr := Insert_Ptr(F, E); pragma Unreferenced(Q); begin Assert(Resources_Released = 1, "Resources not being released on inserting duplicate " & "resource into Flyweight."); end; Resources_Released := 0; declare E : TestObj_Access := new TestObj'(Ada.Finalization.Controlled with Hash => 0, Value => 4); R : Element_Ptr; pragma Unreferenced (R); begin R := Insert_Ptr(F, E); Assert(Resources_Released = 0, "Resources being released on inserting resource into " & "Flyweight despite it not being a duplicate."); end; Assert(Resources_Released = 1, "Resources not being released when last pointer is destroyed."); Resources_Released := 0; declare E : TestObj_Access := P(1).Get; Q : constant Element_Ptr := Insert_Ptr(F, E); begin Assert(E = P(1).Get, "Inserting an access value that is already in the Flyweight " & "changes the access value unnecessarily."); Assert(Q = P(1), "Inserting an access value that is already in the Flyweight " & "does not return the same Element_Ptr as already exists."); Assert(Resources_Released = 0, "Inserting an access value that is already in the Flyweight " & "deallocates the object."); end; end Check_Protected_Usage; -------------------------------- -- Check_Protected_Refs_Usage -- -------------------------------- procedure Check_Protected_Refs_Usage (T : in out Test_Cases.Test_Case'Class) is pragma Unreferenced(T); use TestObj_Protected_Flyweights; F : aliased Flyweight; begin declare E : TestObj_Access := new TestObj'(Ada.Finalization.Controlled with Hash => 0, Value => 0); P1 : constant Element_Ptr := Insert_Ptr(F, E); R1 : constant Element_Ref := Make_Ref(P1); begin Assert(P1.Get = R1.Get, "Element_Ref created from Element_Ptr does not point to the" & "same value"); Assert(P1.Get.all = R1, "Element_Ref created from Element_Ptr does not dereference to " & "the same value"); end; declare E : TestObj_Access := new TestObj'(Ada.Finalization.Controlled with Hash => 1, Value => 1); R2 : constant Element_Ref := Insert_Ref(F, E); P2 : constant Element_Ptr := Make_Ptr(R2); begin Assert(P2.Get = R2.Get, "Element_Ptr created from Element_Ref does not point to the" & "same value"); Assert(P2.Get.all = R2, "Element_Ptr created from Element_Ref does not dereference to " & "the same value"); end; Resources_Released := 0; declare E : TestObj_Access := new TestObj'(Ada.Finalization.Controlled with Hash => 0, Value => 4); R : Element_Ref := Insert_Ref(F, E); pragma Unreferenced (R); begin Assert(Resources_Released = 0, "Resources being released on inserting resource into " & "Flyweight despite it not being a duplicate."); end; Assert(Resources_Released = 1, "Resources not being released when last Element_Ref is destroyed."); end Check_Protected_Refs_Usage; end Auto_Counters_Suite.Refcounted_Flyweights_Tests;
-- At the beginning of each line, puts out white space relative to the -- current indent. Emits Wide text: package Indented_Text is -------------------------------------------------------- -- Trace routines emit no output when Trace_On is False. At the moment, -- Indented_Text.Class output routines call these: procedure Trace_Put (Message : in Wide_String); procedure Trace_Put_Line (Message : in Wide_String); -- Controls behavior of Trace_ routines:: Trace_On : Boolean := False; -------------------------------------------------------- type Class is tagged private; type Access_Class is access Class; procedure Indent (This : in out Class); procedure Dedent (This : in out Class); -- Sets Line_In_Progress: procedure New_Line (This : in out Class); -- Puts a new line only if a line is in progress: -- Sets Line_In_Progress: procedure End_Line (This : in out Class); -- Prepends the indent if this is the first put on this line: procedure Put (This : in out Class; Message : in String); procedure Put (This : in out Class; Message : in Wide_String); -- Prepends the indent if this is the first put on this line: procedure Put_Indented_Line (This : in out Class; Message : in String); procedure Put_Indented_Line (This : in out Class; Message : in Wide_String); private -- Can't be limited because generic Asis.Iterator.Traverse_Element doesn't -- want limited state information: -- (In Asis_Adapter.Element) type Class is tagged -- Initialized record Line_In_Progress : Boolean := False; Indent_Level : Natural := 0; end record; -- Puts an indent only if a line is not in progress (no indent put yet): -- Sets Line_In_Progress: procedure Put_Indent_If_Needed (This : in out Class); function White_Space (This : in Class) return Wide_String; end Indented_Text;
pragma Ada_2005; pragma Style_Checks (Off); with Interfaces.C; use Interfaces.C; package xmmintrin_h is -- Copyright (C) 2002-2017 Free Software Foundation, Inc. -- This file is part of GCC. -- GCC 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, or (at your option) -- any later version. -- GCC 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. -- 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/>. -- Implemented from the specification included in the Intel C++ Compiler -- User Guide and Reference, version 9.0. -- We need type definitions from the MMX header file. -- Get _mm_malloc () and _mm_free (). -- Constants for use with _mm_prefetch. subtype u_mm_hint is unsigned; u_MM_HINT_ET0 : constant unsigned := 7; u_MM_HINT_ET1 : constant unsigned := 6; u_MM_HINT_T0 : constant unsigned := 3; u_MM_HINT_T1 : constant unsigned := 2; u_MM_HINT_T2 : constant unsigned := 1; u_MM_HINT_NTA : constant unsigned := 0; -- d:\install\gpl2018\lib\gcc\x86_64-pc-mingw32\7.3.1\include\xmmintrin.h:37 -- _MM_HINT_ET is _MM_HINT_T with set 3rd bit. -- Loads one cache line from address P to a location "closer" to the -- processor. The selector I specifies the type of prefetch operation. -- The Intel API is flexible enough that we must allow aliasing with other -- vector types, and their scalar components. subtype uu_m128 is <vector>; -- d:\install\gpl2018\lib\gcc\x86_64-pc-mingw32\7.3.1\include\xmmintrin.h:69 -- Unaligned version of the same type. subtype uu_m128_u is <vector>; -- d:\install\gpl2018\lib\gcc\x86_64-pc-mingw32\7.3.1\include\xmmintrin.h:72 -- Internal data types for implementing the intrinsics. subtype uu_v4sf is <vector>; -- d:\install\gpl2018\lib\gcc\x86_64-pc-mingw32\7.3.1\include\xmmintrin.h:75 -- Create a selector for use with the SHUFPS instruction. -- Bits in the MXCSR. -- Create an undefined vector. -- skipped func _mm_undefined_ps -- Create a vector of zeros. -- skipped func _mm_setzero_ps -- Perform the respective operation on the lower SPFP (single-precision -- floating-point) values of A and B; the upper three SPFP values are -- passed through from A. -- skipped func _mm_add_ss -- skipped func _mm_sub_ss -- skipped func _mm_mul_ss -- skipped func _mm_div_ss -- skipped func _mm_sqrt_ss -- skipped func _mm_rcp_ss -- skipped func _mm_rsqrt_ss -- skipped func _mm_min_ss -- skipped func _mm_max_ss -- Perform the respective operation on the four SPFP values in A and B. -- skipped func _mm_add_ps -- skipped func _mm_sub_ps -- skipped func _mm_mul_ps -- skipped func _mm_div_ps -- skipped func _mm_sqrt_ps -- skipped func _mm_rcp_ps -- skipped func _mm_rsqrt_ps -- skipped func _mm_min_ps -- skipped func _mm_max_ps -- Perform logical bit-wise operations on 128-bit values. -- skipped func _mm_and_ps -- skipped func _mm_andnot_ps -- skipped func _mm_or_ps -- skipped func _mm_xor_ps -- Perform a comparison on the lower SPFP values of A and B. If the -- comparison is true, place a mask of all ones in the result, otherwise a -- mask of zeros. The upper three SPFP values are passed through from A. -- skipped func _mm_cmpeq_ss -- skipped func _mm_cmplt_ss -- skipped func _mm_cmple_ss -- skipped func _mm_cmpgt_ss -- skipped func _mm_cmpge_ss -- skipped func _mm_cmpneq_ss -- skipped func _mm_cmpnlt_ss -- skipped func _mm_cmpnle_ss -- skipped func _mm_cmpngt_ss -- skipped func _mm_cmpnge_ss -- skipped func _mm_cmpord_ss -- skipped func _mm_cmpunord_ss -- Perform a comparison on the four SPFP values of A and B. For each -- element, if the comparison is true, place a mask of all ones in the -- result, otherwise a mask of zeros. -- skipped func _mm_cmpeq_ps -- skipped func _mm_cmplt_ps -- skipped func _mm_cmple_ps -- skipped func _mm_cmpgt_ps -- skipped func _mm_cmpge_ps -- skipped func _mm_cmpneq_ps -- skipped func _mm_cmpnlt_ps -- skipped func _mm_cmpnle_ps -- skipped func _mm_cmpngt_ps -- skipped func _mm_cmpnge_ps -- skipped func _mm_cmpord_ps -- skipped func _mm_cmpunord_ps -- Compare the lower SPFP values of A and B and return 1 if true -- and 0 if false. -- skipped func _mm_comieq_ss -- skipped func _mm_comilt_ss -- skipped func _mm_comile_ss -- skipped func _mm_comigt_ss -- skipped func _mm_comige_ss -- skipped func _mm_comineq_ss -- skipped func _mm_ucomieq_ss -- skipped func _mm_ucomilt_ss -- skipped func _mm_ucomile_ss -- skipped func _mm_ucomigt_ss -- skipped func _mm_ucomige_ss -- skipped func _mm_ucomineq_ss -- Convert the lower SPFP value to a 32-bit integer according to the current -- rounding mode. -- skipped func _mm_cvtss_si32 -- skipped func _mm_cvt_ss2si -- Convert the lower SPFP value to a 32-bit integer according to the -- current rounding mode. -- Intel intrinsic. -- skipped func _mm_cvtss_si64 -- Microsoft intrinsic. -- skipped func _mm_cvtss_si64x -- Convert the two lower SPFP values to 32-bit integers according to the -- current rounding mode. Return the integers in packed form. -- skipped func _mm_cvtps_pi32 -- skipped func _mm_cvt_ps2pi -- Truncate the lower SPFP value to a 32-bit integer. -- skipped func _mm_cvttss_si32 -- skipped func _mm_cvtt_ss2si -- Truncate the lower SPFP value to a 32-bit integer. -- Intel intrinsic. -- skipped func _mm_cvttss_si64 -- Microsoft intrinsic. -- skipped func _mm_cvttss_si64x -- Truncate the two lower SPFP values to 32-bit integers. Return the -- integers in packed form. -- skipped func _mm_cvttps_pi32 -- skipped func _mm_cvtt_ps2pi -- Convert B to a SPFP value and insert it as element zero in A. -- skipped func _mm_cvtsi32_ss -- skipped func _mm_cvt_si2ss -- Convert B to a SPFP value and insert it as element zero in A. -- Intel intrinsic. -- skipped func _mm_cvtsi64_ss -- Microsoft intrinsic. -- skipped func _mm_cvtsi64x_ss -- Convert the two 32-bit values in B to SPFP form and insert them -- as the two lower elements in A. -- skipped func _mm_cvtpi32_ps -- skipped func _mm_cvt_pi2ps -- Convert the four signed 16-bit values in A to SPFP form. -- skipped func _mm_cvtpi16_ps -- This comparison against zero gives us a mask that can be used to -- fill in the missing sign bits in the unpack operations below, so -- that we get signed values after unpacking. -- Convert the four words to doublewords. -- Convert the doublewords to floating point two at a time. -- Convert the four unsigned 16-bit values in A to SPFP form. -- skipped func _mm_cvtpu16_ps -- Convert the four words to doublewords. -- Convert the doublewords to floating point two at a time. -- Convert the low four signed 8-bit values in A to SPFP form. -- skipped func _mm_cvtpi8_ps -- This comparison against zero gives us a mask that can be used to -- fill in the missing sign bits in the unpack operations below, so -- that we get signed values after unpacking. -- Convert the four low bytes to words. -- Convert the low four unsigned 8-bit values in A to SPFP form. -- skipped func _mm_cvtpu8_ps -- Convert the four signed 32-bit values in A and B to SPFP form. -- skipped func _mm_cvtpi32x2_ps -- Convert the four SPFP values in A to four signed 16-bit integers. -- skipped func _mm_cvtps_pi16 -- Convert the four SPFP values in A to four signed 8-bit integers. -- skipped func _mm_cvtps_pi8 -- Selects four specific SPFP values from A and B based on MASK. -- Selects and interleaves the upper two SPFP values from A and B. -- skipped func _mm_unpackhi_ps -- Selects and interleaves the lower two SPFP values from A and B. -- skipped func _mm_unpacklo_ps -- Sets the upper two SPFP values with 64-bits of data loaded from P; -- the lower two values are passed through from A. -- skipped func _mm_loadh_pi -- Stores the upper two SPFP values of A into P. -- skipped func _mm_storeh_pi -- Moves the upper two values of B into the lower two values of A. -- skipped func _mm_movehl_ps -- Moves the lower two values of B into the upper two values of A. -- skipped func _mm_movelh_ps -- Sets the lower two SPFP values with 64-bits of data loaded from P; -- the upper two values are passed through from A. -- skipped func _mm_loadl_pi -- Stores the lower two SPFP values of A into P. -- skipped func _mm_storel_pi -- Creates a 4-bit mask from the most significant bits of the SPFP values. -- skipped func _mm_movemask_ps -- Return the contents of the control register. -- skipped func _mm_getcsr -- Read exception bits from the control register. -- skipped func _MM_GET_EXCEPTION_STATE -- skipped func _MM_GET_EXCEPTION_MASK -- skipped func _MM_GET_ROUNDING_MODE -- skipped func _MM_GET_FLUSH_ZERO_MODE -- Set the control register to I. -- skipped func _mm_setcsr -- Set exception bits in the control register. -- skipped func _MM_SET_EXCEPTION_STATE -- skipped func _MM_SET_EXCEPTION_MASK -- skipped func _MM_SET_ROUNDING_MODE -- skipped func _MM_SET_FLUSH_ZERO_MODE -- Create a vector with element 0 as F and the rest zero. -- skipped func _mm_set_ss -- Create a vector with all four elements equal to F. -- skipped func _mm_set1_ps -- skipped func _mm_set_ps1 -- Create a vector with element 0 as *P and the rest zero. -- skipped func _mm_load_ss -- Create a vector with all four elements equal to *P. -- skipped func _mm_load1_ps -- skipped func _mm_load_ps1 -- Load four SPFP values from P. The address must be 16-byte aligned. -- skipped func _mm_load_ps -- Load four SPFP values from P. The address need not be 16-byte aligned. -- skipped func _mm_loadu_ps -- Load four SPFP values in reverse order. The address must be aligned. -- skipped func _mm_loadr_ps -- Create the vector [Z Y X W]. -- skipped func _mm_set_ps -- Create the vector [W X Y Z]. -- skipped func _mm_setr_ps -- Stores the lower SPFP value. -- skipped func _mm_store_ss -- skipped func _mm_cvtss_f32 -- Store four SPFP values. The address must be 16-byte aligned. -- skipped func _mm_store_ps -- Store four SPFP values. The address need not be 16-byte aligned. -- skipped func _mm_storeu_ps -- Store the lower SPFP value across four words. -- skipped func _mm_store1_ps -- skipped func _mm_store_ps1 -- Store four SPFP values in reverse order. The address must be aligned. -- skipped func _mm_storer_ps -- Sets the low SPFP value of A from the low value of B. -- skipped func _mm_move_ss -- Extracts one of the four words of A. The selector N must be immediate. -- Inserts word D into one of four words of A. The selector N must be -- immediate. -- Compute the element-wise maximum of signed 16-bit values. -- skipped func _mm_max_pi16 -- skipped func _m_pmaxsw -- Compute the element-wise maximum of unsigned 8-bit values. -- skipped func _mm_max_pu8 -- skipped func _m_pmaxub -- Compute the element-wise minimum of signed 16-bit values. -- skipped func _mm_min_pi16 -- skipped func _m_pminsw -- Compute the element-wise minimum of unsigned 8-bit values. -- skipped func _mm_min_pu8 -- skipped func _m_pminub -- Create an 8-bit mask of the signs of 8-bit values. -- skipped func _mm_movemask_pi8 -- skipped func _m_pmovmskb -- Multiply four unsigned 16-bit values in A by four unsigned 16-bit values -- in B and produce the high 16 bits of the 32-bit results. -- skipped func _mm_mulhi_pu16 -- skipped func _m_pmulhuw -- Return a combination of the four 16-bit values in A. The selector -- must be an immediate. -- Conditionally store byte elements of A into P. The high bit of each -- byte in the selector N determines whether the corresponding byte from -- A is stored. -- skipped func _mm_maskmove_si64 -- skipped func _m_maskmovq -- Compute the rounded averages of the unsigned 8-bit values in A and B. -- skipped func _mm_avg_pu8 -- skipped func _m_pavgb -- Compute the rounded averages of the unsigned 16-bit values in A and B. -- skipped func _mm_avg_pu16 -- skipped func _m_pavgw -- Compute the sum of the absolute differences of the unsigned 8-bit -- values in A and B. Return the value in the lower 16-bit word; the -- upper words are cleared. -- skipped func _mm_sad_pu8 -- skipped func _m_psadbw -- Stores the data in A to the address P without polluting the caches. -- skipped func _mm_stream_pi -- Likewise. The address must be 16-byte aligned. -- skipped func _mm_stream_ps -- Guarantees that every preceding store is globally visible before -- any subsequent store. -- skipped func _mm_sfence -- Transpose the 4x4 matrix composed of row[0-3]. -- For backward source compatibility. -- The execution of the next instruction is delayed by an implementation -- specific amount of time. The instruction does not modify the -- architectural state. This is after the pop_options pragma because -- it does not require SSE support in the processor--the encoding is a -- nop on processors that do not support it. -- skipped func _mm_pause end xmmintrin_h;
-- Copyright 2012-2020 Free Software Foundation, Inc. -- -- This program is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- the Free Software Foundation; either version 3 of the License, or -- (at your option) any later version. -- -- This program is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- GNU General Public License for more details. -- -- You should have received a copy of the GNU General Public License -- along with this program. If not, see <http://www.gnu.org/licenses/>. With Classes; use Classes; procedure P is SP_Access : Shape_Access := new Circle'(My_Circle); DP_Access : Drawable_Access := new Circle'(My_Circle); SP_Array : Shape_Array := (others => S_Access); DP_Array : Drawable_Array := (others => D_Access); begin null; -- BREAK end P;
-- This package was generated by the Ada_Drivers_Library project wizard script package ADL_Config is Board : constant String := "STM32_H405"; -- From user input Architecture : constant String := "ARM"; -- From board definition Vendor : constant String := "STMicro"; -- From board definition Device_Family : constant String := "STM32F4"; -- From board definition Device_Name : constant String := "STM32F405RGTx"; -- From board definition CPU_Core : constant String := "ARM Cortex-M4F"; -- From mcu definition High_Speed_External_Clock : constant := 8_000_000; -- From board definition Number_Of_Interrupts : constant := 0; -- From user input Has_ZFP_Runtime : constant String := "False"; -- From board definition Has_Ravenscar_SFP_Runtime : constant String := "True"; -- From board definition Has_Ravenscar_Full_Runtime : constant String := "True"; -- From board definition Runtime_Profile : constant String := "ravenscar-full"; -- From user input Runtime_Name_Suffix : constant String := "stm32f4"; -- From board definition Runtime_Name : constant String := "ravenscar-full-stm32f4"; -- From user input Use_Startup_Gen : constant Boolean := False; -- From user input Max_Path_Length : constant := 1024; -- From user input Max_Mount_Points : constant := 2; -- From user input Max_Mount_Name_Length : constant := 128; -- From user input end ADL_Config;
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- I N T E R F A C E S . C -- -- -- -- S p e c -- -- -- -- Copyright (C) 1992-2010, Free Software Foundation, Inc. -- -- -- -- This specification is derived from the Ada Reference Manual for use with -- -- GNAT. The copyright notice above, and the license provisions that follow -- -- apply solely to the contents of the part following the private keyword. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- -- -- -- -- -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- This version contains only the type definitions for standard interfacing -- with C. All functions have been removed from the original spec. package Interfaces.C is pragma Pure; -- Declaration's based on C's <limits.h> CHAR_BIT : constant := 8; SCHAR_MIN : constant := -128; SCHAR_MAX : constant := 127; UCHAR_MAX : constant := 255; -- Signed and Unsigned Integers. Note that in GNAT, we have ensured that -- the standard predefined Ada types correspond to the standard C types type int is new Integer; type short is new Short_Integer; type long is new Long_Integer; type signed_char is range SCHAR_MIN .. SCHAR_MAX; for signed_char'Size use CHAR_BIT; type unsigned is mod 2 ** int'Size; type unsigned_short is mod 2 ** short'Size; type unsigned_long is mod 2 ** long'Size; type unsigned_char is mod (UCHAR_MAX + 1); for unsigned_char'Size use CHAR_BIT; subtype plain_char is unsigned_char; type ptrdiff_t is range -(2 ** (Standard'Address_Size - 1)) .. +(2 ** (Standard'Address_Size - 1) - 1); type size_t is mod 2 ** Standard'Address_Size; -- Floating-Point type C_float is new Float; type double is new Standard.Long_Float; type long_double is new Standard.Long_Long_Float; ---------------------------- -- Characters and Strings -- ---------------------------- type char is new Character; nul : constant char := char'First; type char_array is array (size_t range <>) of aliased char; for char_array'Component_Size use CHAR_BIT; ------------------------------------ -- Wide Character and Wide String -- ------------------------------------ type wchar_t is new Wide_Character; for wchar_t'Size use Standard'Wchar_T_Size; wide_nul : constant wchar_t := wchar_t'First; type wchar_array is array (size_t range <>) of aliased wchar_t; end Interfaces.C;
------------------------------------------------------------------------------ -- -- -- GNAT ncurses Binding Samples -- -- -- -- ncurses -- -- -- -- B O D Y -- -- -- ------------------------------------------------------------------------------ -- Copyright (c) 2000-2008,2009 Free Software Foundation, Inc. -- -- -- -- Permission is hereby granted, free of charge, to any person obtaining a -- -- copy of this software and associated documentation files (the -- -- "Software"), to deal in the Software without restriction, including -- -- without limitation the rights to use, copy, modify, merge, publish, -- -- distribute, distribute with modifications, sublicense, and/or sell -- -- copies of the Software, and to permit persons to whom the Software is -- -- furnished to do so, subject to the following conditions: -- -- -- -- The above copyright notice and this permission notice shall be included -- -- in all copies or substantial portions of the Software. -- -- -- -- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -- -- OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -- -- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -- -- IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -- -- DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -- -- OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR -- -- THE USE OR OTHER DEALINGS IN THE SOFTWARE. -- -- -- -- Except as contained in this notice, the name(s) of the above copyright -- -- holders shall not be used in advertising or otherwise to promote the -- -- sale, use or other dealings in this Software without prior written -- -- authorization. -- ------------------------------------------------------------------------------ -- Author: Eugene V. Melaragno <aldomel@ix.netcom.com> 2000 -- Version Control -- $Revision: 1.8 $ -- $Date: 2009/12/26 17:38:58 $ -- Binding Version 01.00 ------------------------------------------------------------------------------ -- Character input test -- test the keypad feature with ncurses2.util; use ncurses2.util; with Terminal_Interface.Curses; use Terminal_Interface.Curses; with Terminal_Interface.Curses.Mouse; use Terminal_Interface.Curses.Mouse; with Ada.Characters.Handling; with Ada.Strings.Bounded; with ncurses2.genericPuts; procedure ncurses2.getch_test is use Int_IO; function mouse_decode (ep : Mouse_Event) return String; function mouse_decode (ep : Mouse_Event) return String is Y : Line_Position; X : Column_Position; Button : Mouse_Button; State : Button_State; package BS is new Ada.Strings.Bounded.Generic_Bounded_Length (200); use BS; buf : Bounded_String := To_Bounded_String (""); begin -- Note that these bindings do not allow -- two button states, -- The C version can print {click-1, click-3} for example. -- They also don't have the 'id' or z coordinate. Get_Event (ep, Y, X, Button, State); -- TODO Append (buf, "id "); from C version Append (buf, "at ("); Append (buf, Column_Position'Image (X)); Append (buf, ", "); Append (buf, Line_Position'Image (Y)); Append (buf, ") state"); Append (buf, Mouse_Button'Image (Button)); Append (buf, " = "); Append (buf, Button_State'Image (State)); return To_String (buf); end mouse_decode; buf : String (1 .. 1024); -- TODO was BUFSIZE n : Integer; c : Key_Code; blockflag : Timeout_Mode := Blocking; firsttime : Boolean := True; tmp2 : Event_Mask; tmp6 : String (1 .. 6); tmp20 : String (1 .. 20); x : Column_Position; y : Line_Position; tmpx : Integer; incount : Integer := 0; begin Refresh; tmp2 := Start_Mouse (All_Events); Add (Str => "Delay in 10ths of a second (<CR> for blocking input)? "); Set_Echo_Mode (SwitchOn => True); Get (Str => buf); Set_Echo_Mode (SwitchOn => False); Set_NL_Mode (SwitchOn => False); if Ada.Characters.Handling.Is_Digit (buf (1)) then Get (Item => n, From => buf, Last => tmpx); Set_Timeout_Mode (Mode => Delayed, Amount => n * 100); blockflag := Delayed; end if; c := Character'Pos ('?'); Set_Raw_Mode (SwitchOn => True); loop if not firsttime then Add (Str => "Key pressed: "); Put (tmp6, Integer (c), 8); Add (Str => tmp6); Add (Ch => ' '); if c = Key_Mouse then declare event : Mouse_Event; begin event := Get_Mouse; Add (Str => "KEY_MOUSE, "); Add (Str => mouse_decode (event)); Add (Ch => newl); end; elsif c >= Key_Min then Key_Name (c, tmp20); Add (Str => tmp20); -- I used tmp and got bitten by the length problem:-> Add (Ch => newl); elsif c > 16#80# then -- TODO fix, use constant if possible declare c2 : constant Character := Character'Val (c mod 16#80#); begin if Ada.Characters.Handling.Is_Graphic (c2) then Add (Str => "M-"); Add (Ch => c2); else Add (Str => "M-"); Add (Str => Un_Control ((Ch => c2, Color => Color_Pair'First, Attr => Normal_Video))); end if; Add (Str => " (high-half character)"); Add (Ch => newl); end; else declare c2 : constant Character := Character'Val (c mod 16#80#); begin if Ada.Characters.Handling.Is_Graphic (c2) then Add (Ch => c2); Add (Str => " (ASCII printable character)"); Add (Ch => newl); else Add (Str => Un_Control ((Ch => c2, Color => Color_Pair'First, Attr => Normal_Video))); Add (Str => " (ASCII control character)"); Add (Ch => newl); end if; end; end if; -- TODO I am not sure why this was in the C version -- the delay statement scroll anyway. Get_Cursor_Position (Line => y, Column => x); if y >= Lines - 1 then Move_Cursor (Line => 0, Column => 0); end if; Clear_To_End_Of_Line; end if; firsttime := False; if c = Character'Pos ('g') then declare package p is new ncurses2.genericPuts (1024); use p; use p.BS; timedout : Boolean := False; boundedbuf : Bounded_String; begin Add (Str => "getstr test: "); Set_Echo_Mode (SwitchOn => True); -- Note that if delay mode is set -- Get can raise an exception. -- The C version would print the string it had so far -- also TODO get longer length string, like the C version declare begin myGet (Str => boundedbuf); exception when Curses_Exception => Add (Str => "Timed out."); Add (Ch => newl); timedout := True; end; -- note that the Ada Get will stop reading at 1024. if not timedout then Set_Echo_Mode (SwitchOn => False); Add (Str => " I saw '"); myAdd (Str => boundedbuf); Add (Str => "'."); Add (Ch => newl); end if; end; elsif c = Character'Pos ('s') then ShellOut (True); elsif c = Character'Pos ('x') or c = Character'Pos ('q') or (c = Key_None and blockflag = Blocking) then exit; elsif c = Character'Pos ('?') then Add (Str => "Type any key to see its keypad value. Also:"); Add (Ch => newl); Add (Str => "g -- triggers a getstr test"); Add (Ch => newl); Add (Str => "s -- shell out"); Add (Ch => newl); Add (Str => "q -- quit"); Add (Ch => newl); Add (Str => "? -- repeats this help message"); Add (Ch => newl); end if; loop c := Getchar; exit when c /= Key_None; if blockflag /= Blocking then Put (tmp6, incount); -- argh string length! Add (Str => tmp6); Add (Str => ": input timed out"); Add (Ch => newl); else Put (tmp6, incount); Add (Str => tmp6); Add (Str => ": input error"); Add (Ch => newl); exit; end if; incount := incount + 1; end loop; end loop; End_Mouse (tmp2); Set_Timeout_Mode (Mode => Blocking, Amount => 0); -- amount is ignored Set_Raw_Mode (SwitchOn => False); Set_NL_Mode (SwitchOn => True); Erase; End_Windows; end ncurses2.getch_test;
with Ada.Integer_Text_IO; package body Afficher_Un_Entier is procedure Afficher (N: in Integer) is begin Ada.Integer_Text_IO.Put (N, 1); end; end Afficher_Un_Entier;
-- Copyright (c) 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 Ada.Characters.Handling; use Ada.Characters.Handling; with Ada.Strings; with Ada.Strings.Fixed; with Ada.Strings.Unbounded; package body Tk.Bind is function Modifier_Type_Image(Modifier: Modifiers_Type) return String is Image: String := To_Lower(Item => Modifiers_Type'Image(Modifier)); begin Image(1) := To_Upper(Item => Image(1)); if Image(Image'Last - 1) = '_' then Image(Image'Last - 1) := '-'; end if; return Image; end Modifier_Type_Image; function Key_Syms_Type_Image(Key: Key_Syms) return String is use Ada.Strings; use Ada.Strings.Fixed; Image: String := To_Lower(Item => Key_Syms'Image(Key)); Start_Index: Positive := 1; begin Image(1) := To_Upper(Item => Image(1)); if Image(1 .. 3) = "Key" then Image(4) := '-'; elsif Image(1 .. 3) = "Shi" then Image(6 .. 7) := "-K"; Image(10 .. 11) := '-' & To_Upper(Item => Image(11)); end if; case Key is when SHIFT_KEY_AE => return "Key-AE"; when SHIFT_KEY_ENG => return "Key-ENG"; when SHIFT_KEY_KANA_WO => return "Key-kana_WO"; when SHIFT_KEY_KANA_A .. SHIFT_KEY_KANA_N => Start_Index := Index(Source => Image, Pattern => "_", Going => Backward); return "Key-kana" & To_Upper(Item => Image(Start_Index .. Image'Last)); when KEY_ARABIC_COMMA .. KEY_SERBIAN_DZE | KEY_CYRILLIC_YU .. KEY_CYRILLIC_HARDSIGN | KEY_GREEK_ALPHAACCENT .. KEY_GREEK_OMEGAACCENT | KEY_BACKSPACE .. KEY_PAUSE | KEY_ESCAPE | KEY_KANJI .. KEY_BEGIN => Image(5) := To_Upper(Item => Image(5)); when SHIFT_KEY_SERBIAN_DJE .. SHIFT_KEY_SERBIAN_DZE | SHIFT_KEY_CYRILLIC_YU .. SHIFT_KEY_CYRILLIC_HARDSIGN | SHIFT_KEY_GREEK_ALPHA .. SHIFT_KEY_GREEK_OMEGA => Image(11) := To_Upper(Item => Image(11)); Start_Index := Index(Source => Image, Pattern => "_", Going => Backward); Image(Start_Index .. Image'Last) := To_Upper(Item => Image(Start_Index .. Image'Last)); when SHIFT_KEY_GREEK_ALPHAACCENT => return "Key-Greek_ALPHAaccent"; when SHIFT_KEY_GREEK_EPSILONACCENT => return "Key-Greek_EPSILONaccent"; when SHIFT_KEY_GREEK_ETAACCENT => return "Key-Greek_ETAaccent"; when SHIFT_KEY_GREEK_IOTAACCENT => return "Key-Greek_IOTAAaccent"; when SHIFT_KEY_GREEK_IOTADIAERESIS => return "Key-Greek_IOTAdiaeresis"; when SHIFT_KEY_GREEK_IOTAACCENTDIAERESIS => return "Key-Greek_IOTAaccentdiaeresis"; when SHIFT_KEY_GREEK_OMICRONACCENT => return "Key-Greek_OMICRONaccent"; when SHIFT_KEY_GREEK_UPSILONACCENT => return "Key-Greek_UPSILONAaccent"; when SHIFT_KEY_GREEK_UPSILONDIERESIS => return "Key-Greek_UPSILONdieresis"; when SHIFT_KEY_GREEK_UPSILONACCENTDIERESIS => return "Key-Greek_UPSILONaccentdieresis"; when SHIFT_KEY_GREEK_OMEGAACCENT => return "Key-Greek_OMEGAaccent"; when KEY_SCROLL_LOCK | KEY_SYS_REQ | KEY_MULTI_KEY => Start_Index := Index(Source => Image, Pattern => "_", Going => Backward); Image(5) := To_Upper(Item => Image(5)); Image(Start_Index + 1) := To_Upper(Item => Image(Start_Index + 1)); when others => null; end case; if Image(1 .. 3) = "Shi" then return Image(7 .. Image'Last); end if; return Image; end Key_Syms_Type_Image; procedure Tk_Bind (Window: Tk_Widget; Sequence: Modifiers_Type; Script: Tcl_String; Append: Boolean := False) is begin Tcl_Eval (Tcl_Script => "bind " & Tk_Path_Name(Widgt => Window) & " <" & Modifier_Type_Image(Modifier => Sequence) & "> " & (if Append then "+" else "") & To_String(Source => Script), Interpreter => Tk_Interp(Widgt => Window)); end Tk_Bind; procedure Tk_Bind (Window: Tk_Widget; Sequence: Modifiers_Array; Script: Tcl_String; Append: Boolean := False) is use Ada.Strings.Unbounded; Modifier: Unbounded_String := Null_Unbounded_String; begin Array_To_String_Loop : for I in Sequence'Range loop Modifier := Modifier & Modifier_Type_Image(Modifier => Sequence(I)); if I < Sequence'Last then Modifier := Modifier & "-"; end if; end loop Array_To_String_Loop; Tcl_Eval (Tcl_Script => "bind " & Tk_Path_Name(Widgt => Window) & " <" & To_String(Source => Modifier) & "> " & (if Append then "+" else "") & To_String(Source => Script), Interpreter => Tk_Interp(Widgt => Window)); end Tk_Bind; end Tk.Bind;
with openGL.Program.lit.textured_skinned; package openGL.Geometry.lit_textured_skinned -- -- Supports per-vertex site, texture, lighting and skinning. -- is type Item is new openGL.Geometry.item with private; function new_Geometry return access Geometry.lit_textured_skinned.item'Class; procedure define_Program; ---------- -- Vertex -- type Vertex is record Site : Vector_3; Normal : Vector_3; Coords : Coordinate_2D; Shine : Real; bone_Ids : Vector_4; bone_Weights : Vector_4; end record; pragma Convention (C, Vertex); type Vertex_array is array (long_Index_t range <>) of aliased Vertex; -------------- -- Attributes -- procedure Vertices_are (Self : in out Item; Now : in Vertex_array); overriding procedure Indices_are (Self : in out Item; Now : in Indices; for_Facia : in Positive); function Program return openGL.Program.lit.textured_skinned.view; private type Item is new Geometry.item with null record; overriding procedure enable_Texture (Self : in Item); end openGL.Geometry.lit_textured_skinned;
-- { dg-do compile { target *-*-linux* } } -- { dg-options "-gnatws" } procedure Trampoline3 is A : Integer; type FuncPtr is access function (I : Integer) return Integer; function F (I : Integer) return Integer is begin return A + I; end F; P : FuncPtr := F'Access; I : Integer; begin I := P(0); end; -- { dg-final { scan-assembler-not "GNU-stack.*x" } }
-- CD5011E.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 -- FLOATING POINT TYPE IN THE DECLARATIVE PART OF A BLOCK -- STATEMENT. -- HISTORY: -- JET 09/11/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 CD5011E IS BEGIN TEST ("CD5011E", "AN ADDRESS CLAUSE CAN BE " & "GIVEN FOR A VARIABLE OF A FLOATING POINT " & "TYPE IN THE DECLARATIVE PART OF A " & "BLOCK STATEMENT"); DECLARE FP : FLOAT := 3.0; FOR FP USE AT SPPRT13.VARIABLE_ADDRESS; BEGIN IF EQUAL (3, 3) THEN FP := 2.0; END IF; IF FP /= 2.0 THEN FAILED ("WRONG VALUE FOR VARIABLE IN BLOCK"); END IF; IF FP'ADDRESS /= SPPRT13.VARIABLE_ADDRESS THEN FAILED ("WRONG ADDRESS FOR VARIABLE IN BLOCK"); END IF; END; RESULT; END CD5011E;
------------------------------------------------------------------------------ -- -- -- Copyright (C) 2017, Universidad Politécnica de Madrid -- -- -- -- 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. -- -- -- ------------------------------------------------------------------------------- -- User interface with HK_Data; use HK_Data; with HK_Data.TMP36; use HK_Data.TMP36; with TTC_Data; use TTC_Data; package User_Interface is procedure Init; -- Init user interface procedure Put (S : String); -- write a text string on the user interface procedure Put (M : TM_Message); -- write a TM message on the user interface end User_Interface;
------------------------------------------------------------------------------ -- G E L A A S I S -- -- ASIS implementation for Gela project, a portable Ada compiler -- -- http://gela.ada-ru.org -- -- - - - - - - - - - - - - - - - -- -- Read copyright and license at the end of this file -- ------------------------------------------------------------------------------ -- $Revision: 209 $ $Date: 2013-11-30 21:03:24 +0200 (Сб., 30 нояб. 2013) $ -- Purpose: -- Help with manipulation of Element package Asis.Gela.Element_Utils is function Compound_Name_Image (Compount_Name : Asis.Element) return Wide_String; procedure Set_Enclosing_Element (Item : Asis.Element; Parent : Asis.Element); procedure Set_Enclosing_Compilation_Unit (Item : Asis.Element; Unit : Asis.Compilation_Unit); function To_Unit_Name (Compount_Name : Asis.Element) return Asis.Element; procedure Copy_Element (Source : Asis.Element; Target : Asis.Element); procedure Set_Resolved (Element : Asis.Element; List : Asis.Defining_Name_List); procedure Set_Override (Defining_Name : Asis.Element; Homograph : Asis.Element); function Override (Defining_Name : Asis.Element) return Asis.Element; procedure Add_To_Visible (Declaration : Asis.Element; Item : Asis.Element; Before : Asis.Program_Text := ""); procedure Add_Defining_Name (Item : Asis.Element; Name : Asis.Element); procedure Remove_Defining_Name (Item : Asis.Element; Name : Asis.Element); procedure Set_Name_Declaration (Item : Asis.Element; Name : Asis.Declaration); procedure Set_Pragma_Kind (Element : Asis.Pragma_Element); procedure Add_Type_Operator (Tipe : Asis.Definition; Oper : Asis.Declaration); procedure Add_Inherited_Subprogram (Tipe : Asis.Definition; Proc : Asis.Declaration); function Base_Subprogram_Derivation (Proc : Asis.Declaration) return Asis.Declaration; procedure Add_Pragma (Item : Asis.Element; The_Pragma : Asis.Pragma_Element); procedure Set_Derived_Type (Tipe : Asis.Type_Definition; Parent : Asis.Declaration; Root : Asis.Declaration; Struct : Asis.Declaration); procedure Set_Called_Function (Call : Asis.Element; Name : Asis.Declaration; Dispatched : Boolean); procedure Set_Corresponding_Statement (Stmt : Asis.Statement; Target : Asis.Statement); procedure Set_Completion (Declaration : Asis.Defining_Name; Completion : Asis.Declaration); procedure Set_Normalized_Params (Call : Asis.Element; Param : Asis.Association_List; Profile : Asis.Parameter_Specification_List); procedure Set_Representation_Value (Enum : Asis.Declaration; Value : Wide_String); procedure Set_Corresponding_Type (Funct : Asis.Declaration; Tipe : Asis.Type_Definition); function Generic_Actual (Decl : Asis.Declaration) return Asis.Expression; end Asis.Gela.Element_Utils; ------------------------------------------------------------------------------ -- 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. ------------------------------------------------------------------------------
------------------------------------------------------------------------------ -- -- -- 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.Generic_Collections; package AMF.OCL.Real_Literal_Exps.Collections is pragma Preelaborate; package OCL_Real_Literal_Exp_Collections is new AMF.Generic_Collections (OCL_Real_Literal_Exp, OCL_Real_Literal_Exp_Access); type Set_Of_OCL_Real_Literal_Exp is new OCL_Real_Literal_Exp_Collections.Set with null record; Empty_Set_Of_OCL_Real_Literal_Exp : constant Set_Of_OCL_Real_Literal_Exp; type Ordered_Set_Of_OCL_Real_Literal_Exp is new OCL_Real_Literal_Exp_Collections.Ordered_Set with null record; Empty_Ordered_Set_Of_OCL_Real_Literal_Exp : constant Ordered_Set_Of_OCL_Real_Literal_Exp; type Bag_Of_OCL_Real_Literal_Exp is new OCL_Real_Literal_Exp_Collections.Bag with null record; Empty_Bag_Of_OCL_Real_Literal_Exp : constant Bag_Of_OCL_Real_Literal_Exp; type Sequence_Of_OCL_Real_Literal_Exp is new OCL_Real_Literal_Exp_Collections.Sequence with null record; Empty_Sequence_Of_OCL_Real_Literal_Exp : constant Sequence_Of_OCL_Real_Literal_Exp; private Empty_Set_Of_OCL_Real_Literal_Exp : constant Set_Of_OCL_Real_Literal_Exp := (OCL_Real_Literal_Exp_Collections.Set with null record); Empty_Ordered_Set_Of_OCL_Real_Literal_Exp : constant Ordered_Set_Of_OCL_Real_Literal_Exp := (OCL_Real_Literal_Exp_Collections.Ordered_Set with null record); Empty_Bag_Of_OCL_Real_Literal_Exp : constant Bag_Of_OCL_Real_Literal_Exp := (OCL_Real_Literal_Exp_Collections.Bag with null record); Empty_Sequence_Of_OCL_Real_Literal_Exp : constant Sequence_Of_OCL_Real_Literal_Exp := (OCL_Real_Literal_Exp_Collections.Sequence with null record); end AMF.OCL.Real_Literal_Exps.Collections;
-- This file is generated by SWIG. Please do not modify by hand. -- with Interfaces; with Interfaces.C; with Interfaces.C.Pointers; package xcb.xcb_get_pointer_mapping_request_t is -- Item -- type Item is record major_opcode : aliased Interfaces.Unsigned_8; pad0 : aliased Interfaces.Unsigned_8; length : aliased Interfaces.Unsigned_16; end record; -- Item_Array -- type Item_Array is array (Interfaces.C .size_t range <>) of aliased xcb.xcb_get_pointer_mapping_request_t .Item; -- Pointer -- package C_Pointers is new Interfaces.C.Pointers (Index => Interfaces.C.size_t, Element => xcb.xcb_get_pointer_mapping_request_t.Item, Element_Array => xcb.xcb_get_pointer_mapping_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_get_pointer_mapping_request_t .Pointer; -- Pointer_Pointer -- package C_Pointer_Pointers is new Interfaces.C.Pointers (Index => Interfaces.C.size_t, Element => xcb.xcb_get_pointer_mapping_request_t.Pointer, Element_Array => xcb.xcb_get_pointer_mapping_request_t.Pointer_Array, Default_Terminator => null); subtype Pointer_Pointer is C_Pointer_Pointers.Pointer; end xcb.xcb_get_pointer_mapping_request_t;
-- Copyright 2015-2021 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 Reprod is procedure Do_Nothing (Broken : Obj_T) is begin null; -- STOP end Do_Nothing; end Reprod;
with System; package STM32GD.Vectors is pragma Preelaborate; procedure Default_Handler; type IRQ_Vectors is record HardFault_Handler : System.Address; MemManage_Handler : System.Address; BusFault_Handler : System.Address; UsageFault_Handler : System.Address; Reserved_1C : System.Address; Reserved_20 : System.Address; Reserved_24 : System.Address; Reserved_28 : System.Address; SVCall_Handler : System.Address; DebugMonitor_Handler : System.Address; Reserved_34 : System.Address; PendSV_Handler : System.Address; SysTick_Handler : System.Address; WWDG_Handler : System.Address; PVD_Handler : System.Address; RTC_Handler : System.Address; FLASH_Handler : System.Address; end record; end STM32GD.Vectors;
package Records is type RecordA is record a: Character; b: Integer; end record; type RecordB is record a: String(1..100); end record; type RecordC is record a: String(0..100); end record; type RecordD is record a: String(10..100); end record; type RecordE is record a: String(10..100); end record; type RecordF is record a : Boolean; b : Integer range 1 .. 120; end record; for RecordF use record a at 0 range 0 .. 0; b at 0 range 1 .. 7; end record; type BaseRecord is tagged record a: Character; b: Integer; end record; type DerivedRecord is new BaseRecord with record c: Integer; d: Integer; end record; type NonTaggedBaseRecord is record a: Integer; b: Integer; end record; type VariantSelect is (One, Two, Three); -- The_Type is called the discriminant of the type type VariantRecord(Selector: VariantSelect := One) is record common: Integer; case Selector is when One => a: boolean; when Two => b: Positive; when Three => c: String(1..5); end case; end record; type NonTaggedDerivedRecord is new NonTaggedBaseRecord; a : RecordA; b : RecordB; c : RecordC; d : RecordD; e : RecordE; f : RecordF; --g: BaseRecord; h: DerivedRecord; i: NonTaggedDerivedRecord; --variant: VariantRecord; end Records;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME LIBRARY (GNARL) COMPONENTS -- -- -- -- S Y S T E M . B B . B O A R D _ P A R A M E T E R S -- -- -- -- S p e c -- -- -- -- Copyright (C) 2016, AdaCore -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- -- -- -- -- -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- -- The port of GNARL to bare board targets was initially developed by the -- -- Real-Time Systems Group at the Technical University of Madrid. -- -- -- ------------------------------------------------------------------------------ -- This package defines board parameters for the STM32F429-Discovery board package System.BB.Board_Parameters is pragma Pure; -------------------- -- Hardware clock -- -------------------- Clock_Frequency : constant := 168_000_000; -- Maximal frequency in over-drive mode. In non over-drive mode, the -- frequency should be adjusted to 168 MHz. HSE_Clock_Frequency : constant := 24_000_000; -- Frequency of High Speed External clock. end System.BB.Board_Parameters;
with Ada.Containers.Vectors; with Ada.Strings.Unbounded; use Ada.Strings.Unbounded; with Ada.Text_IO; use Ada.Text_IO; package Rejuvenation.Simple_Factory is package Analysis_Units is new Ada.Containers.Vectors (Positive, Analysis_Unit); package Unbounded_Strings is new Ada.Containers.Vectors (Positive, Unbounded_String); Parse_Exception : exception; procedure Put_Diagnostics (File : File_Type; Unit : Analysis_Unit) with Pre => Is_Open (File) and then Ada.Text_IO.Mode (File) /= In_File; procedure Put_Diagnostics (Unit : Analysis_Unit); function Get_Ada_Source_Files_From_Project (Project_Filename : String; Recursive : Boolean := True) return Unbounded_Strings.Vector; -- Return the file paths of all Ada files in the given project -- When the project contains subprojects, -- Ada files in those subprojects will be include based on the -- value of the Recursive flag -- Pre: Project_Filename points to an Ada project file function Get_Ada_Source_Files_From_Directory (Directory_Name : String; Recursive : Boolean := True) return Unbounded_Strings.Vector; -- Return the file paths of all Ada files in the given directory -- When the directory contains subdirectories, -- Ada files in those subdirectories will be include based on the -- value of the Recursive flag -- Pre: Directory_Name points to an Ada project file function Analyze_Fragment (Fragment : String; Rule : Grammar_Rule := Default_Grammar_Rule) return Analysis_Unit; -- Return the analysis unit of the given fragment of Ada code -- Optionally a specific grammar rule can be specified. -- Raises an exception if parsing fails. function Analyze_File (Filename : String) return Analysis_Unit; -- Return the analysis unit of the given Ada file -- Pre: Filename points to an Ada file function Analyze_File_In_Project (Filename : String; Project_Filename : String) return Analysis_Unit; -- Return the analysis unit of the given Ada file in the context -- of the given project -- Pre: Filename points to an Ada file -- Pre: Project_Filename points to an Ada project file function Analyze_Project (Project_Filename : String; Recursive : Boolean := True) return Analysis_Units.Vector; -- Return the analysis units of all Ada files in the given project -- When the project contains subprojects, -- Ada files in those subprojects will be include based on the -- value of the Recursive flag -- Pre: Project_Filename points to an Ada project file -- -- Current implementation doesn't work around libadalang limitation: -- -- LIBADALANG.PROJECT_PROVIDER.UNSUPPORTED_VIEW_ERROR: -- selected project is aggregate and has more than one sub-project -- -- TODO: Make a workable / reasonable solution! -- suggestions / background info: -- -- The situation is more nuanced: even though indeed a given Libadalang -- context cannot see whole aggregate projects when they contain -- "conflicting" units, it is perfectly possible for a single command to -- create one context per aggregated project and run your analysis on all -- of them. This specific case is illustrated in our documentation with -- an example: see -- <https://docs.adacore.com/live/wave/libadalang/html/libadalang_ug/ -- examples/aggregate_projects.html -- #creating-one-provide-context-for-each-aggregated-project>. -- -- Note that because of the semantics of aggregate projects, it would -- make no sense for a single Libadalang context to see units from all -- aggregated projects at once without adding much complexity to the -- Libadalang API. For instance, given that multiple units may define the -- same type several times, the P_Referenced_Decl property would need to -- be modified to return not "THE declaration" referenced by some -- expression, but all declarations it may refer to (depending on the -- "view" inside the aggregated project). This would be probably a great -- burden for both us (Libadalang implementers) and all Libadalang users -- (need to deal with a much more complex API even when not dealing with -- aggregate projects). end Rejuvenation.Simple_Factory;
pragma SPARK_Mode; with Types; use Types; -- @summary -- Control for the robot's motors -- -- @description -- This package exposes on interface to control the robot's motors -- package Zumo_Motors is -- True if the package has been init'd Initd : Boolean := False; -- Whether to reverse the left motor FlipLeft : Boolean := False; -- Whether to reverse the right motor FlipRight : Boolean := False; -- Init the package. pin mux and whatnot procedure Init with Global => (In_Out => Initd), Pre => not Initd, Post => Initd; -- Flip the direction of the left motor -- @param Flip if true, flip the direction procedure FlipLeftMotor (Flip : Boolean) with Global => (Output => (FlipLeft)), Post => FlipLeft = Flip; -- Flip the direction of the right motor -- @param Flip if tru,. flip the direction procedure FlipRightMotor (Flip : Boolean) with Global => (Output => (FlipRight)), Post => FlipRight = Flip; -- Set the speed of the left motor -- @param Velocity the speed to set the motor at procedure SetLeftSpeed (Velocity : Motor_Speed) with Global => (Proof_In => Initd, Input => FlipLeft), -- Output => (Pwm.Register_State)), Pre => Initd; -- Set the speed of the right motor -- @param Velocity the speed to set the motor at procedure SetRightSpeed (Velocity : Motor_Speed) with Global => (Proof_In => Initd, Input => FlipRight), -- Output => (Pwm.Register_State)), Pre => Initd; -- Set the speed of both the left and right motors -- @param LeftVelocity the left motor velocity to set -- @param RightVelocity the right motor velocity to set procedure SetSpeed (LeftVelocity : Motor_Speed; RightVelocity : Motor_Speed) with Global => (Proof_In => Initd, Input => (FlipLeft, FlipRight)), -- Output => (Pwm.Register_State)), Pre => Initd; end Zumo_Motors;
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- S Y S T E M . A D D R E S S _ I M A G E -- -- -- -- S p e c -- -- -- -- Copyright (C) 1992-2020, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- This is a GNAT specific addition which provides a useful debugging -- procedure that gives an (implementation dependent) string which -- identifies an address. -- This unit may be used directly from an application program by providing -- an appropriate WITH, and the interface can be expected to remain stable. function System.Address_Image (A : Address) return String; pragma Pure (System.Address_Image); -- Returns string (hexadecimal digits with upper case letters) representing -- the address (string is 8/16 bytes for 32/64-bit machines). 'First of the -- result = 1.
with Side_Effects; procedure STest is begin Side_Effects.Test; end STest;
----------------------------------------------------------------------- -- ado-schemas-postgresql -- Postgresql Database Schemas -- Copyright (C) 2018 Stephane Carrez -- Written by Stephane Carrez (Stephane.Carrez@gmail.com) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- with ADO.Connections; package ADO.Schemas.Postgresql is -- Load the database schema procedure Load_Schema (C : in ADO.Connections.Database_Connection'Class; Schema : out Schema_Definition; Database : in String); end ADO.Schemas.Postgresql;
pragma Warnings (Off); pragma Ada_95; pragma Source_File_Name (ada_main, Spec_File_Name => "b__tarea_dina_declare.ads"); pragma Source_File_Name (ada_main, Body_File_Name => "b__tarea_dina_declare.adb"); pragma Suppress (Overflow_Check); with System.Restrictions; with Ada.Exceptions; package body ada_main is E074 : Short_Integer; pragma Import (Ada, E074, "system__os_lib_E"); E010 : Short_Integer; pragma Import (Ada, E010, "ada__exceptions_E"); E015 : Short_Integer; pragma Import (Ada, E015, "system__soft_links_E"); E027 : Short_Integer; pragma Import (Ada, E027, "system__exception_table_E"); E042 : Short_Integer; pragma Import (Ada, E042, "ada__containers_E"); E070 : Short_Integer; pragma Import (Ada, E070, "ada__io_exceptions_E"); E054 : Short_Integer; pragma Import (Ada, E054, "ada__strings_E"); E056 : Short_Integer; pragma Import (Ada, E056, "ada__strings__maps_E"); E060 : Short_Integer; pragma Import (Ada, E060, "ada__strings__maps__constants_E"); E080 : Short_Integer; pragma Import (Ada, E080, "interfaces__c_E"); E029 : Short_Integer; pragma Import (Ada, E029, "system__exceptions_E"); E082 : Short_Integer; pragma Import (Ada, E082, "system__object_reader_E"); E049 : Short_Integer; pragma Import (Ada, E049, "system__dwarf_lines_E"); E023 : Short_Integer; pragma Import (Ada, E023, "system__soft_links__initialize_E"); E041 : Short_Integer; pragma Import (Ada, E041, "system__traceback__symbolic_E"); E134 : Short_Integer; pragma Import (Ada, E134, "ada__tags_E"); E142 : Short_Integer; pragma Import (Ada, E142, "ada__streams_E"); E112 : Short_Integer; pragma Import (Ada, E112, "interfaces__c__strings_E"); E150 : Short_Integer; pragma Import (Ada, E150, "system__file_control_block_E"); E149 : Short_Integer; pragma Import (Ada, E149, "system__finalization_root_E"); E147 : Short_Integer; pragma Import (Ada, E147, "ada__finalization_E"); E146 : Short_Integer; pragma Import (Ada, E146, "system__file_io_E"); E122 : Short_Integer; pragma Import (Ada, E122, "system__task_info_E"); E008 : Short_Integer; pragma Import (Ada, E008, "ada__calendar_E"); E006 : Short_Integer; pragma Import (Ada, E006, "ada__calendar__delays_E"); E106 : Short_Integer; pragma Import (Ada, E106, "ada__real_time_E"); E140 : Short_Integer; pragma Import (Ada, E140, "ada__text_io_E"); E156 : Short_Integer; pragma Import (Ada, E156, "system__tasking__initialization_E"); E166 : Short_Integer; pragma Import (Ada, E166, "system__tasking__protected_objects_E"); E168 : Short_Integer; pragma Import (Ada, E168, "system__tasking__protected_objects__entries_E"); E164 : Short_Integer; pragma Import (Ada, E164, "system__tasking__queuing_E"); E152 : Short_Integer; pragma Import (Ada, E152, "system__tasking__stages_E"); E178 : Short_Integer; pragma Import (Ada, E178, "tipos_tarea_E"); Sec_Default_Sized_Stacks : array (1 .. 1) of aliased System.Secondary_Stack.SS_Stack (System.Parameters.Runtime_Default_Sec_Stack_Size); Local_Priority_Specific_Dispatching : constant String := ""; Local_Interrupt_States : constant String := ""; Is_Elaborated : Boolean := False; procedure finalize_library is begin E168 := E168 - 1; declare procedure F1; pragma Import (Ada, F1, "system__tasking__protected_objects__entries__finalize_spec"); begin F1; end; E140 := E140 - 1; declare procedure F2; pragma Import (Ada, F2, "ada__text_io__finalize_spec"); begin F2; end; declare procedure F3; pragma Import (Ada, F3, "system__file_io__finalize_body"); begin E146 := E146 - 1; F3; end; declare procedure Reraise_Library_Exception_If_Any; pragma Import (Ada, Reraise_Library_Exception_If_Any, "__gnat_reraise_library_exception_if_any"); begin Reraise_Library_Exception_If_Any; end; end finalize_library; procedure adafinal is procedure s_stalib_adafinal; pragma Import (Ada, s_stalib_adafinal, "system__standard_library__adafinal"); procedure Runtime_Finalize; pragma Import (C, Runtime_Finalize, "__gnat_runtime_finalize"); begin if not Is_Elaborated then return; end if; Is_Elaborated := False; Runtime_Finalize; s_stalib_adafinal; end adafinal; type No_Param_Proc is access procedure; pragma Favor_Top_Level (No_Param_Proc); procedure adainit is Main_Priority : Integer; pragma Import (C, Main_Priority, "__gl_main_priority"); Time_Slice_Value : Integer; pragma Import (C, Time_Slice_Value, "__gl_time_slice_val"); WC_Encoding : Character; pragma Import (C, WC_Encoding, "__gl_wc_encoding"); Locking_Policy : Character; pragma Import (C, Locking_Policy, "__gl_locking_policy"); Queuing_Policy : Character; pragma Import (C, Queuing_Policy, "__gl_queuing_policy"); Task_Dispatching_Policy : Character; pragma Import (C, Task_Dispatching_Policy, "__gl_task_dispatching_policy"); Priority_Specific_Dispatching : System.Address; pragma Import (C, Priority_Specific_Dispatching, "__gl_priority_specific_dispatching"); Num_Specific_Dispatching : Integer; pragma Import (C, Num_Specific_Dispatching, "__gl_num_specific_dispatching"); Main_CPU : Integer; pragma Import (C, Main_CPU, "__gl_main_cpu"); Interrupt_States : System.Address; pragma Import (C, Interrupt_States, "__gl_interrupt_states"); Num_Interrupt_States : Integer; pragma Import (C, Num_Interrupt_States, "__gl_num_interrupt_states"); Unreserve_All_Interrupts : Integer; pragma Import (C, Unreserve_All_Interrupts, "__gl_unreserve_all_interrupts"); Detect_Blocking : Integer; pragma Import (C, Detect_Blocking, "__gl_detect_blocking"); Default_Stack_Size : Integer; pragma Import (C, Default_Stack_Size, "__gl_default_stack_size"); Default_Secondary_Stack_Size : System.Parameters.Size_Type; pragma Import (C, Default_Secondary_Stack_Size, "__gnat_default_ss_size"); Bind_Env_Addr : System.Address; pragma Import (C, Bind_Env_Addr, "__gl_bind_env_addr"); procedure Runtime_Initialize (Install_Handler : Integer); pragma Import (C, Runtime_Initialize, "__gnat_runtime_initialize"); Finalize_Library_Objects : No_Param_Proc; pragma Import (C, Finalize_Library_Objects, "__gnat_finalize_library_objects"); Binder_Sec_Stacks_Count : Natural; pragma Import (Ada, Binder_Sec_Stacks_Count, "__gnat_binder_ss_count"); Default_Sized_SS_Pool : System.Address; pragma Import (Ada, Default_Sized_SS_Pool, "__gnat_default_ss_pool"); begin if Is_Elaborated then return; end if; Is_Elaborated := True; Main_Priority := -1; Time_Slice_Value := -1; WC_Encoding := 'b'; Locking_Policy := ' '; Queuing_Policy := ' '; Task_Dispatching_Policy := ' '; System.Restrictions.Run_Time_Restrictions := (Set => (False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, False, True, False, False, False, False, False, False, False, False, False, False, False, False, False, False), Value => (0, 0, 0, 0, 0, 0, 0, 0, 0, 0), Violated => (False, False, False, False, True, True, False, False, False, False, False, True, True, True, True, False, False, False, False, False, True, True, False, True, True, False, True, True, True, True, False, False, False, False, False, True, False, False, True, False, False, False, False, True, False, True, False, True, False, False, True, True, False, False, True, False, False, True, False, True, False, True, True, True, False, False, True, False, True, True, True, False, True, True, False, True, True, True, True, False, False, False, False, False, False, False, False, False, True, False, False, False), Count => (0, 0, 0, 0, 0, 0, 1, 0, 0, 0), Unknown => (False, False, False, False, False, False, True, False, False, False)); Priority_Specific_Dispatching := Local_Priority_Specific_Dispatching'Address; Num_Specific_Dispatching := 0; Main_CPU := -1; Interrupt_States := Local_Interrupt_States'Address; Num_Interrupt_States := 0; Unreserve_All_Interrupts := 0; Detect_Blocking := 0; Default_Stack_Size := -1; ada_main'Elab_Body; Default_Secondary_Stack_Size := System.Parameters.Runtime_Default_Sec_Stack_Size; Binder_Sec_Stacks_Count := 1; Default_Sized_SS_Pool := Sec_Default_Sized_Stacks'Address; Runtime_Initialize (1); Finalize_Library_Objects := finalize_library'access; Ada.Exceptions'Elab_Spec; System.Soft_Links'Elab_Spec; System.Exception_Table'Elab_Body; E027 := E027 + 1; Ada.Containers'Elab_Spec; E042 := E042 + 1; Ada.Io_Exceptions'Elab_Spec; E070 := E070 + 1; Ada.Strings'Elab_Spec; E054 := E054 + 1; Ada.Strings.Maps'Elab_Spec; E056 := E056 + 1; Ada.Strings.Maps.Constants'Elab_Spec; E060 := E060 + 1; Interfaces.C'Elab_Spec; E080 := E080 + 1; System.Exceptions'Elab_Spec; E029 := E029 + 1; System.Object_Reader'Elab_Spec; E082 := E082 + 1; System.Dwarf_Lines'Elab_Spec; E049 := E049 + 1; System.Os_Lib'Elab_Body; E074 := E074 + 1; System.Soft_Links.Initialize'Elab_Body; E023 := E023 + 1; E015 := E015 + 1; System.Traceback.Symbolic'Elab_Body; E041 := E041 + 1; E010 := E010 + 1; Ada.Tags'Elab_Spec; Ada.Tags'Elab_Body; E134 := E134 + 1; Ada.Streams'Elab_Spec; E142 := E142 + 1; Interfaces.C.Strings'Elab_Spec; E112 := E112 + 1; System.File_Control_Block'Elab_Spec; E150 := E150 + 1; System.Finalization_Root'Elab_Spec; E149 := E149 + 1; Ada.Finalization'Elab_Spec; E147 := E147 + 1; System.File_Io'Elab_Body; E146 := E146 + 1; System.Task_Info'Elab_Spec; E122 := E122 + 1; Ada.Calendar'Elab_Spec; Ada.Calendar'Elab_Body; E008 := E008 + 1; Ada.Calendar.Delays'Elab_Body; E006 := E006 + 1; Ada.Real_Time'Elab_Spec; Ada.Real_Time'Elab_Body; E106 := E106 + 1; Ada.Text_Io'Elab_Spec; Ada.Text_Io'Elab_Body; E140 := E140 + 1; System.Tasking.Initialization'Elab_Body; E156 := E156 + 1; System.Tasking.Protected_Objects'Elab_Body; E166 := E166 + 1; System.Tasking.Protected_Objects.Entries'Elab_Spec; E168 := E168 + 1; System.Tasking.Queuing'Elab_Body; E164 := E164 + 1; System.Tasking.Stages'Elab_Body; E152 := E152 + 1; Tipos_Tarea'Elab_Spec; Tipos_Tarea'Elab_Body; E178 := E178 + 1; end adainit; procedure Ada_Main_Program; pragma Import (Ada, Ada_Main_Program, "_ada_tarea_dina_declare"); function main (argc : Integer; argv : System.Address; envp : System.Address) return Integer is procedure Initialize (Addr : System.Address); pragma Import (C, Initialize, "__gnat_initialize"); procedure Finalize; pragma Import (C, Finalize, "__gnat_finalize"); SEH : aliased array (1 .. 2) of Integer; Ensure_Reference : aliased System.Address := Ada_Main_Program_Name'Address; pragma Volatile (Ensure_Reference); begin if gnat_argc = 0 then gnat_argc := argc; gnat_argv := argv; end if; gnat_envp := envp; Initialize (SEH'Address); adainit; Ada_Main_Program; adafinal; Finalize; return (gnat_exit_status); end; -- BEGIN Object file/option list -- Z:\Documents\Programacion Concurrente y de Tiempo Real\Tiempo Real\Practicas\P03_Tarea_Dinamica_Declare\obj\tipos_tarea.o -- Z:\Documents\Programacion Concurrente y de Tiempo Real\Tiempo Real\Practicas\P03_Tarea_Dinamica_Declare\obj\tarea_dina_declare.o -- -LZ:\Documents\Programacion Concurrente y de Tiempo Real\Tiempo Real\Practicas\P03_Tarea_Dinamica_Declare\obj\ -- -LZ:\Documents\Programacion Concurrente y de Tiempo Real\Tiempo Real\Practicas\P03_Tarea_Dinamica_Declare\obj\ -- -LC:/gnat/2020/lib/gcc/x86_64-pc-mingw32/9.3.1/adalib/ -- -static -- -lgnarl -- -lgnat -- -Xlinker -- --stack=0x200000,0x1000 -- -mthreads -- -Wl,--stack=0x2000000 -- END Object file/option list end ada_main;
with Last_Chance_Handler; pragma Unreferenced (Last_Chance_Handler); with Ada.Synchronous_Task_Control; use Ada.Synchronous_Task_Control; with STM32GD.GPIO; with STM32GD.GPIO.Pin; with STM32GD.EXTI; with STM32_SVD.RCC; with Button_Irq; procedure Main is package GPIO renames STM32GD.GPIO; package LED is new GPIO.Pin (Pin => GPIO.Pin_12, Port => GPIO.Port_D, Mode => GPIO.Mode_Out); package Button is new GPIO.Pin (Pin => GPIO.Pin_0, Port => GPIO.Port_A); begin STM32_SVD.RCC.RCC_Periph.AHB1ENR.GPIOAEN := True; STM32_SVD.RCC.RCC_Periph.AHB1ENR.GPIODEN := True; STM32_SVD.RCC.RCC_Periph.APB2ENR.SYSCFGEN := True; Button.Init; Button.Configure_Trigger (STM32GD.EXTI.Interrupt_Falling_Edge); LED.Init; LED.Set; loop Suspend_Until_True (Button_Irq.Button_Pressed); LED.Toggle; end loop; end Main;
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Ada Modeling Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2011-2012, Vadim Godunko <vgodunko@gmail.com> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ -- This file is generated, don't edit it. ------------------------------------------------------------------------------ -- A connector end is an endpoint of a connector, which attaches the -- connector to a connectable element. Each connector end is part of one -- connector. ------------------------------------------------------------------------------ limited with AMF.UML.Connectable_Elements; with AMF.UML.Multiplicity_Elements; limited with AMF.UML.Properties; package AMF.UML.Connector_Ends is pragma Preelaborate; type UML_Connector_End is limited interface and AMF.UML.Multiplicity_Elements.UML_Multiplicity_Element; type UML_Connector_End_Access is access all UML_Connector_End'Class; for UML_Connector_End_Access'Storage_Size use 0; not overriding function Get_Defining_End (Self : not null access constant UML_Connector_End) return AMF.UML.Properties.UML_Property_Access is abstract; -- Getter of ConnectorEnd::definingEnd. -- -- A derived association referencing the corresponding association end on -- the association which types the connector owing this connector end. -- This association is derived by selecting the association end at the -- same place in the ordering of association ends as this connector end. not overriding function Get_Part_With_Port (Self : not null access constant UML_Connector_End) return AMF.UML.Properties.UML_Property_Access is abstract; -- Getter of ConnectorEnd::partWithPort. -- -- Indicates the role of the internal structure of a classifier with the -- port to which the connector end is attached. not overriding procedure Set_Part_With_Port (Self : not null access UML_Connector_End; To : AMF.UML.Properties.UML_Property_Access) is abstract; -- Setter of ConnectorEnd::partWithPort. -- -- Indicates the role of the internal structure of a classifier with the -- port to which the connector end is attached. not overriding function Get_Role (Self : not null access constant UML_Connector_End) return AMF.UML.Connectable_Elements.UML_Connectable_Element_Access is abstract; -- Getter of ConnectorEnd::role. -- -- The connectable element attached at this connector end. When an -- instance of the containing classifier is created, a link may (depending -- on the multiplicities) be created to an instance of the classifier that -- types this connectable element. not overriding procedure Set_Role (Self : not null access UML_Connector_End; To : AMF.UML.Connectable_Elements.UML_Connectable_Element_Access) is abstract; -- Setter of ConnectorEnd::role. -- -- The connectable element attached at this connector end. When an -- instance of the containing classifier is created, a link may (depending -- on the multiplicities) be created to an instance of the classifier that -- types this connectable element. not overriding function Defining_End (Self : not null access constant UML_Connector_End) return AMF.UML.Properties.UML_Property_Access is abstract; -- Operation ConnectorEnd::definingEnd. -- -- Missing derivation for ConnectorEnd::/definingEnd : Property end AMF.UML.Connector_Ends;
package Opt22_Pkg is procedure Fail; procedure Put (S : String); end Opt22_Pkg;
------------------------------------------------------------------------------ -- -- -- 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.Elements.Generic_Hash; function AMF.CMOF.Tags.Hash is new AMF.Elements.Generic_Hash (CMOF_Tag, CMOF_Tag_Access);
package body Kafka.Config is Error_Buffer_Size : constant size_t := 512; RD_Kafka_Conf_OK : constant Integer := 0; procedure Set(Config : Config_Type; Name : String; Value : String) is C_Name : chars_ptr := New_String(Name); C_Value : chars_ptr := New_String(Value); C_Err : chars_ptr := Alloc(Error_Buffer_Size); Result : Integer; begin Result := rd_kafka_conf_set(Config, C_Name, C_Value, C_Err, Error_Buffer_Size); if Result /= RD_Kafka_Conf_OK then declare Error : String := Interfaces.C.Strings.Value(C_Err); begin Free(C_Name); Free(C_Value); Free(C_Err); raise Kafka_Error with Error; end; end if; Free(C_Name); Free(C_Value); Free(C_Err); end Set; end Kafka.Config;
<?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>hls_video_processor</name> <ret_bitwidth>0</ret_bitwidth> <ports class_id="2" tracking_level="0" version="0"> <count>16</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>stream_in_V_data_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo class_id="6" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>stream_in.V.data.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>24</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs class_id="7" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_2"> <Value> <Obj> <type>1</type> <id>2</id> <name>stream_in_V_keep_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>stream_in.V.keep.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_3"> <Value> <Obj> <type>1</type> <id>3</id> <name>stream_in_V_strb_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>stream_in.V.strb.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_4"> <Value> <Obj> <type>1</type> <id>4</id> <name>stream_in_V_user_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>stream_in.V.user.V</originalName> <rtlName></rtlName> <coreName></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> <item class_id_reference="3" object_id="_5"> <Value> <Obj> <type>1</type> <id>5</id> <name>stream_in_V_last_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>stream_in.V.last.V</originalName> <rtlName></rtlName> <coreName></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> <item class_id_reference="3" object_id="_6"> <Value> <Obj> <type>1</type> <id>6</id> <name>stream_in_V_id_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>stream_in.V.id.V</originalName> <rtlName></rtlName> <coreName></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> <item class_id_reference="3" object_id="_7"> <Value> <Obj> <type>1</type> <id>7</id> <name>stream_in_V_dest_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>stream_in.V.dest.V</originalName> <rtlName></rtlName> <coreName></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> <item class_id_reference="3" object_id="_8"> <Value> <Obj> <type>1</type> <id>8</id> <name>stream_out_V_data_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>stream_out.V.data.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>24</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="_9"> <Value> <Obj> <type>1</type> <id>9</id> <name>stream_out_V_keep_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>stream_out.V.keep.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</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>stream_out_V_strb_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>stream_out.V.strb.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</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="_11"> <Value> <Obj> <type>1</type> <id>11</id> <name>stream_out_V_user_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>stream_out.V.user.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <direction>1</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_12"> <Value> <Obj> <type>1</type> <id>12</id> <name>stream_out_V_last_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>stream_out.V.last.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <direction>1</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_13"> <Value> <Obj> <type>1</type> <id>13</id> <name>stream_out_V_id_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>stream_out.V.id.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <direction>1</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_14"> <Value> <Obj> <type>1</type> <id>14</id> <name>stream_out_V_dest_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>stream_out.V.dest.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <direction>1</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_15"> <Value> <Obj> <type>1</type> <id>15</id> <name>brightness_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <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="_16"> <Value> <Obj> <type>1</type> <id>16</id> <name>color_correct_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <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>34</count> <item_version>0</item_version> <item class_id="9" tracking_level="1" version="0" object_id="_17"> <Value> <Obj> <type>0</type> <id>21</id> <name>color_correct_V_read</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>124</item> <item>125</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>29</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_18"> <Value> <Obj> <type>0</type> <id>22</id> <name>brightness_V_read</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>127</item> <item>128</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>30</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_19"> <Value> <Obj> <type>0</type> <id>23</id> <name>img_input_cols_V_c20</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>FIFO</coreName> </Obj> <bitwidth>12</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>130</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="_20"> <Value> <Obj> <type>0</type> <id>24</id> <name>img_input_cols_V_c</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>FIFO</coreName> </Obj> <bitwidth>12</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>131</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="_21"> <Value> <Obj> <type>0</type> <id>25</id> <name>img_input_rows_V_c20</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>FIFO</coreName> </Obj> <bitwidth>12</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>132</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>3</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_22"> <Value> <Obj> <type>0</type> <id>26</id> <name>img_input_rows_V_c</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>FIFO</coreName> </Obj> <bitwidth>12</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>133</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>4</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_23"> <Value> <Obj> <type>0</type> <id>45</id> <name>img_input_data_strea</name> <fileName>hls_video_processor/hls_video_processor.cpp</fileName> <fileDirectory>C:\Users\byronxu\Documents\6.S193</fileDirectory> <lineNumber>405</lineNumber> <contextFuncName>hls_video_processor</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>hls_video_processor</second> </first> <second>405</second> </item> </second> </item> </inlineStackInfo> <originalName>img_input.data_stream[0].V</originalName> <rtlName></rtlName> <coreName>FIFO</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>134</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>5</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_24"> <Value> <Obj> <type>0</type> <id>48</id> <name>img_input_data_strea_1</name> <fileName>hls_video_processor/hls_video_processor.cpp</fileName> <fileDirectory>C:\Users\byronxu\Documents\6.S193</fileDirectory> <lineNumber>405</lineNumber> <contextFuncName>hls_video_processor</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>hls_video_processor</second> </first> <second>405</second> </item> </second> </item> </inlineStackInfo> <originalName>img_input.data_stream[1].V</originalName> <rtlName></rtlName> <coreName>FIFO</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>135</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>6</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_25"> <Value> <Obj> <type>0</type> <id>51</id> <name>img_input_data_strea_2</name> <fileName>hls_video_processor/hls_video_processor.cpp</fileName> <fileDirectory>C:\Users\byronxu\Documents\6.S193</fileDirectory> <lineNumber>405</lineNumber> <contextFuncName>hls_video_processor</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>hls_video_processor</second> </first> <second>405</second> </item> </second> </item> </inlineStackInfo> <originalName>img_input.data_stream[2].V</originalName> <rtlName></rtlName> <coreName>FIFO</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>136</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>7</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_26"> <Value> <Obj> <type>0</type> <id>54</id> <name>img_crop_data_stream</name> <fileName>hls_video_processor/hls_video_processor.cpp</fileName> <fileDirectory>C:\Users\byronxu\Documents\6.S193</fileDirectory> <lineNumber>406</lineNumber> <contextFuncName>hls_video_processor</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>hls_video_processor</second> </first> <second>406</second> </item> </second> </item> </inlineStackInfo> <originalName>img_crop.data_stream[0].V</originalName> <rtlName></rtlName> <coreName>FIFO</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>137</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>8</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_27"> <Value> <Obj> <type>0</type> <id>57</id> <name>img_crop_data_stream_1</name> <fileName>hls_video_processor/hls_video_processor.cpp</fileName> <fileDirectory>C:\Users\byronxu\Documents\6.S193</fileDirectory> <lineNumber>406</lineNumber> <contextFuncName>hls_video_processor</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>hls_video_processor</second> </first> <second>406</second> </item> </second> </item> </inlineStackInfo> <originalName>img_crop.data_stream[1].V</originalName> <rtlName></rtlName> <coreName>FIFO</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>138</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>9</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_28"> <Value> <Obj> <type>0</type> <id>60</id> <name>img_crop_data_stream_2</name> <fileName>hls_video_processor/hls_video_processor.cpp</fileName> <fileDirectory>C:\Users\byronxu\Documents\6.S193</fileDirectory> <lineNumber>406</lineNumber> <contextFuncName>hls_video_processor</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>hls_video_processor</second> </first> <second>406</second> </item> </second> </item> </inlineStackInfo> <originalName>img_crop.data_stream[2].V</originalName> <rtlName></rtlName> <coreName>FIFO</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>139</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>10</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_29"> <Value> <Obj> <type>0</type> <id>63</id> <name>img_nogamma_data_str</name> <fileName>hls_video_processor/hls_video_processor.cpp</fileName> <fileDirectory>C:\Users\byronxu\Documents\6.S193</fileDirectory> <lineNumber>408</lineNumber> <contextFuncName>hls_video_processor</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>hls_video_processor</second> </first> <second>408</second> </item> </second> </item> </inlineStackInfo> <originalName>img_nogamma.data_stream[0].V</originalName> <rtlName></rtlName> <coreName>FIFO</coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>140</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>11</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_30"> <Value> <Obj> <type>0</type> <id>66</id> <name>img_nogamma_data_str_1</name> <fileName>hls_video_processor/hls_video_processor.cpp</fileName> <fileDirectory>C:\Users\byronxu\Documents\6.S193</fileDirectory> <lineNumber>408</lineNumber> <contextFuncName>hls_video_processor</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>hls_video_processor</second> </first> <second>408</second> </item> </second> </item> </inlineStackInfo> <originalName>img_nogamma.data_stream[1].V</originalName> <rtlName></rtlName> <coreName>FIFO</coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>141</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>12</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_31"> <Value> <Obj> <type>0</type> <id>69</id> <name>img_nogamma_data_str_2</name> <fileName>hls_video_processor/hls_video_processor.cpp</fileName> <fileDirectory>C:\Users\byronxu\Documents\6.S193</fileDirectory> <lineNumber>408</lineNumber> <contextFuncName>hls_video_processor</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>hls_video_processor</second> </first> <second>408</second> </item> </second> </item> </inlineStackInfo> <originalName>img_nogamma.data_stream[2].V</originalName> <rtlName></rtlName> <coreName>FIFO</coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>142</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>13</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_32"> <Value> <Obj> <type>0</type> <id>72</id> <name>img_scaled_data_stre</name> <fileName>hls_video_processor/hls_video_processor.cpp</fileName> <fileDirectory>C:\Users\byronxu\Documents\6.S193</fileDirectory> <lineNumber>409</lineNumber> <contextFuncName>hls_video_processor</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>hls_video_processor</second> </first> <second>409</second> </item> </second> </item> </inlineStackInfo> <originalName>img_scaled.data_stream[0].V</originalName> <rtlName></rtlName> <coreName>FIFO</coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>143</item> </oprand_edges> <opcode>alloca</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>14</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_33"> <Value> <Obj> <type>0</type> <id>75</id> <name>img_scaled_data_stre_1</name> <fileName>hls_video_processor/hls_video_processor.cpp</fileName> <fileDirectory>C:\Users\byronxu\Documents\6.S193</fileDirectory> <lineNumber>409</lineNumber> <contextFuncName>hls_video_processor</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>hls_video_processor</second> </first> <second>409</second> </item> </second> </item> </inlineStackInfo> <originalName>img_scaled.data_stream[1].V</originalName> <rtlName></rtlName> <coreName>FIFO</coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>144</item> </oprand_edges> <opcode>alloca</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>15</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_34"> <Value> <Obj> <type>0</type> <id>78</id> <name>img_scaled_data_stre_2</name> <fileName>hls_video_processor/hls_video_processor.cpp</fileName> <fileDirectory>C:\Users\byronxu\Documents\6.S193</fileDirectory> <lineNumber>409</lineNumber> <contextFuncName>hls_video_processor</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>hls_video_processor</second> </first> <second>409</second> </item> </second> </item> </inlineStackInfo> <originalName>img_scaled.data_stream[2].V</originalName> <rtlName></rtlName> <coreName>FIFO</coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>145</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>16</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_35"> <Value> <Obj> <type>0</type> <id>81</id> <name>img_adjusted_data_st</name> <fileName>hls_video_processor/hls_video_processor.cpp</fileName> <fileDirectory>C:\Users\byronxu\Documents\6.S193</fileDirectory> <lineNumber>410</lineNumber> <contextFuncName>hls_video_processor</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>hls_video_processor</second> </first> <second>410</second> </item> </second> </item> </inlineStackInfo> <originalName>img_adjusted.data_stream[0].V</originalName> <rtlName></rtlName> <coreName>FIFO</coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>146</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>17</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_36"> <Value> <Obj> <type>0</type> <id>84</id> <name>img_adjusted_data_st_1</name> <fileName>hls_video_processor/hls_video_processor.cpp</fileName> <fileDirectory>C:\Users\byronxu\Documents\6.S193</fileDirectory> <lineNumber>410</lineNumber> <contextFuncName>hls_video_processor</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>hls_video_processor</second> </first> <second>410</second> </item> </second> </item> </inlineStackInfo> <originalName>img_adjusted.data_stream[1].V</originalName> <rtlName></rtlName> <coreName>FIFO</coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>147</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>18</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_37"> <Value> <Obj> <type>0</type> <id>87</id> <name>img_adjusted_data_st_2</name> <fileName>hls_video_processor/hls_video_processor.cpp</fileName> <fileDirectory>C:\Users\byronxu\Documents\6.S193</fileDirectory> <lineNumber>410</lineNumber> <contextFuncName>hls_video_processor</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>hls_video_processor</second> </first> <second>410</second> </item> </second> </item> </inlineStackInfo> <originalName>img_adjusted.data_stream[2].V</originalName> <rtlName></rtlName> <coreName>FIFO</coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>148</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>19</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_38"> <Value> <Obj> <type>0</type> <id>90</id> <name>img_out_data_stream_s</name> <fileName>hls_video_processor/hls_video_processor.cpp</fileName> <fileDirectory>C:\Users\byronxu\Documents\6.S193</fileDirectory> <lineNumber>412</lineNumber> <contextFuncName>hls_video_processor</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>hls_video_processor</second> </first> <second>412</second> </item> </second> </item> </inlineStackInfo> <originalName>img_out.data_stream[0].V</originalName> <rtlName></rtlName> <coreName>FIFO</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>149</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>20</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_39"> <Value> <Obj> <type>0</type> <id>93</id> <name>img_out_data_stream_1</name> <fileName>hls_video_processor/hls_video_processor.cpp</fileName> <fileDirectory>C:\Users\byronxu\Documents\6.S193</fileDirectory> <lineNumber>412</lineNumber> <contextFuncName>hls_video_processor</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>hls_video_processor</second> </first> <second>412</second> </item> </second> </item> </inlineStackInfo> <originalName>img_out.data_stream[1].V</originalName> <rtlName></rtlName> <coreName>FIFO</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>150</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>21</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_40"> <Value> <Obj> <type>0</type> <id>96</id> <name>img_out_data_stream_2</name> <fileName>hls_video_processor/hls_video_processor.cpp</fileName> <fileDirectory>C:\Users\byronxu\Documents\6.S193</fileDirectory> <lineNumber>412</lineNumber> <contextFuncName>hls_video_processor</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>hls_video_processor</second> </first> <second>412</second> </item> </second> </item> </inlineStackInfo> <originalName>img_out.data_stream[2].V</originalName> <rtlName></rtlName> <coreName>FIFO</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>151</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>22</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_41"> <Value> <Obj> <type>0</type> <id>110</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>153</item> <item>154</item> <item>155</item> <item>156</item> </oprand_edges> <opcode>call</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>23</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_42"> <Value> <Obj> <type>0</type> <id>113</id> <name></name> <fileName>hls_video_processor/hls_video_processor.cpp</fileName> <fileDirectory>C:\Users\byronxu\Documents\6.S193</fileDirectory> <lineNumber>416</lineNumber> <contextFuncName>hls_video_processor</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>hls_video_processor</second> </first> <second>416</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>16</count> <item_version>0</item_version> <item>158</item> <item>159</item> <item>160</item> <item>161</item> <item>162</item> <item>163</item> <item>164</item> <item>165</item> <item>166</item> <item>167</item> <item>168</item> <item>169</item> <item>170</item> <item>171</item> <item>987</item> <item>989</item> </oprand_edges> <opcode>call</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>24</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_43"> <Value> <Obj> <type>0</type> <id>114</id> <name>extLd_loc_channel</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>FIFO</coreName> </Obj> <bitwidth>12</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>173</item> <item>174</item> <item>988</item> </oprand_edges> <opcode>call</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>25</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_44"> <Value> <Obj> <type>0</type> <id>115</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>11</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>986</item> <item>990</item> </oprand_edges> <opcode>call</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>26</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_45"> <Value> <Obj> <type>0</type> <id>116</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>10</count> <item_version>0</item_version> <item>186</item> <item>187</item> <item>188</item> <item>189</item> <item>190</item> <item>191</item> <item>192</item> <item>231</item> <item>985</item> <item>991</item> </oprand_edges> <opcode>call</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>27</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_46"> <Value> <Obj> <type>0</type> <id>117</id> <name></name> <fileName>hls_video_processor/hls_video_processor.cpp</fileName> <fileDirectory>C:\Users\byronxu\Documents\6.S193</fileDirectory> <lineNumber>425</lineNumber> <contextFuncName>hls_video_processor</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>hls_video_processor</second> </first> <second>425</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>9</count> <item_version>0</item_version> <item>194</item> <item>195</item> <item>196</item> <item>197</item> <item>198</item> <item>199</item> <item>200</item> <item>984</item> <item>992</item> </oprand_edges> <opcode>call</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>28</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_47"> <Value> <Obj> <type>0</type> <id>118</id> <name></name> <fileName>hls_video_processor/hls_video_processor.cpp</fileName> <fileDirectory>C:\Users\byronxu\Documents\6.S193</fileDirectory> <lineNumber>428</lineNumber> <contextFuncName>hls_video_processor</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>hls_video_processor</second> </first> <second>428</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>14</count> <item_version>0</item_version> <item>202</item> <item>203</item> <item>204</item> <item>205</item> <item>206</item> <item>207</item> <item>208</item> <item>209</item> <item>210</item> <item>232</item> <item>233</item> <item>234</item> <item>983</item> <item>993</item> </oprand_edges> <opcode>call</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>3.25</m_delay> <m_topoIndex>31</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_48"> <Value> <Obj> <type>0</type> <id>119</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>9</count> <item_version>0</item_version> <item>212</item> <item>213</item> <item>214</item> <item>215</item> <item>216</item> <item>217</item> <item>218</item> <item>982</item> <item>994</item> </oprand_edges> <opcode>call</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>32</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_49"> <Value> <Obj> <type>0</type> <id>120</id> <name></name> <fileName>hls_video_processor/hls_video_processor.cpp</fileName> <fileDirectory>C:\Users\byronxu\Documents\6.S193</fileDirectory> <lineNumber>437</lineNumber> <contextFuncName>hls_video_processor</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>hls_video_processor</second> </first> <second>437</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>13</count> <item_version>0</item_version> <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>229</item> <item>230</item> <item>981</item> <item>995</item> </oprand_edges> <opcode>call</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>33</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_50"> <Value> <Obj> <type>0</type> <id>121</id> <name></name> <fileName>hls_video_processor/hls_video_processor.cpp</fileName> <fileDirectory>C:\Users\byronxu\Documents\6.S193</fileDirectory> <lineNumber>448</lineNumber> <contextFuncName>hls_video_processor</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>hls_video_processor</second> </first> <second>448</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>0</count> <item_version>0</item_version> </oprand_edges> <opcode>ret</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>34</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="_51"> <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>64</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_52"> <Value> <Obj> <type>2</type> <id>152</id> <name>Block_proc</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <const_type>6</const_type> <content>&lt;constant:Block__proc&gt;</content> </item> <item class_id_reference="16" object_id="_53"> <Value> <Obj> <type>2</type> <id>157</id> <name>AXIvideo2Mat</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <const_type>6</const_type> <content>&lt;constant:AXIvideo2Mat&gt;</content> </item> <item class_id_reference="16" object_id="_54"> <Value> <Obj> <type>2</type> <id>172</id> <name>Block_proc55</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>12</bitwidth> </Value> <const_type>6</const_type> <content>&lt;constant:Block__proc55&gt;</content> </item> <item class_id_reference="16" object_id="_55"> <Value> <Obj> <type>2</type> <id>175</id> <name>Loop_loop_height_pro_2</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <const_type>6</const_type> <content>&lt;constant:Loop_loop_height_pro.2&gt;</content> </item> <item class_id_reference="16" object_id="_56"> <Value> <Obj> <type>2</type> <id>185</id> <name>Loop_loop_height_pro_1</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <const_type>6</const_type> <content>&lt;constant:Loop_loop_height_pro.1&gt;</content> </item> <item class_id_reference="16" object_id="_57"> <Value> <Obj> <type>2</type> <id>193</id> <name>video_scale</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <const_type>6</const_type> <content>&lt;constant:video_scale&gt;</content> </item> <item class_id_reference="16" object_id="_58"> <Value> <Obj> <type>2</type> <id>201</id> <name>brightness_color_adj</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <const_type>6</const_type> <content>&lt;constant:brightness_color_adj&gt;</content> </item> <item class_id_reference="16" object_id="_59"> <Value> <Obj> <type>2</type> <id>211</id> <name>Loop_loop_height_pro</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <const_type>6</const_type> <content>&lt;constant:Loop_loop_height_pro&gt;</content> </item> <item class_id_reference="16" object_id="_60"> <Value> <Obj> <type>2</type> <id>219</id> <name>Mat2AXIvideo</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <const_type>6</const_type> <content>&lt;constant:Mat2AXIvideo&gt;</content> </item> </consts> <blocks class_id="17" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="18" tracking_level="1" version="0" object_id="_61"> <Obj> <type>3</type> <id>122</id> <name>hls_video_processor</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>34</count> <item_version>0</item_version> <item>21</item> <item>22</item> <item>23</item> <item>24</item> <item>25</item> <item>26</item> <item>45</item> <item>48</item> <item>51</item> <item>54</item> <item>57</item> <item>60</item> <item>63</item> <item>66</item> <item>69</item> <item>72</item> <item>75</item> <item>78</item> <item>81</item> <item>84</item> <item>87</item> <item>90</item> <item>93</item> <item>96</item> <item>110</item> <item>113</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> </node_objs> </item> </blocks> <edges class_id="19" tracking_level="0" version="0"> <count>113</count> <item_version>0</item_version> <item class_id="20" tracking_level="1" version="0" object_id="_62"> <id>125</id> <edge_type>1</edge_type> <source_obj>16</source_obj> <sink_obj>21</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_63"> <id>128</id> <edge_type>1</edge_type> <source_obj>15</source_obj> <sink_obj>22</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_64"> <id>130</id> <edge_type>1</edge_type> <source_obj>129</source_obj> <sink_obj>23</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_65"> <id>131</id> <edge_type>1</edge_type> <source_obj>129</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_66"> <id>132</id> <edge_type>1</edge_type> <source_obj>129</source_obj> <sink_obj>25</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_67"> <id>133</id> <edge_type>1</edge_type> <source_obj>129</source_obj> <sink_obj>26</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_68"> <id>134</id> <edge_type>1</edge_type> <source_obj>129</source_obj> <sink_obj>45</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_69"> <id>135</id> <edge_type>1</edge_type> <source_obj>129</source_obj> <sink_obj>48</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_70"> <id>136</id> <edge_type>1</edge_type> <source_obj>129</source_obj> <sink_obj>51</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_71"> <id>137</id> <edge_type>1</edge_type> <source_obj>129</source_obj> <sink_obj>54</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_72"> <id>138</id> <edge_type>1</edge_type> <source_obj>129</source_obj> <sink_obj>57</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_73"> <id>139</id> <edge_type>1</edge_type> <source_obj>129</source_obj> <sink_obj>60</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_74"> <id>140</id> <edge_type>1</edge_type> <source_obj>129</source_obj> <sink_obj>63</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_75"> <id>141</id> <edge_type>1</edge_type> <source_obj>129</source_obj> <sink_obj>66</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_76"> <id>142</id> <edge_type>1</edge_type> <source_obj>129</source_obj> <sink_obj>69</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_77"> <id>143</id> <edge_type>1</edge_type> <source_obj>129</source_obj> <sink_obj>72</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_78"> <id>144</id> <edge_type>1</edge_type> <source_obj>129</source_obj> <sink_obj>75</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_79"> <id>145</id> <edge_type>1</edge_type> <source_obj>129</source_obj> <sink_obj>78</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_80"> <id>146</id> <edge_type>1</edge_type> <source_obj>129</source_obj> <sink_obj>81</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_81"> <id>147</id> <edge_type>1</edge_type> <source_obj>129</source_obj> <sink_obj>84</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_82"> <id>148</id> <edge_type>1</edge_type> <source_obj>129</source_obj> <sink_obj>87</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_83"> <id>149</id> <edge_type>1</edge_type> <source_obj>129</source_obj> <sink_obj>90</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_84"> <id>150</id> <edge_type>1</edge_type> <source_obj>129</source_obj> <sink_obj>93</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_85"> <id>151</id> <edge_type>1</edge_type> <source_obj>129</source_obj> <sink_obj>96</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_86"> <id>153</id> <edge_type>1</edge_type> <source_obj>152</source_obj> <sink_obj>110</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_87"> <id>154</id> <edge_type>1</edge_type> <source_obj>26</source_obj> <sink_obj>110</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_88"> <id>155</id> <edge_type>1</edge_type> <source_obj>25</source_obj> <sink_obj>110</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_89"> <id>156</id> <edge_type>1</edge_type> <source_obj>24</source_obj> <sink_obj>110</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_90"> <id>158</id> <edge_type>1</edge_type> <source_obj>157</source_obj> <sink_obj>113</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_91"> <id>159</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>113</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_92"> <id>160</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>113</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_93"> <id>161</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>113</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_94"> <id>162</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>113</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_95"> <id>163</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>113</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_96"> <id>164</id> <edge_type>1</edge_type> <source_obj>6</source_obj> <sink_obj>113</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_97"> <id>165</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>113</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_98"> <id>166</id> <edge_type>1</edge_type> <source_obj>26</source_obj> <sink_obj>113</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_99"> <id>167</id> <edge_type>1</edge_type> <source_obj>24</source_obj> <sink_obj>113</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_100"> <id>168</id> <edge_type>1</edge_type> <source_obj>45</source_obj> <sink_obj>113</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_101"> <id>169</id> <edge_type>1</edge_type> <source_obj>48</source_obj> <sink_obj>113</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_102"> <id>170</id> <edge_type>1</edge_type> <source_obj>51</source_obj> <sink_obj>113</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_103"> <id>171</id> <edge_type>1</edge_type> <source_obj>23</source_obj> <sink_obj>113</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_104"> <id>173</id> <edge_type>1</edge_type> <source_obj>172</source_obj> <sink_obj>114</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_105"> <id>174</id> <edge_type>1</edge_type> <source_obj>25</source_obj> <sink_obj>114</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_106"> <id>176</id> <edge_type>1</edge_type> <source_obj>175</source_obj> <sink_obj>115</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_107"> <id>177</id> <edge_type>1</edge_type> <source_obj>23</source_obj> <sink_obj>115</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_108"> <id>178</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="_109"> <id>179</id> <edge_type>1</edge_type> <source_obj>45</source_obj> <sink_obj>115</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_110"> <id>180</id> <edge_type>1</edge_type> <source_obj>48</source_obj> <sink_obj>115</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_111"> <id>181</id> <edge_type>1</edge_type> <source_obj>51</source_obj> <sink_obj>115</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_112"> <id>182</id> <edge_type>1</edge_type> <source_obj>54</source_obj> <sink_obj>115</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_113"> <id>183</id> <edge_type>1</edge_type> <source_obj>57</source_obj> <sink_obj>115</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_114"> <id>184</id> <edge_type>1</edge_type> <source_obj>60</source_obj> <sink_obj>115</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_115"> <id>186</id> <edge_type>1</edge_type> <source_obj>185</source_obj> <sink_obj>116</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_116"> <id>187</id> <edge_type>1</edge_type> <source_obj>54</source_obj> <sink_obj>116</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_117"> <id>188</id> <edge_type>1</edge_type> <source_obj>57</source_obj> <sink_obj>116</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_118"> <id>189</id> <edge_type>1</edge_type> <source_obj>60</source_obj> <sink_obj>116</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_119"> <id>190</id> <edge_type>1</edge_type> <source_obj>63</source_obj> <sink_obj>116</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_120"> <id>191</id> <edge_type>1</edge_type> <source_obj>66</source_obj> <sink_obj>116</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_121"> <id>192</id> <edge_type>1</edge_type> <source_obj>69</source_obj> <sink_obj>116</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_122"> <id>194</id> <edge_type>1</edge_type> <source_obj>193</source_obj> <sink_obj>117</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_123"> <id>195</id> <edge_type>1</edge_type> <source_obj>63</source_obj> <sink_obj>117</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_124"> <id>196</id> <edge_type>1</edge_type> <source_obj>66</source_obj> <sink_obj>117</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_125"> <id>197</id> <edge_type>1</edge_type> <source_obj>69</source_obj> <sink_obj>117</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_126"> <id>198</id> <edge_type>1</edge_type> <source_obj>72</source_obj> <sink_obj>117</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_127"> <id>199</id> <edge_type>1</edge_type> <source_obj>75</source_obj> <sink_obj>117</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_128"> <id>200</id> <edge_type>1</edge_type> <source_obj>78</source_obj> <sink_obj>117</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_129"> <id>202</id> <edge_type>1</edge_type> <source_obj>201</source_obj> <sink_obj>118</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_130"> <id>203</id> <edge_type>1</edge_type> <source_obj>72</source_obj> <sink_obj>118</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_131"> <id>204</id> <edge_type>1</edge_type> <source_obj>75</source_obj> <sink_obj>118</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_132"> <id>205</id> <edge_type>1</edge_type> <source_obj>78</source_obj> <sink_obj>118</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_133"> <id>206</id> <edge_type>1</edge_type> <source_obj>81</source_obj> <sink_obj>118</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_134"> <id>207</id> <edge_type>1</edge_type> <source_obj>84</source_obj> <sink_obj>118</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_135"> <id>208</id> <edge_type>1</edge_type> <source_obj>87</source_obj> <sink_obj>118</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_136"> <id>209</id> <edge_type>1</edge_type> <source_obj>22</source_obj> <sink_obj>118</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_137"> <id>210</id> <edge_type>1</edge_type> <source_obj>21</source_obj> <sink_obj>118</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_138"> <id>212</id> <edge_type>1</edge_type> <source_obj>211</source_obj> <sink_obj>119</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_139"> <id>213</id> <edge_type>1</edge_type> <source_obj>81</source_obj> <sink_obj>119</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_140"> <id>214</id> <edge_type>1</edge_type> <source_obj>84</source_obj> <sink_obj>119</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_141"> <id>215</id> <edge_type>1</edge_type> <source_obj>87</source_obj> <sink_obj>119</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_142"> <id>216</id> <edge_type>1</edge_type> <source_obj>90</source_obj> <sink_obj>119</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_143"> <id>217</id> <edge_type>1</edge_type> <source_obj>93</source_obj> <sink_obj>119</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_144"> <id>218</id> <edge_type>1</edge_type> <source_obj>96</source_obj> <sink_obj>119</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_145"> <id>220</id> <edge_type>1</edge_type> <source_obj>219</source_obj> <sink_obj>120</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_146"> <id>221</id> <edge_type>1</edge_type> <source_obj>90</source_obj> <sink_obj>120</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_147"> <id>222</id> <edge_type>1</edge_type> <source_obj>93</source_obj> <sink_obj>120</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_148"> <id>223</id> <edge_type>1</edge_type> <source_obj>96</source_obj> <sink_obj>120</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_149"> <id>224</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>120</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_150"> <id>225</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>120</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_151"> <id>226</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>120</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_152"> <id>227</id> <edge_type>1</edge_type> <source_obj>11</source_obj> <sink_obj>120</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_153"> <id>228</id> <edge_type>1</edge_type> <source_obj>12</source_obj> <sink_obj>120</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_154"> <id>229</id> <edge_type>1</edge_type> <source_obj>13</source_obj> <sink_obj>120</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_155"> <id>230</id> <edge_type>1</edge_type> <source_obj>14</source_obj> <sink_obj>120</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_156"> <id>231</id> <edge_type>1</edge_type> <source_obj>17</source_obj> <sink_obj>116</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_157"> <id>232</id> <edge_type>1</edge_type> <source_obj>18</source_obj> <sink_obj>118</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_158"> <id>233</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>118</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_159"> <id>234</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>118</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_160"> <id>981</id> <edge_type>4</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="_161"> <id>982</id> <edge_type>4</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="_162"> <id>983</id> <edge_type>4</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="_163"> <id>984</id> <edge_type>4</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="_164"> <id>985</id> <edge_type>4</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="_165"> <id>986</id> <edge_type>4</edge_type> <source_obj>113</source_obj> <sink_obj>115</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_166"> <id>987</id> <edge_type>4</edge_type> <source_obj>110</source_obj> <sink_obj>113</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_167"> <id>988</id> <edge_type>4</edge_type> <source_obj>110</source_obj> <sink_obj>114</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_168"> <id>989</id> <edge_type>4</edge_type> <source_obj>110</source_obj> <sink_obj>113</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_169"> <id>990</id> <edge_type>4</edge_type> <source_obj>113</source_obj> <sink_obj>115</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_170"> <id>991</id> <edge_type>4</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="_171"> <id>992</id> <edge_type>4</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="_172"> <id>993</id> <edge_type>4</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="_173"> <id>994</id> <edge_type>4</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="_174"> <id>995</id> <edge_type>4</edge_type> <source_obj>119</source_obj> <sink_obj>120</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="_175"> <mId>1</mId> <mTag>hls_video_processor</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>2076845</mMinLatency> <mMaxLatency>2079004</mMaxLatency> <mIsDfPipe>1</mIsDfPipe> <mDfPipe class_id="23" tracking_level="1" version="0" object_id="_176"> <port_list class_id="24" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </port_list> <process_list class_id="25" tracking_level="0" version="0"> <count>9</count> <item_version>0</item_version> <item class_id="26" tracking_level="1" version="0" object_id="_177"> <type>0</type> <name>Block_proc_U0</name> <ssdmobj_id>110</ssdmobj_id> <pins class_id="27" tracking_level="0" version="0"> <count>3</count> <item_version>0</item_version> <item class_id="28" tracking_level="1" version="0" object_id="_178"> <port class_id="29" tracking_level="1" version="0" object_id="_179"> <name>img_input_rows_V_out</name> <dir>0</dir> <type>1</type> </port> <inst class_id="30" tracking_level="1" version="0" object_id="_180"> <type>0</type> <name>Block_proc_U0</name> <ssdmobj_id>110</ssdmobj_id> </inst> </item> <item class_id_reference="28" object_id="_181"> <port class_id_reference="29" object_id="_182"> <name>img_input_rows_V_out1</name> <dir>0</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_180"></inst> </item> <item class_id_reference="28" object_id="_183"> <port class_id_reference="29" object_id="_184"> <name>img_input_cols_V_out</name> <dir>0</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_180"></inst> </item> </pins> </item> <item class_id_reference="26" object_id="_185"> <type>0</type> <name>AXIvideo2Mat_U0</name> <ssdmobj_id>113</ssdmobj_id> <pins> <count>13</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_186"> <port class_id_reference="29" object_id="_187"> <name>AXI_video_strm_V_data_V</name> <dir>3</dir> <type>0</type> </port> <inst class_id_reference="30" object_id="_188"> <type>0</type> <name>AXIvideo2Mat_U0</name> <ssdmobj_id>113</ssdmobj_id> </inst> </item> <item class_id_reference="28" object_id="_189"> <port class_id_reference="29" object_id="_190"> <name>AXI_video_strm_V_keep_V</name> <dir>3</dir> <type>0</type> </port> <inst class_id_reference="30" object_id_reference="_188"></inst> </item> <item class_id_reference="28" object_id="_191"> <port class_id_reference="29" object_id="_192"> <name>AXI_video_strm_V_strb_V</name> <dir>3</dir> <type>0</type> </port> <inst class_id_reference="30" object_id_reference="_188"></inst> </item> <item class_id_reference="28" object_id="_193"> <port class_id_reference="29" object_id="_194"> <name>AXI_video_strm_V_user_V</name> <dir>3</dir> <type>0</type> </port> <inst class_id_reference="30" object_id_reference="_188"></inst> </item> <item class_id_reference="28" object_id="_195"> <port class_id_reference="29" object_id="_196"> <name>AXI_video_strm_V_last_V</name> <dir>3</dir> <type>0</type> </port> <inst class_id_reference="30" object_id_reference="_188"></inst> </item> <item class_id_reference="28" object_id="_197"> <port class_id_reference="29" object_id="_198"> <name>AXI_video_strm_V_id_V</name> <dir>3</dir> <type>0</type> </port> <inst class_id_reference="30" object_id_reference="_188"></inst> </item> <item class_id_reference="28" object_id="_199"> <port class_id_reference="29" object_id="_200"> <name>AXI_video_strm_V_dest_V</name> <dir>3</dir> <type>0</type> </port> <inst class_id_reference="30" object_id_reference="_188"></inst> </item> <item class_id_reference="28" object_id="_201"> <port class_id_reference="29" object_id="_202"> <name>img_rows_V</name> <dir>0</dir> <type>0</type> </port> <inst class_id_reference="30" object_id_reference="_188"></inst> </item> <item class_id_reference="28" object_id="_203"> <port class_id_reference="29" object_id="_204"> <name>img_cols_V</name> <dir>0</dir> <type>0</type> </port> <inst class_id_reference="30" object_id_reference="_188"></inst> </item> <item class_id_reference="28" object_id="_205"> <port class_id_reference="29" object_id="_206"> <name>img_data_stream_0_V</name> <dir>0</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_188"></inst> </item> <item class_id_reference="28" object_id="_207"> <port class_id_reference="29" object_id="_208"> <name>img_data_stream_1_V</name> <dir>0</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_188"></inst> </item> <item class_id_reference="28" object_id="_209"> <port class_id_reference="29" object_id="_210"> <name>img_data_stream_2_V</name> <dir>0</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_188"></inst> </item> <item class_id_reference="28" object_id="_211"> <port class_id_reference="29" object_id="_212"> <name>img_cols_V_out</name> <dir>0</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_188"></inst> </item> </pins> </item> <item class_id_reference="26" object_id="_213"> <type>0</type> <name>Block_proc55_U0</name> <ssdmobj_id>114</ssdmobj_id> <pins> <count>2</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_214"> <port class_id_reference="29" object_id="_215"> <name>img_input_rows_V</name> <dir>0</dir> <type>0</type> </port> <inst class_id_reference="30" object_id="_216"> <type>0</type> <name>Block_proc55_U0</name> <ssdmobj_id>114</ssdmobj_id> </inst> </item> <item class_id_reference="28" object_id="_217"> <port class_id_reference="29" object_id="_218"> <name>ap_return</name> <dir>3</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_216"></inst> </item> </pins> </item> <item class_id_reference="26" object_id="_219"> <type>0</type> <name>Loop_loop_height_pro_2_U0</name> <ssdmobj_id>115</ssdmobj_id> <pins> <count>8</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_220"> <port class_id_reference="29" object_id="_221"> <name>img_input_cols_V_c20</name> <dir>0</dir> <type>0</type> </port> <inst class_id_reference="30" object_id="_222"> <type>0</type> <name>Loop_loop_height_pro_2_U0</name> <ssdmobj_id>115</ssdmobj_id> </inst> </item> <item class_id_reference="28" object_id="_223"> <port class_id_reference="29" object_id="_224"> <name>extLd_loc_channel</name> <dir>3</dir> <type>0</type> </port> <inst class_id_reference="30" object_id_reference="_222"></inst> </item> <item class_id_reference="28" object_id="_225"> <port class_id_reference="29" object_id="_226"> <name>img_input_data_strea</name> <dir>0</dir> <type>0</type> </port> <inst class_id_reference="30" object_id_reference="_222"></inst> </item> <item class_id_reference="28" object_id="_227"> <port class_id_reference="29" object_id="_228"> <name>img_input_data_strea_1</name> <dir>0</dir> <type>0</type> </port> <inst class_id_reference="30" object_id_reference="_222"></inst> </item> <item class_id_reference="28" object_id="_229"> <port class_id_reference="29" object_id="_230"> <name>img_input_data_strea_2</name> <dir>0</dir> <type>0</type> </port> <inst class_id_reference="30" object_id_reference="_222"></inst> </item> <item class_id_reference="28" object_id="_231"> <port class_id_reference="29" object_id="_232"> <name>img_crop_data_stream</name> <dir>0</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_222"></inst> </item> <item class_id_reference="28" object_id="_233"> <port class_id_reference="29" object_id="_234"> <name>img_crop_data_stream_1</name> <dir>0</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_222"></inst> </item> <item class_id_reference="28" object_id="_235"> <port class_id_reference="29" object_id="_236"> <name>img_crop_data_stream_2</name> <dir>0</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_222"></inst> </item> </pins> </item> <item class_id_reference="26" object_id="_237"> <type>0</type> <name>Loop_loop_height_pro_1_U0</name> <ssdmobj_id>116</ssdmobj_id> <pins> <count>7</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_238"> <port class_id_reference="29" object_id="_239"> <name>img_crop_data_stream_0_V</name> <dir>0</dir> <type>0</type> </port> <inst class_id_reference="30" object_id="_240"> <type>0</type> <name>Loop_loop_height_pro_1_U0</name> <ssdmobj_id>116</ssdmobj_id> </inst> </item> <item class_id_reference="28" object_id="_241"> <port class_id_reference="29" object_id="_242"> <name>img_crop_data_stream_1_V</name> <dir>0</dir> <type>0</type> </port> <inst class_id_reference="30" object_id_reference="_240"></inst> </item> <item class_id_reference="28" object_id="_243"> <port class_id_reference="29" object_id="_244"> <name>img_crop_data_stream_2_V</name> <dir>0</dir> <type>0</type> </port> <inst class_id_reference="30" object_id_reference="_240"></inst> </item> <item class_id_reference="28" object_id="_245"> <port class_id_reference="29" object_id="_246"> <name>img_nogamma_data_stream_0_V</name> <dir>0</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_240"></inst> </item> <item class_id_reference="28" object_id="_247"> <port class_id_reference="29" object_id="_248"> <name>img_nogamma_data_stream_1_V</name> <dir>0</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_240"></inst> </item> <item class_id_reference="28" object_id="_249"> <port class_id_reference="29" object_id="_250"> <name>img_nogamma_data_stream_2_V</name> <dir>0</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_240"></inst> </item> <item class_id_reference="28" object_id="_251"> <port class_id_reference="29" object_id="_252"> <name>lut_srgb_decode</name> <dir>2</dir> <type>0</type> </port> <inst class_id_reference="30" object_id_reference="_240"></inst> </item> </pins> </item> <item class_id_reference="26" object_id="_253"> <type>0</type> <name>video_scale_U0</name> <ssdmobj_id>117</ssdmobj_id> <pins> <count>6</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_254"> <port class_id_reference="29" object_id="_255"> <name>src_data_stream_0_V</name> <dir>0</dir> <type>0</type> </port> <inst class_id_reference="30" object_id="_256"> <type>0</type> <name>video_scale_U0</name> <ssdmobj_id>117</ssdmobj_id> </inst> </item> <item class_id_reference="28" object_id="_257"> <port class_id_reference="29" object_id="_258"> <name>src_data_stream_1_V</name> <dir>0</dir> <type>0</type> </port> <inst class_id_reference="30" object_id_reference="_256"></inst> </item> <item class_id_reference="28" object_id="_259"> <port class_id_reference="29" object_id="_260"> <name>src_data_stream_2_V</name> <dir>0</dir> <type>0</type> </port> <inst class_id_reference="30" object_id_reference="_256"></inst> </item> <item class_id_reference="28" object_id="_261"> <port class_id_reference="29" object_id="_262"> <name>dst_data_stream_0_V</name> <dir>0</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_256"></inst> </item> <item class_id_reference="28" object_id="_263"> <port class_id_reference="29" object_id="_264"> <name>dst_data_stream_1_V</name> <dir>0</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_256"></inst> </item> <item class_id_reference="28" object_id="_265"> <port class_id_reference="29" object_id="_266"> <name>dst_data_stream_2_V</name> <dir>0</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_256"></inst> </item> </pins> </item> <item class_id_reference="26" object_id="_267"> <type>0</type> <name>brightness_color_adj_U0</name> <ssdmobj_id>118</ssdmobj_id> <pins> <count>11</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_268"> <port class_id_reference="29" object_id="_269"> <name>src_data_stream_0_V</name> <dir>0</dir> <type>0</type> </port> <inst class_id_reference="30" object_id="_270"> <type>0</type> <name>brightness_color_adj_U0</name> <ssdmobj_id>118</ssdmobj_id> </inst> </item> <item class_id_reference="28" object_id="_271"> <port class_id_reference="29" object_id="_272"> <name>src_data_stream_1_V</name> <dir>0</dir> <type>0</type> </port> <inst class_id_reference="30" object_id_reference="_270"></inst> </item> <item class_id_reference="28" object_id="_273"> <port class_id_reference="29" object_id="_274"> <name>src_data_stream_2_V</name> <dir>0</dir> <type>0</type> </port> <inst class_id_reference="30" object_id_reference="_270"></inst> </item> <item class_id_reference="28" object_id="_275"> <port class_id_reference="29" object_id="_276"> <name>dst_data_stream_0_V</name> <dir>0</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_270"></inst> </item> <item class_id_reference="28" object_id="_277"> <port class_id_reference="29" object_id="_278"> <name>dst_data_stream_1_V</name> <dir>0</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_270"></inst> </item> <item class_id_reference="28" object_id="_279"> <port class_id_reference="29" object_id="_280"> <name>dst_data_stream_2_V</name> <dir>0</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_270"></inst> </item> <item class_id_reference="28" object_id="_281"> <port class_id_reference="29" object_id="_282"> <name>brightness_index_V</name> <dir>3</dir> <type>0</type> </port> <inst class_id_reference="30" object_id_reference="_270"></inst> </item> <item class_id_reference="28" object_id="_283"> <port class_id_reference="29" object_id="_284"> <name>color_correct_V</name> <dir>3</dir> <type>0</type> </port> <inst class_id_reference="30" object_id_reference="_270"></inst> </item> <item class_id_reference="28" object_id="_285"> <port class_id_reference="29" object_id="_286"> <name>lut_perceptual_brigh_1</name> <dir>2</dir> <type>0</type> </port> <inst class_id_reference="30" object_id_reference="_270"></inst> </item> <item class_id_reference="28" object_id="_287"> <port class_id_reference="29" object_id="_288"> <name>lut_perceptual_brigh</name> <dir>2</dir> <type>0</type> </port> <inst class_id_reference="30" object_id_reference="_270"></inst> </item> <item class_id_reference="28" object_id="_289"> <port class_id_reference="29" object_id="_290"> <name>lut_perceptual_brigh_2</name> <dir>2</dir> <type>0</type> </port> <inst class_id_reference="30" object_id_reference="_270"></inst> </item> </pins> </item> <item class_id_reference="26" object_id="_291"> <type>0</type> <name>Loop_loop_height_pro_U0</name> <ssdmobj_id>119</ssdmobj_id> <pins> <count>6</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_292"> <port class_id_reference="29" object_id="_293"> <name>img_adjusted_data_stream_0_V</name> <dir>0</dir> <type>0</type> </port> <inst class_id_reference="30" object_id="_294"> <type>0</type> <name>Loop_loop_height_pro_U0</name> <ssdmobj_id>119</ssdmobj_id> </inst> </item> <item class_id_reference="28" object_id="_295"> <port class_id_reference="29" object_id="_296"> <name>img_adjusted_data_stream_1_V</name> <dir>0</dir> <type>0</type> </port> <inst class_id_reference="30" object_id_reference="_294"></inst> </item> <item class_id_reference="28" object_id="_297"> <port class_id_reference="29" object_id="_298"> <name>img_adjusted_data_stream_2_V</name> <dir>0</dir> <type>0</type> </port> <inst class_id_reference="30" object_id_reference="_294"></inst> </item> <item class_id_reference="28" object_id="_299"> <port class_id_reference="29" object_id="_300"> <name>img_out_data_stream_0_V</name> <dir>0</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_294"></inst> </item> <item class_id_reference="28" object_id="_301"> <port class_id_reference="29" object_id="_302"> <name>img_out_data_stream_1_V</name> <dir>0</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_294"></inst> </item> <item class_id_reference="28" object_id="_303"> <port class_id_reference="29" object_id="_304"> <name>img_out_data_stream_2_V</name> <dir>0</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_294"></inst> </item> </pins> </item> <item class_id_reference="26" object_id="_305"> <type>0</type> <name>Mat2AXIvideo_U0</name> <ssdmobj_id>120</ssdmobj_id> <pins> <count>10</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_306"> <port class_id_reference="29" object_id="_307"> <name>img_data_stream_0_V</name> <dir>0</dir> <type>0</type> </port> <inst class_id_reference="30" object_id="_308"> <type>0</type> <name>Mat2AXIvideo_U0</name> <ssdmobj_id>120</ssdmobj_id> </inst> </item> <item class_id_reference="28" object_id="_309"> <port class_id_reference="29" object_id="_310"> <name>img_data_stream_1_V</name> <dir>0</dir> <type>0</type> </port> <inst class_id_reference="30" object_id_reference="_308"></inst> </item> <item class_id_reference="28" object_id="_311"> <port class_id_reference="29" object_id="_312"> <name>img_data_stream_2_V</name> <dir>0</dir> <type>0</type> </port> <inst class_id_reference="30" object_id_reference="_308"></inst> </item> <item class_id_reference="28" object_id="_313"> <port class_id_reference="29" object_id="_314"> <name>AXI_video_strm_V_data_V</name> <dir>3</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_308"></inst> </item> <item class_id_reference="28" object_id="_315"> <port class_id_reference="29" object_id="_316"> <name>AXI_video_strm_V_keep_V</name> <dir>3</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_308"></inst> </item> <item class_id_reference="28" object_id="_317"> <port class_id_reference="29" object_id="_318"> <name>AXI_video_strm_V_strb_V</name> <dir>3</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_308"></inst> </item> <item class_id_reference="28" object_id="_319"> <port class_id_reference="29" object_id="_320"> <name>AXI_video_strm_V_user_V</name> <dir>3</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_308"></inst> </item> <item class_id_reference="28" object_id="_321"> <port class_id_reference="29" object_id="_322"> <name>AXI_video_strm_V_last_V</name> <dir>3</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_308"></inst> </item> <item class_id_reference="28" object_id="_323"> <port class_id_reference="29" object_id="_324"> <name>AXI_video_strm_V_id_V</name> <dir>3</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_308"></inst> </item> <item class_id_reference="28" object_id="_325"> <port class_id_reference="29" object_id="_326"> <name>AXI_video_strm_V_dest_V</name> <dir>3</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_308"></inst> </item> </pins> </item> </process_list> <channel_list class_id="31" tracking_level="0" version="0"> <count>23</count> <item_version>0</item_version> <item class_id="32" tracking_level="1" version="0" object_id="_327"> <type>1</type> <name>img_input_rows_V_c</name> <ssdmobj_id>26</ssdmobj_id> <ctype>0</ctype> <depth>2</depth> <bitwidth>12</bitwidth> <source class_id_reference="28" object_id="_328"> <port class_id_reference="29" object_id="_329"> <name>in</name> <dir>3</dir> <type>0</type> </port> <inst class_id_reference="30" object_id_reference="_180"></inst> </source> <sink class_id_reference="28" object_id="_330"> <port class_id_reference="29" object_id="_331"> <name>out</name> <dir>3</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_188"></inst> </sink> </item> <item class_id_reference="32" object_id="_332"> <type>1</type> <name>img_input_rows_V_c20</name> <ssdmobj_id>25</ssdmobj_id> <ctype>0</ctype> <depth>2</depth> <bitwidth>12</bitwidth> <source class_id_reference="28" object_id="_333"> <port class_id_reference="29" object_id="_334"> <name>in</name> <dir>3</dir> <type>0</type> </port> <inst class_id_reference="30" object_id_reference="_180"></inst> </source> <sink class_id_reference="28" object_id="_335"> <port class_id_reference="29" object_id="_336"> <name>out</name> <dir>3</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_216"></inst> </sink> </item> <item class_id_reference="32" object_id="_337"> <type>1</type> <name>img_input_cols_V_c</name> <ssdmobj_id>24</ssdmobj_id> <ctype>0</ctype> <depth>2</depth> <bitwidth>12</bitwidth> <source class_id_reference="28" object_id="_338"> <port class_id_reference="29" object_id="_339"> <name>in</name> <dir>3</dir> <type>0</type> </port> <inst class_id_reference="30" object_id_reference="_180"></inst> </source> <sink class_id_reference="28" object_id="_340"> <port class_id_reference="29" object_id="_341"> <name>out</name> <dir>3</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_188"></inst> </sink> </item> <item class_id_reference="32" object_id="_342"> <type>1</type> <name>img_input_data_strea</name> <ssdmobj_id>45</ssdmobj_id> <ctype>0</ctype> <depth>2</depth> <bitwidth>8</bitwidth> <source class_id_reference="28" object_id="_343"> <port class_id_reference="29" object_id="_344"> <name>in</name> <dir>3</dir> <type>0</type> </port> <inst class_id_reference="30" object_id_reference="_188"></inst> </source> <sink class_id_reference="28" object_id="_345"> <port class_id_reference="29" object_id="_346"> <name>out</name> <dir>3</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_222"></inst> </sink> </item> <item class_id_reference="32" object_id="_347"> <type>1</type> <name>img_input_data_strea_1</name> <ssdmobj_id>48</ssdmobj_id> <ctype>0</ctype> <depth>2</depth> <bitwidth>8</bitwidth> <source class_id_reference="28" object_id="_348"> <port class_id_reference="29" object_id="_349"> <name>in</name> <dir>3</dir> <type>0</type> </port> <inst class_id_reference="30" object_id_reference="_188"></inst> </source> <sink class_id_reference="28" object_id="_350"> <port class_id_reference="29" object_id="_351"> <name>out</name> <dir>3</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_222"></inst> </sink> </item> <item class_id_reference="32" object_id="_352"> <type>1</type> <name>img_input_data_strea_2</name> <ssdmobj_id>51</ssdmobj_id> <ctype>0</ctype> <depth>2</depth> <bitwidth>8</bitwidth> <source class_id_reference="28" object_id="_353"> <port class_id_reference="29" object_id="_354"> <name>in</name> <dir>3</dir> <type>0</type> </port> <inst class_id_reference="30" object_id_reference="_188"></inst> </source> <sink class_id_reference="28" object_id="_355"> <port class_id_reference="29" object_id="_356"> <name>out</name> <dir>3</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_222"></inst> </sink> </item> <item class_id_reference="32" object_id="_357"> <type>1</type> <name>img_input_cols_V_c20</name> <ssdmobj_id>23</ssdmobj_id> <ctype>0</ctype> <depth>2</depth> <bitwidth>12</bitwidth> <source class_id_reference="28" object_id="_358"> <port class_id_reference="29" object_id="_359"> <name>in</name> <dir>3</dir> <type>0</type> </port> <inst class_id_reference="30" object_id_reference="_188"></inst> </source> <sink class_id_reference="28" object_id="_360"> <port class_id_reference="29" object_id="_361"> <name>out</name> <dir>3</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_222"></inst> </sink> </item> <item class_id_reference="32" object_id="_362"> <type>1</type> <name>extLd_loc_channel</name> <ssdmobj_id>114</ssdmobj_id> <ctype>0</ctype> <depth>2</depth> <bitwidth>12</bitwidth> <source class_id_reference="28" object_id="_363"> <port class_id_reference="29" object_id="_364"> <name>in</name> <dir>3</dir> <type>0</type> </port> <inst class_id_reference="30" object_id_reference="_216"></inst> </source> <sink class_id_reference="28" object_id="_365"> <port class_id_reference="29" object_id="_366"> <name>out</name> <dir>3</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_222"></inst> </sink> </item> <item class_id_reference="32" object_id="_367"> <type>1</type> <name>img_crop_data_stream</name> <ssdmobj_id>54</ssdmobj_id> <ctype>0</ctype> <depth>2</depth> <bitwidth>8</bitwidth> <source class_id_reference="28" object_id="_368"> <port class_id_reference="29" object_id="_369"> <name>in</name> <dir>3</dir> <type>0</type> </port> <inst class_id_reference="30" object_id_reference="_222"></inst> </source> <sink class_id_reference="28" object_id="_370"> <port class_id_reference="29" object_id="_371"> <name>out</name> <dir>3</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_240"></inst> </sink> </item> <item class_id_reference="32" object_id="_372"> <type>1</type> <name>img_crop_data_stream_1</name> <ssdmobj_id>57</ssdmobj_id> <ctype>0</ctype> <depth>2</depth> <bitwidth>8</bitwidth> <source class_id_reference="28" object_id="_373"> <port class_id_reference="29" object_id="_374"> <name>in</name> <dir>3</dir> <type>0</type> </port> <inst class_id_reference="30" object_id_reference="_222"></inst> </source> <sink class_id_reference="28" object_id="_375"> <port class_id_reference="29" object_id="_376"> <name>out</name> <dir>3</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_240"></inst> </sink> </item> <item class_id_reference="32" object_id="_377"> <type>1</type> <name>img_crop_data_stream_2</name> <ssdmobj_id>60</ssdmobj_id> <ctype>0</ctype> <depth>2</depth> <bitwidth>8</bitwidth> <source class_id_reference="28" object_id="_378"> <port class_id_reference="29" object_id="_379"> <name>in</name> <dir>3</dir> <type>0</type> </port> <inst class_id_reference="30" object_id_reference="_222"></inst> </source> <sink class_id_reference="28" object_id="_380"> <port class_id_reference="29" object_id="_381"> <name>out</name> <dir>3</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_240"></inst> </sink> </item> <item class_id_reference="32" object_id="_382"> <type>1</type> <name>img_nogamma_data_str</name> <ssdmobj_id>63</ssdmobj_id> <ctype>0</ctype> <depth>2</depth> <bitwidth>32</bitwidth> <source class_id_reference="28" object_id="_383"> <port class_id_reference="29" object_id="_384"> <name>in</name> <dir>3</dir> <type>0</type> </port> <inst class_id_reference="30" object_id_reference="_240"></inst> </source> <sink class_id_reference="28" object_id="_385"> <port class_id_reference="29" object_id="_386"> <name>out</name> <dir>3</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_256"></inst> </sink> </item> <item class_id_reference="32" object_id="_387"> <type>1</type> <name>img_nogamma_data_str_1</name> <ssdmobj_id>66</ssdmobj_id> <ctype>0</ctype> <depth>2</depth> <bitwidth>32</bitwidth> <source class_id_reference="28" object_id="_388"> <port class_id_reference="29" object_id="_389"> <name>in</name> <dir>3</dir> <type>0</type> </port> <inst class_id_reference="30" object_id_reference="_240"></inst> </source> <sink class_id_reference="28" object_id="_390"> <port class_id_reference="29" object_id="_391"> <name>out</name> <dir>3</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_256"></inst> </sink> </item> <item class_id_reference="32" object_id="_392"> <type>1</type> <name>img_nogamma_data_str_2</name> <ssdmobj_id>69</ssdmobj_id> <ctype>0</ctype> <depth>2</depth> <bitwidth>32</bitwidth> <source class_id_reference="28" object_id="_393"> <port class_id_reference="29" object_id="_394"> <name>in</name> <dir>3</dir> <type>0</type> </port> <inst class_id_reference="30" object_id_reference="_240"></inst> </source> <sink class_id_reference="28" object_id="_395"> <port class_id_reference="29" object_id="_396"> <name>out</name> <dir>3</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_256"></inst> </sink> </item> <item class_id_reference="32" object_id="_397"> <type>1</type> <name>img_scaled_data_stre</name> <ssdmobj_id>72</ssdmobj_id> <ctype>0</ctype> <depth>2</depth> <bitwidth>32</bitwidth> <source class_id_reference="28" object_id="_398"> <port class_id_reference="29" object_id="_399"> <name>in</name> <dir>3</dir> <type>0</type> </port> <inst class_id_reference="30" object_id_reference="_256"></inst> </source> <sink class_id_reference="28" object_id="_400"> <port class_id_reference="29" object_id="_401"> <name>out</name> <dir>3</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_270"></inst> </sink> </item> <item class_id_reference="32" object_id="_402"> <type>1</type> <name>img_scaled_data_stre_1</name> <ssdmobj_id>75</ssdmobj_id> <ctype>0</ctype> <depth>2</depth> <bitwidth>32</bitwidth> <source class_id_reference="28" object_id="_403"> <port class_id_reference="29" object_id="_404"> <name>in</name> <dir>3</dir> <type>0</type> </port> <inst class_id_reference="30" object_id_reference="_256"></inst> </source> <sink class_id_reference="28" object_id="_405"> <port class_id_reference="29" object_id="_406"> <name>out</name> <dir>3</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_270"></inst> </sink> </item> <item class_id_reference="32" object_id="_407"> <type>1</type> <name>img_scaled_data_stre_2</name> <ssdmobj_id>78</ssdmobj_id> <ctype>0</ctype> <depth>2</depth> <bitwidth>32</bitwidth> <source class_id_reference="28" object_id="_408"> <port class_id_reference="29" object_id="_409"> <name>in</name> <dir>3</dir> <type>0</type> </port> <inst class_id_reference="30" object_id_reference="_256"></inst> </source> <sink class_id_reference="28" object_id="_410"> <port class_id_reference="29" object_id="_411"> <name>out</name> <dir>3</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_270"></inst> </sink> </item> <item class_id_reference="32" object_id="_412"> <type>1</type> <name>img_adjusted_data_st</name> <ssdmobj_id>81</ssdmobj_id> <ctype>0</ctype> <depth>2</depth> <bitwidth>32</bitwidth> <source class_id_reference="28" object_id="_413"> <port class_id_reference="29" object_id="_414"> <name>in</name> <dir>3</dir> <type>0</type> </port> <inst class_id_reference="30" object_id_reference="_270"></inst> </source> <sink class_id_reference="28" object_id="_415"> <port class_id_reference="29" object_id="_416"> <name>out</name> <dir>3</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_294"></inst> </sink> </item> <item class_id_reference="32" object_id="_417"> <type>1</type> <name>img_adjusted_data_st_1</name> <ssdmobj_id>84</ssdmobj_id> <ctype>0</ctype> <depth>2</depth> <bitwidth>32</bitwidth> <source class_id_reference="28" object_id="_418"> <port class_id_reference="29" object_id="_419"> <name>in</name> <dir>3</dir> <type>0</type> </port> <inst class_id_reference="30" object_id_reference="_270"></inst> </source> <sink class_id_reference="28" object_id="_420"> <port class_id_reference="29" object_id="_421"> <name>out</name> <dir>3</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_294"></inst> </sink> </item> <item class_id_reference="32" object_id="_422"> <type>1</type> <name>img_adjusted_data_st_2</name> <ssdmobj_id>87</ssdmobj_id> <ctype>0</ctype> <depth>2</depth> <bitwidth>32</bitwidth> <source class_id_reference="28" object_id="_423"> <port class_id_reference="29" object_id="_424"> <name>in</name> <dir>3</dir> <type>0</type> </port> <inst class_id_reference="30" object_id_reference="_270"></inst> </source> <sink class_id_reference="28" object_id="_425"> <port class_id_reference="29" object_id="_426"> <name>out</name> <dir>3</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_294"></inst> </sink> </item> <item class_id_reference="32" object_id="_427"> <type>1</type> <name>img_out_data_stream_s</name> <ssdmobj_id>90</ssdmobj_id> <ctype>0</ctype> <depth>2</depth> <bitwidth>8</bitwidth> <source class_id_reference="28" object_id="_428"> <port class_id_reference="29" object_id="_429"> <name>in</name> <dir>3</dir> <type>0</type> </port> <inst class_id_reference="30" object_id_reference="_294"></inst> </source> <sink class_id_reference="28" object_id="_430"> <port class_id_reference="29" object_id="_431"> <name>out</name> <dir>3</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_308"></inst> </sink> </item> <item class_id_reference="32" object_id="_432"> <type>1</type> <name>img_out_data_stream_1</name> <ssdmobj_id>93</ssdmobj_id> <ctype>0</ctype> <depth>2</depth> <bitwidth>8</bitwidth> <source class_id_reference="28" object_id="_433"> <port class_id_reference="29" object_id="_434"> <name>in</name> <dir>3</dir> <type>0</type> </port> <inst class_id_reference="30" object_id_reference="_294"></inst> </source> <sink class_id_reference="28" object_id="_435"> <port class_id_reference="29" object_id="_436"> <name>out</name> <dir>3</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_308"></inst> </sink> </item> <item class_id_reference="32" object_id="_437"> <type>1</type> <name>img_out_data_stream_2</name> <ssdmobj_id>96</ssdmobj_id> <ctype>0</ctype> <depth>2</depth> <bitwidth>8</bitwidth> <source class_id_reference="28" object_id="_438"> <port class_id_reference="29" object_id="_439"> <name>in</name> <dir>3</dir> <type>0</type> </port> <inst class_id_reference="30" object_id_reference="_294"></inst> </source> <sink class_id_reference="28" object_id="_440"> <port class_id_reference="29" object_id="_441"> <name>out</name> <dir>3</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_308"></inst> </sink> </item> </channel_list> <net_list class_id="33" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </net_list> </mDfPipe> </item> </cdfg_regions> <fsm class_id="34" tracking_level="1" version="0" object_id="_442"> <states class_id="35" tracking_level="0" version="0"> <count>16</count> <item_version>0</item_version> <item class_id="36" tracking_level="1" version="0" object_id="_443"> <id>1</id> <operations class_id="37" tracking_level="0" version="0"> <count>23</count> <item_version>0</item_version> <item class_id="38" tracking_level="1" version="0" object_id="_444"> <id>23</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_445"> <id>24</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_446"> <id>25</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_447"> <id>26</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_448"> <id>45</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_449"> <id>48</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_450"> <id>51</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_451"> <id>54</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_452"> <id>57</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_453"> <id>60</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_454"> <id>63</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_455"> <id>66</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_456"> <id>69</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_457"> <id>72</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_458"> <id>75</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_459"> <id>78</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_460"> <id>81</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_461"> <id>84</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_462"> <id>87</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_463"> <id>90</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_464"> <id>93</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_465"> <id>96</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_466"> <id>110</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="36" object_id="_467"> <id>2</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="38" object_id="_468"> <id>113</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="36" object_id="_469"> <id>3</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="38" object_id="_470"> <id>113</id> <stage>1</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="36" object_id="_471"> <id>4</id> <operations> <count>2</count> <item_version>0</item_version> <item class_id_reference="38" object_id="_472"> <id>114</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_473"> <id>115</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="36" object_id="_474"> <id>5</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="38" object_id="_475"> <id>115</id> <stage>1</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="36" object_id="_476"> <id>6</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="38" object_id="_477"> <id>116</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="36" object_id="_478"> <id>7</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="38" object_id="_479"> <id>116</id> <stage>1</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="36" object_id="_480"> <id>8</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="38" object_id="_481"> <id>117</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="36" object_id="_482"> <id>9</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="38" object_id="_483"> <id>117</id> <stage>1</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="36" object_id="_484"> <id>10</id> <operations> <count>3</count> <item_version>0</item_version> <item class_id_reference="38" object_id="_485"> <id>21</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_486"> <id>22</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_487"> <id>118</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="36" object_id="_488"> <id>11</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="38" object_id="_489"> <id>118</id> <stage>1</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="36" object_id="_490"> <id>12</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="38" object_id="_491"> <id>119</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="36" object_id="_492"> <id>13</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="38" object_id="_493"> <id>119</id> <stage>1</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="36" object_id="_494"> <id>14</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="38" object_id="_495"> <id>120</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="36" object_id="_496"> <id>15</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="38" object_id="_497"> <id>120</id> <stage>1</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="36" object_id="_498"> <id>16</id> <operations> <count>68</count> <item_version>0</item_version> <item class_id_reference="38" object_id="_499"> <id>27</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_500"> <id>28</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_501"> <id>29</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_502"> <id>30</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_503"> <id>31</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_504"> <id>32</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_505"> <id>33</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_506"> <id>34</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_507"> <id>35</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_508"> <id>36</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_509"> <id>37</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_510"> <id>38</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_511"> <id>39</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_512"> <id>40</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_513"> <id>41</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_514"> <id>42</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_515"> <id>43</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_516"> <id>44</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_517"> <id>46</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_518"> <id>47</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_519"> <id>49</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_520"> <id>50</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_521"> <id>52</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_522"> <id>53</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_523"> <id>55</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_524"> <id>56</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_525"> <id>58</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_526"> <id>59</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_527"> <id>61</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_528"> <id>62</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_529"> <id>64</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_530"> <id>65</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_531"> <id>67</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_532"> <id>68</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_533"> <id>70</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_534"> <id>71</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_535"> <id>73</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_536"> <id>74</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_537"> <id>76</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_538"> <id>77</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_539"> <id>79</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_540"> <id>80</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_541"> <id>82</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_542"> <id>83</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_543"> <id>85</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_544"> <id>86</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_545"> <id>88</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_546"> <id>89</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_547"> <id>91</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_548"> <id>92</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_549"> <id>94</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_550"> <id>95</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_551"> <id>97</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_552"> <id>98</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_553"> <id>99</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_554"> <id>100</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_555"> <id>101</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_556"> <id>102</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_557"> <id>103</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_558"> <id>104</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_559"> <id>105</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_560"> <id>106</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_561"> <id>107</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_562"> <id>108</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_563"> <id>109</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_564"> <id>111</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_565"> <id>112</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_566"> <id>121</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> </states> <transitions class_id="39" tracking_level="0" version="0"> <count>15</count> <item_version>0</item_version> <item class_id="40" tracking_level="1" version="0" object_id="_567"> <inState>1</inState> <outState>2</outState> <condition class_id="41" tracking_level="0" version="0"> <id>-1</id> <sop class_id="42" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="43" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="40" object_id="_568"> <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="40" object_id="_569"> <inState>3</inState> <outState>4</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="40" object_id="_570"> <inState>4</inState> <outState>5</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="40" object_id="_571"> <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="40" object_id="_572"> <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="40" object_id="_573"> <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="40" object_id="_574"> <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="40" object_id="_575"> <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="40" object_id="_576"> <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="40" object_id="_577"> <inState>11</inState> <outState>12</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="40" object_id="_578"> <inState>12</inState> <outState>13</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="40" object_id="_579"> <inState>13</inState> <outState>14</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="40" object_id="_580"> <inState>14</inState> <outState>15</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="40" object_id="_581"> <inState>15</inState> <outState>16</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> </transitions> </fsm> <res class_id="-1"></res> <node_label_latency class_id="45" tracking_level="0" version="0"> <count>34</count> <item_version>0</item_version> <item class_id="46" tracking_level="0" version="0"> <first>21</first> <second class_id="47" tracking_level="0" version="0"> <first>9</first> <second>0</second> </second> </item> <item> <first>22</first> <second> <first>9</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>45</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>48</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>51</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>54</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>57</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>60</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>63</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>66</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>69</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>72</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>75</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>78</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>81</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>84</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>87</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>90</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>93</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>96</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>110</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>113</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>114</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>115</first> <second> <first>3</first> <second>1</second> </second> </item> <item> <first>116</first> <second> <first>5</first> <second>1</second> </second> </item> <item> <first>117</first> <second> <first>7</first> <second>1</second> </second> </item> <item> <first>118</first> <second> <first>9</first> <second>1</second> </second> </item> <item> <first>119</first> <second> <first>11</first> <second>1</second> </second> </item> <item> <first>120</first> <second> <first>13</first> <second>1</second> </second> </item> <item> <first>121</first> <second> <first>15</first> <second>0</second> </second> </item> </node_label_latency> <bblk_ent_exit class_id="48" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="49" tracking_level="0" version="0"> <first>122</first> <second class_id="50" tracking_level="0" version="0"> <first>0</first> <second>15</second> </second> </item> </bblk_ent_exit> <regions class_id="51" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="52" tracking_level="1" version="0" object_id="_582"> <region_name>hls_video_processor</region_name> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>122</item> </basic_blocks> <nodes> <count>101</count> <item_version>0</item_version> <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> <item>35</item> <item>36</item> <item>37</item> <item>38</item> <item>39</item> <item>40</item> <item>41</item> <item>42</item> <item>43</item> <item>44</item> <item>45</item> <item>46</item> <item>47</item> <item>48</item> <item>49</item> <item>50</item> <item>51</item> <item>52</item> <item>53</item> <item>54</item> <item>55</item> <item>56</item> <item>57</item> <item>58</item> <item>59</item> <item>60</item> <item>61</item> <item>62</item> <item>63</item> <item>64</item> <item>65</item> <item>66</item> <item>67</item> <item>68</item> <item>69</item> <item>70</item> <item>71</item> <item>72</item> <item>73</item> <item>74</item> <item>75</item> <item>76</item> <item>77</item> <item>78</item> <item>79</item> <item>80</item> <item>81</item> <item>82</item> <item>83</item> <item>84</item> <item>85</item> <item>86</item> <item>87</item> <item>88</item> <item>89</item> <item>90</item> <item>91</item> <item>92</item> <item>93</item> <item>94</item> <item>95</item> <item>96</item> <item>97</item> <item>98</item> <item>99</item> <item>100</item> <item>101</item> <item>102</item> <item>103</item> <item>104</item> <item>105</item> <item>106</item> <item>107</item> <item>108</item> <item>109</item> <item>110</item> <item>111</item> <item>112</item> <item>113</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> </nodes> <anchor_node>-1</anchor_node> <region_type>16</region_type> <interval>0</interval> <pipe_depth>0</pipe_depth> </item> </regions> <dp_fu_nodes class_id="53" tracking_level="0" version="0"> <count>33</count> <item_version>0</item_version> <item class_id="54" tracking_level="0" version="0"> <first>142</first> <second> <count>1</count> <item_version>0</item_version> <item>23</item> </second> </item> <item> <first>146</first> <second> <count>1</count> <item_version>0</item_version> <item>24</item> </second> </item> <item> <first>150</first> <second> <count>1</count> <item_version>0</item_version> <item>25</item> </second> </item> <item> <first>154</first> <second> <count>1</count> <item_version>0</item_version> <item>26</item> </second> </item> <item> <first>158</first> <second> <count>1</count> <item_version>0</item_version> <item>45</item> </second> </item> <item> <first>162</first> <second> <count>1</count> <item_version>0</item_version> <item>48</item> </second> </item> <item> <first>166</first> <second> <count>1</count> <item_version>0</item_version> <item>51</item> </second> </item> <item> <first>170</first> <second> <count>1</count> <item_version>0</item_version> <item>54</item> </second> </item> <item> <first>174</first> <second> <count>1</count> <item_version>0</item_version> <item>57</item> </second> </item> <item> <first>178</first> <second> <count>1</count> <item_version>0</item_version> <item>60</item> </second> </item> <item> <first>182</first> <second> <count>1</count> <item_version>0</item_version> <item>63</item> </second> </item> <item> <first>186</first> <second> <count>1</count> <item_version>0</item_version> <item>66</item> </second> </item> <item> <first>190</first> <second> <count>1</count> <item_version>0</item_version> <item>69</item> </second> </item> <item> <first>194</first> <second> <count>1</count> <item_version>0</item_version> <item>72</item> </second> </item> <item> <first>198</first> <second> <count>1</count> <item_version>0</item_version> <item>75</item> </second> </item> <item> <first>202</first> <second> <count>1</count> <item_version>0</item_version> <item>78</item> </second> </item> <item> <first>206</first> <second> <count>1</count> <item_version>0</item_version> <item>81</item> </second> </item> <item> <first>210</first> <second> <count>1</count> <item_version>0</item_version> <item>84</item> </second> </item> <item> <first>214</first> <second> <count>1</count> <item_version>0</item_version> <item>87</item> </second> </item> <item> <first>218</first> <second> <count>1</count> <item_version>0</item_version> <item>90</item> </second> </item> <item> <first>222</first> <second> <count>1</count> <item_version>0</item_version> <item>93</item> </second> </item> <item> <first>226</first> <second> <count>1</count> <item_version>0</item_version> <item>96</item> </second> </item> <item> <first>230</first> <second> <count>1</count> <item_version>0</item_version> <item>21</item> </second> </item> <item> <first>236</first> <second> <count>1</count> <item_version>0</item_version> <item>22</item> </second> </item> <item> <first>242</first> <second> <count>2</count> <item_version>0</item_version> <item>118</item> <item>118</item> </second> </item> <item> <first>262</first> <second> <count>2</count> <item_version>0</item_version> <item>117</item> <item>117</item> </second> </item> <item> <first>272</first> <second> <count>2</count> <item_version>0</item_version> <item>113</item> <item>113</item> </second> </item> <item> <first>296</first> <second> <count>2</count> <item_version>0</item_version> <item>115</item> <item>115</item> </second> </item> <item> <first>308</first> <second> <count>2</count> <item_version>0</item_version> <item>116</item> <item>116</item> </second> </item> <item> <first>320</first> <second> <count>2</count> <item_version>0</item_version> <item>120</item> <item>120</item> </second> </item> <item> <first>341</first> <second> <count>2</count> <item_version>0</item_version> <item>119</item> <item>119</item> </second> </item> <item> <first>351</first> <second> <count>1</count> <item_version>0</item_version> <item>110</item> </second> </item> <item> <first>358</first> <second> <count>1</count> <item_version>0</item_version> <item>114</item> </second> </item> </dp_fu_nodes> <dp_fu_nodes_expression class_id="56" tracking_level="0" version="0"> <count>22</count> <item_version>0</item_version> <item class_id="57" tracking_level="0" version="0"> <first>img_adjusted_data_st_1_fu_210</first> <second> <count>1</count> <item_version>0</item_version> <item>84</item> </second> </item> <item> <first>img_adjusted_data_st_2_fu_214</first> <second> <count>1</count> <item_version>0</item_version> <item>87</item> </second> </item> <item> <first>img_adjusted_data_st_fu_206</first> <second> <count>1</count> <item_version>0</item_version> <item>81</item> </second> </item> <item> <first>img_crop_data_stream_1_fu_174</first> <second> <count>1</count> <item_version>0</item_version> <item>57</item> </second> </item> <item> <first>img_crop_data_stream_2_fu_178</first> <second> <count>1</count> <item_version>0</item_version> <item>60</item> </second> </item> <item> <first>img_crop_data_stream_fu_170</first> <second> <count>1</count> <item_version>0</item_version> <item>54</item> </second> </item> <item> <first>img_input_cols_V_c20_fu_142</first> <second> <count>1</count> <item_version>0</item_version> <item>23</item> </second> </item> <item> <first>img_input_cols_V_c_fu_146</first> <second> <count>1</count> <item_version>0</item_version> <item>24</item> </second> </item> <item> <first>img_input_data_strea_1_fu_162</first> <second> <count>1</count> <item_version>0</item_version> <item>48</item> </second> </item> <item> <first>img_input_data_strea_2_fu_166</first> <second> <count>1</count> <item_version>0</item_version> <item>51</item> </second> </item> <item> <first>img_input_data_strea_fu_158</first> <second> <count>1</count> <item_version>0</item_version> <item>45</item> </second> </item> <item> <first>img_input_rows_V_c20_fu_150</first> <second> <count>1</count> <item_version>0</item_version> <item>25</item> </second> </item> <item> <first>img_input_rows_V_c_fu_154</first> <second> <count>1</count> <item_version>0</item_version> <item>26</item> </second> </item> <item> <first>img_nogamma_data_str_1_fu_186</first> <second> <count>1</count> <item_version>0</item_version> <item>66</item> </second> </item> <item> <first>img_nogamma_data_str_2_fu_190</first> <second> <count>1</count> <item_version>0</item_version> <item>69</item> </second> </item> <item> <first>img_nogamma_data_str_fu_182</first> <second> <count>1</count> <item_version>0</item_version> <item>63</item> </second> </item> <item> <first>img_out_data_stream_1_fu_222</first> <second> <count>1</count> <item_version>0</item_version> <item>93</item> </second> </item> <item> <first>img_out_data_stream_2_fu_226</first> <second> <count>1</count> <item_version>0</item_version> <item>96</item> </second> </item> <item> <first>img_out_data_stream_s_fu_218</first> <second> <count>1</count> <item_version>0</item_version> <item>90</item> </second> </item> <item> <first>img_scaled_data_stre_1_fu_198</first> <second> <count>1</count> <item_version>0</item_version> <item>75</item> </second> </item> <item> <first>img_scaled_data_stre_2_fu_202</first> <second> <count>1</count> <item_version>0</item_version> <item>78</item> </second> </item> <item> <first>img_scaled_data_stre_fu_194</first> <second> <count>1</count> <item_version>0</item_version> <item>72</item> </second> </item> </dp_fu_nodes_expression> <dp_fu_nodes_module> <count>9</count> <item_version>0</item_version> <item> <first>StgValue_39_Block_proc_fu_351</first> <second> <count>1</count> <item_version>0</item_version> <item>110</item> </second> </item> <item> <first>extLd_loc_channel_Block_proc55_fu_358</first> <second> <count>1</count> <item_version>0</item_version> <item>114</item> </second> </item> <item> <first>grp_AXIvideo2Mat_fu_272</first> <second> <count>2</count> <item_version>0</item_version> <item>113</item> <item>113</item> </second> </item> <item> <first>grp_Loop_loop_height_pro_1_fu_308</first> <second> <count>2</count> <item_version>0</item_version> <item>116</item> <item>116</item> </second> </item> <item> <first>grp_Loop_loop_height_pro_2_fu_296</first> <second> <count>2</count> <item_version>0</item_version> <item>115</item> <item>115</item> </second> </item> <item> <first>grp_Loop_loop_height_pro_fu_341</first> <second> <count>2</count> <item_version>0</item_version> <item>119</item> <item>119</item> </second> </item> <item> <first>grp_Mat2AXIvideo_fu_320</first> <second> <count>2</count> <item_version>0</item_version> <item>120</item> <item>120</item> </second> </item> <item> <first>grp_brightness_color_adj_fu_242</first> <second> <count>2</count> <item_version>0</item_version> <item>118</item> <item>118</item> </second> </item> <item> <first>grp_video_scale_fu_262</first> <second> <count>2</count> <item_version>0</item_version> <item>117</item> <item>117</item> </second> </item> </dp_fu_nodes_module> <dp_fu_nodes_io> <count>2</count> <item_version>0</item_version> <item> <first>brightness_V_read_read_fu_236</first> <second> <count>1</count> <item_version>0</item_version> <item>22</item> </second> </item> <item> <first>color_correct_V_read_read_fu_230</first> <second> <count>1</count> <item_version>0</item_version> <item>21</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="58" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="59" tracking_level="0" version="0"> <first class_id="60" tracking_level="0" version="0"> <first>lut_perceptual_brigh</first> <second>100</second> </first> <second> <count>1</count> <item_version>0</item_version> <item>118</item> </second> </item> <item> <first> <first>lut_perceptual_brigh_1</first> <second>100</second> </first> <second> <count>1</count> <item_version>0</item_version> <item>118</item> </second> </item> <item> <first> <first>lut_perceptual_brigh_2</first> <second>100</second> </first> <second> <count>1</count> <item_version>0</item_version> <item>118</item> </second> </item> <item> <first> <first>lut_srgb_decode</first> <second>100</second> </first> <second> <count>1</count> <item_version>0</item_version> <item>116</item> </second> </item> </dp_mem_port_nodes> <dp_reg_nodes> <count>25</count> <item_version>0</item_version> <item> <first>364</first> <second> <count>1</count> <item_version>0</item_version> <item>23</item> </second> </item> <item> <first>370</first> <second> <count>1</count> <item_version>0</item_version> <item>24</item> </second> </item> <item> <first>376</first> <second> <count>1</count> <item_version>0</item_version> <item>25</item> </second> </item> <item> <first>382</first> <second> <count>1</count> <item_version>0</item_version> <item>26</item> </second> </item> <item> <first>388</first> <second> <count>1</count> <item_version>0</item_version> <item>45</item> </second> </item> <item> <first>394</first> <second> <count>1</count> <item_version>0</item_version> <item>48</item> </second> </item> <item> <first>400</first> <second> <count>1</count> <item_version>0</item_version> <item>51</item> </second> </item> <item> <first>406</first> <second> <count>1</count> <item_version>0</item_version> <item>54</item> </second> </item> <item> <first>412</first> <second> <count>1</count> <item_version>0</item_version> <item>57</item> </second> </item> <item> <first>418</first> <second> <count>1</count> <item_version>0</item_version> <item>60</item> </second> </item> <item> <first>424</first> <second> <count>1</count> <item_version>0</item_version> <item>63</item> </second> </item> <item> <first>430</first> <second> <count>1</count> <item_version>0</item_version> <item>66</item> </second> </item> <item> <first>436</first> <second> <count>1</count> <item_version>0</item_version> <item>69</item> </second> </item> <item> <first>442</first> <second> <count>1</count> <item_version>0</item_version> <item>72</item> </second> </item> <item> <first>448</first> <second> <count>1</count> <item_version>0</item_version> <item>75</item> </second> </item> <item> <first>454</first> <second> <count>1</count> <item_version>0</item_version> <item>78</item> </second> </item> <item> <first>460</first> <second> <count>1</count> <item_version>0</item_version> <item>81</item> </second> </item> <item> <first>466</first> <second> <count>1</count> <item_version>0</item_version> <item>84</item> </second> </item> <item> <first>472</first> <second> <count>1</count> <item_version>0</item_version> <item>87</item> </second> </item> <item> <first>478</first> <second> <count>1</count> <item_version>0</item_version> <item>90</item> </second> </item> <item> <first>484</first> <second> <count>1</count> <item_version>0</item_version> <item>93</item> </second> </item> <item> <first>490</first> <second> <count>1</count> <item_version>0</item_version> <item>96</item> </second> </item> <item> <first>496</first> <second> <count>1</count> <item_version>0</item_version> <item>114</item> </second> </item> <item> <first>501</first> <second> <count>1</count> <item_version>0</item_version> <item>21</item> </second> </item> <item> <first>506</first> <second> <count>1</count> <item_version>0</item_version> <item>22</item> </second> </item> </dp_reg_nodes> <dp_regname_nodes> <count>25</count> <item_version>0</item_version> <item> <first>brightness_V_read_reg_506</first> <second> <count>1</count> <item_version>0</item_version> <item>22</item> </second> </item> <item> <first>color_correct_V_read_reg_501</first> <second> <count>1</count> <item_version>0</item_version> <item>21</item> </second> </item> <item> <first>extLd_loc_channel_reg_496</first> <second> <count>1</count> <item_version>0</item_version> <item>114</item> </second> </item> <item> <first>img_adjusted_data_st_1_reg_466</first> <second> <count>1</count> <item_version>0</item_version> <item>84</item> </second> </item> <item> <first>img_adjusted_data_st_2_reg_472</first> <second> <count>1</count> <item_version>0</item_version> <item>87</item> </second> </item> <item> <first>img_adjusted_data_st_reg_460</first> <second> <count>1</count> <item_version>0</item_version> <item>81</item> </second> </item> <item> <first>img_crop_data_stream_1_reg_412</first> <second> <count>1</count> <item_version>0</item_version> <item>57</item> </second> </item> <item> <first>img_crop_data_stream_2_reg_418</first> <second> <count>1</count> <item_version>0</item_version> <item>60</item> </second> </item> <item> <first>img_crop_data_stream_reg_406</first> <second> <count>1</count> <item_version>0</item_version> <item>54</item> </second> </item> <item> <first>img_input_cols_V_c20_reg_364</first> <second> <count>1</count> <item_version>0</item_version> <item>23</item> </second> </item> <item> <first>img_input_cols_V_c_reg_370</first> <second> <count>1</count> <item_version>0</item_version> <item>24</item> </second> </item> <item> <first>img_input_data_strea_1_reg_394</first> <second> <count>1</count> <item_version>0</item_version> <item>48</item> </second> </item> <item> <first>img_input_data_strea_2_reg_400</first> <second> <count>1</count> <item_version>0</item_version> <item>51</item> </second> </item> <item> <first>img_input_data_strea_reg_388</first> <second> <count>1</count> <item_version>0</item_version> <item>45</item> </second> </item> <item> <first>img_input_rows_V_c20_reg_376</first> <second> <count>1</count> <item_version>0</item_version> <item>25</item> </second> </item> <item> <first>img_input_rows_V_c_reg_382</first> <second> <count>1</count> <item_version>0</item_version> <item>26</item> </second> </item> <item> <first>img_nogamma_data_str_1_reg_430</first> <second> <count>1</count> <item_version>0</item_version> <item>66</item> </second> </item> <item> <first>img_nogamma_data_str_2_reg_436</first> <second> <count>1</count> <item_version>0</item_version> <item>69</item> </second> </item> <item> <first>img_nogamma_data_str_reg_424</first> <second> <count>1</count> <item_version>0</item_version> <item>63</item> </second> </item> <item> <first>img_out_data_stream_1_reg_484</first> <second> <count>1</count> <item_version>0</item_version> <item>93</item> </second> </item> <item> <first>img_out_data_stream_2_reg_490</first> <second> <count>1</count> <item_version>0</item_version> <item>96</item> </second> </item> <item> <first>img_out_data_stream_s_reg_478</first> <second> <count>1</count> <item_version>0</item_version> <item>90</item> </second> </item> <item> <first>img_scaled_data_stre_1_reg_448</first> <second> <count>1</count> <item_version>0</item_version> <item>75</item> </second> </item> <item> <first>img_scaled_data_stre_2_reg_454</first> <second> <count>1</count> <item_version>0</item_version> <item>78</item> </second> </item> <item> <first>img_scaled_data_stre_reg_442</first> <second> <count>1</count> <item_version>0</item_version> <item>72</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="61" tracking_level="0" version="0"> <count>16</count> <item_version>0</item_version> <item class_id="62" tracking_level="0" version="0"> <first>brightness_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>22</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>21</item> </second> </item> </second> </item> <item> <first>stream_in_V_data_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>call</first> <second> <count>1</count> <item_version>0</item_version> <item>113</item> </second> </item> </second> </item> <item> <first>stream_in_V_dest_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>call</first> <second> <count>1</count> <item_version>0</item_version> <item>113</item> </second> </item> </second> </item> <item> <first>stream_in_V_id_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>call</first> <second> <count>1</count> <item_version>0</item_version> <item>113</item> </second> </item> </second> </item> <item> <first>stream_in_V_keep_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>call</first> <second> <count>1</count> <item_version>0</item_version> <item>113</item> </second> </item> </second> </item> <item> <first>stream_in_V_last_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>call</first> <second> <count>1</count> <item_version>0</item_version> <item>113</item> </second> </item> </second> </item> <item> <first>stream_in_V_strb_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>call</first> <second> <count>1</count> <item_version>0</item_version> <item>113</item> </second> </item> </second> </item> <item> <first>stream_in_V_user_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>call</first> <second> <count>1</count> <item_version>0</item_version> <item>113</item> </second> </item> </second> </item> <item> <first>stream_out_V_data_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>call</first> <second> <count>1</count> <item_version>0</item_version> <item>120</item> </second> </item> </second> </item> <item> <first>stream_out_V_dest_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>call</first> <second> <count>1</count> <item_version>0</item_version> <item>120</item> </second> </item> </second> </item> <item> <first>stream_out_V_id_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>call</first> <second> <count>1</count> <item_version>0</item_version> <item>120</item> </second> </item> </second> </item> <item> <first>stream_out_V_keep_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>call</first> <second> <count>1</count> <item_version>0</item_version> <item>120</item> </second> </item> </second> </item> <item> <first>stream_out_V_last_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>call</first> <second> <count>1</count> <item_version>0</item_version> <item>120</item> </second> </item> </second> </item> <item> <first>stream_out_V_strb_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>call</first> <second> <count>1</count> <item_version>0</item_version> <item>120</item> </second> </item> </second> </item> <item> <first>stream_out_V_user_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>call</first> <second> <count>1</count> <item_version>0</item_version> <item>120</item> </second> </item> </second> </item> </dp_port_io_nodes> <port2core class_id="63" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </port2core> <node2core> <count>23</count> <item_version>0</item_version> <item class_id="64" tracking_level="0" version="0"> <first>23</first> <second>FIFO</second> </item> <item> <first>24</first> <second>FIFO</second> </item> <item> <first>25</first> <second>FIFO</second> </item> <item> <first>26</first> <second>FIFO</second> </item> <item> <first>45</first> <second>FIFO</second> </item> <item> <first>48</first> <second>FIFO</second> </item> <item> <first>51</first> <second>FIFO</second> </item> <item> <first>54</first> <second>FIFO</second> </item> <item> <first>57</first> <second>FIFO</second> </item> <item> <first>60</first> <second>FIFO</second> </item> <item> <first>63</first> <second>FIFO</second> </item> <item> <first>66</first> <second>FIFO</second> </item> <item> <first>69</first> <second>FIFO</second> </item> <item> <first>72</first> <second>FIFO</second> </item> <item> <first>75</first> <second>FIFO</second> </item> <item> <first>78</first> <second>FIFO</second> </item> <item> <first>81</first> <second>FIFO</second> </item> <item> <first>84</first> <second>FIFO</second> </item> <item> <first>87</first> <second>FIFO</second> </item> <item> <first>90</first> <second>FIFO</second> </item> <item> <first>93</first> <second>FIFO</second> </item> <item> <first>96</first> <second>FIFO</second> </item> <item> <first>114</first> <second>FIFO</second> </item> </node2core> </syndb> </boost_serialization>
package GESTE_Fonts.FreeMono18pt7b is Font : constant Bitmap_Font_Ref; private FreeMono18pt7bBitmaps : aliased constant Font_Bitmap := ( 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#20#, 16#00#, 16#03#, 16#80#, 16#00#, 16#1C#, 16#00#, 16#00#, 16#E0#, 16#00#, 16#07#, 16#00#, 16#00#, 16#38#, 16#00#, 16#01#, 16#C0#, 16#00#, 16#0E#, 16#00#, 16#00#, 16#60#, 16#00#, 16#01#, 16#00#, 16#00#, 16#08#, 16#00#, 16#00#, 16#40#, 16#00#, 16#02#, 16#00#, 16#00#, 16#10#, 16#00#, 16#00#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1C#, 16#00#, 16#01#, 16#F0#, 16#00#, 16#0F#, 16#80#, 16#00#, 16#38#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3E#, 16#F8#, 16#01#, 16#E3#, 16#C0#, 16#0F#, 16#1E#, 16#00#, 16#38#, 16#E0#, 16#01#, 16#C7#, 16#00#, 16#0E#, 16#38#, 16#00#, 16#71#, 16#C0#, 16#03#, 16#8E#, 16#00#, 16#18#, 16#30#, 16#00#, 16#41#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#C4#, 16#00#, 16#06#, 16#20#, 16#00#, 16#31#, 16#00#, 16#01#, 16#08#, 16#00#, 16#08#, 16#40#, 16#00#, 16#42#, 16#00#, 16#02#, 16#30#, 16#00#, 16#11#, 16#80#, 16#00#, 16#8C#, 16#00#, 16#7F#, 16#FE#, 16#00#, 16#23#, 16#00#, 16#03#, 16#18#, 16#00#, 16#18#, 16#80#, 16#00#, 16#C4#, 16#00#, 16#7F#, 16#FE#, 16#00#, 16#31#, 16#00#, 16#01#, 16#88#, 16#00#, 16#08#, 16#40#, 16#00#, 16#42#, 16#00#, 16#02#, 16#30#, 16#00#, 16#11#, 16#80#, 16#00#, 16#8C#, 16#00#, 16#04#, 16#60#, 16#00#, 16#23#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#04#, 16#00#, 16#00#, 16#20#, 16#00#, 16#01#, 16#00#, 16#00#, 16#3F#, 16#40#, 16#06#, 16#0E#, 16#00#, 16#60#, 16#30#, 16#02#, 16#00#, 16#80#, 16#10#, 16#00#, 16#00#, 16#80#, 16#00#, 16#06#, 16#00#, 16#00#, 16#18#, 16#00#, 16#00#, 16#7C#, 16#00#, 16#00#, 16#3C#, 16#00#, 16#00#, 16#30#, 16#00#, 16#00#, 16#C0#, 16#00#, 16#02#, 16#01#, 16#00#, 16#10#, 16#08#, 16#01#, 16#80#, 16#60#, 16#08#, 16#03#, 16#C1#, 16#80#, 16#13#, 16#F8#, 16#00#, 16#02#, 16#00#, 16#00#, 16#10#, 16#00#, 16#00#, 16#80#, 16#00#, 16#04#, 16#00#, 16#00#, 16#20#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#01#, 16#8C#, 16#00#, 16#18#, 16#20#, 16#00#, 16#81#, 16#80#, 16#04#, 16#0C#, 16#00#, 16#30#, 16#40#, 16#00#, 16#C6#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#07#, 16#C0#, 16#01#, 16#F0#, 16#00#, 16#78#, 16#00#, 16#0E#, 16#00#, 16#00#, 16#00#, 16#78#, 16#00#, 16#0C#, 16#60#, 16#00#, 16#41#, 16#80#, 16#06#, 16#04#, 16#00#, 16#30#, 16#20#, 16#00#, 16#83#, 16#00#, 16#06#, 16#30#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#C0#, 16#00#, 16#C4#, 16#00#, 16#0C#, 16#00#, 16#00#, 16#40#, 16#00#, 16#02#, 16#00#, 16#00#, 16#18#, 16#00#, 16#00#, 16#40#, 16#00#, 16#03#, 16#00#, 16#00#, 16#18#, 16#00#, 16#03#, 16#E0#, 16#00#, 16#19#, 16#0E#, 16#01#, 16#8C#, 16#40#, 16#08#, 16#36#, 16#00#, 16#40#, 16#B0#, 16#02#, 16#07#, 16#00#, 16#18#, 16#18#, 16#00#, 16#61#, 16#C0#, 16#01#, 16#F3#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#C0#, 16#00#, 16#3E#, 16#00#, 16#00#, 16#E0#, 16#00#, 16#07#, 16#00#, 16#00#, 16#38#, 16#00#, 16#01#, 16#C0#, 16#00#, 16#0E#, 16#00#, 16#00#, 16#70#, 16#00#, 16#03#, 16#80#, 16#00#, 16#08#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#18#, 16#00#, 16#00#, 16#C0#, 16#00#, 16#0C#, 16#00#, 16#00#, 16#60#, 16#00#, 16#06#, 16#00#, 16#00#, 16#30#, 16#00#, 16#03#, 16#00#, 16#00#, 16#18#, 16#00#, 16#00#, 16#C0#, 16#00#, 16#06#, 16#00#, 16#00#, 16#70#, 16#00#, 16#03#, 16#00#, 16#00#, 16#18#, 16#00#, 16#00#, 16#C0#, 16#00#, 16#07#, 16#00#, 16#00#, 16#18#, 16#00#, 16#00#, 16#C0#, 16#00#, 16#06#, 16#00#, 16#00#, 16#30#, 16#00#, 16#00#, 16#C0#, 16#00#, 16#06#, 16#00#, 16#00#, 16#18#, 16#00#, 16#00#, 16#C0#, 16#00#, 16#02#, 16#00#, 16#00#, 16#18#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#30#, 16#00#, 16#00#, 16#80#, 16#00#, 16#06#, 16#00#, 16#00#, 16#10#, 16#00#, 16#00#, 16#C0#, 16#00#, 16#06#, 16#00#, 16#00#, 16#18#, 16#00#, 16#00#, 16#C0#, 16#00#, 16#06#, 16#00#, 16#00#, 16#38#, 16#00#, 16#00#, 16#C0#, 16#00#, 16#06#, 16#00#, 16#00#, 16#30#, 16#00#, 16#01#, 16#80#, 16#00#, 16#0C#, 16#00#, 16#00#, 16#60#, 16#00#, 16#06#, 16#00#, 16#00#, 16#30#, 16#00#, 16#01#, 16#80#, 16#00#, 16#08#, 16#00#, 16#00#, 16#C0#, 16#00#, 16#06#, 16#00#, 16#00#, 16#60#, 16#00#, 16#03#, 16#00#, 16#00#, 16#30#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#00#, 16#00#, 16#08#, 16#00#, 16#00#, 16#40#, 16#00#, 16#02#, 16#00#, 16#06#, 16#10#, 16#C0#, 16#0E#, 16#B8#, 16#00#, 16#0E#, 16#00#, 16#00#, 16#50#, 16#00#, 16#06#, 16#C0#, 16#00#, 16#63#, 16#00#, 16#06#, 16#08#, 16#00#, 16#20#, 16#20#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#02#, 16#00#, 16#00#, 16#10#, 16#00#, 16#00#, 16#80#, 16#00#, 16#04#, 16#00#, 16#00#, 16#20#, 16#00#, 16#01#, 16#00#, 16#00#, 16#08#, 16#00#, 16#00#, 16#40#, 16#01#, 16#FF#, 16#FC#, 16#00#, 16#10#, 16#00#, 16#00#, 16#80#, 16#00#, 16#04#, 16#00#, 16#00#, 16#20#, 16#00#, 16#01#, 16#00#, 16#00#, 16#08#, 16#00#, 16#00#, 16#40#, 16#00#, 16#02#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#80#, 16#00#, 16#78#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#3C#, 16#00#, 16#01#, 16#C0#, 16#00#, 16#0E#, 16#00#, 16#00#, 16#E0#, 16#00#, 16#07#, 16#00#, 16#00#, 16#30#, 16#00#, 16#01#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#FF#, 16#FC#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#80#, 16#00#, 16#3E#, 16#00#, 16#01#, 16#F0#, 16#00#, 16#0F#, 16#80#, 16#00#, 16#38#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#30#, 16#00#, 16#01#, 16#80#, 16#00#, 16#08#, 16#00#, 16#00#, 16#C0#, 16#00#, 16#04#, 16#00#, 16#00#, 16#60#, 16#00#, 16#02#, 16#00#, 16#00#, 16#30#, 16#00#, 16#01#, 16#00#, 16#00#, 16#18#, 16#00#, 16#00#, 16#80#, 16#00#, 16#0C#, 16#00#, 16#00#, 16#40#, 16#00#, 16#06#, 16#00#, 16#00#, 16#20#, 16#00#, 16#03#, 16#00#, 16#00#, 16#18#, 16#00#, 16#01#, 16#80#, 16#00#, 16#0C#, 16#00#, 16#00#, 16#40#, 16#00#, 16#06#, 16#00#, 16#00#, 16#20#, 16#00#, 16#03#, 16#00#, 16#00#, 16#10#, 16#00#, 16#01#, 16#80#, 16#00#, 16#08#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#C0#, 16#00#, 16#63#, 16#00#, 16#04#, 16#04#, 16#00#, 16#60#, 16#30#, 16#02#, 16#00#, 16#80#, 16#30#, 16#06#, 16#01#, 16#80#, 16#30#, 16#08#, 16#00#, 16#80#, 16#40#, 16#04#, 16#02#, 16#00#, 16#20#, 16#10#, 16#01#, 16#00#, 16#80#, 16#08#, 16#04#, 16#00#, 16#40#, 16#20#, 16#02#, 16#01#, 16#80#, 16#30#, 16#0C#, 16#01#, 16#80#, 16#20#, 16#08#, 16#01#, 16#80#, 16#C0#, 16#04#, 16#04#, 16#00#, 16#18#, 16#C0#, 16#00#, 16#7C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#00#, 16#00#, 16#38#, 16#00#, 16#03#, 16#40#, 16#00#, 16#32#, 16#00#, 16#03#, 16#10#, 16#00#, 16#30#, 16#80#, 16#00#, 16#04#, 16#00#, 16#00#, 16#20#, 16#00#, 16#01#, 16#00#, 16#00#, 16#08#, 16#00#, 16#00#, 16#40#, 16#00#, 16#02#, 16#00#, 16#00#, 16#10#, 16#00#, 16#00#, 16#80#, 16#00#, 16#04#, 16#00#, 16#00#, 16#20#, 16#00#, 16#01#, 16#00#, 16#00#, 16#08#, 16#00#, 16#00#, 16#40#, 16#00#, 16#02#, 16#00#, 16#07#, 16#FF#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#C0#, 16#00#, 16#C3#, 16#00#, 16#08#, 16#04#, 16#00#, 16#80#, 16#10#, 16#04#, 16#00#, 16#80#, 16#00#, 16#06#, 16#00#, 16#00#, 16#20#, 16#00#, 16#01#, 16#00#, 16#00#, 16#18#, 16#00#, 16#01#, 16#80#, 16#00#, 16#18#, 16#00#, 16#01#, 16#80#, 16#00#, 16#18#, 16#00#, 16#01#, 16#80#, 16#00#, 16#18#, 16#00#, 16#01#, 16#80#, 16#00#, 16#18#, 16#00#, 16#01#, 16#80#, 16#60#, 16#18#, 16#03#, 16#01#, 16#80#, 16#18#, 16#0F#, 16#FF#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#C0#, 16#01#, 16#C1#, 16#80#, 16#18#, 16#06#, 16#00#, 16#00#, 16#10#, 16#00#, 16#00#, 16#C0#, 16#00#, 16#06#, 16#00#, 16#00#, 16#20#, 16#00#, 16#03#, 16#00#, 16#00#, 16#30#, 16#00#, 16#1E#, 16#00#, 16#00#, 16#1C#, 16#00#, 16#00#, 16#30#, 16#00#, 16#00#, 16#C0#, 16#00#, 16#02#, 16#00#, 16#00#, 16#10#, 16#00#, 16#00#, 16#80#, 16#00#, 16#04#, 16#00#, 16#00#, 16#60#, 16#30#, 16#06#, 16#00#, 16#E0#, 16#60#, 16#00#, 16#FC#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#00#, 16#05#, 16#80#, 16#00#, 16#4C#, 16#00#, 16#02#, 16#60#, 16#00#, 16#23#, 16#00#, 16#03#, 16#18#, 16#00#, 16#10#, 16#C0#, 16#01#, 16#86#, 16#00#, 16#08#, 16#30#, 16#00#, 16#C1#, 16#80#, 16#04#, 16#0C#, 16#00#, 16#40#, 16#60#, 16#06#, 16#03#, 16#00#, 16#20#, 16#18#, 16#01#, 16#FF#, 16#F0#, 16#00#, 16#06#, 16#00#, 16#00#, 16#30#, 16#00#, 16#01#, 16#80#, 16#00#, 16#0C#, 16#00#, 16#00#, 16#60#, 16#00#, 16#1F#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3F#, 16#F8#, 16#01#, 16#80#, 16#00#, 16#0C#, 16#00#, 16#00#, 16#60#, 16#00#, 16#03#, 16#00#, 16#00#, 16#18#, 16#00#, 16#00#, 16#C0#, 16#00#, 16#06#, 16#FC#, 16#00#, 16#38#, 16#30#, 16#00#, 16#00#, 16#40#, 16#00#, 16#03#, 16#00#, 16#00#, 16#08#, 16#00#, 16#00#, 16#40#, 16#00#, 16#02#, 16#00#, 16#00#, 16#10#, 16#00#, 16#00#, 16#80#, 16#00#, 16#0C#, 16#02#, 16#00#, 16#60#, 16#18#, 16#06#, 16#00#, 16#70#, 16#60#, 16#00#, 16#FC#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#7E#, 16#00#, 16#0C#, 16#00#, 16#01#, 16#80#, 16#00#, 16#18#, 16#00#, 16#00#, 16#80#, 16#00#, 16#0C#, 16#00#, 16#00#, 16#40#, 16#00#, 16#06#, 16#00#, 16#00#, 16#20#, 16#00#, 16#01#, 16#0F#, 16#00#, 16#09#, 16#86#, 16#00#, 16#58#, 16#18#, 16#03#, 16#80#, 16#40#, 16#18#, 16#03#, 16#00#, 16#80#, 16#18#, 16#06#, 16#00#, 16#C0#, 16#10#, 16#06#, 16#00#, 16#C0#, 16#20#, 16#02#, 16#03#, 16#00#, 16#0C#, 16#30#, 16#00#, 16#3E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#7F#, 16#FC#, 16#02#, 16#00#, 16#60#, 16#10#, 16#03#, 16#00#, 16#80#, 16#10#, 16#00#, 16#01#, 16#80#, 16#00#, 16#0C#, 16#00#, 16#00#, 16#40#, 16#00#, 16#02#, 16#00#, 16#00#, 16#30#, 16#00#, 16#01#, 16#00#, 16#00#, 16#08#, 16#00#, 16#00#, 16#C0#, 16#00#, 16#04#, 16#00#, 16#00#, 16#20#, 16#00#, 16#03#, 16#00#, 16#00#, 16#18#, 16#00#, 16#00#, 16#80#, 16#00#, 16#0C#, 16#00#, 16#00#, 16#60#, 16#00#, 16#02#, 16#00#, 16#00#, 16#10#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#C0#, 16#00#, 16#C1#, 16#80#, 16#0C#, 16#06#, 16#00#, 16#40#, 16#10#, 16#06#, 16#00#, 16#C0#, 16#30#, 16#06#, 16#01#, 16#80#, 16#30#, 16#04#, 16#01#, 16#00#, 16#30#, 16#18#, 16#00#, 16#C1#, 16#80#, 16#01#, 16#F0#, 16#00#, 16#30#, 16#60#, 16#03#, 16#01#, 16#80#, 16#30#, 16#06#, 16#01#, 16#80#, 16#30#, 16#08#, 16#00#, 16#80#, 16#60#, 16#0C#, 16#03#, 16#00#, 16#60#, 16#0C#, 16#06#, 16#00#, 16#30#, 16#60#, 16#00#, 16#7C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#C0#, 16#00#, 16#61#, 16#80#, 16#06#, 16#06#, 16#00#, 16#60#, 16#10#, 16#02#, 16#00#, 16#C0#, 16#10#, 16#02#, 16#00#, 16#80#, 16#18#, 16#04#, 16#00#, 16#C0#, 16#30#, 16#0E#, 16#00#, 16#80#, 16#F0#, 16#03#, 16#0D#, 16#80#, 16#0F#, 16#8C#, 16#00#, 16#00#, 16#60#, 16#00#, 16#02#, 16#00#, 16#00#, 16#30#, 16#00#, 16#01#, 16#80#, 16#00#, 16#18#, 16#00#, 16#01#, 16#80#, 16#00#, 16#18#, 16#00#, 16#03#, 16#80#, 16#03#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0E#, 16#00#, 16#00#, 16#F8#, 16#00#, 16#07#, 16#C0#, 16#00#, 16#3E#, 16#00#, 16#00#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#80#, 16#00#, 16#3E#, 16#00#, 16#01#, 16#F0#, 16#00#, 16#0F#, 16#80#, 16#00#, 16#38#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1C#, 16#00#, 16#01#, 16#F0#, 16#00#, 16#0F#, 16#80#, 16#00#, 16#7C#, 16#00#, 16#01#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#80#, 16#00#, 16#78#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#3C#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#0E#, 16#00#, 16#00#, 16#60#, 16#00#, 16#07#, 16#00#, 16#00#, 16#30#, 16#00#, 16#01#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0C#, 16#00#, 16#00#, 16#C0#, 16#00#, 16#1C#, 16#00#, 16#03#, 16#80#, 16#00#, 16#70#, 16#00#, 16#0E#, 16#00#, 16#00#, 16#C0#, 16#00#, 16#1C#, 16#00#, 16#01#, 16#C0#, 16#00#, 16#03#, 16#80#, 16#00#, 16#07#, 16#00#, 16#00#, 16#0C#, 16#00#, 16#00#, 16#38#, 16#00#, 16#00#, 16#70#, 16#00#, 16#00#, 16#E0#, 16#00#, 16#01#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#FF#, 16#FF#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#FF#, 16#FF#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#80#, 16#00#, 16#06#, 16#00#, 16#00#, 16#1C#, 16#00#, 16#00#, 16#38#, 16#00#, 16#00#, 16#70#, 16#00#, 16#00#, 16#E0#, 16#00#, 16#01#, 16#80#, 16#00#, 16#07#, 16#00#, 16#00#, 16#1C#, 16#00#, 16#03#, 16#80#, 16#00#, 16#70#, 16#00#, 16#06#, 16#00#, 16#00#, 16#E0#, 16#00#, 16#1C#, 16#00#, 16#03#, 16#80#, 16#00#, 16#30#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#7F#, 16#00#, 16#0E#, 16#0C#, 16#00#, 16#40#, 16#30#, 16#02#, 16#00#, 16#C0#, 16#10#, 16#02#, 16#00#, 16#00#, 16#10#, 16#00#, 16#01#, 16#80#, 16#00#, 16#08#, 16#00#, 16#01#, 16#C0#, 16#00#, 16#38#, 16#00#, 16#03#, 16#00#, 16#00#, 16#10#, 16#00#, 16#00#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1C#, 16#00#, 16#01#, 16#F0#, 16#00#, 16#0F#, 16#80#, 16#00#, 16#38#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#C0#, 16#00#, 16#43#, 16#00#, 16#04#, 16#04#, 16#00#, 16#40#, 16#30#, 16#06#, 16#00#, 16#80#, 16#30#, 16#04#, 16#01#, 16#00#, 16#20#, 16#08#, 16#0F#, 16#00#, 16#41#, 16#88#, 16#02#, 16#18#, 16#40#, 16#10#, 16#82#, 16#00#, 16#8C#, 16#10#, 16#04#, 16#20#, 16#80#, 16#21#, 16#04#, 16#01#, 16#0C#, 16#20#, 16#08#, 16#1F#, 16#80#, 16#40#, 16#00#, 16#03#, 16#00#, 16#00#, 16#18#, 16#00#, 16#00#, 16#40#, 16#00#, 16#01#, 16#00#, 16#00#, 16#0C#, 16#0C#, 16#00#, 16#1F#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#FC#, 16#00#, 16#01#, 16#A0#, 16#00#, 16#0D#, 16#00#, 16#00#, 16#4C#, 16#00#, 16#06#, 16#20#, 16#00#, 16#21#, 16#80#, 16#01#, 16#0C#, 16#00#, 16#18#, 16#20#, 16#00#, 16#81#, 16#80#, 16#04#, 16#04#, 16#00#, 16#60#, 16#20#, 16#02#, 16#01#, 16#80#, 16#1F#, 16#FC#, 16#01#, 16#80#, 16#20#, 16#08#, 16#01#, 16#80#, 16#40#, 16#04#, 16#06#, 16#00#, 16#30#, 16#20#, 16#01#, 16#81#, 16#00#, 16#04#, 16#7F#, 16#03#, 16#FC#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#FF#, 16#00#, 16#18#, 16#06#, 16#00#, 16#C0#, 16#18#, 16#06#, 16#00#, 16#40#, 16#30#, 16#02#, 16#01#, 16#80#, 16#10#, 16#0C#, 16#00#, 16#80#, 16#60#, 16#0C#, 16#03#, 16#01#, 16#C0#, 16#1F#, 16#FC#, 16#00#, 16#C0#, 16#38#, 16#06#, 16#00#, 16#60#, 16#30#, 16#01#, 16#01#, 16#80#, 16#0C#, 16#0C#, 16#00#, 16#60#, 16#60#, 16#03#, 16#03#, 16#00#, 16#18#, 16#18#, 16#01#, 16#80#, 16#C0#, 16#18#, 16#1F#, 16#FF#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3F#, 16#10#, 16#06#, 16#0E#, 16#80#, 16#60#, 16#1C#, 16#04#, 16#00#, 16#60#, 16#60#, 16#01#, 16#02#, 16#00#, 16#08#, 16#30#, 16#00#, 16#01#, 16#80#, 16#00#, 16#0C#, 16#00#, 16#00#, 16#60#, 16#00#, 16#03#, 16#00#, 16#00#, 16#18#, 16#00#, 16#00#, 16#C0#, 16#00#, 16#02#, 16#00#, 16#00#, 16#10#, 16#00#, 16#00#, 16#C0#, 16#00#, 16#03#, 16#00#, 16#18#, 16#0C#, 16#01#, 16#80#, 16#38#, 16#38#, 16#00#, 16#7E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#FE#, 16#00#, 16#10#, 16#1C#, 16#00#, 16#80#, 16#30#, 16#04#, 16#00#, 16#C0#, 16#20#, 16#02#, 16#01#, 16#00#, 16#18#, 16#08#, 16#00#, 16#C0#, 16#40#, 16#02#, 16#02#, 16#00#, 16#10#, 16#10#, 16#00#, 16#80#, 16#80#, 16#04#, 16#04#, 16#00#, 16#20#, 16#20#, 16#01#, 16#01#, 16#00#, 16#18#, 16#08#, 16#00#, 16#C0#, 16#40#, 16#04#, 16#02#, 16#00#, 16#60#, 16#10#, 16#06#, 16#00#, 16#80#, 16#E0#, 16#1F#, 16#FC#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#FF#, 16#E0#, 16#18#, 16#01#, 16#00#, 16#C0#, 16#08#, 16#06#, 16#00#, 16#40#, 16#30#, 16#02#, 16#01#, 16#80#, 16#00#, 16#0C#, 16#00#, 16#00#, 16#60#, 16#80#, 16#03#, 16#04#, 16#00#, 16#1F#, 16#E0#, 16#00#, 16#C1#, 16#00#, 16#06#, 16#08#, 16#00#, 16#30#, 16#00#, 16#01#, 16#80#, 16#00#, 16#0C#, 16#00#, 16#40#, 16#60#, 16#02#, 16#03#, 16#00#, 16#10#, 16#18#, 16#00#, 16#80#, 16#C0#, 16#04#, 16#1F#, 16#FF#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#FF#, 16#F0#, 16#18#, 16#00#, 16#80#, 16#C0#, 16#04#, 16#06#, 16#00#, 16#20#, 16#30#, 16#01#, 16#01#, 16#80#, 16#00#, 16#0C#, 16#00#, 16#00#, 16#60#, 16#80#, 16#03#, 16#04#, 16#00#, 16#1F#, 16#E0#, 16#00#, 16#C1#, 16#00#, 16#06#, 16#08#, 16#00#, 16#30#, 16#00#, 16#01#, 16#80#, 16#00#, 16#0C#, 16#00#, 16#00#, 16#60#, 16#00#, 16#03#, 16#00#, 16#00#, 16#18#, 16#00#, 16#00#, 16#C0#, 16#00#, 16#1F#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3F#, 16#90#, 16#06#, 16#07#, 16#80#, 16#60#, 16#0C#, 16#06#, 16#00#, 16#20#, 16#60#, 16#01#, 16#02#, 16#00#, 16#00#, 16#30#, 16#00#, 16#01#, 16#80#, 16#00#, 16#0C#, 16#00#, 16#00#, 16#60#, 16#00#, 16#03#, 16#00#, 16#00#, 16#18#, 16#0F#, 16#F8#, 16#C0#, 16#01#, 16#06#, 16#00#, 16#08#, 16#10#, 16#00#, 16#40#, 16#C0#, 16#02#, 16#02#, 16#00#, 16#10#, 16#08#, 16#00#, 16#80#, 16#30#, 16#1C#, 16#00#, 16#7F#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#E3#, 16#F8#, 16#18#, 16#03#, 16#00#, 16#C0#, 16#18#, 16#06#, 16#00#, 16#C0#, 16#30#, 16#06#, 16#01#, 16#80#, 16#30#, 16#0C#, 16#01#, 16#80#, 16#60#, 16#0C#, 16#03#, 16#00#, 16#60#, 16#1F#, 16#FF#, 16#00#, 16#C0#, 16#18#, 16#06#, 16#00#, 16#C0#, 16#30#, 16#06#, 16#01#, 16#80#, 16#30#, 16#0C#, 16#01#, 16#80#, 16#60#, 16#0C#, 16#03#, 16#00#, 16#60#, 16#18#, 16#03#, 16#00#, 16#C0#, 16#18#, 16#1F#, 16#C7#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#FF#, 16#E0#, 16#00#, 16#40#, 16#00#, 16#02#, 16#00#, 16#00#, 16#10#, 16#00#, 16#00#, 16#80#, 16#00#, 16#04#, 16#00#, 16#00#, 16#20#, 16#00#, 16#01#, 16#00#, 16#00#, 16#08#, 16#00#, 16#00#, 16#40#, 16#00#, 16#02#, 16#00#, 16#00#, 16#10#, 16#00#, 16#00#, 16#80#, 16#00#, 16#04#, 16#00#, 16#00#, 16#20#, 16#00#, 16#01#, 16#00#, 16#00#, 16#08#, 16#00#, 16#00#, 16#40#, 16#00#, 16#02#, 16#00#, 16#07#, 16#FF#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3F#, 16#FC#, 16#00#, 16#02#, 16#00#, 16#00#, 16#10#, 16#00#, 16#00#, 16#80#, 16#00#, 16#04#, 16#00#, 16#00#, 16#20#, 16#00#, 16#01#, 16#00#, 16#00#, 16#08#, 16#00#, 16#00#, 16#40#, 16#00#, 16#02#, 16#00#, 16#00#, 16#10#, 16#08#, 16#00#, 16#80#, 16#40#, 16#04#, 16#02#, 16#00#, 16#20#, 16#10#, 16#01#, 16#00#, 16#80#, 16#18#, 16#04#, 16#00#, 16#80#, 16#10#, 16#0C#, 16#00#, 16#60#, 16#C0#, 16#00#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#E1#, 16#F8#, 16#18#, 16#03#, 16#00#, 16#C0#, 16#30#, 16#06#, 16#03#, 16#00#, 16#30#, 16#30#, 16#01#, 16#83#, 16#00#, 16#0C#, 16#30#, 16#00#, 16#63#, 16#00#, 16#03#, 16#30#, 16#00#, 16#1B#, 16#E0#, 16#00#, 16#F1#, 16#80#, 16#07#, 16#06#, 16#00#, 16#30#, 16#10#, 16#01#, 16#80#, 16#C0#, 16#0C#, 16#02#, 16#00#, 16#60#, 16#18#, 16#03#, 16#00#, 16#40#, 16#18#, 16#03#, 16#00#, 16#C0#, 16#18#, 16#1F#, 16#C0#, 16#78#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#FC#, 16#00#, 16#02#, 16#00#, 16#00#, 16#10#, 16#00#, 16#00#, 16#80#, 16#00#, 16#04#, 16#00#, 16#00#, 16#20#, 16#00#, 16#01#, 16#00#, 16#00#, 16#08#, 16#00#, 16#00#, 16#40#, 16#00#, 16#02#, 16#00#, 16#00#, 16#10#, 16#00#, 16#00#, 16#80#, 16#00#, 16#04#, 16#00#, 16#00#, 16#20#, 16#04#, 16#01#, 16#00#, 16#60#, 16#08#, 16#03#, 16#00#, 16#40#, 16#18#, 16#02#, 16#00#, 16#C0#, 16#10#, 16#06#, 16#1F#, 16#FF#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1E#, 16#00#, 16#3C#, 16#38#, 16#03#, 16#C1#, 16#40#, 16#16#, 16#0B#, 16#01#, 16#B0#, 16#48#, 16#09#, 16#82#, 16#60#, 16#4C#, 16#11#, 16#06#, 16#60#, 16#88#, 16#23#, 16#04#, 16#63#, 16#18#, 16#21#, 16#10#, 16#C1#, 16#0D#, 16#86#, 16#08#, 16#2C#, 16#30#, 16#41#, 16#C1#, 16#82#, 16#0E#, 16#0C#, 16#10#, 16#00#, 16#60#, 16#80#, 16#03#, 16#04#, 16#00#, 16#18#, 16#20#, 16#00#, 16#C1#, 16#00#, 16#06#, 16#7F#, 16#81#, 16#FC#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#01#, 16#FC#, 16#18#, 16#01#, 16#80#, 16#A0#, 16#0C#, 16#05#, 16#00#, 16#60#, 16#24#, 16#03#, 16#01#, 16#30#, 16#18#, 16#08#, 16#80#, 16#C0#, 16#46#, 16#06#, 16#02#, 16#10#, 16#30#, 16#10#, 16#41#, 16#80#, 16#83#, 16#0C#, 16#04#, 16#08#, 16#60#, 16#20#, 16#63#, 16#01#, 16#01#, 16#18#, 16#08#, 16#04#, 16#C0#, 16#40#, 16#26#, 16#02#, 16#00#, 16#B0#, 16#10#, 16#07#, 16#80#, 16#80#, 16#1C#, 16#3F#, 16#C0#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3E#, 16#00#, 16#06#, 16#0C#, 16#00#, 16#40#, 16#10#, 16#04#, 16#00#, 16#40#, 16#60#, 16#03#, 16#02#, 16#00#, 16#08#, 16#30#, 16#00#, 16#61#, 16#00#, 16#03#, 16#08#, 16#00#, 16#08#, 16#40#, 16#00#, 16#42#, 16#00#, 16#02#, 16#10#, 16#00#, 16#10#, 16#80#, 16#01#, 16#86#, 16#00#, 16#0C#, 16#10#, 16#00#, 16#40#, 16#C0#, 16#06#, 16#02#, 16#00#, 16#20#, 16#08#, 16#02#, 16#00#, 16#30#, 16#60#, 16#00#, 16#7C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#FF#, 16#00#, 16#18#, 16#0E#, 16#00#, 16#C0#, 16#18#, 16#06#, 16#00#, 16#40#, 16#30#, 16#02#, 16#01#, 16#80#, 16#10#, 16#0C#, 16#00#, 16#80#, 16#60#, 16#0C#, 16#03#, 16#00#, 16#40#, 16#18#, 16#0C#, 16#00#, 16#FF#, 16#80#, 16#06#, 16#00#, 16#00#, 16#30#, 16#00#, 16#01#, 16#80#, 16#00#, 16#0C#, 16#00#, 16#00#, 16#60#, 16#00#, 16#03#, 16#00#, 16#00#, 16#18#, 16#00#, 16#00#, 16#C0#, 16#00#, 16#1F#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3E#, 16#00#, 16#06#, 16#0C#, 16#00#, 16#40#, 16#10#, 16#04#, 16#00#, 16#40#, 16#60#, 16#03#, 16#02#, 16#00#, 16#08#, 16#30#, 16#00#, 16#61#, 16#00#, 16#03#, 16#08#, 16#00#, 16#08#, 16#40#, 16#00#, 16#42#, 16#00#, 16#02#, 16#10#, 16#00#, 16#10#, 16#80#, 16#01#, 16#86#, 16#00#, 16#0C#, 16#10#, 16#00#, 16#40#, 16#C0#, 16#06#, 16#02#, 16#00#, 16#20#, 16#18#, 16#02#, 16#00#, 16#30#, 16#60#, 16#00#, 16#FC#, 16#00#, 16#03#, 16#00#, 16#00#, 16#30#, 16#00#, 16#03#, 16#FC#, 16#60#, 16#38#, 16#1E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#FF#, 16#00#, 16#18#, 16#0C#, 16#00#, 16#C0#, 16#10#, 16#06#, 16#00#, 16#C0#, 16#30#, 16#02#, 16#01#, 16#80#, 16#10#, 16#0C#, 16#00#, 16#80#, 16#60#, 16#0C#, 16#03#, 16#00#, 16#C0#, 16#18#, 16#0C#, 16#00#, 16#FF#, 16#80#, 16#06#, 16#0C#, 16#00#, 16#30#, 16#10#, 16#01#, 16#80#, 16#40#, 16#0C#, 16#03#, 16#00#, 16#60#, 16#0C#, 16#03#, 16#00#, 16#20#, 16#18#, 16#01#, 16#80#, 16#C0#, 16#04#, 16#1F#, 16#C0#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3E#, 16#20#, 16#06#, 16#0D#, 16#00#, 16#60#, 16#18#, 16#06#, 16#00#, 16#C0#, 16#30#, 16#02#, 16#01#, 16#80#, 16#00#, 16#0C#, 16#00#, 16#00#, 16#30#, 16#00#, 16#00#, 16#E0#, 16#00#, 16#03#, 16#F0#, 16#00#, 16#01#, 16#F0#, 16#00#, 16#00#, 16#C0#, 16#00#, 16#02#, 16#00#, 16#00#, 16#18#, 16#18#, 16#00#, 16#C0#, 16#C0#, 16#06#, 16#06#, 16#00#, 16#20#, 16#38#, 16#03#, 16#01#, 16#F0#, 16#70#, 16#0C#, 16#FE#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#FF#, 16#F0#, 16#20#, 16#40#, 16#81#, 16#02#, 16#04#, 16#08#, 16#10#, 16#20#, 16#40#, 16#81#, 16#00#, 16#04#, 16#00#, 16#00#, 16#20#, 16#00#, 16#01#, 16#00#, 16#00#, 16#08#, 16#00#, 16#00#, 16#40#, 16#00#, 16#02#, 16#00#, 16#00#, 16#10#, 16#00#, 16#00#, 16#80#, 16#00#, 16#04#, 16#00#, 16#00#, 16#20#, 16#00#, 16#01#, 16#00#, 16#00#, 16#08#, 16#00#, 16#00#, 16#40#, 16#00#, 16#02#, 16#00#, 16#03#, 16#FF#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#E1#, 16#FC#, 16#10#, 16#01#, 16#00#, 16#80#, 16#08#, 16#04#, 16#00#, 16#40#, 16#20#, 16#02#, 16#01#, 16#00#, 16#10#, 16#08#, 16#00#, 16#80#, 16#40#, 16#04#, 16#02#, 16#00#, 16#20#, 16#10#, 16#01#, 16#00#, 16#80#, 16#08#, 16#04#, 16#00#, 16#40#, 16#20#, 16#02#, 16#01#, 16#00#, 16#10#, 16#08#, 16#00#, 16#80#, 16#40#, 16#04#, 16#03#, 16#00#, 16#60#, 16#0C#, 16#06#, 16#00#, 16#30#, 16#60#, 16#00#, 16#7C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3F#, 16#80#, 16#FE#, 16#20#, 16#00#, 16#81#, 16#00#, 16#04#, 16#0C#, 16#00#, 16#60#, 16#20#, 16#02#, 16#01#, 16#80#, 16#30#, 16#0C#, 16#01#, 16#80#, 16#20#, 16#08#, 16#01#, 16#80#, 16#C0#, 16#0C#, 16#04#, 16#00#, 16#20#, 16#20#, 16#01#, 16#83#, 16#00#, 16#04#, 16#10#, 16#00#, 16#21#, 16#80#, 16#01#, 16#88#, 16#00#, 16#04#, 16#40#, 16#00#, 16#36#, 16#00#, 16#01#, 16#A0#, 16#00#, 16#07#, 16#00#, 16#00#, 16#38#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#C1#, 16#FC#, 16#60#, 16#00#, 16#C3#, 16#00#, 16#06#, 16#18#, 16#00#, 16#30#, 16#40#, 16#01#, 16#02#, 16#0E#, 16#08#, 16#10#, 16#50#, 16#40#, 16#82#, 16#82#, 16#04#, 16#36#, 16#10#, 16#31#, 16#B1#, 16#81#, 16#88#, 16#8C#, 16#0C#, 16#46#, 16#60#, 16#66#, 16#33#, 16#01#, 16#20#, 16#90#, 16#09#, 16#04#, 16#80#, 16#58#, 16#34#, 16#02#, 16#81#, 16#A0#, 16#14#, 16#05#, 16#00#, 16#E0#, 16#38#, 16#07#, 16#01#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#C1#, 16#F8#, 16#10#, 16#03#, 16#00#, 16#C0#, 16#18#, 16#03#, 16#01#, 16#80#, 16#0C#, 16#18#, 16#00#, 16#60#, 16#80#, 16#01#, 16#8C#, 16#00#, 16#06#, 16#C0#, 16#00#, 16#14#, 16#00#, 16#00#, 16#E0#, 16#00#, 16#07#, 16#00#, 16#00#, 16#6C#, 16#00#, 16#02#, 16#20#, 16#00#, 16#31#, 16#80#, 16#03#, 16#06#, 16#00#, 16#30#, 16#18#, 16#01#, 16#00#, 16#C0#, 16#18#, 16#03#, 16#01#, 16#80#, 16#0C#, 16#3F#, 16#83#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#C1#, 16#F8#, 16#18#, 16#03#, 16#00#, 16#40#, 16#18#, 16#03#, 16#01#, 16#80#, 16#08#, 16#08#, 16#00#, 16#60#, 16#C0#, 16#01#, 16#8C#, 16#00#, 16#04#, 16#40#, 16#00#, 16#36#, 16#00#, 16#00#, 16#E0#, 16#00#, 16#07#, 16#00#, 16#00#, 16#10#, 16#00#, 16#00#, 16#80#, 16#00#, 16#04#, 16#00#, 16#00#, 16#20#, 16#00#, 16#01#, 16#00#, 16#00#, 16#08#, 16#00#, 16#00#, 16#40#, 16#00#, 16#02#, 16#00#, 16#03#, 16#FF#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#FF#, 16#C0#, 16#18#, 16#02#, 16#00#, 16#C0#, 16#30#, 16#06#, 16#03#, 16#00#, 16#30#, 16#18#, 16#01#, 16#81#, 16#80#, 16#00#, 16#18#, 16#00#, 16#00#, 16#C0#, 16#00#, 16#0C#, 16#00#, 16#00#, 16#C0#, 16#00#, 16#06#, 16#00#, 16#00#, 16#60#, 16#00#, 16#06#, 16#00#, 16#00#, 16#30#, 16#10#, 16#03#, 16#00#, 16#80#, 16#30#, 16#04#, 16#01#, 16#80#, 16#20#, 16#18#, 16#01#, 16#00#, 16#80#, 16#08#, 16#07#, 16#FF#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#F8#, 16#00#, 16#08#, 16#00#, 16#00#, 16#40#, 16#00#, 16#02#, 16#00#, 16#00#, 16#10#, 16#00#, 16#00#, 16#80#, 16#00#, 16#04#, 16#00#, 16#00#, 16#20#, 16#00#, 16#01#, 16#00#, 16#00#, 16#08#, 16#00#, 16#00#, 16#40#, 16#00#, 16#02#, 16#00#, 16#00#, 16#10#, 16#00#, 16#00#, 16#80#, 16#00#, 16#04#, 16#00#, 16#00#, 16#20#, 16#00#, 16#01#, 16#00#, 16#00#, 16#08#, 16#00#, 16#00#, 16#40#, 16#00#, 16#02#, 16#00#, 16#00#, 16#10#, 16#00#, 16#00#, 16#80#, 16#00#, 16#04#, 16#00#, 16#00#, 16#20#, 16#00#, 16#01#, 16#F8#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#80#, 16#00#, 16#0C#, 16#00#, 16#00#, 16#20#, 16#00#, 16#01#, 16#80#, 16#00#, 16#04#, 16#00#, 16#00#, 16#30#, 16#00#, 16#00#, 16#80#, 16#00#, 16#06#, 16#00#, 16#00#, 16#10#, 16#00#, 16#00#, 16#C0#, 16#00#, 16#02#, 16#00#, 16#00#, 16#18#, 16#00#, 16#00#, 16#40#, 16#00#, 16#03#, 16#00#, 16#00#, 16#08#, 16#00#, 16#00#, 16#60#, 16#00#, 16#03#, 16#00#, 16#00#, 16#0C#, 16#00#, 16#00#, 16#60#, 16#00#, 16#01#, 16#00#, 16#00#, 16#0C#, 16#00#, 16#00#, 16#20#, 16#00#, 16#01#, 16#80#, 16#00#, 16#04#, 16#00#, 16#00#, 16#30#, 16#00#, 16#00#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3F#, 16#00#, 16#00#, 16#08#, 16#00#, 16#00#, 16#40#, 16#00#, 16#02#, 16#00#, 16#00#, 16#10#, 16#00#, 16#00#, 16#80#, 16#00#, 16#04#, 16#00#, 16#00#, 16#20#, 16#00#, 16#01#, 16#00#, 16#00#, 16#08#, 16#00#, 16#00#, 16#40#, 16#00#, 16#02#, 16#00#, 16#00#, 16#10#, 16#00#, 16#00#, 16#80#, 16#00#, 16#04#, 16#00#, 16#00#, 16#20#, 16#00#, 16#01#, 16#00#, 16#00#, 16#08#, 16#00#, 16#00#, 16#40#, 16#00#, 16#02#, 16#00#, 16#00#, 16#10#, 16#00#, 16#00#, 16#80#, 16#00#, 16#04#, 16#00#, 16#00#, 16#20#, 16#00#, 16#3F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#00#, 16#00#, 16#1C#, 16#00#, 16#01#, 16#B0#, 16#00#, 16#08#, 16#80#, 16#00#, 16#C6#, 16#00#, 16#0C#, 16#18#, 16#00#, 16#C0#, 16#60#, 16#0C#, 16#01#, 16#80#, 16#40#, 16#04#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#FF#, 16#FF#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#06#, 16#00#, 16#00#, 16#18#, 16#00#, 16#00#, 16#60#, 16#00#, 16#01#, 16#C0#, 16#00#, 16#02#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#7F#, 16#00#, 16#0E#, 16#06#, 16#00#, 16#00#, 16#18#, 16#00#, 16#00#, 16#40#, 16#00#, 16#02#, 16#00#, 16#00#, 16#10#, 16#01#, 16#FF#, 16#80#, 16#38#, 16#0C#, 16#03#, 16#00#, 16#20#, 16#10#, 16#01#, 16#00#, 16#80#, 16#08#, 16#04#, 16#00#, 16#C0#, 16#20#, 16#0E#, 16#01#, 16#81#, 16#D0#, 16#03#, 16#F0#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#C0#, 16#00#, 16#02#, 16#00#, 16#00#, 16#10#, 16#00#, 16#00#, 16#80#, 16#00#, 16#04#, 16#00#, 16#00#, 16#20#, 16#00#, 16#01#, 16#0F#, 16#80#, 16#09#, 16#83#, 16#00#, 16#50#, 16#0C#, 16#03#, 16#00#, 16#30#, 16#18#, 16#00#, 16#80#, 16#80#, 16#06#, 16#04#, 16#00#, 16#30#, 16#20#, 16#01#, 16#81#, 16#00#, 16#0C#, 16#08#, 16#00#, 16#60#, 16#60#, 16#02#, 16#03#, 16#00#, 16#30#, 16#1C#, 16#03#, 16#00#, 16#B8#, 16#30#, 16#3C#, 16#7E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#88#, 16#03#, 16#03#, 16#C0#, 16#30#, 16#0E#, 16#03#, 16#00#, 16#30#, 16#10#, 16#01#, 16#81#, 16#80#, 16#00#, 16#08#, 16#00#, 16#00#, 16#40#, 16#00#, 16#02#, 16#00#, 16#00#, 16#18#, 16#00#, 16#00#, 16#C0#, 16#00#, 16#03#, 16#00#, 16#18#, 16#08#, 16#01#, 16#80#, 16#30#, 16#38#, 16#00#, 16#7E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3E#, 16#00#, 16#00#, 16#30#, 16#00#, 16#01#, 16#80#, 16#00#, 16#0C#, 16#00#, 16#00#, 16#60#, 16#00#, 16#03#, 16#00#, 16#3E#, 16#18#, 16#06#, 16#0C#, 16#C0#, 16#60#, 16#16#, 16#06#, 16#00#, 16#70#, 16#20#, 16#03#, 16#83#, 16#00#, 16#0C#, 16#18#, 16#00#, 16#60#, 16#C0#, 16#03#, 16#06#, 16#00#, 16#18#, 16#30#, 16#00#, 16#C0#, 16#80#, 16#06#, 16#06#, 16#00#, 16#70#, 16#18#, 16#07#, 16#80#, 16#60#, 16#EC#, 16#00#, 16#FC#, 16#78#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3F#, 16#00#, 16#07#, 16#06#, 16#00#, 16#60#, 16#18#, 16#06#, 16#00#, 16#60#, 16#20#, 16#01#, 16#83#, 16#00#, 16#0C#, 16#18#, 16#00#, 16#20#, 16#FF#, 16#FF#, 16#06#, 16#00#, 16#00#, 16#30#, 16#00#, 16#00#, 16#80#, 16#00#, 16#06#, 16#00#, 16#00#, 16#18#, 16#01#, 16#80#, 16#30#, 16#38#, 16#00#, 16#7E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#FF#, 16#00#, 16#18#, 16#00#, 16#01#, 16#80#, 16#00#, 16#0C#, 16#00#, 16#00#, 16#40#, 16#00#, 16#02#, 16#00#, 16#01#, 16#FF#, 16#F0#, 16#00#, 16#80#, 16#00#, 16#04#, 16#00#, 16#00#, 16#20#, 16#00#, 16#01#, 16#00#, 16#00#, 16#08#, 16#00#, 16#00#, 16#40#, 16#00#, 16#02#, 16#00#, 16#00#, 16#10#, 16#00#, 16#00#, 16#80#, 16#00#, 16#04#, 16#00#, 16#00#, 16#20#, 16#00#, 16#01#, 16#00#, 16#00#, 16#08#, 16#00#, 16#07#, 16#FF#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3E#, 16#3E#, 16#06#, 16#0D#, 16#80#, 16#60#, 16#3C#, 16#06#, 16#00#, 16#E0#, 16#20#, 16#03#, 16#03#, 16#00#, 16#18#, 16#18#, 16#00#, 16#C0#, 16#C0#, 16#06#, 16#06#, 16#00#, 16#30#, 16#30#, 16#01#, 16#80#, 16#80#, 16#0C#, 16#06#, 16#00#, 16#E0#, 16#18#, 16#0F#, 16#00#, 16#60#, 16#D8#, 16#00#, 16#F8#, 16#C0#, 16#00#, 16#06#, 16#00#, 16#00#, 16#30#, 16#00#, 16#01#, 16#80#, 16#00#, 16#08#, 16#00#, 16#00#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#03#, 16#00#, 16#00#, 16#18#, 16#00#, 16#00#, 16#C0#, 16#00#, 16#06#, 16#00#, 16#00#, 16#30#, 16#00#, 16#01#, 16#8F#, 16#80#, 16#0D#, 16#86#, 16#00#, 16#78#, 16#08#, 16#03#, 16#80#, 16#60#, 16#18#, 16#03#, 16#00#, 16#C0#, 16#18#, 16#06#, 16#00#, 16#C0#, 16#30#, 16#06#, 16#01#, 16#80#, 16#30#, 16#0C#, 16#01#, 16#80#, 16#60#, 16#0C#, 16#03#, 16#00#, 16#60#, 16#18#, 16#03#, 16#00#, 16#C0#, 16#18#, 16#1F#, 16#83#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#60#, 16#00#, 16#03#, 16#00#, 16#00#, 16#18#, 16#00#, 16#00#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#FC#, 16#00#, 16#00#, 16#20#, 16#00#, 16#01#, 16#00#, 16#00#, 16#08#, 16#00#, 16#00#, 16#40#, 16#00#, 16#02#, 16#00#, 16#00#, 16#10#, 16#00#, 16#00#, 16#80#, 16#00#, 16#04#, 16#00#, 16#00#, 16#20#, 16#00#, 16#01#, 16#00#, 16#00#, 16#08#, 16#00#, 16#00#, 16#40#, 16#00#, 16#02#, 16#00#, 16#0F#, 16#FF#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#18#, 16#00#, 16#00#, 16#C0#, 16#00#, 16#06#, 16#00#, 16#00#, 16#30#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#FF#, 16#C0#, 16#00#, 16#02#, 16#00#, 16#00#, 16#10#, 16#00#, 16#00#, 16#80#, 16#00#, 16#04#, 16#00#, 16#00#, 16#20#, 16#00#, 16#01#, 16#00#, 16#00#, 16#08#, 16#00#, 16#00#, 16#40#, 16#00#, 16#02#, 16#00#, 16#00#, 16#10#, 16#00#, 16#00#, 16#80#, 16#00#, 16#04#, 16#00#, 16#00#, 16#20#, 16#00#, 16#01#, 16#00#, 16#00#, 16#08#, 16#00#, 16#00#, 16#40#, 16#00#, 16#06#, 16#00#, 16#00#, 16#30#, 16#00#, 16#01#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#01#, 16#00#, 16#00#, 16#08#, 16#00#, 16#00#, 16#40#, 16#00#, 16#02#, 16#00#, 16#00#, 16#10#, 16#00#, 16#00#, 16#83#, 16#F0#, 16#04#, 16#0C#, 16#00#, 16#20#, 16#C0#, 16#01#, 16#0C#, 16#00#, 16#08#, 16#C0#, 16#00#, 16#4C#, 16#00#, 16#02#, 16#E0#, 16#00#, 16#1F#, 16#00#, 16#00#, 16#CC#, 16#00#, 16#04#, 16#30#, 16#00#, 16#20#, 16#C0#, 16#01#, 16#03#, 16#00#, 16#08#, 16#0C#, 16#00#, 16#40#, 16#30#, 16#1E#, 16#07#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3F#, 16#00#, 16#00#, 16#08#, 16#00#, 16#00#, 16#40#, 16#00#, 16#02#, 16#00#, 16#00#, 16#10#, 16#00#, 16#00#, 16#80#, 16#00#, 16#04#, 16#00#, 16#00#, 16#20#, 16#00#, 16#01#, 16#00#, 16#00#, 16#08#, 16#00#, 16#00#, 16#40#, 16#00#, 16#02#, 16#00#, 16#00#, 16#10#, 16#00#, 16#00#, 16#80#, 16#00#, 16#04#, 16#00#, 16#00#, 16#20#, 16#00#, 16#01#, 16#00#, 16#00#, 16#08#, 16#00#, 16#00#, 16#40#, 16#00#, 16#02#, 16#00#, 16#0F#, 16#FF#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1E#, 16#F8#, 16#F0#, 16#1C#, 16#78#, 16#C0#, 16#C1#, 16#82#, 16#04#, 16#08#, 16#18#, 16#20#, 16#40#, 16#C1#, 16#02#, 16#06#, 16#08#, 16#10#, 16#30#, 16#40#, 16#81#, 16#82#, 16#04#, 16#0C#, 16#10#, 16#20#, 16#60#, 16#81#, 16#03#, 16#04#, 16#08#, 16#18#, 16#20#, 16#40#, 16#C1#, 16#02#, 16#06#, 16#7E#, 16#1C#, 16#3C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#9F#, 16#80#, 16#0D#, 16#86#, 16#00#, 16#70#, 16#08#, 16#03#, 16#00#, 16#60#, 16#18#, 16#03#, 16#00#, 16#C0#, 16#18#, 16#06#, 16#00#, 16#C0#, 16#30#, 16#06#, 16#01#, 16#80#, 16#30#, 16#0C#, 16#01#, 16#80#, 16#60#, 16#0C#, 16#03#, 16#00#, 16#60#, 16#18#, 16#03#, 16#00#, 16#C0#, 16#18#, 16#1F#, 16#83#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1F#, 16#00#, 16#03#, 16#06#, 16#00#, 16#20#, 16#08#, 16#02#, 16#00#, 16#20#, 16#30#, 16#01#, 16#81#, 16#00#, 16#04#, 16#08#, 16#00#, 16#20#, 16#40#, 16#01#, 16#02#, 16#00#, 16#08#, 16#10#, 16#00#, 16#40#, 16#C0#, 16#06#, 16#02#, 16#00#, 16#20#, 16#18#, 16#02#, 16#00#, 16#30#, 16#60#, 16#00#, 16#7C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#1F#, 16#80#, 16#0B#, 16#83#, 16#00#, 16#70#, 16#0C#, 16#03#, 16#00#, 16#30#, 16#18#, 16#00#, 16#C0#, 16#80#, 16#06#, 16#04#, 16#00#, 16#30#, 16#20#, 16#01#, 16#81#, 16#00#, 16#0C#, 16#08#, 16#00#, 16#60#, 16#60#, 16#02#, 16#03#, 16#00#, 16#30#, 16#14#, 16#03#, 16#00#, 16#98#, 16#30#, 16#04#, 16#7E#, 16#00#, 16#20#, 16#00#, 16#01#, 16#00#, 16#00#, 16#08#, 16#00#, 16#00#, 16#40#, 16#00#, 16#02#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3F#, 16#1E#, 16#06#, 16#0E#, 16#C0#, 16#60#, 16#1E#, 16#06#, 16#00#, 16#70#, 16#20#, 16#01#, 16#83#, 16#00#, 16#0C#, 16#18#, 16#00#, 16#60#, 16#C0#, 16#03#, 16#06#, 16#00#, 16#18#, 16#30#, 16#00#, 16#C0#, 16#80#, 16#0E#, 16#06#, 16#00#, 16#70#, 16#18#, 16#07#, 16#80#, 16#60#, 16#EC#, 16#00#, 16#FC#, 16#60#, 16#00#, 16#03#, 16#00#, 16#00#, 16#18#, 16#00#, 16#00#, 16#C0#, 16#00#, 16#06#, 16#00#, 16#00#, 16#30#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#F0#, 16#F8#, 16#01#, 16#98#, 16#60#, 16#0D#, 16#80#, 16#00#, 16#78#, 16#00#, 16#03#, 16#80#, 16#00#, 16#18#, 16#00#, 16#00#, 16#C0#, 16#00#, 16#06#, 16#00#, 16#00#, 16#30#, 16#00#, 16#01#, 16#80#, 16#00#, 16#0C#, 16#00#, 16#00#, 16#60#, 16#00#, 16#03#, 16#00#, 16#00#, 16#18#, 16#00#, 16#0F#, 16#FF#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#3F#, 16#A0#, 16#07#, 16#07#, 16#80#, 16#20#, 16#0C#, 16#03#, 16#00#, 16#60#, 16#18#, 16#00#, 16#00#, 16#60#, 16#00#, 16#01#, 16#E0#, 16#00#, 16#01#, 16#F8#, 16#00#, 16#00#, 16#60#, 16#00#, 16#01#, 16#80#, 16#40#, 16#04#, 16#02#, 16#00#, 16#20#, 16#18#, 16#03#, 16#00#, 16#E0#, 16#70#, 16#04#, 16#FE#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#00#, 16#00#, 16#0C#, 16#00#, 16#00#, 16#60#, 16#00#, 16#03#, 16#00#, 16#00#, 16#18#, 16#00#, 16#07#, 16#FF#, 16#C0#, 16#06#, 16#00#, 16#00#, 16#30#, 16#00#, 16#01#, 16#80#, 16#00#, 16#0C#, 16#00#, 16#00#, 16#60#, 16#00#, 16#03#, 16#00#, 16#00#, 16#18#, 16#00#, 16#00#, 16#C0#, 16#00#, 16#06#, 16#00#, 16#00#, 16#30#, 16#00#, 16#01#, 16#80#, 16#00#, 16#0C#, 16#01#, 16#00#, 16#30#, 16#38#, 16#00#, 16#7E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#81#, 16#F0#, 16#0C#, 16#01#, 16#80#, 16#60#, 16#0C#, 16#03#, 16#00#, 16#60#, 16#18#, 16#03#, 16#00#, 16#C0#, 16#18#, 16#06#, 16#00#, 16#C0#, 16#30#, 16#06#, 16#01#, 16#80#, 16#30#, 16#0C#, 16#01#, 16#80#, 16#60#, 16#0C#, 16#03#, 16#00#, 16#60#, 16#08#, 16#07#, 16#00#, 16#60#, 16#F8#, 16#00#, 16#F8#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#E0#, 16#FE#, 16#08#, 16#00#, 16#80#, 16#60#, 16#0C#, 16#03#, 16#00#, 16#60#, 16#08#, 16#02#, 16#00#, 16#60#, 16#30#, 16#01#, 16#01#, 16#00#, 16#0C#, 16#18#, 16#00#, 16#20#, 16#80#, 16#01#, 16#04#, 16#00#, 16#0C#, 16#60#, 16#00#, 16#22#, 16#00#, 16#01#, 16#90#, 16#00#, 16#05#, 16#00#, 16#00#, 16#38#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0F#, 16#C0#, 16#7E#, 16#10#, 16#00#, 16#40#, 16#80#, 16#02#, 16#06#, 16#08#, 16#30#, 16#30#, 16#E1#, 16#80#, 16#85#, 16#08#, 16#04#, 16#28#, 16#40#, 16#23#, 16#62#, 16#01#, 16#91#, 16#30#, 16#0C#, 16#89#, 16#80#, 16#2C#, 16#68#, 16#01#, 16#61#, 16#40#, 16#0A#, 16#0A#, 16#00#, 16#70#, 16#70#, 16#03#, 16#81#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#E0#, 16#F8#, 16#0C#, 16#01#, 16#80#, 16#30#, 16#18#, 16#00#, 16#C1#, 16#80#, 16#03#, 16#18#, 16#00#, 16#0D#, 16#80#, 16#00#, 16#38#, 16#00#, 16#01#, 16#C0#, 16#00#, 16#1B#, 16#00#, 16#01#, 16#8C#, 16#00#, 16#18#, 16#30#, 16#01#, 16#80#, 16#C0#, 16#18#, 16#03#, 16#00#, 16#80#, 16#18#, 16#1F#, 16#83#, 16#F0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#E0#, 16#FC#, 16#08#, 16#00#, 16#C0#, 16#60#, 16#04#, 16#03#, 16#00#, 16#60#, 16#0C#, 16#02#, 16#00#, 16#60#, 16#30#, 16#01#, 16#01#, 16#00#, 16#0C#, 16#18#, 16#00#, 16#20#, 16#80#, 16#01#, 16#84#, 16#00#, 16#04#, 16#60#, 16#00#, 16#32#, 16#00#, 16#00#, 16#B0#, 16#00#, 16#07#, 16#00#, 16#00#, 16#38#, 16#00#, 16#00#, 16#80#, 16#00#, 16#0C#, 16#00#, 16#00#, 16#40#, 16#00#, 16#06#, 16#00#, 16#00#, 16#30#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#FF#, 16#F0#, 16#0C#, 16#03#, 16#00#, 16#60#, 16#30#, 16#03#, 16#01#, 16#00#, 16#00#, 16#18#, 16#00#, 16#01#, 16#80#, 16#00#, 16#18#, 16#00#, 16#01#, 16#80#, 16#00#, 16#08#, 16#00#, 16#00#, 16#C0#, 16#00#, 16#0C#, 16#00#, 16#00#, 16#C0#, 16#20#, 16#0C#, 16#01#, 16#00#, 16#40#, 16#08#, 16#07#, 16#FF#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#E0#, 16#00#, 16#0C#, 16#00#, 16#00#, 16#40#, 16#00#, 16#02#, 16#00#, 16#00#, 16#10#, 16#00#, 16#00#, 16#80#, 16#00#, 16#04#, 16#00#, 16#00#, 16#20#, 16#00#, 16#01#, 16#00#, 16#00#, 16#08#, 16#00#, 16#00#, 16#C0#, 16#00#, 16#0C#, 16#00#, 16#01#, 16#C0#, 16#00#, 16#03#, 16#00#, 16#00#, 16#0C#, 16#00#, 16#00#, 16#20#, 16#00#, 16#01#, 16#00#, 16#00#, 16#08#, 16#00#, 16#00#, 16#40#, 16#00#, 16#02#, 16#00#, 16#00#, 16#10#, 16#00#, 16#00#, 16#80#, 16#00#, 16#04#, 16#00#, 16#00#, 16#30#, 16#00#, 16#00#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#00#, 16#00#, 16#08#, 16#00#, 16#00#, 16#40#, 16#00#, 16#02#, 16#00#, 16#00#, 16#10#, 16#00#, 16#00#, 16#80#, 16#00#, 16#04#, 16#00#, 16#00#, 16#20#, 16#00#, 16#01#, 16#00#, 16#00#, 16#08#, 16#00#, 16#00#, 16#40#, 16#00#, 16#02#, 16#00#, 16#00#, 16#10#, 16#00#, 16#00#, 16#80#, 16#00#, 16#04#, 16#00#, 16#00#, 16#20#, 16#00#, 16#01#, 16#00#, 16#00#, 16#08#, 16#00#, 16#00#, 16#40#, 16#00#, 16#02#, 16#00#, 16#00#, 16#10#, 16#00#, 16#00#, 16#80#, 16#00#, 16#04#, 16#00#, 16#00#, 16#20#, 16#00#, 16#01#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0E#, 16#00#, 16#00#, 16#18#, 16#00#, 16#00#, 16#40#, 16#00#, 16#02#, 16#00#, 16#00#, 16#10#, 16#00#, 16#00#, 16#80#, 16#00#, 16#04#, 16#00#, 16#00#, 16#20#, 16#00#, 16#01#, 16#00#, 16#00#, 16#08#, 16#00#, 16#00#, 16#60#, 16#00#, 16#01#, 16#80#, 16#00#, 16#07#, 16#00#, 16#00#, 16#60#, 16#00#, 16#06#, 16#00#, 16#00#, 16#20#, 16#00#, 16#01#, 16#00#, 16#00#, 16#08#, 16#00#, 16#00#, 16#40#, 16#00#, 16#02#, 16#00#, 16#00#, 16#10#, 16#00#, 16#00#, 16#80#, 16#00#, 16#04#, 16#00#, 16#00#, 16#60#, 16#00#, 16#0E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#E0#, 16#00#, 16#08#, 16#81#, 16#80#, 16#C2#, 16#18#, 16#0C#, 16#08#, 16#80#, 16#00#, 16#38#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#); Font_D : aliased constant Bitmap_Font := ( Bytes_Per_Glyph => 92, Glyph_Width => 21, Glyph_Height => 35, Data => FreeMono18pt7bBitmaps'Access); Font : constant Bitmap_Font_Ref := Font_D'Access; end GESTE_Fonts.FreeMono18pt7b;
-- Copyright 2013-2014 Free Software Foundation, Inc. -- -- This program is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- the Free Software Foundation; either version 3 of the License, or -- (at your option) any later version. -- -- This program is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- GNU General Public License for more details. -- -- You should have received a copy of the GNU General Public License -- along with this program. If not, see <http://www.gnu.org/licenses/>. package body Pck is procedure Put(S : String) is begin null; end Put; end Pck;
----------------------------------------------------------------------- -- util-encoders-lzma -- LZMA compression and decompression -- Copyright (C) 2018, 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 Lzma.Check; with Lzma.Container; with Interfaces.C; package body Util.Encoders.Lzma is use type Interfaces.C.size_t; -- use type Ada.Streams.Stream_Element_Offset; use type Base.lzma_ret; subtype Offset is Ada.Streams.Stream_Element_Offset; -- ------------------------------ -- Compress the binary input stream represented by <b>Data</b> by using -- the LZMA compression into the output stream <b>Into</b>. -- -- If the transformer does not have enough room to write the result, -- it must return in <b>Encoded</b> the index of the last encoded -- position in the <b>Data</b> stream. -- -- The transformer returns in <b>Last</b> the last valid position -- in the output stream <b>Into</b>. -- -- The <b>Encoding_Error</b> exception is raised if the input -- stream cannot be transformed. -- ------------------------------ overriding procedure Transform (E : in out Compress; Data : in Ada.Streams.Stream_Element_Array; Into : out Ada.Streams.Stream_Element_Array; Last : out Ada.Streams.Stream_Element_Offset; Encoded : out Ada.Streams.Stream_Element_Offset) is Result : Base.lzma_ret; begin E.Stream.next_out := Into (Into'First)'Unchecked_Access; E.Stream.avail_out := Into'Length; E.Stream.next_in := Data (Data'First)'Unrestricted_Access; E.Stream.avail_in := Interfaces.C.size_t (Data'Length); loop Result := Base.lzma_code (E.Stream'Unchecked_Access, Base.LZMA_RUN); -- Write the output data when the buffer is full or we reached the end of stream. if E.Stream.avail_out = 0 or E.Stream.avail_in = 0 or Result = Base.LZMA_STREAM_END then Last := Into'First + Into'Length - Offset (E.Stream.avail_out) - 1; Encoded := Data'First + Data'Length - Offset (E.Stream.avail_in); return; end if; exit when Result /= Base.LZMA_OK; end loop; Encoded := Into'First; end Transform; -- ------------------------------ -- Finish compression of the input array. -- ------------------------------ overriding procedure Finish (E : in out Compress; Into : in out Ada.Streams.Stream_Element_Array; Last : in out Ada.Streams.Stream_Element_Offset) is Result : Base.lzma_ret; pragma Unreferenced (Result); begin E.Stream.next_out := Into (Into'First)'Unchecked_Access; E.Stream.avail_out := Into'Length; E.Stream.next_in := null; E.Stream.avail_in := 0; Result := Base.lzma_code (E.Stream'Unchecked_Access, Base.LZMA_FINISH); Last := Into'First + Into'Length - Offset (E.Stream.avail_out) - 1; end Finish; overriding procedure Initialize (E : in out Compress) is Result : Base.lzma_ret; pragma Unreferenced (Result); begin Result := Container.lzma_easy_encoder (E.Stream'Unchecked_Access, 6, Check.LZMA_CHECK_CRC64); end Initialize; overriding procedure Finalize (E : in out Compress) is begin Base.lzma_end (E.Stream'Unchecked_Access); end Finalize; end Util.Encoders.Lzma;
-- Copyright 2015-2019 Free Software Foundation, Inc. -- -- This program is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- the Free Software Foundation; either version 3 of the License, or -- (at your option) any later version. -- -- This program is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- GNU General Public License for more details. -- -- You should have received a copy of the GNU General Public License -- along with this program. If not, see <http://www.gnu.org/licenses/>. with Pck; use Pck; procedure Foo_N612_026 is R : Record_Type := Get (10); begin Do_Nothing (R'Address); -- STOP end Foo_N612_026;
<?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>Mem2Stream_Batch12</name> <ret_bitwidth>0</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>in_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo class_id="6" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>in.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <direction>0</direction> <if_type>4</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_V1</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>61</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_3"> <Value> <Obj> <type>1</type> <id>3</id> <name>memInStrm_V_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>out.V.V</originalName> <rtlName></rtlName> <coreName>FSL</coreName> </Obj> <bitwidth>64</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="_4"> <Value> <Obj> <type>1</type> <id>4</id> <name>numReps</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>numReps</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>numReps_channel</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>FSL</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>out_V3</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>61</bitwidth> </Value> <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="_7"> <Value> <Obj> <type>1</type> <id>7</id> <name>out_V3_out</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>FSL</coreName> </Obj> <bitwidth>61</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>26</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>rep</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>rep</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>59</item> </oprand_edges> <opcode>alloca</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_9"> <Value> <Obj> <type>0</type> <id>18</id> <name>out_V3_read</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>61</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>61</item> <item>62</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_10"> <Value> <Obj> <type>0</type> <id>19</id> <name>numReps_read</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>numReps</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>64</item> <item>65</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_11"> <Value> <Obj> <type>0</type> <id>20</id> <name>in_V1_read</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>61</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>66</item> <item>67</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>21</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>69</item> <item>70</item> <item>71</item> </oprand_edges> <opcode>write</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_13"> <Value> <Obj> <type>0</type> <id>29</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>73</item> <item>74</item> <item>75</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>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> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>77</item> <item>78</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_15"> <Value> <Obj> <type>0</type> <id>32</id> <name></name> <fileName>/home/jf2715/BNN-PYNQ/bnn/src//library/finn-hlslib/dma.h</fileName> <fileDirectory>/home/jf2715/BNN-PYNQ/bnn/src/network/output/hls-syn</fileDirectory> <lineNumber>166</lineNumber> <contextFuncName>Mem2Stream_Batch&amp;lt;64, 104&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item class_id="11" tracking_level="0" version="0"> <first>/home/jf2715/BNN-PYNQ/bnn/src/network/output/hls-syn</first> <second class_id="12" tracking_level="0" version="0"> <count>2</count> <item_version>0</item_version> <item class_id="13" tracking_level="0" version="0"> <first class_id="14" tracking_level="0" version="0"> <first>/home/jf2715/BNN-PYNQ/bnn/src//library/finn-hlslib/dma.h</first> <second>Mem2Stream_Batch&amp;lt;64, 104&amp;gt;</second> </first> <second>166</second> </item> <item> <first> <first>/home/jf2715/BNN-PYNQ/bnn/src//network/lfcW1A1/hw/top.cpp</first> <second>DoCompute</second> </first> <second>133</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>79</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_16"> <Value> <Obj> <type>0</type> <id>34</id> <name>rep_load</name> <fileName>/home/jf2715/BNN-PYNQ/bnn/src//library/finn-hlslib/dma.h</fileName> <fileDirectory>/home/jf2715/BNN-PYNQ/bnn/src/network/output/hls-syn</fileDirectory> <lineNumber>171</lineNumber> <contextFuncName>Mem2Stream_Batch&amp;lt;64, 104&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jf2715/BNN-PYNQ/bnn/src/network/output/hls-syn</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>/home/jf2715/BNN-PYNQ/bnn/src//library/finn-hlslib/dma.h</first> <second>Mem2Stream_Batch&amp;lt;64, 104&amp;gt;</second> </first> <second>171</second> </item> <item> <first> <first>/home/jf2715/BNN-PYNQ/bnn/src//network/lfcW1A1/hw/top.cpp</first> <second>DoCompute</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>80</item> <item>428</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_17"> <Value> <Obj> <type>0</type> <id>35</id> <name>tmp_i_i_i_i</name> <fileName>/home/jf2715/BNN-PYNQ/bnn/src//library/finn-hlslib/dma.h</fileName> <fileDirectory>/home/jf2715/BNN-PYNQ/bnn/src/network/output/hls-syn</fileDirectory> <lineNumber>166</lineNumber> <contextFuncName>Mem2Stream_Batch&amp;lt;64, 104&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jf2715/BNN-PYNQ/bnn/src/network/output/hls-syn</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>/home/jf2715/BNN-PYNQ/bnn/src//library/finn-hlslib/dma.h</first> <second>Mem2Stream_Batch&amp;lt;64, 104&amp;gt;</second> </first> <second>166</second> </item> <item> <first> <first>/home/jf2715/BNN-PYNQ/bnn/src//network/lfcW1A1/hw/top.cpp</first> <second>DoCompute</second> </first> <second>133</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>81</item> <item>82</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_18"> <Value> <Obj> <type>0</type> <id>36</id> <name></name> <fileName>/home/jf2715/BNN-PYNQ/bnn/src//library/finn-hlslib/dma.h</fileName> <fileDirectory>/home/jf2715/BNN-PYNQ/bnn/src/network/output/hls-syn</fileDirectory> <lineNumber>166</lineNumber> <contextFuncName>Mem2Stream_Batch&amp;lt;64, 104&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jf2715/BNN-PYNQ/bnn/src/network/output/hls-syn</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>/home/jf2715/BNN-PYNQ/bnn/src//library/finn-hlslib/dma.h</first> <second>Mem2Stream_Batch&amp;lt;64, 104&amp;gt;</second> </first> <second>166</second> </item> <item> <first> <first>/home/jf2715/BNN-PYNQ/bnn/src//network/lfcW1A1/hw/top.cpp</first> <second>DoCompute</second> </first> <second>133</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>83</item> <item>84</item> <item>85</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>38</id> <name>repsLeft</name> <fileName>/home/jf2715/BNN-PYNQ/bnn/src//library/finn-hlslib/dma.h</fileName> <fileDirectory>/home/jf2715/BNN-PYNQ/bnn/src/network/output/hls-syn</fileDirectory> <lineNumber>167</lineNumber> <contextFuncName>Mem2Stream_Batch&amp;lt;64, 104&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jf2715/BNN-PYNQ/bnn/src/network/output/hls-syn</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>/home/jf2715/BNN-PYNQ/bnn/src//library/finn-hlslib/dma.h</first> <second>Mem2Stream_Batch&amp;lt;64, 104&amp;gt;</second> </first> <second>167</second> </item> <item> <first> <first>/home/jf2715/BNN-PYNQ/bnn/src//network/lfcW1A1/hw/top.cpp</first> <second>DoCompute</second> </first> <second>133</second> </item> </second> </item> </inlineStackInfo> <originalName>repsLeft</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>86</item> <item>87</item> </oprand_edges> <opcode>sub</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_20"> <Value> <Obj> <type>0</type> <id>39</id> <name>tmp</name> <fileName>/home/jf2715/BNN-PYNQ/bnn/src//library/finn-hlslib/dma.h</fileName> <fileDirectory>/home/jf2715/BNN-PYNQ/bnn/src/network/output/hls-syn</fileDirectory> <lineNumber>167</lineNumber> <contextFuncName>Mem2Stream_Batch&amp;lt;64, 104&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jf2715/BNN-PYNQ/bnn/src/network/output/hls-syn</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>/home/jf2715/BNN-PYNQ/bnn/src//library/finn-hlslib/dma.h</first> <second>Mem2Stream_Batch&amp;lt;64, 104&amp;gt;</second> </first> <second>167</second> </item> <item> <first> <first>/home/jf2715/BNN-PYNQ/bnn/src//network/lfcW1A1/hw/top.cpp</first> <second>DoCompute</second> </first> <second>133</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>88</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_21"> <Value> <Obj> <type>0</type> <id>40</id> <name>tmp_4_i_i_i_i</name> <fileName>/home/jf2715/BNN-PYNQ/bnn/src//library/finn-hlslib/dma.h</fileName> <fileDirectory>/home/jf2715/BNN-PYNQ/bnn/src/network/output/hls-syn</fileDirectory> <lineNumber>168</lineNumber> <contextFuncName>Mem2Stream_Batch&amp;lt;64, 104&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jf2715/BNN-PYNQ/bnn/src/network/output/hls-syn</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>/home/jf2715/BNN-PYNQ/bnn/src//library/finn-hlslib/dma.h</first> <second>Mem2Stream_Batch&amp;lt;64, 104&amp;gt;</second> </first> <second>168</second> </item> <item> <first> <first>/home/jf2715/BNN-PYNQ/bnn/src//network/lfcW1A1/hw/top.cpp</first> <second>DoCompute</second> </first> <second>133</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>89</item> <item>91</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>41</id> <name>tmp_5_i_i_i_i</name> <fileName>/home/jf2715/BNN-PYNQ/bnn/src//library/finn-hlslib/dma.h</fileName> <fileDirectory>/home/jf2715/BNN-PYNQ/bnn/src/network/output/hls-syn</fileDirectory> <lineNumber>170</lineNumber> <contextFuncName>Mem2Stream_Batch&amp;lt;64, 104&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jf2715/BNN-PYNQ/bnn/src/network/output/hls-syn</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>/home/jf2715/BNN-PYNQ/bnn/src//library/finn-hlslib/dma.h</first> <second>Mem2Stream_Batch&amp;lt;64, 104&amp;gt;</second> </first> <second>170</second> </item> <item> <first> <first>/home/jf2715/BNN-PYNQ/bnn/src//network/lfcW1A1/hw/top.cpp</first> <second>DoCompute</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>93</item> <item>94</item> </oprand_edges> <opcode>mul</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_23"> <Value> <Obj> <type>0</type> <id>42</id> <name></name> <fileName>/home/jf2715/BNN-PYNQ/bnn/src//library/finn-hlslib/dma.h</fileName> <fileDirectory>/home/jf2715/BNN-PYNQ/bnn/src/network/output/hls-syn</fileDirectory> <lineNumber>168</lineNumber> <contextFuncName>Mem2Stream_Batch&amp;lt;64, 104&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jf2715/BNN-PYNQ/bnn/src/network/output/hls-syn</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>/home/jf2715/BNN-PYNQ/bnn/src//library/finn-hlslib/dma.h</first> <second>Mem2Stream_Batch&amp;lt;64, 104&amp;gt;</second> </first> <second>168</second> </item> <item> <first> <first>/home/jf2715/BNN-PYNQ/bnn/src//network/lfcW1A1/hw/top.cpp</first> <second>DoCompute</second> </first> <second>133</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>95</item> <item>96</item> <item>97</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_24"> <Value> <Obj> <type>0</type> <id>44</id> <name></name> <fileName>/home/jf2715/BNN-PYNQ/bnn/src//library/finn-hlslib/dma.h</fileName> <fileDirectory>/home/jf2715/BNN-PYNQ/bnn/src/network/output/hls-syn</fileDirectory> <lineNumber>174</lineNumber> <contextFuncName>Mem2Stream_Batch&amp;lt;64, 104&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jf2715/BNN-PYNQ/bnn/src/network/output/hls-syn</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>/home/jf2715/BNN-PYNQ/bnn/src//library/finn-hlslib/dma.h</first> <second>Mem2Stream_Batch&amp;lt;64, 104&amp;gt;</second> </first> <second>174</second> </item> <item> <first> <first>/home/jf2715/BNN-PYNQ/bnn/src//network/lfcW1A1/hw/top.cpp</first> <second>DoCompute</second> </first> <second>133</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>5</count> <item_version>0</item_version> <item>111</item> <item>112</item> <item>113</item> <item>114</item> <item>115</item> </oprand_edges> <opcode>call</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_25"> <Value> <Obj> <type>0</type> <id>45</id> <name>rep_4</name> <fileName>/home/jf2715/BNN-PYNQ/bnn/src//library/finn-hlslib/dma.h</fileName> <fileDirectory>/home/jf2715/BNN-PYNQ/bnn/src/network/output/hls-syn</fileDirectory> <lineNumber>175</lineNumber> <contextFuncName>Mem2Stream_Batch&amp;lt;64, 104&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jf2715/BNN-PYNQ/bnn/src/network/output/hls-syn</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>/home/jf2715/BNN-PYNQ/bnn/src//library/finn-hlslib/dma.h</first> <second>Mem2Stream_Batch&amp;lt;64, 104&amp;gt;</second> </first> <second>175</second> </item> <item> <first> <first>/home/jf2715/BNN-PYNQ/bnn/src//network/lfcW1A1/hw/top.cpp</first> <second>DoCompute</second> </first> <second>133</second> </item> </second> </item> </inlineStackInfo> <originalName>rep</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>116</item> <item>117</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>46</id> <name></name> <fileName>/home/jf2715/BNN-PYNQ/bnn/src//library/finn-hlslib/dma.h</fileName> <fileDirectory>/home/jf2715/BNN-PYNQ/bnn/src/network/output/hls-syn</fileDirectory> <lineNumber>175</lineNumber> <contextFuncName>Mem2Stream_Batch&amp;lt;64, 104&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jf2715/BNN-PYNQ/bnn/src/network/output/hls-syn</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>/home/jf2715/BNN-PYNQ/bnn/src//library/finn-hlslib/dma.h</first> <second>Mem2Stream_Batch&amp;lt;64, 104&amp;gt;</second> </first> <second>175</second> </item> <item> <first> <first>/home/jf2715/BNN-PYNQ/bnn/src//network/lfcW1A1/hw/top.cpp</first> <second>DoCompute</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>118</item> <item>119</item> <item>430</item> <item>432</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_27"> <Value> <Obj> <type>0</type> <id>47</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>120</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_28"> <Value> <Obj> <type>0</type> <id>49</id> <name></name> <fileName>/home/jf2715/BNN-PYNQ/bnn/src//library/finn-hlslib/dma.h</fileName> <fileDirectory>/home/jf2715/BNN-PYNQ/bnn/src/network/output/hls-syn</fileDirectory> <lineNumber>170</lineNumber> <contextFuncName>Mem2Stream_Batch&amp;lt;64, 104&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jf2715/BNN-PYNQ/bnn/src/network/output/hls-syn</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>/home/jf2715/BNN-PYNQ/bnn/src//library/finn-hlslib/dma.h</first> <second>Mem2Stream_Batch&amp;lt;64, 104&amp;gt;</second> </first> <second>170</second> </item> <item> <first> <first>/home/jf2715/BNN-PYNQ/bnn/src//network/lfcW1A1/hw/top.cpp</first> <second>DoCompute</second> </first> <second>133</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>5</count> <item_version>0</item_version> <item>99</item> <item>100</item> <item>101</item> <item>102</item> <item>103</item> </oprand_edges> <opcode>call</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_29"> <Value> <Obj> <type>0</type> <id>50</id> <name>rep_3</name> <fileName>/home/jf2715/BNN-PYNQ/bnn/src//library/finn-hlslib/dma.h</fileName> <fileDirectory>/home/jf2715/BNN-PYNQ/bnn/src/network/output/hls-syn</fileDirectory> <lineNumber>171</lineNumber> <contextFuncName>Mem2Stream_Batch&amp;lt;64, 104&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jf2715/BNN-PYNQ/bnn/src/network/output/hls-syn</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>/home/jf2715/BNN-PYNQ/bnn/src//library/finn-hlslib/dma.h</first> <second>Mem2Stream_Batch&amp;lt;64, 104&amp;gt;</second> </first> <second>171</second> </item> <item> <first> <first>/home/jf2715/BNN-PYNQ/bnn/src//network/lfcW1A1/hw/top.cpp</first> <second>DoCompute</second> </first> <second>133</second> </item> </second> </item> </inlineStackInfo> <originalName>rep</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>104</item> <item>106</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_30"> <Value> <Obj> <type>0</type> <id>51</id> <name></name> <fileName>/home/jf2715/BNN-PYNQ/bnn/src//library/finn-hlslib/dma.h</fileName> <fileDirectory>/home/jf2715/BNN-PYNQ/bnn/src/network/output/hls-syn</fileDirectory> <lineNumber>171</lineNumber> <contextFuncName>Mem2Stream_Batch&amp;lt;64, 104&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jf2715/BNN-PYNQ/bnn/src/network/output/hls-syn</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>/home/jf2715/BNN-PYNQ/bnn/src//library/finn-hlslib/dma.h</first> <second>Mem2Stream_Batch&amp;lt;64, 104&amp;gt;</second> </first> <second>171</second> </item> <item> <first> <first>/home/jf2715/BNN-PYNQ/bnn/src//network/lfcW1A1/hw/top.cpp</first> <second>DoCompute</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>107</item> <item>108</item> <item>429</item> <item>431</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_31"> <Value> <Obj> <type>0</type> <id>52</id> <name></name> <fileName>/home/jf2715/BNN-PYNQ/bnn/src//library/finn-hlslib/dma.h</fileName> <fileDirectory>/home/jf2715/BNN-PYNQ/bnn/src/network/output/hls-syn</fileDirectory> <lineNumber>172</lineNumber> <contextFuncName>Mem2Stream_Batch&amp;lt;64, 104&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jf2715/BNN-PYNQ/bnn/src/network/output/hls-syn</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>/home/jf2715/BNN-PYNQ/bnn/src//library/finn-hlslib/dma.h</first> <second>Mem2Stream_Batch&amp;lt;64, 104&amp;gt;</second> </first> <second>172</second> </item> <item> <first> <first>/home/jf2715/BNN-PYNQ/bnn/src//network/lfcW1A1/hw/top.cpp</first> <second>DoCompute</second> </first> <second>133</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>109</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_32"> <Value> <Obj> <type>0</type> <id>54</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>121</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_33"> <Value> <Obj> <type>0</type> <id>56</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>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>7</count> <item_version>0</item_version> <item class_id="16" tracking_level="1" version="0" object_id="_34"> <Value> <Obj> <type>2</type> <id>58</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="_35"> <Value> <Obj> <type>2</type> <id>76</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="_36"> <Value> <Obj> <type>2</type> <id>90</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_37"> <Value> <Obj> <type>2</type> <id>92</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>13</content> </item> <item class_id_reference="16" object_id="_38"> <Value> <Obj> <type>2</type> <id>98</id> <name>Mem2Stream_1</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <const_type>6</const_type> <content>&lt;constant:Mem2Stream.1&gt;</content> </item> <item class_id_reference="16" object_id="_39"> <Value> <Obj> <type>2</type> <id>105</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="_40"> <Value> <Obj> <type>2</type> <id>110</id> <name>Mem2Stream</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <const_type>6</const_type> <content>&lt;constant:Mem2Stream&gt;</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="_41"> <Obj> <type>3</type> <id>33</id> <name>entry</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>8</item> <item>18</item> <item>19</item> <item>20</item> <item>21</item> <item>29</item> <item>31</item> <item>32</item> </node_objs> </item> <item class_id_reference="18" object_id="_42"> <Obj> <type>3</type> <id>37</id> <name>.backedge.i.i.i.i</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>3</count> <item_version>0</item_version> <item>34</item> <item>35</item> <item>36</item> </node_objs> </item> <item class_id_reference="18" object_id="_43"> <Obj> <type>3</type> <id>43</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>38</item> <item>39</item> <item>40</item> <item>41</item> <item>42</item> </node_objs> </item> <item class_id_reference="18" object_id="_44"> <Obj> <type>3</type> <id>48</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>4</count> <item_version>0</item_version> <item>44</item> <item>45</item> <item>46</item> <item>47</item> </node_objs> </item> <item class_id_reference="18" object_id="_45"> <Obj> <type>3</type> <id>53</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>4</count> <item_version>0</item_version> <item>49</item> <item>50</item> <item>51</item> <item>52</item> </node_objs> </item> <item class_id_reference="18" object_id="_46"> <Obj> <type>3</type> <id>55</id> <name>.backedge.i.i.i.i.backedge</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>54</item> </node_objs> </item> <item class_id_reference="18" object_id="_47"> <Obj> <type>3</type> <id>57</id> <name>.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>1</count> <item_version>0</item_version> <item>56</item> </node_objs> </item> </blocks> <edges class_id="19" tracking_level="0" version="0"> <count>61</count> <item_version>0</item_version> <item class_id="20" tracking_level="1" version="0" object_id="_48"> <id>59</id> <edge_type>1</edge_type> <source_obj>58</source_obj> <sink_obj>8</sink_obj> </item> <item class_id_reference="20" object_id="_49"> <id>62</id> <edge_type>1</edge_type> <source_obj>6</source_obj> <sink_obj>18</sink_obj> </item> <item class_id_reference="20" object_id="_50"> <id>65</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>19</sink_obj> </item> <item class_id_reference="20" object_id="_51"> <id>67</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>20</sink_obj> </item> <item class_id_reference="20" object_id="_52"> <id>70</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>21</sink_obj> </item> <item class_id_reference="20" object_id="_53"> <id>71</id> <edge_type>1</edge_type> <source_obj>18</source_obj> <sink_obj>21</sink_obj> </item> <item class_id_reference="20" object_id="_54"> <id>74</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>29</sink_obj> </item> <item class_id_reference="20" object_id="_55"> <id>75</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>29</sink_obj> </item> <item class_id_reference="20" object_id="_56"> <id>77</id> <edge_type>1</edge_type> <source_obj>76</source_obj> <sink_obj>31</sink_obj> </item> <item class_id_reference="20" object_id="_57"> <id>78</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>31</sink_obj> </item> <item class_id_reference="20" object_id="_58"> <id>79</id> <edge_type>2</edge_type> <source_obj>37</source_obj> <sink_obj>32</sink_obj> </item> <item class_id_reference="20" object_id="_59"> <id>80</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>34</sink_obj> </item> <item class_id_reference="20" object_id="_60"> <id>81</id> <edge_type>1</edge_type> <source_obj>34</source_obj> <sink_obj>35</sink_obj> </item> <item class_id_reference="20" object_id="_61"> <id>82</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>35</sink_obj> </item> <item class_id_reference="20" object_id="_62"> <id>83</id> <edge_type>1</edge_type> <source_obj>35</source_obj> <sink_obj>36</sink_obj> </item> <item class_id_reference="20" object_id="_63"> <id>84</id> <edge_type>2</edge_type> <source_obj>43</source_obj> <sink_obj>36</sink_obj> </item> <item class_id_reference="20" object_id="_64"> <id>85</id> <edge_type>2</edge_type> <source_obj>57</source_obj> <sink_obj>36</sink_obj> </item> <item class_id_reference="20" object_id="_65"> <id>86</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>38</sink_obj> </item> <item class_id_reference="20" object_id="_66"> <id>87</id> <edge_type>1</edge_type> <source_obj>34</source_obj> <sink_obj>38</sink_obj> </item> <item class_id_reference="20" object_id="_67"> <id>88</id> <edge_type>1</edge_type> <source_obj>38</source_obj> <sink_obj>39</sink_obj> </item> <item class_id_reference="20" object_id="_68"> <id>89</id> <edge_type>1</edge_type> <source_obj>39</source_obj> <sink_obj>40</sink_obj> </item> <item class_id_reference="20" object_id="_69"> <id>91</id> <edge_type>1</edge_type> <source_obj>90</source_obj> <sink_obj>40</sink_obj> </item> <item class_id_reference="20" object_id="_70"> <id>93</id> <edge_type>1</edge_type> <source_obj>92</source_obj> <sink_obj>41</sink_obj> </item> <item class_id_reference="20" object_id="_71"> <id>94</id> <edge_type>1</edge_type> <source_obj>34</source_obj> <sink_obj>41</sink_obj> </item> <item class_id_reference="20" object_id="_72"> <id>95</id> <edge_type>1</edge_type> <source_obj>40</source_obj> <sink_obj>42</sink_obj> </item> <item class_id_reference="20" object_id="_73"> <id>96</id> <edge_type>2</edge_type> <source_obj>48</source_obj> <sink_obj>42</sink_obj> </item> <item class_id_reference="20" object_id="_74"> <id>97</id> <edge_type>2</edge_type> <source_obj>53</source_obj> <sink_obj>42</sink_obj> </item> <item class_id_reference="20" object_id="_75"> <id>99</id> <edge_type>1</edge_type> <source_obj>98</source_obj> <sink_obj>49</sink_obj> </item> <item class_id_reference="20" object_id="_76"> <id>100</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>49</sink_obj> </item> <item class_id_reference="20" object_id="_77"> <id>101</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>49</sink_obj> </item> <item class_id_reference="20" object_id="_78"> <id>102</id> <edge_type>1</edge_type> <source_obj>41</source_obj> <sink_obj>49</sink_obj> </item> <item class_id_reference="20" object_id="_79"> <id>103</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>49</sink_obj> </item> <item class_id_reference="20" object_id="_80"> <id>104</id> <edge_type>1</edge_type> <source_obj>34</source_obj> <sink_obj>50</sink_obj> </item> <item class_id_reference="20" object_id="_81"> <id>106</id> <edge_type>1</edge_type> <source_obj>105</source_obj> <sink_obj>50</sink_obj> </item> <item class_id_reference="20" object_id="_82"> <id>107</id> <edge_type>1</edge_type> <source_obj>50</source_obj> <sink_obj>51</sink_obj> </item> <item class_id_reference="20" object_id="_83"> <id>108</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>51</sink_obj> </item> <item class_id_reference="20" object_id="_84"> <id>109</id> <edge_type>2</edge_type> <source_obj>55</source_obj> <sink_obj>52</sink_obj> </item> <item class_id_reference="20" object_id="_85"> <id>111</id> <edge_type>1</edge_type> <source_obj>110</source_obj> <sink_obj>44</sink_obj> </item> <item class_id_reference="20" object_id="_86"> <id>112</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>44</sink_obj> </item> <item class_id_reference="20" object_id="_87"> <id>113</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>44</sink_obj> </item> <item class_id_reference="20" object_id="_88"> <id>114</id> <edge_type>1</edge_type> <source_obj>41</source_obj> <sink_obj>44</sink_obj> </item> <item class_id_reference="20" object_id="_89"> <id>115</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>44</sink_obj> </item> <item class_id_reference="20" object_id="_90"> <id>116</id> <edge_type>1</edge_type> <source_obj>34</source_obj> <sink_obj>45</sink_obj> </item> <item class_id_reference="20" object_id="_91"> <id>117</id> <edge_type>1</edge_type> <source_obj>58</source_obj> <sink_obj>45</sink_obj> </item> <item class_id_reference="20" object_id="_92"> <id>118</id> <edge_type>1</edge_type> <source_obj>45</source_obj> <sink_obj>46</sink_obj> </item> <item class_id_reference="20" object_id="_93"> <id>119</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>46</sink_obj> </item> <item class_id_reference="20" object_id="_94"> <id>120</id> <edge_type>2</edge_type> <source_obj>55</source_obj> <sink_obj>47</sink_obj> </item> <item class_id_reference="20" object_id="_95"> <id>121</id> <edge_type>2</edge_type> <source_obj>37</source_obj> <sink_obj>54</sink_obj> </item> <item class_id_reference="20" object_id="_96"> <id>420</id> <edge_type>2</edge_type> <source_obj>33</source_obj> <sink_obj>37</sink_obj> </item> <item class_id_reference="20" object_id="_97"> <id>421</id> <edge_type>2</edge_type> <source_obj>37</source_obj> <sink_obj>57</sink_obj> </item> <item class_id_reference="20" object_id="_98"> <id>422</id> <edge_type>2</edge_type> <source_obj>37</source_obj> <sink_obj>43</sink_obj> </item> <item class_id_reference="20" object_id="_99"> <id>423</id> <edge_type>2</edge_type> <source_obj>43</source_obj> <sink_obj>53</sink_obj> </item> <item class_id_reference="20" object_id="_100"> <id>424</id> <edge_type>2</edge_type> <source_obj>43</source_obj> <sink_obj>48</sink_obj> </item> <item class_id_reference="20" object_id="_101"> <id>425</id> <edge_type>2</edge_type> <source_obj>48</source_obj> <sink_obj>55</sink_obj> </item> <item class_id_reference="20" object_id="_102"> <id>426</id> <edge_type>2</edge_type> <source_obj>53</source_obj> <sink_obj>55</sink_obj> </item> <item class_id_reference="20" object_id="_103"> <id>427</id> <edge_type>2</edge_type> <source_obj>55</source_obj> <sink_obj>37</sink_obj> </item> <item class_id_reference="20" object_id="_104"> <id>428</id> <edge_type>4</edge_type> <source_obj>31</source_obj> <sink_obj>34</sink_obj> </item> <item class_id_reference="20" object_id="_105"> <id>429</id> <edge_type>4</edge_type> <source_obj>31</source_obj> <sink_obj>51</sink_obj> </item> <item class_id_reference="20" object_id="_106"> <id>430</id> <edge_type>4</edge_type> <source_obj>31</source_obj> <sink_obj>46</sink_obj> </item> <item class_id_reference="20" object_id="_107"> <id>431</id> <edge_type>4</edge_type> <source_obj>34</source_obj> <sink_obj>51</sink_obj> </item> <item class_id_reference="20" object_id="_108"> <id>432</id> <edge_type>4</edge_type> <source_obj>34</source_obj> <sink_obj>46</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="_109"> <mId>1</mId> <mTag>Mem2Stream_Batch12</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>-1</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_110"> <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>33</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> <item class_id_reference="22" object_id="_111"> <mId>3</mId> <mTag>Loop 1</mTag> <mType>1</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>5</count> <item_version>0</item_version> <item>37</item> <item>43</item> <item>48</item> <item>53</item> <item>55</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="_112"> <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>57</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="24" tracking_level="1" version="0" object_id="_113"> <states class_id="25" tracking_level="0" version="0"> <count>9</count> <item_version>0</item_version> <item class_id="26" tracking_level="1" version="0" object_id="_114"> <id>1</id> <operations class_id="27" tracking_level="0" version="0"> <count>25</count> <item_version>0</item_version> <item class_id="28" tracking_level="1" version="0" object_id="_115"> <id>8</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_116"> <id>9</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_117"> <id>10</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_118"> <id>11</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_119"> <id>12</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_120"> <id>13</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_121"> <id>14</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_122"> <id>15</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_123"> <id>16</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_124"> <id>17</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_125"> <id>18</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_126"> <id>19</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_127"> <id>20</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_128"> <id>21</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_129"> <id>22</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_130"> <id>23</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_131"> <id>24</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_132"> <id>25</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_133"> <id>26</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_134"> <id>27</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_135"> <id>28</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_136"> <id>29</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_137"> <id>30</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_138"> <id>31</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_139"> <id>32</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_140"> <id>2</id> <operations> <count>8</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_141"> <id>34</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_142"> <id>35</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_143"> <id>36</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_144"> <id>38</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_145"> <id>39</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_146"> <id>40</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_147"> <id>41</id> <stage>5</stage> <latency>5</latency> </item> <item class_id_reference="28" object_id="_148"> <id>56</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_149"> <id>3</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_150"> <id>41</id> <stage>4</stage> <latency>5</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_151"> <id>4</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_152"> <id>41</id> <stage>3</stage> <latency>5</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_153"> <id>5</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_154"> <id>41</id> <stage>2</stage> <latency>5</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_155"> <id>6</id> <operations> <count>6</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_156"> <id>41</id> <stage>1</stage> <latency>5</latency> </item> <item class_id_reference="28" object_id="_157"> <id>42</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_158"> <id>45</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_159"> <id>46</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_160"> <id>50</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_161"> <id>51</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_162"> <id>7</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_163"> <id>44</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_164"> <id>8</id> <operations> <count>5</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_165"> <id>44</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_166"> <id>47</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_167"> <id>49</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_168"> <id>52</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_169"> <id>54</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_170"> <id>9</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_171"> <id>49</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> </states> <transitions class_id="29" tracking_level="0" version="0"> <count>10</count> <item_version>0</item_version> <item class_id="30" tracking_level="1" version="0" object_id="_172"> <inState>1</inState> <outState>2</outState> <condition class_id="31" tracking_level="0" version="0"> <id>22</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="_173"> <inState>2</inState> <outState>3</outState> <condition> <id>23</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>35</first> <second>0</second> </first> <second>1</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_174"> <inState>3</inState> <outState>4</outState> <condition> <id>25</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="_175"> <inState>4</inState> <outState>5</outState> <condition> <id>26</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="_176"> <inState>5</inState> <outState>6</outState> <condition> <id>27</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="_177"> <inState>6</inState> <outState>7</outState> <condition> <id>29</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>1</count> <item_version>0</item_version> <item> <first> <first>40</first> <second>0</second> </first> <second>1</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_178"> <inState>6</inState> <outState>9</outState> <condition> <id>28</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>1</count> <item_version>0</item_version> <item> <first> <first>40</first> <second>0</second> </first> <second>0</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_179"> <inState>7</inState> <outState>8</outState> <condition> <id>31</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="_180"> <inState>9</inState> <outState>8</outState> <condition> <id>33</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="_181"> <inState>8</inState> <outState>2</outState> <condition> <id>35</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> </transitions> </fsm> <res class_id="-1"></res> <node_label_latency class_id="37" tracking_level="0" version="0"> <count>26</count> <item_version>0</item_version> <item class_id="38" tracking_level="0" version="0"> <first>8</first> <second class_id="39" 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>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>29</first> <second> <first>0</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>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>4</second> </second> </item> <item> <first>42</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>44</first> <second> <first>6</first> <second>1</second> </second> </item> <item> <first>45</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>46</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>47</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>49</first> <second> <first>6</first> <second>1</second> </second> </item> <item> <first>50</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>51</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>52</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>54</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>56</first> <second> <first>1</first> <second>0</second> </second> </item> </node_label_latency> <bblk_ent_exit class_id="40" tracking_level="0" version="0"> <count>7</count> <item_version>0</item_version> <item class_id="41" tracking_level="0" version="0"> <first>33</first> <second class_id="42" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>37</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>43</first> <second> <first>1</first> <second>5</second> </second> </item> <item> <first>48</first> <second> <first>5</first> <second>7</second> </second> </item> <item> <first>53</first> <second> <first>5</first> <second>7</second> </second> </item> <item> <first>55</first> <second> <first>7</first> <second>7</second> </second> </item> <item> <first>57</first> <second> <first>1</first> <second>1</second> </second> </item> </bblk_ent_exit> <regions class_id="43" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </regions> <dp_fu_nodes class_id="44" tracking_level="0" version="0"> <count>19</count> <item_version>0</item_version> <item class_id="45" tracking_level="0" version="0"> <first>54</first> <second> <count>1</count> <item_version>0</item_version> <item>8</item> </second> </item> <item> <first>58</first> <second> <count>1</count> <item_version>0</item_version> <item>18</item> </second> </item> <item> <first>64</first> <second> <count>1</count> <item_version>0</item_version> <item>19</item> </second> </item> <item> <first>70</first> <second> <count>1</count> <item_version>0</item_version> <item>20</item> </second> </item> <item> <first>76</first> <second> <count>1</count> <item_version>0</item_version> <item>21</item> </second> </item> <item> <first>84</first> <second> <count>1</count> <item_version>0</item_version> <item>29</item> </second> </item> <item> <first>92</first> <second> <count>2</count> <item_version>0</item_version> <item>49</item> <item>49</item> </second> </item> <item> <first>102</first> <second> <count>2</count> <item_version>0</item_version> <item>44</item> <item>44</item> </second> </item> <item> <first>112</first> <second> <count>1</count> <item_version>0</item_version> <item>31</item> </second> </item> <item> <first>117</first> <second> <count>1</count> <item_version>0</item_version> <item>34</item> </second> </item> <item> <first>120</first> <second> <count>1</count> <item_version>0</item_version> <item>35</item> </second> </item> <item> <first>125</first> <second> <count>1</count> <item_version>0</item_version> <item>38</item> </second> </item> <item> <first>130</first> <second> <count>1</count> <item_version>0</item_version> <item>39</item> </second> </item> <item> <first>134</first> <second> <count>1</count> <item_version>0</item_version> <item>40</item> </second> </item> <item> <first>140</first> <second> <count>5</count> <item_version>0</item_version> <item>41</item> <item>41</item> <item>41</item> <item>41</item> <item>41</item> </second> </item> <item> <first>146</first> <second> <count>1</count> <item_version>0</item_version> <item>45</item> </second> </item> <item> <first>151</first> <second> <count>1</count> <item_version>0</item_version> <item>46</item> </second> </item> <item> <first>156</first> <second> <count>1</count> <item_version>0</item_version> <item>50</item> </second> </item> <item> <first>161</first> <second> <count>1</count> <item_version>0</item_version> <item>51</item> </second> </item> </dp_fu_nodes> <dp_fu_nodes_expression class_id="47" tracking_level="0" version="0"> <count>7</count> <item_version>0</item_version> <item class_id="48" tracking_level="0" version="0"> <first>rep_3_fu_156</first> <second> <count>1</count> <item_version>0</item_version> <item>50</item> </second> </item> <item> <first>rep_4_fu_146</first> <second> <count>1</count> <item_version>0</item_version> <item>45</item> </second> </item> <item> <first>rep_fu_54</first> <second> <count>1</count> <item_version>0</item_version> <item>8</item> </second> </item> <item> <first>repsLeft_fu_125</first> <second> <count>1</count> <item_version>0</item_version> <item>38</item> </second> </item> <item> <first>tmp_4_i_i_i_i_fu_134</first> <second> <count>1</count> <item_version>0</item_version> <item>40</item> </second> </item> <item> <first>tmp_fu_130</first> <second> <count>1</count> <item_version>0</item_version> <item>39</item> </second> </item> <item> <first>tmp_i_i_i_i_fu_120</first> <second> <count>1</count> <item_version>0</item_version> <item>35</item> </second> </item> </dp_fu_nodes_expression> <dp_fu_nodes_module> <count>3</count> <item_version>0</item_version> <item> <first>grp_Mem2Stream_1_fu_92</first> <second> <count>2</count> <item_version>0</item_version> <item>49</item> <item>49</item> </second> </item> <item> <first>grp_Mem2Stream_fu_102</first> <second> <count>2</count> <item_version>0</item_version> <item>44</item> <item>44</item> </second> </item> <item> <first>grp_fu_140</first> <second> <count>5</count> <item_version>0</item_version> <item>41</item> <item>41</item> <item>41</item> <item>41</item> <item>41</item> </second> </item> </dp_fu_nodes_module> <dp_fu_nodes_io> <count>9</count> <item_version>0</item_version> <item> <first>StgValue_23_write_fu_76</first> <second> <count>1</count> <item_version>0</item_version> <item>21</item> </second> </item> <item> <first>StgValue_31_write_fu_84</first> <second> <count>1</count> <item_version>0</item_version> <item>29</item> </second> </item> <item> <first>StgValue_33_store_fu_112</first> <second> <count>1</count> <item_version>0</item_version> <item>31</item> </second> </item> <item> <first>StgValue_49_store_fu_151</first> <second> <count>1</count> <item_version>0</item_version> <item>46</item> </second> </item> <item> <first>StgValue_51_store_fu_161</first> <second> <count>1</count> <item_version>0</item_version> <item>51</item> </second> </item> <item> <first>in_V1_read_read_fu_70</first> <second> <count>1</count> <item_version>0</item_version> <item>20</item> </second> </item> <item> <first>numReps_read_read_fu_64</first> <second> <count>1</count> <item_version>0</item_version> <item>19</item> </second> </item> <item> <first>out_V3_read_read_fu_58</first> <second> <count>1</count> <item_version>0</item_version> <item>18</item> </second> </item> <item> <first>rep_load_load_fu_117</first> <second> <count>1</count> <item_version>0</item_version> <item>34</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="49" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_mem_port_nodes> <dp_reg_nodes> <count>6</count> <item_version>0</item_version> <item> <first>166</first> <second> <count>1</count> <item_version>0</item_version> <item>8</item> </second> </item> <item> <first>174</first> <second> <count>1</count> <item_version>0</item_version> <item>19</item> </second> </item> <item> <first>180</first> <second> <count>1</count> <item_version>0</item_version> <item>20</item> </second> </item> <item> <first>186</first> <second> <count>1</count> <item_version>0</item_version> <item>34</item> </second> </item> <item> <first>196</first> <second> <count>1</count> <item_version>0</item_version> <item>40</item> </second> </item> <item> <first>200</first> <second> <count>1</count> <item_version>0</item_version> <item>41</item> </second> </item> </dp_reg_nodes> <dp_regname_nodes> <count>6</count> <item_version>0</item_version> <item> <first>in_V1_read_reg_180</first> <second> <count>1</count> <item_version>0</item_version> <item>20</item> </second> </item> <item> <first>numReps_read_reg_174</first> <second> <count>1</count> <item_version>0</item_version> <item>19</item> </second> </item> <item> <first>rep_load_reg_186</first> <second> <count>1</count> <item_version>0</item_version> <item>34</item> </second> </item> <item> <first>rep_reg_166</first> <second> <count>1</count> <item_version>0</item_version> <item>8</item> </second> </item> <item> <first>tmp_4_i_i_i_i_reg_196</first> <second> <count>1</count> <item_version>0</item_version> <item>40</item> </second> </item> <item> <first>tmp_5_i_i_i_i_reg_200</first> <second> <count>1</count> <item_version>0</item_version> <item>41</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="50" tracking_level="0" version="0"> <count>7</count> <item_version>0</item_version> <item class_id="51" tracking_level="0" version="0"> <first>in_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>call</first> <second> <count>2</count> <item_version>0</item_version> <item>49</item> <item>44</item> </second> </item> </second> </item> <item> <first>in_V1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>20</item> </second> </item> </second> </item> <item> <first>memInStrm_V_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>call</first> <second> <count>2</count> <item_version>0</item_version> <item>49</item> <item>44</item> </second> </item> </second> </item> <item> <first>numReps</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>numReps_channel</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>write</first> <second> <count>1</count> <item_version>0</item_version> <item>29</item> </second> </item> </second> </item> <item> <first>out_V3</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>out_V3_out</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>write</first> <second> <count>1</count> <item_version>0</item_version> <item>21</item> </second> </item> </second> </item> </dp_port_io_nodes> <port2core class_id="52" tracking_level="0" version="0"> <count>3</count> <item_version>0</item_version> <item class_id="53" tracking_level="0" version="0"> <first>3</first> <second>FSL</second> </item> <item> <first>5</first> <second>FSL</second> </item> <item> <first>7</first> <second>FSL</second> </item> </port2core> <node2core> <count>0</count> <item_version>0</item_version> </node2core> </syndb> </boost_serialization>
-- Project: MART - Modular Airborne Real-Time Testbed -- System: Emergency Recovery System -- Authors: Markus Neumair (Original C-Code) -- Emanuel Regnath (emanuel.regnath@tum.de) (Ada Port) -- -- Module Description: -- @summary Top-level driver for the Barometer MS5611-01BA03 package MS5611 with SPARK_Mode is -- define return values type Sample_Status_Type is (BARO_NO_NEW_VALUE, BARO_NEW_TEMPERATURE, BARO_NEW_PRESSURE, BARO_READ_TEMPERATURE_ERROR, BARO_READ_PRESSURE_ERROR); end MS5611;
-- { dg-do run } -- { dg-options "-O2" } with Nested_Subtype_Byref; procedure Test_Nested_Subtype_Byref is begin Nested_Subtype_Byref.Check; end;
with STM32_SVD; use STM32_SVD; package STM32GD.GPIO is pragma Preelaborate; type GPIO_Pin is (Pin_0, Pin_1, Pin_2, Pin_3, Pin_4, Pin_5, Pin_6, Pin_7, Pin_8, Pin_9, Pin_10, Pin_11, Pin_12, Pin_13, Pin_14, Pin_15); type GPIO_Pins is array (Positive range <>) of GPIO_Pin; -- Note that, in addition to aggregates, the language-defined catenation -- operator "&" is available for types GPIO_Pin and GPIO_Pins, allowing one -- to construct GPIO_Pins values conveniently All_Pins : constant GPIO_Pins := (Pin_0, Pin_1, Pin_2, Pin_3, Pin_4, Pin_5, Pin_6, Pin_7, Pin_8, Pin_9, Pin_10, Pin_11, Pin_12, Pin_13, Pin_14, Pin_15); type Pin_IO_Modes is (Mode_In, Mode_Out, Mode_AF, Mode_Analog) with Size => 2; for Pin_IO_Modes use (Mode_In => 0, Mode_Out => 1, Mode_AF => 2, Mode_Analog => 3); type Pin_Output_Types is (Push_Pull, Open_Drain) with Size => 1; for Pin_Output_Types use (Push_Pull => 0, Open_Drain => 1); type Pin_Output_Speeds is (Speed_2MHz, Speed_25MHz, Speed_50MHz, Speed_100MHz) with Size => 2; for Pin_Output_Speeds use (Speed_2MHz => 0, -- low Speed_25MHz => 1, -- medium Speed_50MHz => 2, -- high Speed_100MHz => 3); -- very high Speed_Low : Pin_Output_Speeds renames Speed_2MHz; Speed_Medium : Pin_Output_Speeds renames Speed_25MHz; Speed_High : Pin_Output_Speeds renames Speed_50MHz; Speed_Very_High : Pin_Output_Speeds renames Speed_100MHz; type Internal_Pin_Resistors is (Floating, Pull_Up, Pull_Down) with Size => 2; for Internal_Pin_Resistors use (Floating => 0, Pull_Up => 1, Pull_Down => 2); type GPIO_Alternate_Function is new UInt4; end STM32GD.GPIO;
-- { dg-do compile } with Ada.Tags.Generic_Dispatching_Constructor; package body Graphic is -- function Dispatching_Input is new Tags.Generic_Dispatching_Constructor (T => Object, Parameters => Streams.Root_Stream_Type'Class, Constructor => Object'Input); -- function XML_Input (S : access Streams.Root_Stream_Type'Class) return Object'Class is Result : constant Object'Class := Dispatching_Input (Tags.Internal_Tag (" "), S); begin return Result; end XML_Input; end Graphic;
-- Copyright 2017-2021 Jeff Foley. All rights reserved. -- Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file. name = "ShadowServer" type = "misc" local shadowServerWhoisAddress = "" -- shadowServerWhoisURL is the URL for the ShadowServer whois server. local shadowServerWhoisURL = "asn.shadowserver.org" function start() set_rate_limit(2) end function asn(ctx, addr, asn) if (shadowServerWhoisAddress == "") then shadowServerWhoisAddress = get_whois_addr(ctx) if (shadowServerWhoisAddress == "") then return end end local result if (asn == 0) then if (addr == "") then return end result = origin(ctx, addr) if (result == nil) then return end check_rate_limit() local cidrs = netblocks(ctx, result.asn) if (cidrs == nil or #cidrs == 0) then return end result['netblocks'] = cidrs else local cidrs = netblocks(ctx, asn) if (cidrs == nil or #cidrs == 0) then return end check_rate_limit() if (addr == "") then local parts = split(cidrs[1], "/") if (#parts < 2) then return end addr = parts[1] end result = origin(ctx, addr) if (result == nil) then return end result['netblocks'] = cidrs end new_asn(ctx, result) check_rate_limit() end function origin(ctx, addr) if not is_ipv4(addr) then return nil end local name = reverse_ip(addr) .. ".origin.asn.shadowserver.org" local resp, err = resolve(ctx, name, "TXT", false) if ((err ~= nil and err ~= "") or #resp == 0) then return nil end local fields = split(resp[1].rrdata, "|") return { ['addr']=addr, ['asn']=tonumber(trim_space(fields[1])), ['prefix']=trim_space(fields[2]), ['cc']=trim_space(fields[4]), ['desc']=trim_space(fields[3]) .. " - " .. trim_space(fields[5]), } end function netblocks(ctx, asn) local conn, err = socket.connect(ctx, shadowServerWhoisAddress, 43, "tcp") if (err ~= nil and err ~= "") then return nil end _, err = conn:send("prefix " .. tostring(asn) .. "\n") if (err ~= nil and err ~= "") then conn:close() return nil end local data data, err = conn:recv_all() if (err ~= nil and err ~= "") then conn:close() return nil end local netblocks = {} for _, block in pairs(split(data, "\n")) do table.insert(netblocks, trim_space(block)) end conn:close() return netblocks end function split(str, delim) local result = {} local pattern = "[^%" .. delim .. "]+" local matches = find(str, pattern) if (matches == nil or #matches == 0) then return result end for _, match in pairs(matches) do table.insert(result, match) end return result end function get_whois_addr(ctx) local resp, err = resolve(ctx, shadowServerWhoisURL, "A", false) if ((err ~= nil and err ~= "") or #resp == 0) then return "" end return resp[1].rrdata end function is_ipv4(addr) local octets = { addr:match("^(%d+)%.(%d+)%.(%d+)%.(%d+)$") } if (#octets == 4) then for _, v in pairs(octets) do if tonumber(v) > 255 then return false end end return true end return false end function reverse_ip(addr) local octets = { addr:match("^(%d+)%.(%d+)%.(%d+)%.(%d+)$") } local ip = "" for i, o in pairs(octets) do local n = o if (i ~= 1) then n = n .. "." end ip = n .. ip end return ip end function trim_space(s) if (s == nil) then return "" end return s:match( "^%s*(.-)%s*$" ) end
with My_Package; use My_Package; procedure Main is Foo : My_Type; -- Foo is created and initialized to -12 begin Some_Procedure(Foo); -- Foo is doubled Foo := Set(2007); -- Foo.Variable is set to 2007 end Main;
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- I N T E R F A C E S . C _ S T R E A M S -- -- -- -- B o d y -- -- -- -- $Revision$ -- -- -- Copyright (C) 1996-2001 Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 2, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING. If not, write -- -- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, -- -- MA 02111-1307, USA. -- -- -- -- 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 is the default version which just calls the C versions directly -- Note: the reason that we provide for specialization here is that on -- some systems, notably VMS, we may need to worry about buffering. with Unchecked_Conversion; package body Interfaces.C_Streams is ------------ -- fread -- ------------ function fread (buffer : voids; size : size_t; count : size_t; stream : FILEs) return size_t is function C_fread (buffer : voids; size : size_t; count : size_t; stream : FILEs) return size_t; pragma Import (C, C_fread, "fread"); begin return C_fread (buffer, size, count, stream); end fread; ------------ -- fread -- ------------ function fread (buffer : voids; index : size_t; size : size_t; count : size_t; stream : FILEs) return size_t is function C_fread (buffer : voids; size : size_t; count : size_t; stream : FILEs) return size_t; pragma Import (C, C_fread, "fread"); type Byte_Buffer is array (0 .. size_t'Last / 2 - 1) of Unsigned_8; -- This should really be 0 .. size_t'last, but there is a problem -- in gigi in handling such types (introduced in GCC 3 Sep 2001) -- since the size in bytes of this array overflows ??? type Acc_Bytes is access all Byte_Buffer; function To_Acc_Bytes is new Unchecked_Conversion (voids, Acc_Bytes); begin return C_fread (To_Acc_Bytes (buffer) (index * size)'Address, size, count, stream); end fread; ------------ -- fwrite -- ------------ function fwrite (buffer : voids; size : size_t; count : size_t; stream : FILEs) return size_t is function C_fwrite (buffer : voids; size : size_t; count : size_t; stream : FILEs) return size_t; pragma Import (C, C_fwrite, "fwrite"); begin return C_fwrite (buffer, size, count, stream); end fwrite; ------------- -- setvbuf -- ------------- function setvbuf (stream : FILEs; buffer : chars; mode : int; size : size_t) return int is function C_setvbuf (stream : FILEs; buffer : chars; mode : int; size : size_t) return int; pragma Import (C, C_setvbuf, "setvbuf"); begin return C_setvbuf (stream, buffer, mode, size); end setvbuf; end Interfaces.C_Streams;
with Interfaces.C; use Interfaces.C; with Interfaces.C.Strings; with StbiWrapper; use StbiWrapper.UCharPtr; with Ada.Integer_Text_IO; with Ada.Containers; use Ada.Containers; package body ImageIO is package C renames Interfaces.C; function load(filename: C.Strings.chars_ptr) return PixelArray.ImagePlane is imageData: StbiWrapper.ImageData; begin imageData := StbiWrapper.load(filename); return result: PixelArray.ImagePlane := PixelArray.allocate(Integer(imageData.width), Integer(imageData.height)) do if imageData.nChannels = 1 then for y in 0 .. imageData.height - 1 loop for x in 0 .. imageData.width - 1 loop declare ptr: constant StbiWrapper.UCharPtr.Pointer := imageData.pixels + C.ptrdiff_t(x + y * imageData.width); begin result.set(Integer(x), Integer(y), PixelArray.Pixel(ptr.all)); end; end loop; end loop; else for y in 0 .. imageData.height - 1 loop for x in 0 .. imageData.width - 1 loop declare ptrR: constant StbiWrapper.UCharPtr.Pointer := imageData.pixels + C.ptrdiff_t(3 * x + 0 + y * 3 * imageData.width); ptrG: constant StbiWrapper.UCharPtr.Pointer := imageData.pixels + C.ptrdiff_t(3 * x + 1 + y * 3 * imageData.width); ptrB: constant StbiWrapper.UCharPtr.Pointer := imageData.pixels + C.ptrdiff_t(3 * x + 2 + y * 3 * imageData.width); avgPx: constant Float := (Float(ptrR.all) + Float(ptrG.all) + Float(ptrB.all)) / 3.0; begin result.set(Integer(x), Integer(y), PixelArray.Pixel(avgPx)); end; end loop; end loop; end if; end return; end load; function save(filename: C.Strings.chars_ptr; image: PixelArray.ImagePlane) return Boolean is begin declare arraySize: constant C.size_t := C.size_t(image.width * image.height * 3); pxArray: StbiWrapper.UCharArray(0 .. arraySize); save_result: C.int; index: Integer := 0; begin for y in 0 .. image.height - 1 loop for x in 0 .. image.width - 1 loop declare charValue: constant C.unsigned_char := C.unsigned_char(image.get(x, y)); begin pxArray(C.size_t(3 * index)) := charValue; pxArray(C.size_t(3 * index + 1)) := charValue; pxArray(C.size_t(3 * index + 2)) := charValue; index := index + 1; end; end loop; end loop; save_result := StbiWrapper.writePng(filename, C.int(image.width), C.int(image.height), 3, pxArray(pxArray'First)'Unchecked_Access, C.int(3 * image.width)); return save_result = 1; end; end save; function load(filename: String) return PixelArray.ImagePlane is begin return load(C.Strings.New_String(filename)); end load; function save(filename: String; image: PixelArray.ImagePlane) return Boolean is begin return save(C.Strings.New_String(filename), image); end save; procedure save(filename: String; image: PixelArray.ImagePlane) is flag: Boolean; begin flag := save(C.Strings.New_String(filename), image); end save; end ImageIO;
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Localization, Internationalization, Globalization for Ada -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2015-2017, Vadim Godunko <vgodunko@gmail.com> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ -- This project provides facilities for pretty printing texts. -- -- User creates documents from strings, new lines and empty documents, -- composes them toghether with append, indent them as required and marks -- logicaly parts as groups to fold new lines all together when all parts of -- a group fits desired width. Resulting document is formatted then to given -- width by printer. -- with League.Strings; with League.String_Vectors; private with Ada.Containers.Vectors; private with Ada.Containers.Hashed_Maps; package League.Pretty_Printers is type Printer is tagged limited private; type Printer_Access is access all Printer'Class; type Document is tagged private; not overriding function New_Document (Self : access Printer'Class) return Document; -- Create empty document not overriding function Put (Self : Document'Class; Right : League.Strings.Universal_String) return Document; -- Append a string to given document not overriding procedure Put (Self : in out Document; Right : League.Strings.Universal_String); -- Append a string to given document not overriding function Put (Self : Document'Class; Right : Wide_Wide_String) return Document; -- Append a string to given document not overriding procedure Put (Self : in out Document; Right : Wide_Wide_String); -- Append a string to given document not overriding procedure Put_Line (Self : in out Document; Right : Wide_Wide_String); -- Append a string to given document and then new line not overriding function New_Line (Self : Document'Class; Gap : Wide_Wide_String := " ") return Document; -- Append a new line to given document not overriding procedure New_Line (Self : in out Document; Gap : Wide_Wide_String := " "); -- Append a new line to given document not overriding function Nest (Self : Document'Class; Indent : Natural) return Document; -- Create document where each new line appended with Indent spaces not overriding procedure Nest (Self : in out Document; Indent : Natural); -- Append each new line with Indent spaces not overriding function Append (Self : Document'Class; Right : Document'Class) return Document; -- Create document as join text from two documents not overriding procedure Append (Self : in out Document; Right : Document'Class); -- Append a document to Self not overriding function Group (Self : Document'Class) return Document; -- Group all new lines in Self documend to fold them altogether not overriding procedure Group (Self : in out Document); -- Group all new lines in Self documend to fold them altogether function Pretty (Self : in out Printer; Width : Positive; Input : Document'Class) return League.String_Vectors.Universal_String_Vector; -- Convert Input document to string with given prefered line Width private type Document_Index is new Positive; type Output_Kinds is (Empty_Output, Text_Output, New_Line_Output, Nest_Output, Concat_Output, Union_Output); type Output_Item (Kind : Output_Kinds := Empty_Output) is record case Kind is when Empty_Output => null; when New_Line_Output => Gap : League.Strings.Universal_String; when Text_Output => Text : League.Strings.Universal_String; when Nest_Output => Indent : Natural := 0; Down : Document_Index; when Union_Output | Concat_Output => Left, Right : Document_Index; -- For union there is next invariant: -- Length (First_Line (left)) >= Max (Length (First_Line (right))) end case; end record; function Hash (Item : Output_Item) return Ada.Containers.Hash_Type; package Maps is new Ada.Containers.Hashed_Maps (Key_Type => Output_Item, Element_Type => Document_Index, Hash => Hash, Equivalent_Keys => "=", "=" => "="); package Output_Item_Vectors is new Ada.Containers.Vectors (Index_Type => Document_Index, Element_Type => Output_Item, "=" => "="); type Printer is tagged limited record Store : Output_Item_Vectors.Vector; Back : Maps.Map; end record; procedure Concat (Self : in out Printer; Left : Document_Index; Right : Document_Index; Result : out Document_Index); procedure Group (Self : in out Printer; Input : Document_Index; Result : out Document_Index); procedure Nest (Self : in out Printer; Indent : Natural; Input : Document_Index; Result : out Document_Index); procedure New_Line (Self : in out Printer; Result : out Document_Index; Gap : League.Strings.Universal_String); procedure Nil (Self : in out Printer; Result : out Document_Index); procedure Text (Self : in out Printer; Line : League.Strings.Universal_String; Result : out Document_Index); procedure Append (Self : in out Printer; Item : Output_Item; Index : out Document_Index); procedure Flatten (Self : in out Printer; Input : Document_Index; Result : out Document_Index); type Document is tagged record Printer : Printer_Access; Index : Document_Index; end record; end League.Pretty_Printers;
------------------------------------------------------------------------------ -- -- -- Copyright (C) 2016, AdaCore -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions are -- -- met: -- -- 1. Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- 2. Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in -- -- the documentation and/or other materials provided with the -- -- distribution. -- -- 3. Neither the name of the copyright holder nor the names of its -- -- contributors may be used to endorse or promote products derived -- -- from this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -- -- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -- -- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -- -- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -- -- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -- -- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ package nRF51.PPI is subtype Channel_ID is Natural range 0 .. 15; subtype Group_ID is Natural range 0 .. 3; procedure Configure (Chan : Channel_ID; Evt_EP : Event_Type; Task_EP : Task_Type); procedure Enable_Channel (Chan : Channel_ID); procedure Disable_Channel (Chan : Channel_ID); procedure Add_To_Group (Chan : Channel_ID; Group : Group_ID); procedure Remove_From_Group (Chan : Channel_ID; Group : Group_ID); procedure Enable_Group (Group : Group_ID); procedure Disable_Group (Group : Group_ID); end nRF51.PPI;
package body types.c with spark_mode => off is function len (s : c_string) return natural is len : natural := 0; begin for i in s'range loop exit when s(i) = nul; len := len + 1; end loop; return len; end len; procedure to_ada (dst : out string; src : in c_string) is begin for i in src'range loop exit when src(i) = nul; dst(i) := src(i); end loop; end to_ada; procedure to_c (dst : out c_string; src : in string) is len : natural := 0; begin for i in src'range loop dst(i) := src(i); len := len + 1; end loop; dst(len) := nul; end to_c; end types.c;
------------------------------------------------------------------------------- ------------------------------------------------------------------------------- -- 18 package Asis.Statements ------------------------------------------------------------------------------- ------------------------------------------------------------------------------- package Asis.Statements is pragma Preelaborate; ------------------------------------------------------------------------------- ------------------------------------------------------------------------------- -- Asis.Statements encapsulates a set of queries that operate on A_Statement, -- A_Path, and An_Exception_Handler elements. ------------------------------------------------------------------------------- ------------------------------------------------------------------------------- -- 18.1 function Label_Names ------------------------------------------------------------------------------- function Label_Names (Statement : in Asis.Statement) return Asis.Defining_Name_List; ------------------------------------------------------------------------------- -- Statement - Specifies the statement to query -- -- Returns label_statement_identifier elements (A_Defining_Name elements) -- that define the labels attached to the statement, in their order of -- appearance. -- -- Returns a Nil_Element_List if there are no labels attached to the -- statement. -- -- The Enclosing_Element of the A_Defining_Name elements is the statement. -- -- Appropriate Element_Kinds: -- A_Statement -- -- Returns Defining_Name_Kinds: -- A_Defining_Identifier -- ------------------------------------------------------------------------------- -- 18.2 function Assignment_Variable_Name ------------------------------------------------------------------------------- function Assignment_Variable_Name (Statement : in Asis.Statement) return Asis.Expression; ------------------------------------------------------------------------------- -- Statement - Specifies the assignment statement to query -- -- Returns the expression that names the left hand side of the assignment. -- -- Appropriate Element_Kinds: -- A_Statement -- -- Appropriate Statement_Kinds: -- An_Assignment_Statement -- -- Returns Element_Kinds: -- An_Expression -- ------------------------------------------------------------------------------- -- 18.3 function Assignment_Expression ------------------------------------------------------------------------------- function Assignment_Expression (Statement : in Asis.Statement) return Asis.Expression; ------------------------------------------------------------------------------- -- Statement - Specifies the assignment statement to query -- -- Returns the expression from the right hand side of the assignment. -- -- Appropriate Element_Kinds: -- A_Statement -- -- Appropriate Statement_Kinds: -- An_Assignment_Statement -- -- Returns Element_Kinds: -- An_Expression ------------------------------------------------------------------------------- -- 18.4 function Statement_Paths ------------------------------------------------------------------------------- function Statement_Paths (Statement : in Asis.Statement; Include_Pragmas : in Boolean := False) return Asis.Path_List; ------------------------------------------------------------------------------- -- Statement - Specifies the statement to query -- Include_Pragmas - Specifies whether pragmas are to be returned -- -- Returns a list of the execution paths of the statement, in -- their order of appearance. -- -- The only pragmas returned are those preceding the first alternative in -- a case statement. -- -- Appropriate Statement_Kinds: -- An_If_Statement -- A_Case_Statement -- A_Selective_Accept_Statement -- A_Timed_Entry_Call_Statement -- A_Conditional_Entry_Call_Statement -- An_Asynchronous_Select_Statement -- -- Returns Element_Kinds: -- A_Path -- A_Pragma -- ------------------------------------------------------------------------------- -- 18.5 function Condition_Expression ------------------------------------------------------------------------------- function Condition_Expression (Path : in Asis.Path) return Asis.Expression; ------------------------------------------------------------------------------- -- Path - Specifies the execution path to query -- -- Returns the condition expression for an IF path or an ELSIF path. -- -- Appropriate Path_Kinds: -- An_If_Path -- An_Elsif_Path -- -- Returns Element_Kinds: -- An_Expression -- ------------------------------------------------------------------------------- -- 18.6 function Sequence_Of_Statements ------------------------------------------------------------------------------- function Sequence_Of_Statements (Path : in Asis.Path; Include_Pragmas : in Boolean := False) return Asis.Statement_List; ------------------------------------------------------------------------------- -- Path - Specifies the execution path to query -- Include_Pragmas - Specifies whether pragmas are to be returned -- -- Returns a list of the statements and pragmas from an execution path, -- in their order of appearance. -- -- Appropriate Element_Kinds: -- A_Path -- -- Returns Element_Kinds: -- A_Statement -- A_Pragma -- ------------------------------------------------------------------------------- -- 18.7 function Case_Expression ------------------------------------------------------------------------------- function Case_Expression (Statement : in Asis.Statement) return Asis.Expression; ------------------------------------------------------------------------------- -- Statement - Specifies the case statement to query -- -- Returns the expression of the case statement that determines which -- execution path is taken. -- -- Appropriate Element_Kinds: -- A_Statement -- -- Appropriate Statement_Kinds: -- A_Case_Statement -- -- Returns Element_Kinds: -- An_Expression -- ------------------------------------------------------------------------------- -- 18.8 function Case_Statement_Alternative_Choices ------------------------------------------------------------------------------- function Case_Statement_Alternative_Choices (Path : in Asis.Path) return Asis.Element_List; ------------------------------------------------------------------------------- -- Path - Specifies the case_statement_alternative execution path to query -- -- Returns a list of the 'when <choice> | <choice>' elements, in their -- order of appearance. -- -- Appropriate Path_Kinds: -- A_Case_Path -- -- Returns Element_Kinds: -- An_Expression -- A_Definition -- -- Returns Definition_Kinds: -- A_Discrete_Range -- An_Others_Choice -- ------------------------------------------------------------------------------- -- 18.9 function Statement_Identifier ------------------------------------------------------------------------------- function Statement_Identifier (Statement : in Asis.Statement) return Asis.Defining_Name; ------------------------------------------------------------------------------- -- Statement - Specifies the statement to query -- -- Returns the identifier for the loop_statement or block_statement. -- -- Returns a Nil_Element if the loop has no identifier. -- -- The Enclosing_Element of the name is the statement. -- -- Appropriate Statement_Kinds: -- A_Loop_Statement -- A_While_Loop_Statement -- A_For_Loop_Statement -- A_Block_Statement -- -- Returns Defining_Name_Kinds: -- Not_A_Defining_Name -- A_Defining_Identifier -- ------------------------------------------------------------------------------- -- 18.10 function Is_Name_Repeated ------------------------------------------------------------------------------- function Is_Name_Repeated (Statement : in Asis.Statement) return Boolean; ------------------------------------------------------------------------------- -- Statement - Specifies the statement to query -- -- Returns True if the name of the accept, loop, or block is repeated after -- the end of the statement. Always returns True for loop or block -- statements since the name is required. -- -- Returns False for any unexpected Element. -- -- Expected Statement_Kinds: -- A_Block_Statement -- A_Loop_Statement -- An_Accept_Statement -- ------------------------------------------------------------------------------- -- 18.11 function While_Condition ------------------------------------------------------------------------------- function While_Condition (Statement : in Asis.Statement) return Asis.Expression; ------------------------------------------------------------------------------- -- Statement - Specifies the loop statement to query -- -- Returns the condition expression associated with the while loop. -- -- Appropriate Element_Kinds: -- A_Statement -- -- Appropriate Statement_Kinds: -- A_While_Loop_Statement -- -- Returns Element_Kinds: -- An_Expression -- ------------------------------------------------------------------------------- -- 18.12 function For_Loop_Parameter_Specification ------------------------------------------------------------------------------- function For_Loop_Parameter_Specification (Statement : in Asis.Statement) return Asis.Declaration; ------------------------------------------------------------------------------- -- Statement - Specifies the loop statement to query -- -- Returns the declaration of the A_Loop_Parameter_Specification. -- -- Appropriate Statement_Kinds: -- A_For_Loop_Statement -- -- Returns Declaration_Kinds: -- A_Loop_Parameter_Specification -- ------------------------------------------------------------------------------- -- 18.13 function Loop_Statements ------------------------------------------------------------------------------- function Loop_Statements (Statement : in Asis.Statement; Include_Pragmas : in Boolean := False) return Asis.Statement_List; ------------------------------------------------------------------------------- -- Statement - Specifies the loop statement to query -- Include_Pragmas - Specifies whether pragmas are to be returned -- -- Returns the sequence_of_statements and any pragmas from the loop_statement, -- in their order of appearance. -- -- Appropriate Statement_Kinds: -- A_Loop_Statement -- A_While_Loop_Statement -- A_For_Loop_Statement -- -- Returns Element_Kinds: -- A_Pragma -- A_Statement -- ------------------------------------------------------------------------------- -- 18.14 function Is_Declare_Block ------------------------------------------------------------------------------- function Is_Declare_Block (Statement : in Asis.Statement) return Boolean; ------------------------------------------------------------------------------- -- Statement - Specifies the statement to query -- -- Returns True if the statement is a block_statement and it was created with -- the use of the "declare" reserved word. The presence or absence of any -- declarative_item elements is not relevant. -- -- Returns False if the "declare" reserved word does not appear in the -- block_statement, or for any unexpected Element. -- -- Expected Statement_Kinds:: -- A_Block_Statement -- ------------------------------------------------------------------------------- -- 18.15 function Block_Declarative_Items ------------------------------------------------------------------------------- function Block_Declarative_Items (Statement : in Asis.Statement; Include_Pragmas : in Boolean := False) return Asis.Declarative_Item_List; ------------------------------------------------------------------------------- -- Statement - Specifies the block statement to query -- Include_Pragmas - Specifies whether pragmas are to be returned -- -- Returns a list of the declarations, representation_clause elements, -- pragmas, and use_clause elements in the declarative_part of the -- block_statement, in their order of appearance. -- -- Returns a Nil_Element_List if there are no declarative items. -- -- Appropriate Statement_Kinds: -- A_Block_Statement -- -- Returns Element_Kinds: -- A_Declaration -- A_Pragma -- A_Clause -- ------------------------------------------------------------------------------- -- 18.16 function Block_Statements ------------------------------------------------------------------------------- function Block_Statements (Statement : in Asis.Statement; Include_Pragmas : in Boolean := False) return Asis.Statement_List; ------------------------------------------------------------------------------- -- Statement - Specifies the block statement to query -- Include_Pragmas - Specifies whether pragmas are to be returned -- -- Returns a list of the statements and pragmas for the block_statement, in -- their order of appearance. -- -- Returns a Nil_Element_List if there are no statements or pragmas. This -- can only occur for a block_statement obtained from the obsolescent query -- Body_Block_Statement when its argument is a package_body -- that has no sequence_of_statements. -- -- Appropriate Statement_Kinds: -- A_Block_Statement -- -- Returns Element_Kinds: -- A_Pragma -- A_Statement -- ------------------------------------------------------------------------------- -- 18.17 function Block_Exception_Handlers ------------------------------------------------------------------------------- function Block_Exception_Handlers (Statement : in Asis.Statement; Include_Pragmas : in Boolean := False) return Asis.Exception_Handler_List; ------------------------------------------------------------------------------- -- Statement - Specifies the block statement to query -- Include_Pragmas - Specifies whether pragmas are to be returned -- -- Returns a list of the exception_handler elements of the block_statement, -- in their order of appearance. -- -- The only pragmas returned are those following the reserved word "exception" -- and preceding the reserved word "when" of first exception handler. -- -- Returns a Nil_Element_List if there are no exception_handler elements. -- -- Appropriate Statement_Kinds: -- A_Block_Statement -- -- Returns Element_Kinds: -- An_Exception_Handler -- A_Pragma -- ------------------------------------------------------------------------------- -- 18.18 function Exit_Loop_Name ------------------------------------------------------------------------------- function Exit_Loop_Name (Statement : in Asis.Statement) return Asis.Expression; ------------------------------------------------------------------------------- -- Statement - Specifies the exit statement to query -- -- Returns the name of the exited loop. -- -- Returns a Nil_Element if no loop name is present. -- -- Appropriate Statement_Kinds: -- An_Exit_Statement -- -- Returns Expression_Kinds: -- Not_An_Expression -- An_Identifier -- A_Selected_Component -- ------------------------------------------------------------------------------- -- 18.19 function Exit_Condition ------------------------------------------------------------------------------- function Exit_Condition (Statement : in Asis.Statement) return Asis.Expression; ------------------------------------------------------------------------------- -- Statement - Specifies the exit statement to query -- -- Returns the "when" condition of the exit statement. -- -- Returns a Nil_Element if no condition is present. -- -- Appropriate Statement_Kinds: -- An_Exit_Statement -- -- Returns Element_Kinds: -- Not_An_Element -- An_Expression -- ------------------------------------------------------------------------------- -- 18.20 function Corresponding_Loop_Exited ------------------------------------------------------------------------------- function Corresponding_Loop_Exited (Statement : in Asis.Statement) return Asis.Statement; ------------------------------------------------------------------------------- -- Statement - Specifies the exit statement to query -- -- Returns the loop statement exited by the exit statement. -- -- Appropriate Statement_Kinds: -- An_Exit_Statement -- -- Returns Element_Kinds: -- A_Loop_Statement -- A_While_Loop_Statement -- A_For_Loop_Statement -- ------------------------------------------------------------------------------- -- 18.21 function Return_Expression ------------------------------------------------------------------------------- function Return_Expression (Statement : in Asis.Statement) return Asis.Expression; ------------------------------------------------------------------------------- -- Statement - Specifies the return statement to query -- -- Returns the expression in the return statement. -- -- Returns a Nil_Element if no expression is present. -- -- Appropriate Statement_Kinds: -- A_Return_Statement -- -- Returns Element_Kinds: -- Not_An_Element -- An_Expression -- ------------------------------------------------------------------------------- -- 18.xx function Return_Object_Specification ------------------------------------------------------------------------------- function Return_Object_Specification (Statement : Asis.Statement) return Asis.Declaration; ------------------------------------------------------------------------------- -- Statement specifies the extended return statement to query. -- -- Returns the specification of the return object. -- -- Appropriate Statement_Kinds: -- An_Extended_Return_Statement -- -- Returns Declaration_Kinds: -- A_Return_Object_Specification -- ------------------------------------------------------------------------------- -- 18.xx function Extended_Return_Statements ------------------------------------------------------------------------------- function Extended_Return_Statements (Statement : Asis.Statement; Include_Pragmas : Boolean := False) return Asis.Statement_List; ------------------------------------------------------------------------------- -- Statement specifies the extended return statement to query. -- Include_Pragmas specifies whether pragmas are to be returned. -- -- Returns a list of the statements and pragmas from the extended return -- statement, in their order of appearance. -- -- Returns a Nil_Element_List if the argument extended return statement does -- not include handled_sequence_of_statements. -- -- Appropriate Statement_Kinds: -- An_Extended_Return_Statement -- -- Returns Element_Kinds: -- A_Statement -- A_Pragma -- ------------------------------------------------------------------------------- -- 18.xx function Extended_Return_Exception_Handlers ------------------------------------------------------------------------------- function Extended_Return_Exception_Handlers (Statement : Asis.Statement; Include_Pragmas : Boolean := False) return Asis.Exception_Handler_List; ------------------------------------------------------------------------------- -- Statement specifies the extended return statement to query. -- Include_Pragmas specifies whether pragmas are to be returned. -- -- Returns a list of the exception_handler elements of the extended return -- statement, in their order of appearance. -- -- The only pragmas returned are those following the reserved word "exception" -- and preceding the reserved word "when" of first exception handler. -- -- Returns a Nil_Element_List if there are no exception_handler elements. -- -- Appropriate Statement_Kinds: -- An_Extended_Return_Statement -- -- Returns Element_Kinds: -- An_Exception_Handler -- A_Pragma -- ------------------------------------------------------------------------------- -- 18.22 function Goto_Label ------------------------------------------------------------------------------- function Goto_Label (Statement : in Asis.Statement) return Asis.Expression; ------------------------------------------------------------------------------- -- Statement - Specifies the goto statement to query -- -- Returns the expression reference for the label, as specified by the goto -- statement. -- -- Appropriate Statement_Kinds: -- A_Goto_Statement -- -- Returns Expression_Kinds: -- An_Identifier -- ------------------------------------------------------------------------------- -- 18.23 function Corresponding_Destination_Statement ------------------------------------------------------------------------------- function Corresponding_Destination_Statement (Statement : in Asis.Statement) return Asis.Statement; ------------------------------------------------------------------------------- -- Statement - Specifies the goto statement to query -- -- Returns the target statement specified by the goto statement. -- -- Appropriate Statement_Kinds: -- A_Goto_Statement -- -- Returns Element_Kinds: -- A_Statement -- -- |AN Application Note: -- |AN -- |AN The Reference Manual allows a pragma between a statement and a label -- |AN attached to it. If so, when the label is passed as an actual parameter -- |AN to this query, the query returns the statement, but not the label. The -- |AN only way for an application to know that there are any pragmas between -- |AN a statement and its label is to get the spans of these program -- |AN elements and analyze the corresponding positions in the source text. -- ------------------------------------------------------------------------------- -- 18.24 function Called_Name ------------------------------------------------------------------------------- function Called_Name (Statement : in Asis.Statement) return Asis.Expression; ------------------------------------------------------------------------------- -- Statement - Specifies the procedure call or entry call statement to query -- -- Returns the name of the called procedure or entry. The name of an entry -- family takes the form of An_Indexed_Component. -- -- Appropriate Statement_Kinds: -- An_Entry_Call_Statement -- A_Procedure_Call_Statement -- -- Returns Element_Kinds: -- An_Expression -- ------------------------------------------------------------------------------- -- 18.25 function Corresponding_Called_Entity ------------------------------------------------------------------------------- function Corresponding_Called_Entity (Statement : in Asis.Statement) return Asis.Declaration; ------------------------------------------------------------------------------- -- Statement - Specifies the procedure_call_statement or -- entry_call_statement to query -- -- Returns the declaration of the procedure or entry denoted by the call. -- -- Returns a Nil_Element if the: -- -- - prefix of the call denotes an access to a procedure implicit -- or explicit dereference, -- -- - argument is a dispatching call, -- -- - argument is a call to a dispatching operation of a tagged type which -- is not statically determined. -- -- If procedure_prefix denotes an attribute_reference, and if the -- corresponding attribute is (re)defined by an attribute definition clause, -- an implementation is encouraged, but not required, to return the -- definition of the corresponding subprogram whose name is used after "use" -- in this attribute definition clause. If an implementation cannot return -- such a subprogram definition, a Nil_Element should be returned. For an -- attribute reference which is not (re)defined by an attribute definition -- clause, a Nil_Element should be returned. -- -- Appropriate Statement_Kinds: -- An_Entry_Call_Statement -- A_Procedure_Call_Statement -- -- Returns Declaration_Kinds: -- Not_A_Declaration -- A_Procedure_Declaration -- A_Procedure_Body_Declaration -- A_Procedure_Body_Stub -- A_Procedure_Renaming_Declaration -- A_Procedure_Instantiation -- A_Formal_Procedure_Declaration -- An_Entry_Declaration -- A_Generic_Procedure_Declaration -- -- |IP Implementation Permissions -- |IP -- |IP An implementation may choose to return any part of multi-part -- |IP declarations and definitions. Multi-part declaration/definitions -- |IP can occur for: -- |IP -- |IP - Subprogram specification in package specification, package body, -- |IP and subunits (is separate); -- |IP - Entries in package specification, package body, and subunits -- |IP (is separate); -- |IP - Private type and full type declarations; -- |IP - Incomplete type and full type declarations; and -- |IP - Deferred constant and full constant declarations. -- |IP -- |IP No guarantee is made that the element will be the first part or -- |IP that the determination will be made due to any visibility rules. -- |IP An application should make its own analysis for each case based -- |IP on which part is returned. -- ------------------------------------------------------------------------------- -- 18.26 function Call_Statement_Parameters ------------------------------------------------------------------------------- function Call_Statement_Parameters (Statement : in Asis.Statement; Normalized : in Boolean := False) return Asis.Association_List; ------------------------------------------------------------------------------- -- Statement - Specifies the procedure_call_statement or -- entry_call_statement to query -- Normalized - Specifies whether the normalized form is desired -- -- Returns a list of parameter_association elements of the call. -- -- Returns a Nil_Element_List if there are no parameter_association elements. -- -- An unnormalized list contains only explicit associations ordered as they -- appear in the program text. Each unnormalized association has an optional -- formal_parameter_selector_name and an explicit_actual_parameter component. -- -- A normalized list contains artificial associations representing all -- explicit and default associations. It has a length equal to the number of -- parameter_specification elements of the formal_part of the -- parameter_and_result_profile. The order of normalized associations matches -- the order of parameter_specification elements. -- -- Each normalized association represents a one on one mapping of a -- parameter_specification elements to the explicit or default expression. -- A normalized association has one A_Defining_Name component that denotes the -- parameter_specification, and one An_Expression component that is either the -- explicit_actual_parameter or a default_expression. -- -- If the prefix of the call denotes an access to a procedure implicit or -- explicit deference, normalized associations are constructed on the basis -- of the formal_part of the parameter_profile from the corresponding -- access_to_subprogram definition. -- -- Returns Nil_Element for normalized associations in the case where -- the called procedure can be determined only dynamically (dispatching -- calls). ASIS cannot produce any meaningful result in this case. -- -- The exception ASIS_Inappropriate_Element is raised when the procedure -- call is an attribute reference and Is_Normalized is True. -- -- Appropriate Statement_Kinds: -- An_Entry_Call_Statement -- A_Procedure_Call_Statement -- -- Returns Element_Kinds: -- A_Parameter_Association -- -- |IR Implementation Requirements: -- |IR -- |IR Normalized associations are Is_Normalized and Is_Part_Of_Implicit. -- |IR Normalized associations provided by default are -- |IR Is_Defaulted_Association. -- |IR Normalized associations are never Is_Equal to unnormalized -- |IR associations. -- -- |IP Implementation Permissions: -- |IP -- |IP An implementation may choose to always include default parameters in -- |IP its internal representation. -- |IP -- |IP An implementation may also choose to normalize its representation -- |IP to use defining_identifier elements rather than -- |IP formal_parameter_selector_name elements. -- |IP -- |IP In either case, this query will return Is_Normalized associations even -- |IP if Normalized is False, and the query -- |IP Call_Statement_Parameters_Normalized will return True. -- ------------------------------------------------------------------------------- -- 18.27 function Accept_Entry_Index ------------------------------------------------------------------------------- function Accept_Entry_Index (Statement : in Asis.Statement) return Asis.Expression; ------------------------------------------------------------------------------- -- Statement - Specifies the accept statement to query -- -- Returns the entry index expression in the accept statement. -- -- Returns a Nil_Element if the statement has no explicit entry index, -- -- Appropriate Statement_Kinds: -- An_Accept_Statement -- -- Returns Element_Kinds: -- Not_An_Element -- An_Expression -- ------------------------------------------------------------------------------- -- 18.28 function Accept_Entry_Direct_Name ------------------------------------------------------------------------------- function Accept_Entry_Direct_Name (Statement : in Asis.Statement) return Asis.Name; ------------------------------------------------------------------------------- -- Statement - Specifies the accept statement to query -- -- Returns the direct name of the entry. The name follows the reserved word -- "accept". -- -- Appropriate Statement_Kinds: -- An_Accept_Statement -- -- Returns Expression_Kinds: -- An_Identifier -- ------------------------------------------------------------------------------- -- 18.29 function Accept_Parameters ------------------------------------------------------------------------------- function Accept_Parameters (Statement : in Asis.Statement) return Asis.Parameter_Specification_List; ------------------------------------------------------------------------------- -- Statement - Specifies the accept statement to query -- -- Returns a list of parameter specifications in the formal part of the -- accept statement, in their order of appearance. -- -- Returns a Nil_Element_List if the accept_statement has no parameters. -- -- Results of this query may vary across ASIS implementations. Some -- implementations normalize all multiple name parameter specifications into -- an equivalent sequence of corresponding single name parameter -- specifications. See Reference Manual 3.3.1(7). -- -- Appropriate Statement_Kinds: -- An_Accept_Statement -- -- Returns Declaration_Kinds: -- A_Parameter_Specification -- ------------------------------------------------------------------------------- -- 18.30 function Accept_Body_Statements ------------------------------------------------------------------------------- function Accept_Body_Statements (Statement : in Asis.Statement; Include_Pragmas : in Boolean := False) return Asis.Statement_List; ------------------------------------------------------------------------------- -- Statement - Specifies the accept statement to query -- Include_Pragmas - Specifies whether pragmas are to be returned -- -- Returns the list of statements and pragmas from the body of the accept -- statement, in their order of appearance. -- -- Appropriate Statement_Kinds: -- An_Accept_Statement -- -- Returns Element_Kinds: -- A_Pragma -- A_Statement -- ------------------------------------------------------------------------------- -- 18.31 function Accept_Body_Exception_Handlers ------------------------------------------------------------------------------- function Accept_Body_Exception_Handlers (Statement : in Asis.Statement; Include_Pragmas : in Boolean := False) return Asis.Statement_List; ------------------------------------------------------------------------------- -- Statement - Specifies the accept statement to query -- Include_Pragmas - Specifies whether pragmas are to be returned -- -- Returns the list of exception handlers and pragmas from the body of the -- accept statement, in their order of appearance. -- -- Appropriate Statement_Kinds: -- An_Accept_Statement -- -- Returns Element_Kinds: -- A_Pragma -- An_Exception_Handler -- ------------------------------------------------------------------------------- -- 18.32 function Corresponding_Entry ------------------------------------------------------------------------------- function Corresponding_Entry (Statement : in Asis.Statement) return Asis.Declaration; ------------------------------------------------------------------------------- -- Statement - Specifies the accept statement to query -- -- Returns the declaration of the entry accepted in this statement. -- -- Appropriate Statement_Kinds: -- An_Accept_Statement -- -- Returns Declaration_Kinds: -- An_Entry_Declaration -- ------------------------------------------------------------------------------- -- 18.33 function Requeue_Entry_Name ------------------------------------------------------------------------------- function Requeue_Entry_Name (Statement : in Asis.Statement) return Asis.Name; ------------------------------------------------------------------------------- -- Statement - Specifies the requeue statement to query -- -- Returns the name of the entry requeued by the statement. -- The name follows the reserved word "requeue". -- -- Appropriate Statement_Kinds: -- A_Requeue_Statement -- A_Requeue_Statement_With_Abort -- -- Returns Element_Kinds: -- An_Expression -- ------------------------------------------------------------------------------- -- 18.34 function Delay_Expression ------------------------------------------------------------------------------- function Delay_Expression (Statement : in Asis.Statement) return Asis.Expression; ------------------------------------------------------------------------------- -- Statement - Specifies the delay statement to query -- -- Returns the expression for the duration of the delay. -- -- Appropriate Statement_Kinds: -- A_Delay_Until_Statement -- A_Delay_Relative_Statement -- -- Returns Element_Kinds: -- An_Expression -- ------------------------------------------------------------------------------- -- 18.35 function Guard ------------------------------------------------------------------------------- function Guard (Path : in Asis.Path) return Asis.Expression; ------------------------------------------------------------------------------- -- Path - Specifies the select statement execution path to query -- -- Returns the conditional expression guard for the path. -- -- Returns a Nil_Element if there is no guard, or if the path is from a -- timed_entry_call, a conditional_entry_call, or an asynchronous_select -- statement where a guard is not legal. -- -- Appropriate Path_Kinds: -- A_Select_Path -- An_Or_Path -- -- Returns Element_Kinds: -- Not_An_Element -- An_Expression -- ------------------------------------------------------------------------------- -- 18.36 function Aborted_Tasks ------------------------------------------------------------------------------- function Aborted_Tasks (Statement : in Asis.Statement) return Asis.Expression_List; ------------------------------------------------------------------------------- -- Statement - Specifies the abort statement to query -- -- Returns a list of the task names from the ABORT statement, in their order -- of appearance. -- -- Appropriate Statement_Kinds: -- An_Abort_Statement -- -- Returns Element_Kinds: -- An_Expression -- ------------------------------------------------------------------------------- -- 18.37 function Choice_Parameter_Specification ------------------------------------------------------------------------------- function Choice_Parameter_Specification (Handler : in Asis.Exception_Handler) return Asis.Declaration; ------------------------------------------------------------------------------- -- Handler - Specifies the exception handler to query -- -- Returns the choice parameter specification following the reserved word -- "when" in the exception handler. -- -- Returns a Nil_Element if there is no explicit choice parameter. -- -- Appropriate Element_Kinds: -- An_Exception_Handler -- -- Returns Declaration_Kinds: -- Not_A_Declaration -- A_Choice_Parameter_Specification -- ------------------------------------------------------------------------------- -- 18.38 function Exception_Choices ------------------------------------------------------------------------------- function Exception_Choices (Handler : in Asis.Exception_Handler) return Asis.Element_List; ------------------------------------------------------------------------------- -- Handler - Specifies the exception handler to query -- -- Returns a list of the 'when <choice> | <choice>' elements, in their -- order of appearance. Choices are either the exception name expression or -- an others choice. -- -- Appropriate Element_Kinds: -- An_Exception_Handler -- -- Returns Expression_Kinds: -- An_Identifier -- A_Selected_Component -- -- Returns Definition_Kinds: -- An_Others_Choice -- ------------------------------------------------------------------------------- -- 18.39 function Handler_Statements ------------------------------------------------------------------------------- function Handler_Statements (Handler : in Asis.Exception_Handler; Include_Pragmas : in Boolean := False) return Asis.Statement_List; ------------------------------------------------------------------------------- -- Handler - Specifies the exception handler to query -- Include_Pragmas - Specifies whether pragmas are to be returned -- -- Returns the list of statements and pragmas from the body of the -- exception handler, in their order of appearance. -- -- Appropriate Element_Kinds: -- An_Exception_Handler -- -- Returns Element_Kinds: -- A_Pragma -- A_Statement -- ------------------------------------------------------------------------------- -- 18.40 function Raised_Exception ------------------------------------------------------------------------------- function Raised_Exception (Statement : in Asis.Statement) return Asis.Expression; ------------------------------------------------------------------------------- -- Statement - Specifies the raise statement to query -- -- Returns the expression that names the raised exception. -- -- Returns a Nil_Element if there is no explicitly named exception. -- -- Appropriate Statement_Kinds: -- A_Raise_Statement -- -- Returns Expression_Kinds: -- Not_An_Expression -- An_Identifier -- A_Selected_Component -- ------------------------------------------------------------------------------- -- 18.xx function Raise_Statement_Message ------------------------------------------------------------------------------- function Raise_Statement_Message -- 13.3(2) (Statement : Asis.Statement) return Asis.Expression; ------------------------------------------------------------------------------- -- Statement specifies the raise statement to query. -- -- Returns the string expression that is associated with the raised -- exception and follows the WITH keyword in the raise statement. -- -- Returns a Nil_Element if there is no string expression. -- -- Appropriate Statement_Kinds: -- A_Raise_Statement -- -- Returns Element_Kinds: -- Not_An_Element -- An_Expression -- ------------------------------------------------------------------------------- -- 18.41 function Qualified_Expression ------------------------------------------------------------------------------- function Qualified_Expression (Statement : in Asis.Statement) return Asis.Expression; ------------------------------------------------------------------------------- -- Statement - Specifies the code statement to query -- -- Returns the qualified aggregate expression representing the code statement. -- -- Appropriate Statement_Kinds: -- A_Code_Statement -- -- Returns Expression_Kinds: -- A_Qualified_Expression -- ------------------------------------------------------------------------------- -- 18.42 function Is_Dispatching_Call ------------------------------------------------------------------------------- function Is_Dispatching_Call (Call : in Asis.Element) return Boolean; ------------------------------------------------------------------------------- -- Call - Specifies the element to query. -- -- Returns True if the controlling tag of Call is dynamically determined. -- -- This function shall always return False when -- pragma Restrictions(No_Dispatch) applies. -- -- Returns False for any unexpected Element. -- -- Expected Expression_Kinds: -- A_Function_Call -- -- Expected Statement_Kinds: -- A_Procedure_Call_Statement -- ------------------------------------------------------------------------------- -- 18.43 function Is_Call_On_Dispatching_Operation ------------------------------------------------------------------------------- function Is_Call_On_Dispatching_Operation (Call : in Asis.Element) return Boolean; ------------------------------------------------------------------------------- -- Call - Specifies the element to query. -- -- Returns True if the name or prefix of Call denotes the declaration of a -- primitive operation of a tagged type. -- -- Returns False for any unexpected Element. -- -- Expected Element_Kinds: -- A_Function_Call -- A_Procedure_Call_Statement -- ------------------------------------------------------------------------------- end Asis.Statements; ------------------------------------------------------------------------------ -- 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. ------------------------------------------------------------------------------
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- S Y S T E M . T R A C E B A C K -- -- -- -- S p e c -- -- -- -- Copyright (C) 1999-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. -- -- -- ------------------------------------------------------------------------------ -- This package provides a method for generating a traceback of the current -- execution location. The traceback shows the locations of calls in the call -- chain, up to either the top or a designated number of levels. pragma Compiler_Unit_Warning; pragma Polling (Off); -- We must turn polling off for this unit, because otherwise we get -- elaboration circularities with System.Exception_Tables. with System.Traceback_Entries; package System.Traceback is ---------------- -- Call_Chain -- ---------------- procedure Call_Chain (Traceback : in out System.Traceback_Entries.Tracebacks_Array; Max_Len : Natural; Len : out Natural; Exclude_Min : System.Address := System.Null_Address; Exclude_Max : System.Address := System.Null_Address; Skip_Frames : Natural := 1); -- Store up to Max_Len code locations in Traceback, corresponding to the -- current call chain. -- -- Traceback is an array of addresses where the result will be stored. -- -- Max_Len is the length of the Traceback array. If the call chain is -- longer than this, then additional entries are discarded, and the -- traceback is missing some of the highest level entries. -- -- Len is the number of addresses returned in the Traceback array -- -- Exclude_Min/Exclude_Max, if non null, provide a range of addresses -- to ignore from the computation of the traceback. -- -- Skip_Frames says how many of the most recent calls should at least -- be excluded from the result, regardless of the exclusion bounds and -- starting with this procedure itself: 1 means exclude the frame for -- this procedure, 2 means 1 + exclude the frame for this procedure's -- caller, ... -- -- On return, the Traceback array is filled in, and Len indicates the -- number of stored entries. The first entry is the most recent call, -- and the last entry is the highest level call. function C_Call_Chain (Traceback : System.Address; Max_Len : Natural) return Natural; pragma Export (C, C_Call_Chain, "system__traceback__c_call_chain"); -- Version that can be used directly from C end System.Traceback;
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- G N A T . R E G I S T R Y -- -- -- -- B o d y -- -- -- -- Copyright (C) 2001-2019, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ with Interfaces.C; with System; with GNAT.Directory_Operations; package body GNAT.Registry is use System; ------------------------------ -- Binding to the Win32 API -- ------------------------------ subtype LONG is Interfaces.C.long; subtype ULONG is Interfaces.C.unsigned_long; subtype DWORD is ULONG; type PULONG is access all ULONG; subtype PDWORD is PULONG; subtype LPDWORD is PDWORD; subtype Error_Code is LONG; subtype REGSAM is LONG; type PHKEY is access all HKEY; ERROR_SUCCESS : constant Error_Code := 0; REG_SZ : constant := 1; REG_EXPAND_SZ : constant := 2; function RegCloseKey (Key : HKEY) return LONG; pragma Import (Stdcall, RegCloseKey, "RegCloseKey"); function RegCreateKeyEx (Key : HKEY; lpSubKey : Address; Reserved : DWORD; lpClass : Address; dwOptions : DWORD; samDesired : REGSAM; lpSecurityAttributes : Address; phkResult : PHKEY; lpdwDisposition : LPDWORD) return LONG; pragma Import (Stdcall, RegCreateKeyEx, "RegCreateKeyExA"); function RegDeleteKey (Key : HKEY; lpSubKey : Address) return LONG; pragma Import (Stdcall, RegDeleteKey, "RegDeleteKeyA"); function RegDeleteValue (Key : HKEY; lpValueName : Address) return LONG; pragma Import (Stdcall, RegDeleteValue, "RegDeleteValueA"); function RegEnumValue (Key : HKEY; dwIndex : DWORD; lpValueName : Address; lpcbValueName : LPDWORD; lpReserved : LPDWORD; lpType : LPDWORD; lpData : Address; lpcbData : LPDWORD) return LONG; pragma Import (Stdcall, RegEnumValue, "RegEnumValueA"); function RegOpenKeyEx (Key : HKEY; lpSubKey : Address; ulOptions : DWORD; samDesired : REGSAM; phkResult : PHKEY) return LONG; pragma Import (Stdcall, RegOpenKeyEx, "RegOpenKeyExA"); function RegQueryValueEx (Key : HKEY; lpValueName : Address; lpReserved : LPDWORD; lpType : LPDWORD; lpData : Address; lpcbData : LPDWORD) return LONG; pragma Import (Stdcall, RegQueryValueEx, "RegQueryValueExA"); function RegSetValueEx (Key : HKEY; lpValueName : Address; Reserved : DWORD; dwType : DWORD; lpData : Address; cbData : DWORD) return LONG; pragma Import (Stdcall, RegSetValueEx, "RegSetValueExA"); function RegEnumKey (Key : HKEY; dwIndex : DWORD; lpName : Address; cchName : DWORD) return LONG; pragma Import (Stdcall, RegEnumKey, "RegEnumKeyA"); --------------------- -- Local Constants -- --------------------- Max_Key_Size : constant := 1_024; -- Maximum number of characters for a registry key Max_Value_Size : constant := 2_048; -- Maximum number of characters for a key's value ----------------------- -- Local Subprograms -- ----------------------- function To_C_Mode (Mode : Key_Mode) return REGSAM; -- Returns the Win32 mode value for the Key_Mode value procedure Check_Result (Result : LONG; Message : String); -- Checks value Result and raise the exception Registry_Error if it is not -- equal to ERROR_SUCCESS. Message and the error value (Result) is added -- to the exception message. ------------------ -- Check_Result -- ------------------ procedure Check_Result (Result : LONG; Message : String) is use type LONG; begin if Result /= ERROR_SUCCESS then raise Registry_Error with Message & " (" & LONG'Image (Result) & ')'; end if; end Check_Result; --------------- -- Close_Key -- --------------- procedure Close_Key (Key : HKEY) is Result : LONG; begin Result := RegCloseKey (Key); Check_Result (Result, "Close_Key"); end Close_Key; ---------------- -- Create_Key -- ---------------- function Create_Key (From_Key : HKEY; Sub_Key : String; Mode : Key_Mode := Read_Write) return HKEY is REG_OPTION_NON_VOLATILE : constant := 16#0#; C_Sub_Key : constant String := Sub_Key & ASCII.NUL; C_Class : constant String := "" & ASCII.NUL; C_Mode : constant REGSAM := To_C_Mode (Mode); New_Key : aliased HKEY; Result : LONG; Dispos : aliased DWORD; begin Result := RegCreateKeyEx (From_Key, C_Sub_Key (C_Sub_Key'First)'Address, 0, C_Class (C_Class'First)'Address, REG_OPTION_NON_VOLATILE, C_Mode, Null_Address, New_Key'Unchecked_Access, Dispos'Unchecked_Access); Check_Result (Result, "Create_Key " & Sub_Key); return New_Key; end Create_Key; ---------------- -- Delete_Key -- ---------------- procedure Delete_Key (From_Key : HKEY; Sub_Key : String) is C_Sub_Key : constant String := Sub_Key & ASCII.NUL; Result : LONG; begin Result := RegDeleteKey (From_Key, C_Sub_Key (C_Sub_Key'First)'Address); Check_Result (Result, "Delete_Key " & Sub_Key); end Delete_Key; ------------------ -- Delete_Value -- ------------------ procedure Delete_Value (From_Key : HKEY; Sub_Key : String) is C_Sub_Key : constant String := Sub_Key & ASCII.NUL; Result : LONG; begin Result := RegDeleteValue (From_Key, C_Sub_Key (C_Sub_Key'First)'Address); Check_Result (Result, "Delete_Value " & Sub_Key); end Delete_Value; ------------------- -- For_Every_Key -- ------------------- procedure For_Every_Key (From_Key : HKEY; Recursive : Boolean := False) is procedure Recursive_For_Every_Key (From_Key : HKEY; Recursive : Boolean := False; Quit : in out Boolean); ----------------------------- -- Recursive_For_Every_Key -- ----------------------------- procedure Recursive_For_Every_Key (From_Key : HKEY; Recursive : Boolean := False; Quit : in out Boolean) is use type LONG; use type ULONG; Index : ULONG := 0; Result : LONG; Sub_Key : Interfaces.C.char_array (1 .. Max_Key_Size); pragma Warnings (Off, Sub_Key); Size_Sub_Key : aliased ULONG; Sub_Hkey : HKEY; function Current_Name return String; ------------------ -- Current_Name -- ------------------ function Current_Name return String is begin return Interfaces.C.To_Ada (Sub_Key); end Current_Name; -- Start of processing for Recursive_For_Every_Key begin loop Size_Sub_Key := Sub_Key'Length; Result := RegEnumKey (From_Key, Index, Sub_Key (1)'Address, Size_Sub_Key); exit when not (Result = ERROR_SUCCESS); Sub_Hkey := Open_Key (From_Key, Interfaces.C.To_Ada (Sub_Key)); Action (Natural (Index) + 1, Sub_Hkey, Current_Name, Quit); if not Quit and then Recursive then Recursive_For_Every_Key (Sub_Hkey, True, Quit); end if; Close_Key (Sub_Hkey); exit when Quit; Index := Index + 1; end loop; end Recursive_For_Every_Key; -- Local Variables Quit : Boolean := False; -- Start of processing for For_Every_Key begin Recursive_For_Every_Key (From_Key, Recursive, Quit); end For_Every_Key; ------------------------- -- For_Every_Key_Value -- ------------------------- procedure For_Every_Key_Value (From_Key : HKEY; Expand : Boolean := False) is use GNAT.Directory_Operations; use type LONG; use type ULONG; Index : ULONG := 0; Result : LONG; Sub_Key : String (1 .. Max_Key_Size); pragma Warnings (Off, Sub_Key); Value : String (1 .. Max_Value_Size); pragma Warnings (Off, Value); Size_Sub_Key : aliased ULONG; Size_Value : aliased ULONG; Type_Sub_Key : aliased DWORD; Quit : Boolean; begin loop Size_Sub_Key := Sub_Key'Length; Size_Value := Value'Length; Result := RegEnumValue (From_Key, Index, Sub_Key (1)'Address, Size_Sub_Key'Unchecked_Access, null, Type_Sub_Key'Unchecked_Access, Value (1)'Address, Size_Value'Unchecked_Access); exit when not (Result = ERROR_SUCCESS); Quit := False; if Type_Sub_Key = REG_EXPAND_SZ and then Expand then Action (Natural (Index) + 1, Sub_Key (1 .. Integer (Size_Sub_Key)), Directory_Operations.Expand_Path (Value (1 .. Integer (Size_Value) - 1), Directory_Operations.DOS), Quit); elsif Type_Sub_Key = REG_SZ or else Type_Sub_Key = REG_EXPAND_SZ then Action (Natural (Index) + 1, Sub_Key (1 .. Integer (Size_Sub_Key)), Value (1 .. Integer (Size_Value) - 1), Quit); end if; exit when Quit; Index := Index + 1; end loop; end For_Every_Key_Value; ---------------- -- Key_Exists -- ---------------- function Key_Exists (From_Key : HKEY; Sub_Key : String) return Boolean is New_Key : HKEY; begin New_Key := Open_Key (From_Key, Sub_Key); Close_Key (New_Key); -- We have been able to open the key so it exists return True; exception when Registry_Error => -- An error occurred, the key was not found return False; end Key_Exists; -------------- -- Open_Key -- -------------- function Open_Key (From_Key : HKEY; Sub_Key : String; Mode : Key_Mode := Read_Only) return HKEY is C_Sub_Key : constant String := Sub_Key & ASCII.NUL; C_Mode : constant REGSAM := To_C_Mode (Mode); New_Key : aliased HKEY; Result : LONG; begin Result := RegOpenKeyEx (From_Key, C_Sub_Key (C_Sub_Key'First)'Address, 0, C_Mode, New_Key'Unchecked_Access); Check_Result (Result, "Open_Key " & Sub_Key); return New_Key; end Open_Key; ----------------- -- Query_Value -- ----------------- function Query_Value (From_Key : HKEY; Sub_Key : String; Expand : Boolean := False) return String is use GNAT.Directory_Operations; use type ULONG; Value : String (1 .. Max_Value_Size); pragma Warnings (Off, Value); Size_Value : aliased ULONG; Type_Value : aliased DWORD; C_Sub_Key : constant String := Sub_Key & ASCII.NUL; Result : LONG; begin Size_Value := Value'Length; Result := RegQueryValueEx (From_Key, C_Sub_Key (C_Sub_Key'First)'Address, null, Type_Value'Unchecked_Access, Value (Value'First)'Address, Size_Value'Unchecked_Access); Check_Result (Result, "Query_Value " & Sub_Key & " key"); if Type_Value = REG_EXPAND_SZ and then Expand then return Directory_Operations.Expand_Path (Value (1 .. Integer (Size_Value - 1)), Directory_Operations.DOS); else return Value (1 .. Integer (Size_Value - 1)); end if; end Query_Value; --------------- -- Set_Value -- --------------- procedure Set_Value (From_Key : HKEY; Sub_Key : String; Value : String; Expand : Boolean := False) is C_Sub_Key : constant String := Sub_Key & ASCII.NUL; C_Value : constant String := Value & ASCII.NUL; Value_Type : DWORD; Result : LONG; begin Value_Type := (if Expand then REG_EXPAND_SZ else REG_SZ); Result := RegSetValueEx (From_Key, C_Sub_Key (C_Sub_Key'First)'Address, 0, Value_Type, C_Value (C_Value'First)'Address, C_Value'Length); Check_Result (Result, "Set_Value " & Sub_Key & " key"); end Set_Value; --------------- -- To_C_Mode -- --------------- function To_C_Mode (Mode : Key_Mode) return REGSAM is use type REGSAM; KEY_READ : constant := 16#20019#; KEY_WRITE : constant := 16#20006#; KEY_WOW64_64KEY : constant := 16#00100#; KEY_WOW64_32KEY : constant := 16#00200#; begin case Mode is when Read_Only => return KEY_READ + KEY_WOW64_32KEY; when Read_Write => return KEY_READ + KEY_WRITE + KEY_WOW64_32KEY; when Read_Only_64 => return KEY_READ + KEY_WOW64_64KEY; when Read_Write_64 => return KEY_READ + KEY_WRITE + KEY_WOW64_64KEY; end case; end To_C_Mode; end GNAT.Registry;
<?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>rgb2yuv</name> <ret_bitwidth>32</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>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>RAM</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>0</direction> <if_type>1</if_type> <array_size>2457600</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>RAM</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>0</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="_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>RAM</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>0</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="_4"> <Value> <Obj> <type>1</type> <id>4</id> <name>in_width_read</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>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>in_height_read</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>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>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>RAM</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>RAM</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>RAM</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> </ports> <nodes class_id="8" tracking_level="0" version="0"> <count>90</count> <item_version>0</item_version> <item class_id="9" tracking_level="1" version="0" object_id="_9"> <Value> <Obj> <type>0</type> <id>9</id> <name>in_height_read11</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> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>110</item> <item>111</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_10"> <Value> <Obj> <type>0</type> <id>10</id> <name>in_width_read_3</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> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>112</item> <item>113</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_11"> <Value> <Obj> <type>0</type> <id>11</id> <name>cast</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>1</count> <item_version>0</item_version> <item>114</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_12"> <Value> <Obj> <type>0</type> <id>12</id> <name>cast1</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>1</count> <item_version>0</item_version> <item>115</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_13"> <Value> <Obj> <type>0</type> <id>13</id> <name>bound</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>116</item> <item>117</item> </oprand_edges> <opcode>mul</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_14"> <Value> <Obj> <type>0</type> <id>14</id> <name></name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>rgb2yuv</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item class_id="11" tracking_level="0" version="0"> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</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>yuv_filter.c</first> <second>rgb2yuv</second> </first> <second>49</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>118</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_15"> <Value> <Obj> <type>0</type> <id>16</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>120</item> <item>121</item> <item>122</item> <item>123</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>17</id> <name>x</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>54</lineNumber> <contextFuncName>rgb2yuv</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>rgb2yuv</second> </first> <second>54</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>125</item> <item>126</item> <item>127</item> <item>128</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_17"> <Value> <Obj> <type>0</type> <id>18</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>129</item> <item>130</item> <item>131</item> <item>132</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_18"> <Value> <Obj> <type>0</type> <id>19</id> <name>exitcond_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>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>133</item> <item>134</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_19"> <Value> <Obj> <type>0</type> <id>20</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>135</item> <item>137</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_20"> <Value> <Obj> <type>0</type> <id>21</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>138</item> <item>139</item> <item>140</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_21"> <Value> <Obj> <type>0</type> <id>23</id> <name>x_3</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>rgb2yuv</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>rgb2yuv</second> </first> <second>49</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>142</item> <item>143</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_22"> <Value> <Obj> <type>0</type> <id>26</id> <name>exitcond9</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>52</lineNumber> <contextFuncName>rgb2yuv</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>rgb2yuv</second> </first> <second>52</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>144</item> <item>145</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>27</id> <name>y_mid2</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>52</lineNumber> <contextFuncName>rgb2yuv</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>rgb2yuv</second> </first> <second>52</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>146</item> <item>147</item> <item>148</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>28</id> <name>tmp_mid2_v</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>54</lineNumber> <contextFuncName>rgb2yuv</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>rgb2yuv</second> </first> <second>54</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>149</item> <item>150</item> <item>151</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_25"> <Value> <Obj> <type>0</type> <id>29</id> <name>tmp</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>54</lineNumber> <contextFuncName>rgb2yuv</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>rgb2yuv</second> </first> <second>54</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>152</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_26"> <Value> <Obj> <type>0</type> <id>30</id> <name>p_shl_cast</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>54</lineNumber> <contextFuncName>rgb2yuv</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>rgb2yuv</second> </first> <second>54</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>154</item> <item>155</item> <item>157</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_27"> <Value> <Obj> <type>0</type> <id>31</id> <name>tmp_21</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>54</lineNumber> <contextFuncName>rgb2yuv</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>rgb2yuv</second> </first> <second>54</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>158</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_28"> <Value> <Obj> <type>0</type> <id>32</id> <name>p_shl7_cast</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>54</lineNumber> <contextFuncName>rgb2yuv</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>rgb2yuv</second> </first> <second>54</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>160</item> <item>161</item> <item>163</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_29"> <Value> <Obj> <type>0</type> <id>33</id> <name>tmp_s</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>54</lineNumber> <contextFuncName>rgb2yuv</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>rgb2yuv</second> </first> <second>54</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>164</item> <item>165</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_30"> <Value> <Obj> <type>0</type> <id>37</id> <name>tmp_cast</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>54</lineNumber> <contextFuncName>rgb2yuv</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>rgb2yuv</second> </first> <second>54</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>166</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_31"> <Value> <Obj> <type>0</type> <id>38</id> <name>tmp_20</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>54</lineNumber> <contextFuncName>rgb2yuv</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>rgb2yuv</second> </first> <second>54</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>167</item> <item>168</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_32"> <Value> <Obj> <type>0</type> <id>39</id> <name>tmp_42_cast</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>54</lineNumber> <contextFuncName>rgb2yuv</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>rgb2yuv</second> </first> <second>54</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>169</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_33"> <Value> <Obj> <type>0</type> <id>40</id> <name>in_channels_ch1_addr</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>54</lineNumber> <contextFuncName>rgb2yuv</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>rgb2yuv</second> </first> <second>54</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>170</item> <item>172</item> <item>173</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_34"> <Value> <Obj> <type>0</type> <id>41</id> <name>in_channels_ch2_addr</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>55</lineNumber> <contextFuncName>rgb2yuv</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>rgb2yuv</second> </first> <second>55</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>174</item> <item>175</item> <item>176</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_35"> <Value> <Obj> <type>0</type> <id>42</id> <name>in_channels_ch3_addr</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>56</lineNumber> <contextFuncName>rgb2yuv</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>rgb2yuv</second> </first> <second>56</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>177</item> <item>178</item> <item>179</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_36"> <Value> <Obj> <type>0</type> <id>43</id> <name>out_channels_ch1_add</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>60</lineNumber> <contextFuncName>rgb2yuv</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>rgb2yuv</second> </first> <second>60</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>181</item> <item>182</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>44</id> <name>out_channels_ch2_add</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>61</lineNumber> <contextFuncName>rgb2yuv</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>rgb2yuv</second> </first> <second>61</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>183</item> <item>184</item> <item>185</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>45</id> <name>out_channels_ch3_add</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>62</lineNumber> <contextFuncName>rgb2yuv</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>rgb2yuv</second> </first> <second>62</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>186</item> <item>187</item> <item>188</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>46</id> <name>R</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>54</lineNumber> <contextFuncName>rgb2yuv</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>rgb2yuv</second> </first> <second>54</second> </item> </second> </item> </inlineStackInfo> <originalName>R</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>189</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_40"> <Value> <Obj> <type>0</type> <id>47</id> <name>G</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>55</lineNumber> <contextFuncName>rgb2yuv</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>rgb2yuv</second> </first> <second>55</second> </item> </second> </item> </inlineStackInfo> <originalName>G</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>190</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_41"> <Value> <Obj> <type>0</type> <id>48</id> <name>B</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>56</lineNumber> <contextFuncName>rgb2yuv</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>rgb2yuv</second> </first> <second>56</second> </item> </second> </item> </inlineStackInfo> <originalName>B</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>191</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_42"> <Value> <Obj> <type>0</type> <id>49</id> <name>tmp_40_cast1</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>57</lineNumber> <contextFuncName>rgb2yuv</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>rgb2yuv</second> </first> <second>57</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>192</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_43"> <Value> <Obj> <type>0</type> <id>50</id> <name>tmp_40_cast2</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>57</lineNumber> <contextFuncName>rgb2yuv</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>rgb2yuv</second> </first> <second>57</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>193</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>51</id> <name>p_shl5</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>57</lineNumber> <contextFuncName>rgb2yuv</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>rgb2yuv</second> </first> <second>57</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>195</item> <item>196</item> <item>198</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_45"> <Value> <Obj> <type>0</type> <id>52</id> <name>p_shl5_cast</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>57</lineNumber> <contextFuncName>rgb2yuv</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>rgb2yuv</second> </first> <second>57</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>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_46"> <Value> <Obj> <type>0</type> <id>53</id> <name>p_shl6</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>57</lineNumber> <contextFuncName>rgb2yuv</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>rgb2yuv</second> </first> <second>57</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>201</item> <item>202</item> <item>204</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_47"> <Value> <Obj> <type>0</type> <id>54</id> <name>p_shl6_cast</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>57</lineNumber> <contextFuncName>rgb2yuv</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>rgb2yuv</second> </first> <second>57</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>205</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_48"> <Value> <Obj> <type>0</type> <id>55</id> <name>tmp_42_cast1</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>57</lineNumber> <contextFuncName>rgb2yuv</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>rgb2yuv</second> </first> <second>57</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>206</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_49"> <Value> <Obj> <type>0</type> <id>56</id> <name>tmp_42_cast2</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>57</lineNumber> <contextFuncName>rgb2yuv</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>rgb2yuv</second> </first> <second>57</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>207</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_50"> <Value> <Obj> <type>0</type> <id>57</id> <name>p_shl4</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>57</lineNumber> <contextFuncName>rgb2yuv</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>rgb2yuv</second> </first> <second>57</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>15</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>209</item> <item>210</item> <item>212</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_51"> <Value> <Obj> <type>0</type> <id>58</id> <name>p_shl4_cast</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>57</lineNumber> <contextFuncName>rgb2yuv</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>rgb2yuv</second> </first> <second>57</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>213</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_52"> <Value> <Obj> <type>0</type> <id>59</id> <name>tmp_44_cast1</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>57</lineNumber> <contextFuncName>rgb2yuv</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>rgb2yuv</second> </first> <second>57</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>214</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_53"> <Value> <Obj> <type>0</type> <id>60</id> <name>tmp_22</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>57</lineNumber> <contextFuncName>rgb2yuv</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>rgb2yuv</second> </first> <second>57</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>13</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>216</item> <item>217</item> </oprand_edges> <opcode>mul</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_54"> <Value> <Obj> <type>0</type> <id>61</id> <name>tmp2</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>57</lineNumber> <contextFuncName>rgb2yuv</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>rgb2yuv</second> </first> <second>57</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>218</item> <item>219</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>62</id> <name>tmp2_cast</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>57</lineNumber> <contextFuncName>rgb2yuv</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>rgb2yuv</second> </first> <second>57</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>220</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_56"> <Value> <Obj> <type>0</type> <id>63</id> <name>tmp1</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>57</lineNumber> <contextFuncName>rgb2yuv</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>rgb2yuv</second> </first> <second>57</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>221</item> <item>222</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_57"> <Value> <Obj> <type>0</type> <id>64</id> <name>tmp4</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>57</lineNumber> <contextFuncName>rgb2yuv</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>rgb2yuv</second> </first> <second>57</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>224</item> <item>225</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_58"> <Value> <Obj> <type>0</type> <id>65</id> <name>tmp4_cast</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>57</lineNumber> <contextFuncName>rgb2yuv</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>rgb2yuv</second> </first> <second>57</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>226</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_59"> <Value> <Obj> <type>0</type> <id>66</id> <name>tmp3</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>57</lineNumber> <contextFuncName>rgb2yuv</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>rgb2yuv</second> </first> <second>57</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>13</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> </item> <item class_id_reference="9" object_id="_60"> <Value> <Obj> <type>0</type> <id>67</id> <name>tmp3_cast</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>57</lineNumber> <contextFuncName>rgb2yuv</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>rgb2yuv</second> </first> <second>57</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>229</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_61"> <Value> <Obj> <type>0</type> <id>68</id> <name>tmp_23</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>57</lineNumber> <contextFuncName>rgb2yuv</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>rgb2yuv</second> </first> <second>57</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>230</item> <item>231</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_62"> <Value> <Obj> <type>0</type> <id>69</id> <name>tmp_24</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>57</lineNumber> <contextFuncName>rgb2yuv</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>rgb2yuv</second> </first> <second>57</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>233</item> <item>234</item> <item>236</item> <item>238</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_63"> <Value> <Obj> <type>0</type> <id>70</id> <name>Y</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>57</lineNumber> <contextFuncName>rgb2yuv</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>rgb2yuv</second> </first> <second>57</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>240</item> <item>241</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_64"> <Value> <Obj> <type>0</type> <id>71</id> <name>tmp_25</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>58</lineNumber> <contextFuncName>rgb2yuv</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>rgb2yuv</second> </first> <second>58</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>243</item> <item>244</item> </oprand_edges> <opcode>mul</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_65"> <Value> <Obj> <type>0</type> <id>72</id> <name>tmp_51_cast</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>58</lineNumber> <contextFuncName>rgb2yuv</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>rgb2yuv</second> </first> <second>58</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>245</item> </oprand_edges> <opcode>sext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_66"> <Value> <Obj> <type>0</type> <id>73</id> <name>tmp_26</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>58</lineNumber> <contextFuncName>rgb2yuv</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>rgb2yuv</second> </first> <second>58</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>247</item> <item>248</item> </oprand_edges> <opcode>mul</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_67"> <Value> <Obj> <type>0</type> <id>74</id> <name>p_shl2</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>58</lineNumber> <contextFuncName>rgb2yuv</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>rgb2yuv</second> </first> <second>58</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>15</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>249</item> <item>250</item> <item>251</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_68"> <Value> <Obj> <type>0</type> <id>75</id> <name>p_shl2_cast</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>58</lineNumber> <contextFuncName>rgb2yuv</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>rgb2yuv</second> </first> <second>58</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>252</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_69"> <Value> <Obj> <type>0</type> <id>76</id> <name>p_shl3</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>58</lineNumber> <contextFuncName>rgb2yuv</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>rgb2yuv</second> </first> <second>58</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>12</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>254</item> <item>255</item> <item>257</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_70"> <Value> <Obj> <type>0</type> <id>77</id> <name>p_shl3_cast9</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>58</lineNumber> <contextFuncName>rgb2yuv</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>rgb2yuv</second> </first> <second>58</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>258</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_71"> <Value> <Obj> <type>0</type> <id>78</id> <name>p_shl3_cast</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>58</lineNumber> <contextFuncName>rgb2yuv</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>rgb2yuv</second> </first> <second>58</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>259</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_72"> <Value> <Obj> <type>0</type> <id>79</id> <name>tmp_27</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>58</lineNumber> <contextFuncName>rgb2yuv</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>rgb2yuv</second> </first> <second>58</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>260</item> <item>261</item> </oprand_edges> <opcode>sub</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_73"> <Value> <Obj> <type>0</type> <id>80</id> <name>tmp5</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>58</lineNumber> <contextFuncName>rgb2yuv</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>rgb2yuv</second> </first> <second>58</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>262</item> <item>263</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_74"> <Value> <Obj> <type>0</type> <id>81</id> <name>tmp6</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>58</lineNumber> <contextFuncName>rgb2yuv</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>rgb2yuv</second> </first> <second>58</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>265</item> <item>266</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_75"> <Value> <Obj> <type>0</type> <id>82</id> <name>tmp_28</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>58</lineNumber> <contextFuncName>rgb2yuv</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>rgb2yuv</second> </first> <second>58</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>267</item> <item>268</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_76"> <Value> <Obj> <type>0</type> <id>83</id> <name>tmp_29</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>58</lineNumber> <contextFuncName>rgb2yuv</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>rgb2yuv</second> </first> <second>58</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>269</item> <item>270</item> <item>271</item> <item>272</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_77"> <Value> <Obj> <type>0</type> <id>84</id> <name>U</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>58</lineNumber> <contextFuncName>rgb2yuv</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>rgb2yuv</second> </first> <second>58</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>273</item> <item>275</item> </oprand_edges> <opcode>xor</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_78"> <Value> <Obj> <type>0</type> <id>85</id> <name>tmp_30</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>59</lineNumber> <contextFuncName>rgb2yuv</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>rgb2yuv</second> </first> <second>59</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>277</item> <item>278</item> </oprand_edges> <opcode>mul</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_79"> <Value> <Obj> <type>0</type> <id>86</id> <name>tmp_31</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>59</lineNumber> <contextFuncName>rgb2yuv</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>rgb2yuv</second> </first> <second>59</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>280</item> <item>281</item> </oprand_edges> <opcode>mul</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_80"> <Value> <Obj> <type>0</type> <id>87</id> <name>p_neg</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>58</lineNumber> <contextFuncName>rgb2yuv</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>rgb2yuv</second> </first> <second>58</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>13</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>283</item> <item>284</item> </oprand_edges> <opcode>sub</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_81"> <Value> <Obj> <type>0</type> <id>88</id> <name>p_neg_cast</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>58</lineNumber> <contextFuncName>rgb2yuv</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>rgb2yuv</second> </first> <second>58</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>14</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>285</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>89</id> <name>p_shl1</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>59</lineNumber> <contextFuncName>rgb2yuv</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>rgb2yuv</second> </first> <second>59</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>286</item> <item>287</item> <item>288</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_83"> <Value> <Obj> <type>0</type> <id>90</id> <name>p_shl1_cast</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>59</lineNumber> <contextFuncName>rgb2yuv</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>rgb2yuv</second> </first> <second>59</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>14</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>289</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_84"> <Value> <Obj> <type>0</type> <id>91</id> <name>tmp_32</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>59</lineNumber> <contextFuncName>rgb2yuv</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>rgb2yuv</second> </first> <second>59</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>14</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>290</item> <item>291</item> </oprand_edges> <opcode>sub</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_85"> <Value> <Obj> <type>0</type> <id>92</id> <name>tmp7</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>59</lineNumber> <contextFuncName>rgb2yuv</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>rgb2yuv</second> </first> <second>59</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>292</item> <item>293</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_86"> <Value> <Obj> <type>0</type> <id>93</id> <name>tmp8</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>59</lineNumber> <contextFuncName>rgb2yuv</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>rgb2yuv</second> </first> <second>59</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>14</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>295</item> <item>296</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_87"> <Value> <Obj> <type>0</type> <id>94</id> <name>tmp8_cast</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>59</lineNumber> <contextFuncName>rgb2yuv</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>rgb2yuv</second> </first> <second>59</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>297</item> </oprand_edges> <opcode>sext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_88"> <Value> <Obj> <type>0</type> <id>95</id> <name>tmp_33</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>59</lineNumber> <contextFuncName>rgb2yuv</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>rgb2yuv</second> </first> <second>59</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>298</item> <item>299</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_89"> <Value> <Obj> <type>0</type> <id>96</id> <name>tmp_34</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>59</lineNumber> <contextFuncName>rgb2yuv</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>rgb2yuv</second> </first> <second>59</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>300</item> <item>301</item> <item>302</item> <item>303</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_90"> <Value> <Obj> <type>0</type> <id>97</id> <name>V</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>59</lineNumber> <contextFuncName>rgb2yuv</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>rgb2yuv</second> </first> <second>59</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>304</item> <item>305</item> </oprand_edges> <opcode>xor</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_91"> <Value> <Obj> <type>0</type> <id>98</id> <name></name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>60</lineNumber> <contextFuncName>rgb2yuv</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>rgb2yuv</second> </first> <second>60</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>306</item> <item>307</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>99</id> <name></name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>61</lineNumber> <contextFuncName>rgb2yuv</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>rgb2yuv</second> </first> <second>61</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> </item> <item class_id_reference="9" object_id="_93"> <Value> <Obj> <type>0</type> <id>100</id> <name></name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>62</lineNumber> <contextFuncName>rgb2yuv</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>rgb2yuv</second> </first> <second>62</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>310</item> <item>311</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>102</id> <name>y_3</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>52</lineNumber> <contextFuncName>rgb2yuv</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>rgb2yuv</second> </first> <second>52</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>312</item> <item>313</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>103</id> <name></name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>52</lineNumber> <contextFuncName>rgb2yuv</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>rgb2yuv</second> </first> <second>52</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>314</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>105</id> <name>mrv</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>65</lineNumber> <contextFuncName>rgb2yuv</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>rgb2yuv</second> </first> <second>65</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>316</item> <item>317</item> </oprand_edges> <opcode>insertvalue</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_97"> <Value> <Obj> <type>0</type> <id>106</id> <name>mrv_1</name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>65</lineNumber> <contextFuncName>rgb2yuv</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>rgb2yuv</second> </first> <second>65</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>318</item> <item>319</item> </oprand_edges> <opcode>insertvalue</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_98"> <Value> <Obj> <type>0</type> <id>107</id> <name></name> <fileName>yuv_filter.c</fileName> <fileDirectory>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab2</fileDirectory> <lineNumber>65</lineNumber> <contextFuncName>rgb2yuv</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>rgb2yuv</second> </first> <second>65</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>320</item> </oprand_edges> <opcode>ret</opcode> <m_Display>0</m_Display> </item> </nodes> <consts class_id="15" tracking_level="0" version="0"> <count>25</count> <item_version>0</item_version> <item class_id="16" tracking_level="1" version="0" object_id="_99"> <Value> <Obj> <type>2</type> <id>119</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="_100"> <Value> <Obj> <type>2</type> <id>124</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="_101"> <Value> <Obj> <type>2</type> <id>136</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="_102"> <Value> <Obj> <type>2</type> <id>141</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="_103"> <Value> <Obj> <type>2</type> <id>156</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>10</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>162</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="_105"> <Value> <Obj> <type>2</type> <id>171</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="_106"> <Value> <Obj> <type>2</type> <id>197</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>6</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_107"> <Value> <Obj> <type>2</type> <id>203</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_108"> <Value> <Obj> <type>2</type> <id>211</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>7</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_109"> <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>13</bitwidth> </Value> <const_type>0</const_type> <content>25</content> </item> <item class_id_reference="16" object_id="_110"> <Value> <Obj> <type>2</type> <id>223</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>128</content> </item> <item class_id_reference="16" object_id="_111"> <Value> <Obj> <type>2</type> <id>235</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="_112"> <Value> <Obj> <type>2</type> <id>237</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="_113"> <Value> <Obj> <type>2</type> <id>239</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>16</content> </item> <item class_id_reference="16" object_id="_114"> <Value> <Obj> <type>2</type> <id>242</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>32730</content> </item> <item class_id_reference="16" object_id="_115"> <Value> <Obj> <type>2</type> <id>246</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <const_type>0</const_type> <content>65462</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>4</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_117"> <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>16</bitwidth> </Value> <const_type>0</const_type> <content>128</content> </item> <item class_id_reference="16" object_id="_118"> <Value> <Obj> <type>2</type> <id>274</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="_119"> <Value> <Obj> <type>2</type> <id>276</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>122</content> </item> <item class_id_reference="16" object_id="_120"> <Value> <Obj> <type>2</type> <id>279</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>65442</content> </item> <item class_id_reference="16" object_id="_121"> <Value> <Obj> <type>2</type> <id>282</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>13</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_122"> <Value> <Obj> <type>2</type> <id>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>14</bitwidth> </Value> <const_type>0</const_type> <content>128</content> </item> <item class_id_reference="16" object_id="_123"> <Value> <Obj> <type>2</type> <id>315</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>4</const_type> <content>&lt;Undef not integral&gt;</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="_124"> <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>6</count> <item_version>0</item_version> <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="_125"> <Obj> <type>3</type> <id>22</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>16</item> <item>17</item> <item>18</item> <item>19</item> <item>20</item> <item>21</item> </node_objs> </item> <item class_id_reference="18" object_id="_126"> <Obj> <type>3</type> <id>104</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>75</count> <item_version>0</item_version> <item>23</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>37</item> <item>38</item> <item>39</item> <item>40</item> <item>41</item> <item>42</item> <item>43</item> <item>44</item> <item>45</item> <item>46</item> <item>47</item> <item>48</item> <item>49</item> <item>50</item> <item>51</item> <item>52</item> <item>53</item> <item>54</item> <item>55</item> <item>56</item> <item>57</item> <item>58</item> <item>59</item> <item>60</item> <item>61</item> <item>62</item> <item>63</item> <item>64</item> <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>102</item> <item>103</item> </node_objs> </item> <item class_id_reference="18" object_id="_127"> <Obj> <type>3</type> <id>108</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>3</count> <item_version>0</item_version> <item>105</item> <item>106</item> <item>107</item> </node_objs> </item> </blocks> <edges class_id="19" tracking_level="0" version="0"> <count>170</count> <item_version>0</item_version> <item class_id="20" tracking_level="1" version="0" object_id="_128"> <id>111</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>9</sink_obj> </item> <item class_id_reference="20" object_id="_129"> <id>113</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>10</sink_obj> </item> <item class_id_reference="20" object_id="_130"> <id>114</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>11</sink_obj> </item> <item class_id_reference="20" object_id="_131"> <id>115</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>12</sink_obj> </item> <item class_id_reference="20" object_id="_132"> <id>116</id> <edge_type>1</edge_type> <source_obj>12</source_obj> <sink_obj>13</sink_obj> </item> <item class_id_reference="20" object_id="_133"> <id>117</id> <edge_type>1</edge_type> <source_obj>11</source_obj> <sink_obj>13</sink_obj> </item> <item class_id_reference="20" object_id="_134"> <id>118</id> <edge_type>2</edge_type> <source_obj>22</source_obj> <sink_obj>14</sink_obj> </item> <item class_id_reference="20" object_id="_135"> <id>120</id> <edge_type>1</edge_type> <source_obj>119</source_obj> <sink_obj>16</sink_obj> </item> <item class_id_reference="20" object_id="_136"> <id>121</id> <edge_type>2</edge_type> <source_obj>15</source_obj> <sink_obj>16</sink_obj> </item> <item class_id_reference="20" object_id="_137"> <id>122</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>16</sink_obj> </item> <item class_id_reference="20" object_id="_138"> <id>123</id> <edge_type>2</edge_type> <source_obj>104</source_obj> <sink_obj>16</sink_obj> </item> <item class_id_reference="20" object_id="_139"> <id>125</id> <edge_type>1</edge_type> <source_obj>124</source_obj> <sink_obj>17</sink_obj> </item> <item class_id_reference="20" object_id="_140"> <id>126</id> <edge_type>2</edge_type> <source_obj>15</source_obj> <sink_obj>17</sink_obj> </item> <item class_id_reference="20" object_id="_141"> <id>127</id> <edge_type>1</edge_type> <source_obj>28</source_obj> <sink_obj>17</sink_obj> </item> <item class_id_reference="20" object_id="_142"> <id>128</id> <edge_type>2</edge_type> <source_obj>104</source_obj> <sink_obj>17</sink_obj> </item> <item class_id_reference="20" object_id="_143"> <id>129</id> <edge_type>1</edge_type> <source_obj>124</source_obj> <sink_obj>18</sink_obj> </item> <item class_id_reference="20" object_id="_144"> <id>130</id> <edge_type>2</edge_type> <source_obj>15</source_obj> <sink_obj>18</sink_obj> </item> <item class_id_reference="20" object_id="_145"> <id>131</id> <edge_type>1</edge_type> <source_obj>102</source_obj> <sink_obj>18</sink_obj> </item> <item class_id_reference="20" object_id="_146"> <id>132</id> <edge_type>2</edge_type> <source_obj>104</source_obj> <sink_obj>18</sink_obj> </item> <item class_id_reference="20" object_id="_147"> <id>133</id> <edge_type>1</edge_type> <source_obj>16</source_obj> <sink_obj>19</sink_obj> </item> <item class_id_reference="20" object_id="_148"> <id>134</id> <edge_type>1</edge_type> <source_obj>13</source_obj> <sink_obj>19</sink_obj> </item> <item class_id_reference="20" object_id="_149"> <id>135</id> <edge_type>1</edge_type> <source_obj>16</source_obj> <sink_obj>20</sink_obj> </item> <item class_id_reference="20" object_id="_150"> <id>137</id> <edge_type>1</edge_type> <source_obj>136</source_obj> <sink_obj>20</sink_obj> </item> <item class_id_reference="20" object_id="_151"> <id>138</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>21</sink_obj> </item> <item class_id_reference="20" object_id="_152"> <id>139</id> <edge_type>2</edge_type> <source_obj>104</source_obj> <sink_obj>21</sink_obj> </item> <item class_id_reference="20" object_id="_153"> <id>140</id> <edge_type>2</edge_type> <source_obj>108</source_obj> <sink_obj>21</sink_obj> </item> <item class_id_reference="20" object_id="_154"> <id>142</id> <edge_type>1</edge_type> <source_obj>141</source_obj> <sink_obj>23</sink_obj> </item> <item class_id_reference="20" object_id="_155"> <id>143</id> <edge_type>1</edge_type> <source_obj>17</source_obj> <sink_obj>23</sink_obj> </item> <item class_id_reference="20" object_id="_156"> <id>144</id> <edge_type>1</edge_type> <source_obj>18</source_obj> <sink_obj>26</sink_obj> </item> <item class_id_reference="20" object_id="_157"> <id>145</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>26</sink_obj> </item> <item class_id_reference="20" object_id="_158"> <id>146</id> <edge_type>1</edge_type> <source_obj>26</source_obj> <sink_obj>27</sink_obj> </item> <item class_id_reference="20" object_id="_159"> <id>147</id> <edge_type>1</edge_type> <source_obj>124</source_obj> <sink_obj>27</sink_obj> </item> <item class_id_reference="20" object_id="_160"> <id>148</id> <edge_type>1</edge_type> <source_obj>18</source_obj> <sink_obj>27</sink_obj> </item> <item class_id_reference="20" object_id="_161"> <id>149</id> <edge_type>1</edge_type> <source_obj>26</source_obj> <sink_obj>28</sink_obj> </item> <item class_id_reference="20" object_id="_162"> <id>150</id> <edge_type>1</edge_type> <source_obj>23</source_obj> <sink_obj>28</sink_obj> </item> <item class_id_reference="20" object_id="_163"> <id>151</id> <edge_type>1</edge_type> <source_obj>17</source_obj> <sink_obj>28</sink_obj> </item> <item class_id_reference="20" object_id="_164"> <id>152</id> <edge_type>1</edge_type> <source_obj>28</source_obj> <sink_obj>29</sink_obj> </item> <item class_id_reference="20" object_id="_165"> <id>155</id> <edge_type>1</edge_type> <source_obj>29</source_obj> <sink_obj>30</sink_obj> </item> <item class_id_reference="20" object_id="_166"> <id>157</id> <edge_type>1</edge_type> <source_obj>156</source_obj> <sink_obj>30</sink_obj> </item> <item class_id_reference="20" object_id="_167"> <id>158</id> <edge_type>1</edge_type> <source_obj>28</source_obj> <sink_obj>31</sink_obj> </item> <item class_id_reference="20" object_id="_168"> <id>161</id> <edge_type>1</edge_type> <source_obj>31</source_obj> <sink_obj>32</sink_obj> </item> <item class_id_reference="20" object_id="_169"> <id>163</id> <edge_type>1</edge_type> <source_obj>162</source_obj> <sink_obj>32</sink_obj> </item> <item class_id_reference="20" object_id="_170"> <id>164</id> <edge_type>1</edge_type> <source_obj>30</source_obj> <sink_obj>33</sink_obj> </item> <item class_id_reference="20" object_id="_171"> <id>165</id> <edge_type>1</edge_type> <source_obj>32</source_obj> <sink_obj>33</sink_obj> </item> <item class_id_reference="20" object_id="_172"> <id>166</id> <edge_type>1</edge_type> <source_obj>27</source_obj> <sink_obj>37</sink_obj> </item> <item class_id_reference="20" object_id="_173"> <id>167</id> <edge_type>1</edge_type> <source_obj>37</source_obj> <sink_obj>38</sink_obj> </item> <item class_id_reference="20" object_id="_174"> <id>168</id> <edge_type>1</edge_type> <source_obj>33</source_obj> <sink_obj>38</sink_obj> </item> <item class_id_reference="20" object_id="_175"> <id>169</id> <edge_type>1</edge_type> <source_obj>38</source_obj> <sink_obj>39</sink_obj> </item> <item class_id_reference="20" object_id="_176"> <id>170</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>40</sink_obj> </item> <item class_id_reference="20" object_id="_177"> <id>172</id> <edge_type>1</edge_type> <source_obj>171</source_obj> <sink_obj>40</sink_obj> </item> <item class_id_reference="20" object_id="_178"> <id>173</id> <edge_type>1</edge_type> <source_obj>39</source_obj> <sink_obj>40</sink_obj> </item> <item class_id_reference="20" object_id="_179"> <id>174</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>41</sink_obj> </item> <item class_id_reference="20" object_id="_180"> <id>175</id> <edge_type>1</edge_type> <source_obj>171</source_obj> <sink_obj>41</sink_obj> </item> <item class_id_reference="20" object_id="_181"> <id>176</id> <edge_type>1</edge_type> <source_obj>39</source_obj> <sink_obj>41</sink_obj> </item> <item class_id_reference="20" object_id="_182"> <id>177</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>42</sink_obj> </item> <item class_id_reference="20" object_id="_183"> <id>178</id> <edge_type>1</edge_type> <source_obj>171</source_obj> <sink_obj>42</sink_obj> </item> <item class_id_reference="20" object_id="_184"> <id>179</id> <edge_type>1</edge_type> <source_obj>39</source_obj> <sink_obj>42</sink_obj> </item> <item class_id_reference="20" object_id="_185"> <id>180</id> <edge_type>1</edge_type> <source_obj>6</source_obj> <sink_obj>43</sink_obj> </item> <item class_id_reference="20" object_id="_186"> <id>181</id> <edge_type>1</edge_type> <source_obj>171</source_obj> <sink_obj>43</sink_obj> </item> <item class_id_reference="20" object_id="_187"> <id>182</id> <edge_type>1</edge_type> <source_obj>39</source_obj> <sink_obj>43</sink_obj> </item> <item class_id_reference="20" object_id="_188"> <id>183</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>44</sink_obj> </item> <item class_id_reference="20" object_id="_189"> <id>184</id> <edge_type>1</edge_type> <source_obj>171</source_obj> <sink_obj>44</sink_obj> </item> <item class_id_reference="20" object_id="_190"> <id>185</id> <edge_type>1</edge_type> <source_obj>39</source_obj> <sink_obj>44</sink_obj> </item> <item class_id_reference="20" object_id="_191"> <id>186</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>45</sink_obj> </item> <item class_id_reference="20" object_id="_192"> <id>187</id> <edge_type>1</edge_type> <source_obj>171</source_obj> <sink_obj>45</sink_obj> </item> <item class_id_reference="20" object_id="_193"> <id>188</id> <edge_type>1</edge_type> <source_obj>39</source_obj> <sink_obj>45</sink_obj> </item> <item class_id_reference="20" object_id="_194"> <id>189</id> <edge_type>1</edge_type> <source_obj>40</source_obj> <sink_obj>46</sink_obj> </item> <item class_id_reference="20" object_id="_195"> <id>190</id> <edge_type>1</edge_type> <source_obj>41</source_obj> <sink_obj>47</sink_obj> </item> <item class_id_reference="20" object_id="_196"> <id>191</id> <edge_type>1</edge_type> <source_obj>42</source_obj> <sink_obj>48</sink_obj> </item> <item class_id_reference="20" object_id="_197"> <id>192</id> <edge_type>1</edge_type> <source_obj>46</source_obj> <sink_obj>49</sink_obj> </item> <item class_id_reference="20" object_id="_198"> <id>193</id> <edge_type>1</edge_type> <source_obj>46</source_obj> <sink_obj>50</sink_obj> </item> <item class_id_reference="20" object_id="_199"> <id>196</id> <edge_type>1</edge_type> <source_obj>46</source_obj> <sink_obj>51</sink_obj> </item> <item class_id_reference="20" object_id="_200"> <id>198</id> <edge_type>1</edge_type> <source_obj>197</source_obj> <sink_obj>51</sink_obj> </item> <item class_id_reference="20" object_id="_201"> <id>199</id> <edge_type>1</edge_type> <source_obj>51</source_obj> <sink_obj>52</sink_obj> </item> <item class_id_reference="20" object_id="_202"> <id>202</id> <edge_type>1</edge_type> <source_obj>46</source_obj> <sink_obj>53</sink_obj> </item> <item class_id_reference="20" object_id="_203"> <id>204</id> <edge_type>1</edge_type> <source_obj>203</source_obj> <sink_obj>53</sink_obj> </item> <item class_id_reference="20" object_id="_204"> <id>205</id> <edge_type>1</edge_type> <source_obj>53</source_obj> <sink_obj>54</sink_obj> </item> <item class_id_reference="20" object_id="_205"> <id>206</id> <edge_type>1</edge_type> <source_obj>47</source_obj> <sink_obj>55</sink_obj> </item> <item class_id_reference="20" object_id="_206"> <id>207</id> <edge_type>1</edge_type> <source_obj>47</source_obj> <sink_obj>56</sink_obj> </item> <item class_id_reference="20" object_id="_207"> <id>210</id> <edge_type>1</edge_type> <source_obj>47</source_obj> <sink_obj>57</sink_obj> </item> <item class_id_reference="20" object_id="_208"> <id>212</id> <edge_type>1</edge_type> <source_obj>211</source_obj> <sink_obj>57</sink_obj> </item> <item class_id_reference="20" object_id="_209"> <id>213</id> <edge_type>1</edge_type> <source_obj>57</source_obj> <sink_obj>58</sink_obj> </item> <item class_id_reference="20" object_id="_210"> <id>214</id> <edge_type>1</edge_type> <source_obj>48</source_obj> <sink_obj>59</sink_obj> </item> <item class_id_reference="20" object_id="_211"> <id>216</id> <edge_type>1</edge_type> <source_obj>215</source_obj> <sink_obj>60</sink_obj> </item> <item class_id_reference="20" object_id="_212"> <id>217</id> <edge_type>1</edge_type> <source_obj>59</source_obj> <sink_obj>60</sink_obj> </item> <item class_id_reference="20" object_id="_213"> <id>218</id> <edge_type>1</edge_type> <source_obj>54</source_obj> <sink_obj>61</sink_obj> </item> <item class_id_reference="20" object_id="_214"> <id>219</id> <edge_type>1</edge_type> <source_obj>52</source_obj> <sink_obj>61</sink_obj> </item> <item class_id_reference="20" object_id="_215"> <id>220</id> <edge_type>1</edge_type> <source_obj>61</source_obj> <sink_obj>62</sink_obj> </item> <item class_id_reference="20" object_id="_216"> <id>221</id> <edge_type>1</edge_type> <source_obj>62</source_obj> <sink_obj>63</sink_obj> </item> <item class_id_reference="20" object_id="_217"> <id>222</id> <edge_type>1</edge_type> <source_obj>58</source_obj> <sink_obj>63</sink_obj> </item> <item class_id_reference="20" object_id="_218"> <id>224</id> <edge_type>1</edge_type> <source_obj>223</source_obj> <sink_obj>64</sink_obj> </item> <item class_id_reference="20" object_id="_219"> <id>225</id> <edge_type>1</edge_type> <source_obj>56</source_obj> <sink_obj>64</sink_obj> </item> <item class_id_reference="20" object_id="_220"> <id>226</id> <edge_type>1</edge_type> <source_obj>64</source_obj> <sink_obj>65</sink_obj> </item> <item class_id_reference="20" object_id="_221"> <id>227</id> <edge_type>1</edge_type> <source_obj>65</source_obj> <sink_obj>66</sink_obj> </item> <item class_id_reference="20" object_id="_222"> <id>228</id> <edge_type>1</edge_type> <source_obj>60</source_obj> <sink_obj>66</sink_obj> </item> <item class_id_reference="20" object_id="_223"> <id>229</id> <edge_type>1</edge_type> <source_obj>66</source_obj> <sink_obj>67</sink_obj> </item> <item class_id_reference="20" object_id="_224"> <id>230</id> <edge_type>1</edge_type> <source_obj>67</source_obj> <sink_obj>68</sink_obj> </item> <item class_id_reference="20" object_id="_225"> <id>231</id> <edge_type>1</edge_type> <source_obj>63</source_obj> <sink_obj>68</sink_obj> </item> <item class_id_reference="20" object_id="_226"> <id>234</id> <edge_type>1</edge_type> <source_obj>68</source_obj> <sink_obj>69</sink_obj> </item> <item class_id_reference="20" object_id="_227"> <id>236</id> <edge_type>1</edge_type> <source_obj>235</source_obj> <sink_obj>69</sink_obj> </item> <item class_id_reference="20" object_id="_228"> <id>238</id> <edge_type>1</edge_type> <source_obj>237</source_obj> <sink_obj>69</sink_obj> </item> <item class_id_reference="20" object_id="_229"> <id>240</id> <edge_type>1</edge_type> <source_obj>239</source_obj> <sink_obj>70</sink_obj> </item> <item class_id_reference="20" object_id="_230"> <id>241</id> <edge_type>1</edge_type> <source_obj>69</source_obj> <sink_obj>70</sink_obj> </item> <item class_id_reference="20" object_id="_231"> <id>243</id> <edge_type>1</edge_type> <source_obj>242</source_obj> <sink_obj>71</sink_obj> </item> <item class_id_reference="20" object_id="_232"> <id>244</id> <edge_type>1</edge_type> <source_obj>50</source_obj> <sink_obj>71</sink_obj> </item> <item class_id_reference="20" object_id="_233"> <id>245</id> <edge_type>1</edge_type> <source_obj>71</source_obj> <sink_obj>72</sink_obj> </item> <item class_id_reference="20" object_id="_234"> <id>247</id> <edge_type>1</edge_type> <source_obj>246</source_obj> <sink_obj>73</sink_obj> </item> <item class_id_reference="20" object_id="_235"> <id>248</id> <edge_type>1</edge_type> <source_obj>55</source_obj> <sink_obj>73</sink_obj> </item> <item class_id_reference="20" object_id="_236"> <id>250</id> <edge_type>1</edge_type> <source_obj>48</source_obj> <sink_obj>74</sink_obj> </item> <item class_id_reference="20" object_id="_237"> <id>251</id> <edge_type>1</edge_type> <source_obj>211</source_obj> <sink_obj>74</sink_obj> </item> <item class_id_reference="20" object_id="_238"> <id>252</id> <edge_type>1</edge_type> <source_obj>74</source_obj> <sink_obj>75</sink_obj> </item> <item class_id_reference="20" object_id="_239"> <id>255</id> <edge_type>1</edge_type> <source_obj>48</source_obj> <sink_obj>76</sink_obj> </item> <item class_id_reference="20" object_id="_240"> <id>257</id> <edge_type>1</edge_type> <source_obj>256</source_obj> <sink_obj>76</sink_obj> </item> <item class_id_reference="20" object_id="_241"> <id>258</id> <edge_type>1</edge_type> <source_obj>76</source_obj> <sink_obj>77</sink_obj> </item> <item class_id_reference="20" object_id="_242"> <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="_243"> <id>260</id> <edge_type>1</edge_type> <source_obj>75</source_obj> <sink_obj>79</sink_obj> </item> <item class_id_reference="20" object_id="_244"> <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="_245"> <id>262</id> <edge_type>1</edge_type> <source_obj>72</source_obj> <sink_obj>80</sink_obj> </item> <item class_id_reference="20" object_id="_246"> <id>263</id> <edge_type>1</edge_type> <source_obj>73</source_obj> <sink_obj>80</sink_obj> </item> <item class_id_reference="20" object_id="_247"> <id>265</id> <edge_type>1</edge_type> <source_obj>264</source_obj> <sink_obj>81</sink_obj> </item> <item class_id_reference="20" object_id="_248"> <id>266</id> <edge_type>1</edge_type> <source_obj>79</source_obj> <sink_obj>81</sink_obj> </item> <item class_id_reference="20" object_id="_249"> <id>267</id> <edge_type>1</edge_type> <source_obj>81</source_obj> <sink_obj>82</sink_obj> </item> <item class_id_reference="20" object_id="_250"> <id>268</id> <edge_type>1</edge_type> <source_obj>80</source_obj> <sink_obj>82</sink_obj> </item> <item class_id_reference="20" object_id="_251"> <id>270</id> <edge_type>1</edge_type> <source_obj>82</source_obj> <sink_obj>83</sink_obj> </item> <item class_id_reference="20" object_id="_252"> <id>271</id> <edge_type>1</edge_type> <source_obj>235</source_obj> <sink_obj>83</sink_obj> </item> <item class_id_reference="20" object_id="_253"> <id>272</id> <edge_type>1</edge_type> <source_obj>237</source_obj> <sink_obj>83</sink_obj> </item> <item class_id_reference="20" object_id="_254"> <id>273</id> <edge_type>1</edge_type> <source_obj>83</source_obj> <sink_obj>84</sink_obj> </item> <item class_id_reference="20" object_id="_255"> <id>275</id> <edge_type>1</edge_type> <source_obj>274</source_obj> <sink_obj>84</sink_obj> </item> <item class_id_reference="20" object_id="_256"> <id>277</id> <edge_type>1</edge_type> <source_obj>276</source_obj> <sink_obj>85</sink_obj> </item> <item class_id_reference="20" object_id="_257"> <id>278</id> <edge_type>1</edge_type> <source_obj>49</source_obj> <sink_obj>85</sink_obj> </item> <item class_id_reference="20" object_id="_258"> <id>280</id> <edge_type>1</edge_type> <source_obj>279</source_obj> <sink_obj>86</sink_obj> </item> <item class_id_reference="20" object_id="_259"> <id>281</id> <edge_type>1</edge_type> <source_obj>55</source_obj> <sink_obj>86</sink_obj> </item> <item class_id_reference="20" object_id="_260"> <id>283</id> <edge_type>1</edge_type> <source_obj>282</source_obj> <sink_obj>87</sink_obj> </item> <item class_id_reference="20" object_id="_261"> <id>284</id> <edge_type>1</edge_type> <source_obj>77</source_obj> <sink_obj>87</sink_obj> </item> <item class_id_reference="20" object_id="_262"> <id>285</id> <edge_type>1</edge_type> <source_obj>87</source_obj> <sink_obj>88</sink_obj> </item> <item class_id_reference="20" object_id="_263"> <id>287</id> <edge_type>1</edge_type> <source_obj>48</source_obj> <sink_obj>89</sink_obj> </item> <item class_id_reference="20" object_id="_264"> <id>288</id> <edge_type>1</edge_type> <source_obj>203</source_obj> <sink_obj>89</sink_obj> </item> <item class_id_reference="20" object_id="_265"> <id>289</id> <edge_type>1</edge_type> <source_obj>89</source_obj> <sink_obj>90</sink_obj> </item> <item class_id_reference="20" object_id="_266"> <id>290</id> <edge_type>1</edge_type> <source_obj>88</source_obj> <sink_obj>91</sink_obj> </item> <item class_id_reference="20" object_id="_267"> <id>291</id> <edge_type>1</edge_type> <source_obj>90</source_obj> <sink_obj>91</sink_obj> </item> <item class_id_reference="20" object_id="_268"> <id>292</id> <edge_type>1</edge_type> <source_obj>85</source_obj> <sink_obj>92</sink_obj> </item> <item class_id_reference="20" object_id="_269"> <id>293</id> <edge_type>1</edge_type> <source_obj>86</source_obj> <sink_obj>92</sink_obj> </item> <item class_id_reference="20" object_id="_270"> <id>295</id> <edge_type>1</edge_type> <source_obj>294</source_obj> <sink_obj>93</sink_obj> </item> <item class_id_reference="20" object_id="_271"> <id>296</id> <edge_type>1</edge_type> <source_obj>91</source_obj> <sink_obj>93</sink_obj> </item> <item class_id_reference="20" object_id="_272"> <id>297</id> <edge_type>1</edge_type> <source_obj>93</source_obj> <sink_obj>94</sink_obj> </item> <item class_id_reference="20" object_id="_273"> <id>298</id> <edge_type>1</edge_type> <source_obj>94</source_obj> <sink_obj>95</sink_obj> </item> <item class_id_reference="20" object_id="_274"> <id>299</id> <edge_type>1</edge_type> <source_obj>92</source_obj> <sink_obj>95</sink_obj> </item> <item class_id_reference="20" object_id="_275"> <id>301</id> <edge_type>1</edge_type> <source_obj>95</source_obj> <sink_obj>96</sink_obj> </item> <item class_id_reference="20" object_id="_276"> <id>302</id> <edge_type>1</edge_type> <source_obj>235</source_obj> <sink_obj>96</sink_obj> </item> <item class_id_reference="20" object_id="_277"> <id>303</id> <edge_type>1</edge_type> <source_obj>237</source_obj> <sink_obj>96</sink_obj> </item> <item class_id_reference="20" object_id="_278"> <id>304</id> <edge_type>1</edge_type> <source_obj>96</source_obj> <sink_obj>97</sink_obj> </item> <item class_id_reference="20" object_id="_279"> <id>305</id> <edge_type>1</edge_type> <source_obj>274</source_obj> <sink_obj>97</sink_obj> </item> <item class_id_reference="20" object_id="_280"> <id>306</id> <edge_type>1</edge_type> <source_obj>70</source_obj> <sink_obj>98</sink_obj> </item> <item class_id_reference="20" object_id="_281"> <id>307</id> <edge_type>1</edge_type> <source_obj>43</source_obj> <sink_obj>98</sink_obj> </item> <item class_id_reference="20" object_id="_282"> <id>308</id> <edge_type>1</edge_type> <source_obj>84</source_obj> <sink_obj>99</sink_obj> </item> <item class_id_reference="20" object_id="_283"> <id>309</id> <edge_type>1</edge_type> <source_obj>44</source_obj> <sink_obj>99</sink_obj> </item> <item class_id_reference="20" object_id="_284"> <id>310</id> <edge_type>1</edge_type> <source_obj>97</source_obj> <sink_obj>100</sink_obj> </item> <item class_id_reference="20" object_id="_285"> <id>311</id> <edge_type>1</edge_type> <source_obj>45</source_obj> <sink_obj>100</sink_obj> </item> <item class_id_reference="20" object_id="_286"> <id>312</id> <edge_type>1</edge_type> <source_obj>141</source_obj> <sink_obj>102</sink_obj> </item> <item class_id_reference="20" object_id="_287"> <id>313</id> <edge_type>1</edge_type> <source_obj>27</source_obj> <sink_obj>102</sink_obj> </item> <item class_id_reference="20" object_id="_288"> <id>314</id> <edge_type>2</edge_type> <source_obj>22</source_obj> <sink_obj>103</sink_obj> </item> <item class_id_reference="20" object_id="_289"> <id>316</id> <edge_type>1</edge_type> <source_obj>315</source_obj> <sink_obj>105</sink_obj> </item> <item class_id_reference="20" object_id="_290"> <id>317</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>105</sink_obj> </item> <item class_id_reference="20" object_id="_291"> <id>318</id> <edge_type>1</edge_type> <source_obj>105</source_obj> <sink_obj>106</sink_obj> </item> <item class_id_reference="20" object_id="_292"> <id>319</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>106</sink_obj> </item> <item class_id_reference="20" object_id="_293"> <id>320</id> <edge_type>1</edge_type> <source_obj>106</source_obj> <sink_obj>107</sink_obj> </item> <item class_id_reference="20" object_id="_294"> <id>352</id> <edge_type>2</edge_type> <source_obj>15</source_obj> <sink_obj>22</sink_obj> </item> <item class_id_reference="20" object_id="_295"> <id>353</id> <edge_type>2</edge_type> <source_obj>22</source_obj> <sink_obj>108</sink_obj> </item> <item class_id_reference="20" object_id="_296"> <id>354</id> <edge_type>2</edge_type> <source_obj>22</source_obj> <sink_obj>104</sink_obj> </item> <item class_id_reference="20" object_id="_297"> <id>355</id> <edge_type>2</edge_type> <source_obj>104</source_obj> <sink_obj>22</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="_298"> <mId>1</mId> <mTag>rgb2yuv</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>2457612</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_299"> <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>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_300"> <mId>3</mId> <mTag>RGB2YUV_LOOP_X_RGB2YUV_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>22</item> <item>104</item> </basic_blocks> <mII>1</mII> <mDepth>12</mDepth> <mMinTripCount>40000</mMinTripCount> <mMaxTripCount>2457600</mMaxTripCount> <mMinLatency>2457610</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_301"> <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>108</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="24" tracking_level="1" version="0" object_id="_302"> <states class_id="25" tracking_level="0" version="0"> <count>14</count> <item_version>0</item_version> <item class_id="26" tracking_level="1" version="0" object_id="_303"> <id>1</id> <operations class_id="27" tracking_level="0" version="0"> <count>6</count> <item_version>0</item_version> <item class_id="28" tracking_level="1" version="0" object_id="_304"> <id>9</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_305"> <id>10</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_306"> <id>11</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_307"> <id>12</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_308"> <id>13</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_309"> <id>14</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_310"> <id>2</id> <operations> <count>12</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_311"> <id>16</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_312"> <id>17</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_313"> <id>18</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_314"> <id>19</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_315"> <id>20</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_316"> <id>21</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_317"> <id>23</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_318"> <id>26</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_319"> <id>27</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_320"> <id>28</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_321"> <id>29</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_322"> <id>31</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_323"> <id>3</id> <operations> <count>6</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_324"> <id>30</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_325"> <id>32</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_326"> <id>33</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_327"> <id>37</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_328"> <id>38</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_329"> <id>102</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_330"> <id>4</id> <operations> <count>5</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_331"> <id>39</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_332"> <id>40</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_333"> <id>41</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_334"> <id>46</id> <stage>4</stage> <latency>4</latency> </item> <item class_id_reference="28" object_id="_335"> <id>47</id> <stage>4</stage> <latency>4</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_336"> <id>5</id> <operations> <count>2</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_337"> <id>46</id> <stage>3</stage> <latency>4</latency> </item> <item class_id_reference="28" object_id="_338"> <id>47</id> <stage>3</stage> <latency>4</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_339"> <id>6</id> <operations> <count>4</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_340"> <id>42</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_341"> <id>46</id> <stage>2</stage> <latency>4</latency> </item> <item class_id_reference="28" object_id="_342"> <id>47</id> <stage>2</stage> <latency>4</latency> </item> <item class_id_reference="28" object_id="_343"> <id>48</id> <stage>4</stage> <latency>4</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_344"> <id>7</id> <operations> <count>3</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_345"> <id>46</id> <stage>1</stage> <latency>4</latency> </item> <item class_id_reference="28" object_id="_346"> <id>47</id> <stage>1</stage> <latency>4</latency> </item> <item class_id_reference="28" object_id="_347"> <id>48</id> <stage>3</stage> <latency>4</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_348"> <id>8</id> <operations> <count>5</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_349"> <id>48</id> <stage>2</stage> <latency>4</latency> </item> <item class_id_reference="28" object_id="_350"> <id>49</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_351"> <id>55</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_352"> <id>73</id> <stage>3</stage> <latency>3</latency> </item> <item class_id_reference="28" object_id="_353"> <id>85</id> <stage>3</stage> <latency>3</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_354"> <id>9</id> <operations> <count>5</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_355"> <id>48</id> <stage>1</stage> <latency>4</latency> </item> <item class_id_reference="28" object_id="_356"> <id>56</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_357"> <id>64</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_358"> <id>73</id> <stage>2</stage> <latency>3</latency> </item> <item class_id_reference="28" object_id="_359"> <id>85</id> <stage>2</stage> <latency>3</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_360"> <id>10</id> <operations> <count>30</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_361"> <id>51</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_362"> <id>52</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_363"> <id>53</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_364"> <id>54</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_365"> <id>57</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_366"> <id>58</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_367"> <id>59</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_368"> <id>60</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_369"> <id>61</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_370"> <id>62</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_371"> <id>63</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_372"> <id>65</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_373"> <id>66</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_374"> <id>67</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_375"> <id>68</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_376"> <id>69</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_377"> <id>73</id> <stage>1</stage> <latency>3</latency> </item> <item class_id_reference="28" object_id="_378"> <id>74</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_379"> <id>75</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_380"> <id>76</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_381"> <id>77</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_382"> <id>78</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_383"> <id>79</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_384"> <id>85</id> <stage>1</stage> <latency>3</latency> </item> <item class_id_reference="28" object_id="_385"> <id>87</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_386"> <id>88</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_387"> <id>89</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_388"> <id>90</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_389"> <id>91</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_390"> <id>93</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_391"> <id>11</id> <operations> <count>15</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_392"> <id>43</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_393"> <id>50</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_394"> <id>70</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_395"> <id>71</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_396"> <id>72</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_397"> <id>80</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_398"> <id>81</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_399"> <id>82</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_400"> <id>83</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_401"> <id>86</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_402"> <id>92</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_403"> <id>94</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_404"> <id>95</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_405"> <id>96</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_406"> <id>98</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_407"> <id>12</id> <operations> <count>7</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_408"> <id>44</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_409"> <id>45</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_410"> <id>84</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_411"> <id>97</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_412"> <id>98</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_413"> <id>99</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_414"> <id>100</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_415"> <id>13</id> <operations> <count>9</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_416"> <id>24</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_417"> <id>25</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_418"> <id>34</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_419"> <id>35</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_420"> <id>36</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_421"> <id>99</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_422"> <id>100</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_423"> <id>101</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_424"> <id>103</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_425"> <id>14</id> <operations> <count>3</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_426"> <id>105</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_427"> <id>106</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_428"> <id>107</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> </states> <transitions class_id="29" tracking_level="0" version="0"> <count>14</count> <item_version>0</item_version> <item class_id="30" tracking_level="1" version="0" object_id="_429"> <inState>1</inState> <outState>2</outState> <condition class_id="31" tracking_level="0" version="0"> <id>23</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="_430"> <inState>3</inState> <outState>4</outState> <condition> <id>41</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_431"> <inState>4</inState> <outState>5</outState> <condition> <id>42</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_432"> <inState>5</inState> <outState>6</outState> <condition> <id>43</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_433"> <inState>6</inState> <outState>7</outState> <condition> <id>44</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_434"> <inState>7</inState> <outState>8</outState> <condition> <id>45</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_435"> <inState>8</inState> <outState>9</outState> <condition> <id>46</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_436"> <inState>9</inState> <outState>10</outState> <condition> <id>47</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_437"> <inState>10</inState> <outState>11</outState> <condition> <id>48</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="_438"> <inState>11</inState> <outState>12</outState> <condition> <id>49</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="_439"> <inState>12</inState> <outState>13</outState> <condition> <id>50</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="_440"> <inState>13</inState> <outState>2</outState> <condition> <id>51</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="_441"> <inState>2</inState> <outState>14</outState> <condition> <id>40</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>19</first> <second>0</second> </first> <second>0</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_442"> <inState>2</inState> <outState>3</outState> <condition> <id>52</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>1</count> <item_version>0</item_version> <item> <first> <first>19</first> <second>0</second> </first> <second>1</second> </item> </item> </sop> </condition> </item> </transitions> </fsm> <res class_id="-1"></res> <node_label_latency class_id="37" tracking_level="0" version="0"> <count>90</count> <item_version>0</item_version> <item class_id="38" tracking_level="0" version="0"> <first>9</first> <second class_id="39" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>10</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>11</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>12</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>13</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>14</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>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>23</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>2</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>2</first> <second>0</second> </second> </item> <item> <first>33</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>3</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>5</first> <second>0</second> </second> </item> <item> <first>43</first> <second> <first>10</first> <second>0</second> </second> </item> <item> <first>44</first> <second> <first>11</first> <second>0</second> </second> </item> <item> <first>45</first> <second> <first>11</first> <second>0</second> </second> </item> <item> <first>46</first> <second> <first>3</first> <second>3</second> </second> </item> <item> <first>47</first> <second> <first>3</first> <second>3</second> </second> </item> <item> <first>48</first> <second> <first>5</first> <second>3</second> </second> </item> <item> <first>49</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>50</first> <second> <first>10</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>9</first> <second>0</second> </second> </item> <item> <first>53</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>54</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>55</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>56</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>57</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>58</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>59</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>60</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>61</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>62</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>63</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>64</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>65</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>66</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>67</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>68</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>69</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>70</first> <second> <first>10</first> <second>0</second> </second> </item> <item> <first>71</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>7</first> <second>2</second> </second> </item> <item> <first>74</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>75</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>76</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>77</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>78</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>79</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>80</first> <second> <first>10</first> <second>0</second> </second> </item> <item> <first>81</first> <second> <first>10</first> <second>0</second> </second> </item> <item> <first>82</first> <second> <first>10</first> <second>0</second> </second> </item> <item> <first>83</first> <second> <first>10</first> <second>0</second> </second> </item> <item> <first>84</first> <second> <first>11</first> <second>0</second> </second> </item> <item> <first>85</first> <second> <first>7</first> <second>2</second> </second> </item> <item> <first>86</first> <second> <first>10</first> <second>0</second> </second> </item> <item> <first>87</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>88</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>89</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>90</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>91</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>92</first> <second> <first>10</first> <second>0</second> </second> </item> <item> <first>93</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>94</first> <second> <first>10</first> <second>0</second> </second> </item> <item> <first>95</first> <second> <first>10</first> <second>0</second> </second> </item> <item> <first>96</first> <second> <first>10</first> <second>0</second> </second> </item> <item> <first>97</first> <second> <first>11</first> <second>0</second> </second> </item> <item> <first>98</first> <second> <first>10</first> <second>1</second> </second> </item> <item> <first>99</first> <second> <first>11</first> <second>1</second> </second> </item> <item> <first>100</first> <second> <first>11</first> <second>1</second> </second> </item> <item> <first>102</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>103</first> <second> <first>12</first> <second>0</second> </second> </item> <item> <first>105</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>106</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>107</first> <second> <first>2</first> <second>0</second> </second> </item> </node_label_latency> <bblk_ent_exit class_id="40" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="41" tracking_level="0" version="0"> <first>15</first> <second class_id="42" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>22</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>104</first> <second> <first>1</first> <second>12</second> </second> </item> <item> <first>108</first> <second> <first>2</first> <second>2</second> </second> </item> </bblk_ent_exit> <regions class_id="43" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="44" tracking_level="1" version="0" object_id="_443"> <region_name>RGB2YUV_LOOP_X_RGB2YUV_LOOP_Y</region_name> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>22</item> <item>104</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>12</pipe_depth> </item> </regions> <dp_fu_nodes class_id="45" tracking_level="0" version="0"> <count>82</count> <item_version>0</item_version> <item class_id="46" tracking_level="0" version="0"> <first>106</first> <second> <count>1</count> <item_version>0</item_version> <item>9</item> </second> </item> <item> <first>112</first> <second> <count>1</count> <item_version>0</item_version> <item>10</item> </second> </item> <item> <first>118</first> <second> <count>1</count> <item_version>0</item_version> <item>40</item> </second> </item> <item> <first>125</first> <second> <count>1</count> <item_version>0</item_version> <item>41</item> </second> </item> <item> <first>132</first> <second> <count>4</count> <item_version>0</item_version> <item>46</item> <item>46</item> <item>46</item> <item>46</item> </second> </item> <item> <first>137</first> <second> <count>4</count> <item_version>0</item_version> <item>47</item> <item>47</item> <item>47</item> <item>47</item> </second> </item> <item> <first>142</first> <second> <count>1</count> <item_version>0</item_version> <item>42</item> </second> </item> <item> <first>149</first> <second> <count>4</count> <item_version>0</item_version> <item>48</item> <item>48</item> <item>48</item> <item>48</item> </second> </item> <item> <first>154</first> <second> <count>1</count> <item_version>0</item_version> <item>43</item> </second> </item> <item> <first>161</first> <second> <count>2</count> <item_version>0</item_version> <item>98</item> <item>98</item> </second> </item> <item> <first>166</first> <second> <count>1</count> <item_version>0</item_version> <item>44</item> </second> </item> <item> <first>173</first> <second> <count>1</count> <item_version>0</item_version> <item>45</item> </second> </item> <item> <first>180</first> <second> <count>2</count> <item_version>0</item_version> <item>99</item> <item>99</item> </second> </item> <item> <first>185</first> <second> <count>2</count> <item_version>0</item_version> <item>100</item> <item>100</item> </second> </item> <item> <first>194</first> <second> <count>1</count> <item_version>0</item_version> <item>16</item> </second> </item> <item> <first>205</first> <second> <count>1</count> <item_version>0</item_version> <item>17</item> </second> </item> <item> <first>216</first> <second> <count>1</count> <item_version>0</item_version> <item>18</item> </second> </item> <item> <first>223</first> <second> <count>1</count> <item_version>0</item_version> <item>11</item> </second> </item> <item> <first>227</first> <second> <count>1</count> <item_version>0</item_version> <item>12</item> </second> </item> <item> <first>231</first> <second> <count>1</count> <item_version>0</item_version> <item>19</item> </second> </item> <item> <first>236</first> <second> <count>1</count> <item_version>0</item_version> <item>20</item> </second> </item> <item> <first>242</first> <second> <count>1</count> <item_version>0</item_version> <item>23</item> </second> </item> <item> <first>248</first> <second> <count>1</count> <item_version>0</item_version> <item>26</item> </second> </item> <item> <first>253</first> <second> <count>1</count> <item_version>0</item_version> <item>27</item> </second> </item> <item> <first>261</first> <second> <count>1</count> <item_version>0</item_version> <item>28</item> </second> </item> <item> <first>269</first> <second> <count>1</count> <item_version>0</item_version> <item>29</item> </second> </item> <item> <first>273</first> <second> <count>1</count> <item_version>0</item_version> <item>31</item> </second> </item> <item> <first>277</first> <second> <count>1</count> <item_version>0</item_version> <item>30</item> </second> </item> <item> <first>284</first> <second> <count>1</count> <item_version>0</item_version> <item>32</item> </second> </item> <item> <first>291</first> <second> <count>1</count> <item_version>0</item_version> <item>33</item> </second> </item> <item> <first>297</first> <second> <count>1</count> <item_version>0</item_version> <item>37</item> </second> </item> <item> <first>300</first> <second> <count>1</count> <item_version>0</item_version> <item>38</item> </second> </item> <item> <first>306</first> <second> <count>1</count> <item_version>0</item_version> <item>102</item> </second> </item> <item> <first>311</first> <second> <count>1</count> <item_version>0</item_version> <item>39</item> </second> </item> <item> <first>316</first> <second> <count>1</count> <item_version>0</item_version> <item>49</item> </second> </item> <item> <first>319</first> <second> <count>1</count> <item_version>0</item_version> <item>55</item> </second> </item> <item> <first>322</first> <second> <count>3</count> <item_version>0</item_version> <item>73</item> <item>73</item> <item>73</item> </second> </item> <item> <first>328</first> <second> <count>3</count> <item_version>0</item_version> <item>85</item> <item>85</item> <item>85</item> </second> </item> <item> <first>334</first> <second> <count>1</count> <item_version>0</item_version> <item>56</item> </second> </item> <item> <first>337</first> <second> <count>1</count> <item_version>0</item_version> <item>64</item> </second> </item> <item> <first>343</first> <second> <count>1</count> <item_version>0</item_version> <item>51</item> </second> </item> <item> <first>350</first> <second> <count>1</count> <item_version>0</item_version> <item>52</item> </second> </item> <item> <first>354</first> <second> <count>1</count> <item_version>0</item_version> <item>53</item> </second> </item> <item> <first>361</first> <second> <count>1</count> <item_version>0</item_version> <item>54</item> </second> </item> <item> <first>365</first> <second> <count>1</count> <item_version>0</item_version> <item>57</item> </second> </item> <item> <first>372</first> <second> <count>1</count> <item_version>0</item_version> <item>58</item> </second> </item> <item> <first>376</first> <second> <count>1</count> <item_version>0</item_version> <item>59</item> </second> </item> <item> <first>379</first> <second> <count>1</count> <item_version>0</item_version> <item>61</item> </second> </item> <item> <first>385</first> <second> <count>1</count> <item_version>0</item_version> <item>62</item> </second> </item> <item> <first>389</first> <second> <count>1</count> <item_version>0</item_version> <item>63</item> </second> </item> <item> <first>395</first> <second> <count>1</count> <item_version>0</item_version> <item>65</item> </second> </item> <item> <first>398</first> <second> <count>1</count> <item_version>0</item_version> <item>67</item> </second> </item> <item> <first>401</first> <second> <count>1</count> <item_version>0</item_version> <item>68</item> </second> </item> <item> <first>407</first> <second> <count>1</count> <item_version>0</item_version> <item>69</item> </second> </item> <item> <first>417</first> <second> <count>1</count> <item_version>0</item_version> <item>74</item> </second> </item> <item> <first>424</first> <second> <count>1</count> <item_version>0</item_version> <item>75</item> </second> </item> <item> <first>428</first> <second> <count>1</count> <item_version>0</item_version> <item>76</item> </second> </item> <item> <first>435</first> <second> <count>1</count> <item_version>0</item_version> <item>77</item> </second> </item> <item> <first>439</first> <second> <count>1</count> <item_version>0</item_version> <item>78</item> </second> </item> <item> <first>443</first> <second> <count>1</count> <item_version>0</item_version> <item>79</item> </second> </item> <item> <first>449</first> <second> <count>1</count> <item_version>0</item_version> <item>87</item> </second> </item> <item> <first>455</first> <second> <count>1</count> <item_version>0</item_version> <item>88</item> </second> </item> <item> <first>459</first> <second> <count>1</count> <item_version>0</item_version> <item>89</item> </second> </item> <item> <first>466</first> <second> <count>1</count> <item_version>0</item_version> <item>90</item> </second> </item> <item> <first>470</first> <second> <count>1</count> <item_version>0</item_version> <item>91</item> </second> </item> <item> <first>476</first> <second> <count>1</count> <item_version>0</item_version> <item>93</item> </second> </item> <item> <first>482</first> <second> <count>1</count> <item_version>0</item_version> <item>50</item> </second> </item> <item> <first>485</first> <second> <count>1</count> <item_version>0</item_version> <item>70</item> </second> </item> <item> <first>491</first> <second> <count>1</count> <item_version>0</item_version> <item>81</item> </second> </item> <item> <first>496</first> <second> <count>1</count> <item_version>0</item_version> <item>82</item> </second> </item> <item> <first>501</first> <second> <count>1</count> <item_version>0</item_version> <item>83</item> </second> </item> <item> <first>511</first> <second> <count>1</count> <item_version>0</item_version> <item>94</item> </second> </item> <item> <first>514</first> <second> <count>1</count> <item_version>0</item_version> <item>95</item> </second> </item> <item> <first>519</first> <second> <count>1</count> <item_version>0</item_version> <item>96</item> </second> </item> <item> <first>529</first> <second> <count>1</count> <item_version>0</item_version> <item>84</item> </second> </item> <item> <first>535</first> <second> <count>1</count> <item_version>0</item_version> <item>97</item> </second> </item> <item> <first>541</first> <second> <count>1</count> <item_version>0</item_version> <item>105</item> </second> </item> <item> <first>546</first> <second> <count>1</count> <item_version>0</item_version> <item>106</item> </second> </item> <item> <first>551</first> <second> <count>1</count> <item_version>0</item_version> <item>13</item> </second> </item> <item> <first>557</first> <second> <count>2</count> <item_version>0</item_version> <item>60</item> <item>66</item> </second> </item> <item> <first>566</first> <second> <count>3</count> <item_version>0</item_version> <item>71</item> <item>72</item> <item>80</item> </second> </item> <item> <first>574</first> <second> <count>2</count> <item_version>0</item_version> <item>86</item> <item>92</item> </second> </item> </dp_fu_nodes> <dp_fu_nodes_expression class_id="48" tracking_level="0" version="0"> <count>72</count> <item_version>0</item_version> <item class_id="49" tracking_level="0" version="0"> <first>U_fu_529</first> <second> <count>1</count> <item_version>0</item_version> <item>84</item> </second> </item> <item> <first>V_fu_535</first> <second> <count>1</count> <item_version>0</item_version> <item>97</item> </second> </item> <item> <first>Y_fu_485</first> <second> <count>1</count> <item_version>0</item_version> <item>70</item> </second> </item> <item> <first>bound_fu_551</first> <second> <count>1</count> <item_version>0</item_version> <item>13</item> </second> </item> <item> <first>cast1_fu_227</first> <second> <count>1</count> <item_version>0</item_version> <item>12</item> </second> </item> <item> <first>cast_fu_223</first> <second> <count>1</count> <item_version>0</item_version> <item>11</item> </second> </item> <item> <first>exitcond9_fu_248</first> <second> <count>1</count> <item_version>0</item_version> <item>26</item> </second> </item> <item> <first>exitcond_flatten_fu_231</first> <second> <count>1</count> <item_version>0</item_version> <item>19</item> </second> </item> <item> <first>grp_fu_557</first> <second> <count>2</count> <item_version>0</item_version> <item>60</item> <item>66</item> </second> </item> <item> <first>grp_fu_566</first> <second> <count>3</count> <item_version>0</item_version> <item>71</item> <item>72</item> <item>80</item> </second> </item> <item> <first>grp_fu_574</first> <second> <count>2</count> <item_version>0</item_version> <item>86</item> <item>92</item> </second> </item> <item> <first>in_channels_ch1_addr_gep_fu_118</first> <second> <count>1</count> <item_version>0</item_version> <item>40</item> </second> </item> <item> <first>in_channels_ch2_addr_gep_fu_125</first> <second> <count>1</count> <item_version>0</item_version> <item>41</item> </second> </item> <item> <first>in_channels_ch3_addr_gep_fu_142</first> <second> <count>1</count> <item_version>0</item_version> <item>42</item> </second> </item> <item> <first>indvar_flatten_next_fu_236</first> <second> <count>1</count> <item_version>0</item_version> <item>20</item> </second> </item> <item> <first>indvar_flatten_phi_fu_194</first> <second> <count>1</count> <item_version>0</item_version> <item>16</item> </second> </item> <item> <first>mrv_1_fu_546</first> <second> <count>1</count> <item_version>0</item_version> <item>106</item> </second> </item> <item> <first>mrv_fu_541</first> <second> <count>1</count> <item_version>0</item_version> <item>105</item> </second> </item> <item> <first>out_channels_ch1_add_gep_fu_154</first> <second> <count>1</count> <item_version>0</item_version> <item>43</item> </second> </item> <item> <first>out_channels_ch2_add_gep_fu_166</first> <second> <count>1</count> <item_version>0</item_version> <item>44</item> </second> </item> <item> <first>out_channels_ch3_add_gep_fu_173</first> <second> <count>1</count> <item_version>0</item_version> <item>45</item> </second> </item> <item> <first>p_neg_cast_fu_455</first> <second> <count>1</count> <item_version>0</item_version> <item>88</item> </second> </item> <item> <first>p_neg_fu_449</first> <second> <count>1</count> <item_version>0</item_version> <item>87</item> </second> </item> <item> <first>p_shl1_cast_fu_466</first> <second> <count>1</count> <item_version>0</item_version> <item>90</item> </second> </item> <item> <first>p_shl1_fu_459</first> <second> <count>1</count> <item_version>0</item_version> <item>89</item> </second> </item> <item> <first>p_shl2_cast_fu_424</first> <second> <count>1</count> <item_version>0</item_version> <item>75</item> </second> </item> <item> <first>p_shl2_fu_417</first> <second> <count>1</count> <item_version>0</item_version> <item>74</item> </second> </item> <item> <first>p_shl3_cast9_fu_435</first> <second> <count>1</count> <item_version>0</item_version> <item>77</item> </second> </item> <item> <first>p_shl3_cast_fu_439</first> <second> <count>1</count> <item_version>0</item_version> <item>78</item> </second> </item> <item> <first>p_shl3_fu_428</first> <second> <count>1</count> <item_version>0</item_version> <item>76</item> </second> </item> <item> <first>p_shl4_cast_fu_372</first> <second> <count>1</count> <item_version>0</item_version> <item>58</item> </second> </item> <item> <first>p_shl4_fu_365</first> <second> <count>1</count> <item_version>0</item_version> <item>57</item> </second> </item> <item> <first>p_shl5_cast_fu_350</first> <second> <count>1</count> <item_version>0</item_version> <item>52</item> </second> </item> <item> <first>p_shl5_fu_343</first> <second> <count>1</count> <item_version>0</item_version> <item>51</item> </second> </item> <item> <first>p_shl6_cast_fu_361</first> <second> <count>1</count> <item_version>0</item_version> <item>54</item> </second> </item> <item> <first>p_shl6_fu_354</first> <second> <count>1</count> <item_version>0</item_version> <item>53</item> </second> </item> <item> <first>p_shl7_cast_fu_284</first> <second> <count>1</count> <item_version>0</item_version> <item>32</item> </second> </item> <item> <first>p_shl_cast_fu_277</first> <second> <count>1</count> <item_version>0</item_version> <item>30</item> </second> </item> <item> <first>tmp1_fu_389</first> <second> <count>1</count> <item_version>0</item_version> <item>63</item> </second> </item> <item> <first>tmp2_cast_fu_385</first> <second> <count>1</count> <item_version>0</item_version> <item>62</item> </second> </item> <item> <first>tmp2_fu_379</first> <second> <count>1</count> <item_version>0</item_version> <item>61</item> </second> </item> <item> <first>tmp3_cast_fu_398</first> <second> <count>1</count> <item_version>0</item_version> <item>67</item> </second> </item> <item> <first>tmp4_cast_fu_395</first> <second> <count>1</count> <item_version>0</item_version> <item>65</item> </second> </item> <item> <first>tmp4_fu_337</first> <second> <count>1</count> <item_version>0</item_version> <item>64</item> </second> </item> <item> <first>tmp6_fu_491</first> <second> <count>1</count> <item_version>0</item_version> <item>81</item> </second> </item> <item> <first>tmp8_cast_fu_511</first> <second> <count>1</count> <item_version>0</item_version> <item>94</item> </second> </item> <item> <first>tmp8_fu_476</first> <second> <count>1</count> <item_version>0</item_version> <item>93</item> </second> </item> <item> <first>tmp_20_fu_300</first> <second> <count>1</count> <item_version>0</item_version> <item>38</item> </second> </item> <item> <first>tmp_21_fu_273</first> <second> <count>1</count> <item_version>0</item_version> <item>31</item> </second> </item> <item> <first>tmp_23_fu_401</first> <second> <count>1</count> <item_version>0</item_version> <item>68</item> </second> </item> <item> <first>tmp_24_fu_407</first> <second> <count>1</count> <item_version>0</item_version> <item>69</item> </second> </item> <item> <first>tmp_27_fu_443</first> <second> <count>1</count> <item_version>0</item_version> <item>79</item> </second> </item> <item> <first>tmp_28_fu_496</first> <second> <count>1</count> <item_version>0</item_version> <item>82</item> </second> </item> <item> <first>tmp_29_fu_501</first> <second> <count>1</count> <item_version>0</item_version> <item>83</item> </second> </item> <item> <first>tmp_32_fu_470</first> <second> <count>1</count> <item_version>0</item_version> <item>91</item> </second> </item> <item> <first>tmp_33_fu_514</first> <second> <count>1</count> <item_version>0</item_version> <item>95</item> </second> </item> <item> <first>tmp_34_fu_519</first> <second> <count>1</count> <item_version>0</item_version> <item>96</item> </second> </item> <item> <first>tmp_40_cast1_fu_316</first> <second> <count>1</count> <item_version>0</item_version> <item>49</item> </second> </item> <item> <first>tmp_40_cast2_fu_482</first> <second> <count>1</count> <item_version>0</item_version> <item>50</item> </second> </item> <item> <first>tmp_42_cast1_fu_319</first> <second> <count>1</count> <item_version>0</item_version> <item>55</item> </second> </item> <item> <first>tmp_42_cast2_fu_334</first> <second> <count>1</count> <item_version>0</item_version> <item>56</item> </second> </item> <item> <first>tmp_42_cast_fu_311</first> <second> <count>1</count> <item_version>0</item_version> <item>39</item> </second> </item> <item> <first>tmp_44_cast1_fu_376</first> <second> <count>1</count> <item_version>0</item_version> <item>59</item> </second> </item> <item> <first>tmp_cast_fu_297</first> <second> <count>1</count> <item_version>0</item_version> <item>37</item> </second> </item> <item> <first>tmp_fu_269</first> <second> <count>1</count> <item_version>0</item_version> <item>29</item> </second> </item> <item> <first>tmp_mid2_v_fu_261</first> <second> <count>1</count> <item_version>0</item_version> <item>28</item> </second> </item> <item> <first>tmp_s_fu_291</first> <second> <count>1</count> <item_version>0</item_version> <item>33</item> </second> </item> <item> <first>x_3_fu_242</first> <second> <count>1</count> <item_version>0</item_version> <item>23</item> </second> </item> <item> <first>x_phi_fu_205</first> <second> <count>1</count> <item_version>0</item_version> <item>17</item> </second> </item> <item> <first>y_3_fu_306</first> <second> <count>1</count> <item_version>0</item_version> <item>102</item> </second> </item> <item> <first>y_mid2_fu_253</first> <second> <count>1</count> <item_version>0</item_version> <item>27</item> </second> </item> <item> <first>y_phi_fu_216</first> <second> <count>1</count> <item_version>0</item_version> <item>18</item> </second> </item> </dp_fu_nodes_expression> <dp_fu_nodes_module> <count>2</count> <item_version>0</item_version> <item> <first>grp_fu_322</first> <second> <count>3</count> <item_version>0</item_version> <item>73</item> <item>73</item> <item>73</item> </second> </item> <item> <first>grp_fu_328</first> <second> <count>3</count> <item_version>0</item_version> <item>85</item> <item>85</item> <item>85</item> </second> </item> </dp_fu_nodes_module> <dp_fu_nodes_io> <count>2</count> <item_version>0</item_version> <item> <first>in_height_read11_read_fu_106</first> <second> <count>1</count> <item_version>0</item_version> <item>9</item> </second> </item> <item> <first>in_width_read_3_read_fu_112</first> <second> <count>1</count> <item_version>0</item_version> <item>10</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="50" tracking_level="0" version="0"> <count>6</count> <item_version>0</item_version> <item class_id="51" tracking_level="0" version="0"> <first class_id="52" tracking_level="0" version="0"> <first>in_channels_ch1</first> <second>0</second> </first> <second> <count>4</count> <item_version>0</item_version> <item>46</item> <item>46</item> <item>46</item> <item>46</item> </second> </item> <item> <first> <first>in_channels_ch2</first> <second>0</second> </first> <second> <count>4</count> <item_version>0</item_version> <item>47</item> <item>47</item> <item>47</item> <item>47</item> </second> </item> <item> <first> <first>in_channels_ch3</first> <second>0</second> </first> <second> <count>4</count> <item_version>0</item_version> <item>48</item> <item>48</item> <item>48</item> <item>48</item> </second> </item> <item> <first> <first>out_channels_ch1</first> <second>0</second> </first> <second> <count>2</count> <item_version>0</item_version> <item>98</item> <item>98</item> </second> </item> <item> <first> <first>out_channels_ch2</first> <second>0</second> </first> <second> <count>2</count> <item_version>0</item_version> <item>99</item> <item>99</item> </second> </item> <item> <first> <first>out_channels_ch3</first> <second>0</second> </first> <second> <count>2</count> <item_version>0</item_version> <item>100</item> <item>100</item> </second> </item> </dp_mem_port_nodes> <dp_reg_nodes> <count>37</count> <item_version>0</item_version> <item> <first>190</first> <second> <count>1</count> <item_version>0</item_version> <item>16</item> </second> </item> <item> <first>201</first> <second> <count>1</count> <item_version>0</item_version> <item>17</item> </second> </item> <item> <first>212</first> <second> <count>1</count> <item_version>0</item_version> <item>18</item> </second> </item> <item> <first>581</first> <second> <count>1</count> <item_version>0</item_version> <item>9</item> </second> </item> <item> <first>587</first> <second> <count>1</count> <item_version>0</item_version> <item>10</item> </second> </item> <item> <first>592</first> <second> <count>1</count> <item_version>0</item_version> <item>13</item> </second> </item> <item> <first>597</first> <second> <count>1</count> <item_version>0</item_version> <item>19</item> </second> </item> <item> <first>601</first> <second> <count>1</count> <item_version>0</item_version> <item>20</item> </second> </item> <item> <first>606</first> <second> <count>1</count> <item_version>0</item_version> <item>27</item> </second> </item> <item> <first>612</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>622</first> <second> <count>1</count> <item_version>0</item_version> <item>31</item> </second> </item> <item> <first>627</first> <second> <count>1</count> <item_version>0</item_version> <item>38</item> </second> </item> <item> <first>632</first> <second> <count>1</count> <item_version>0</item_version> <item>102</item> </second> </item> <item> <first>637</first> <second> <count>1</count> <item_version>0</item_version> <item>39</item> </second> </item> <item> <first>645</first> <second> <count>1</count> <item_version>0</item_version> <item>40</item> </second> </item> <item> <first>650</first> <second> <count>1</count> <item_version>0</item_version> <item>41</item> </second> </item> <item> <first>655</first> <second> <count>1</count> <item_version>0</item_version> <item>42</item> </second> </item> <item> <first>660</first> <second> <count>1</count> <item_version>0</item_version> <item>46</item> </second> </item> <item> <first>668</first> <second> <count>1</count> <item_version>0</item_version> <item>47</item> </second> </item> <item> <first>675</first> <second> <count>1</count> <item_version>0</item_version> <item>49</item> </second> </item> <item> <first>680</first> <second> <count>1</count> <item_version>0</item_version> <item>55</item> </second> </item> <item> <first>686</first> <second> <count>1</count> <item_version>0</item_version> <item>48</item> </second> </item> <item> <first>694</first> <second> <count>1</count> <item_version>0</item_version> <item>64</item> </second> </item> <item> <first>699</first> <second> <count>1</count> <item_version>0</item_version> <item>69</item> </second> </item> <item> <first>704</first> <second> <count>1</count> <item_version>0</item_version> <item>73</item> </second> </item> <item> <first>709</first> <second> <count>1</count> <item_version>0</item_version> <item>79</item> </second> </item> <item> <first>714</first> <second> <count>1</count> <item_version>0</item_version> <item>85</item> </second> </item> <item> <first>719</first> <second> <count>1</count> <item_version>0</item_version> <item>93</item> </second> </item> <item> <first>724</first> <second> <count>1</count> <item_version>0</item_version> <item>43</item> </second> </item> <item> <first>729</first> <second> <count>1</count> <item_version>0</item_version> <item>70</item> </second> </item> <item> <first>734</first> <second> <count>1</count> <item_version>0</item_version> <item>83</item> </second> </item> <item> <first>739</first> <second> <count>1</count> <item_version>0</item_version> <item>96</item> </second> </item> <item> <first>744</first> <second> <count>1</count> <item_version>0</item_version> <item>44</item> </second> </item> <item> <first>749</first> <second> <count>1</count> <item_version>0</item_version> <item>45</item> </second> </item> <item> <first>754</first> <second> <count>1</count> <item_version>0</item_version> <item>84</item> </second> </item> <item> <first>759</first> <second> <count>1</count> <item_version>0</item_version> <item>97</item> </second> </item> </dp_reg_nodes> <dp_regname_nodes> <count>37</count> <item_version>0</item_version> <item> <first>B_reg_686</first> <second> <count>1</count> <item_version>0</item_version> <item>48</item> </second> </item> <item> <first>G_reg_668</first> <second> <count>1</count> <item_version>0</item_version> <item>47</item> </second> </item> <item> <first>R_reg_660</first> <second> <count>1</count> <item_version>0</item_version> <item>46</item> </second> </item> <item> <first>U_reg_754</first> <second> <count>1</count> <item_version>0</item_version> <item>84</item> </second> </item> <item> <first>V_reg_759</first> <second> <count>1</count> <item_version>0</item_version> <item>97</item> </second> </item> <item> <first>Y_reg_729</first> <second> <count>1</count> <item_version>0</item_version> <item>70</item> </second> </item> <item> <first>bound_reg_592</first> <second> <count>1</count> <item_version>0</item_version> <item>13</item> </second> </item> <item> <first>exitcond_flatten_reg_597</first> <second> <count>1</count> <item_version>0</item_version> <item>19</item> </second> </item> <item> <first>in_channels_ch1_addr_reg_645</first> <second> <count>1</count> <item_version>0</item_version> <item>40</item> </second> </item> <item> <first>in_channels_ch2_addr_reg_650</first> <second> <count>1</count> <item_version>0</item_version> <item>41</item> </second> </item> <item> <first>in_channels_ch3_addr_reg_655</first> <second> <count>1</count> <item_version>0</item_version> <item>42</item> </second> </item> <item> <first>in_height_read11_reg_581</first> <second> <count>1</count> <item_version>0</item_version> <item>9</item> </second> </item> <item> <first>in_width_read_3_reg_587</first> <second> <count>1</count> <item_version>0</item_version> <item>10</item> </second> </item> <item> <first>indvar_flatten_next_reg_601</first> <second> <count>1</count> <item_version>0</item_version> <item>20</item> </second> </item> <item> <first>indvar_flatten_reg_190</first> <second> <count>1</count> <item_version>0</item_version> <item>16</item> </second> </item> <item> <first>out_channels_ch1_add_reg_724</first> <second> <count>1</count> <item_version>0</item_version> <item>43</item> </second> </item> <item> <first>out_channels_ch2_add_reg_744</first> <second> <count>1</count> <item_version>0</item_version> <item>44</item> </second> </item> <item> <first>out_channels_ch3_add_reg_749</first> <second> <count>1</count> <item_version>0</item_version> <item>45</item> </second> </item> <item> <first>tmp4_reg_694</first> <second> <count>1</count> <item_version>0</item_version> <item>64</item> </second> </item> <item> <first>tmp8_reg_719</first> <second> <count>1</count> <item_version>0</item_version> <item>93</item> </second> </item> <item> <first>tmp_20_reg_627</first> <second> <count>1</count> <item_version>0</item_version> <item>38</item> </second> </item> <item> <first>tmp_21_reg_622</first> <second> <count>1</count> <item_version>0</item_version> <item>31</item> </second> </item> <item> <first>tmp_24_reg_699</first> <second> <count>1</count> <item_version>0</item_version> <item>69</item> </second> </item> <item> <first>tmp_26_reg_704</first> <second> <count>1</count> <item_version>0</item_version> <item>73</item> </second> </item> <item> <first>tmp_27_reg_709</first> <second> <count>1</count> <item_version>0</item_version> <item>79</item> </second> </item> <item> <first>tmp_29_reg_734</first> <second> <count>1</count> <item_version>0</item_version> <item>83</item> </second> </item> <item> <first>tmp_30_reg_714</first> <second> <count>1</count> <item_version>0</item_version> <item>85</item> </second> </item> <item> <first>tmp_34_reg_739</first> <second> <count>1</count> <item_version>0</item_version> <item>96</item> </second> </item> <item> <first>tmp_40_cast1_reg_675</first> <second> <count>1</count> <item_version>0</item_version> <item>49</item> </second> </item> <item> <first>tmp_42_cast1_reg_680</first> <second> <count>1</count> <item_version>0</item_version> <item>55</item> </second> </item> <item> <first>tmp_42_cast_reg_637</first> <second> <count>1</count> <item_version>0</item_version> <item>39</item> </second> </item> <item> <first>tmp_mid2_v_reg_612</first> <second> <count>1</count> <item_version>0</item_version> <item>28</item> </second> </item> <item> <first>tmp_reg_617</first> <second> <count>1</count> <item_version>0</item_version> <item>29</item> </second> </item> <item> <first>x_reg_201</first> <second> <count>1</count> <item_version>0</item_version> <item>17</item> </second> </item> <item> <first>y_3_reg_632</first> <second> <count>1</count> <item_version>0</item_version> <item>102</item> </second> </item> <item> <first>y_mid2_reg_606</first> <second> <count>1</count> <item_version>0</item_version> <item>27</item> </second> </item> <item> <first>y_reg_212</first> <second> <count>1</count> <item_version>0</item_version> <item>18</item> </second> </item> </dp_regname_nodes> <dp_reg_phi> <count>3</count> <item_version>0</item_version> <item> <first>190</first> <second> <count>1</count> <item_version>0</item_version> <item>16</item> </second> </item> <item> <first>201</first> <second> <count>1</count> <item_version>0</item_version> <item>17</item> </second> </item> <item> <first>212</first> <second> <count>1</count> <item_version>0</item_version> <item>18</item> </second> </item> </dp_reg_phi> <dp_regname_phi> <count>3</count> <item_version>0</item_version> <item> <first>indvar_flatten_reg_190</first> <second> <count>1</count> <item_version>0</item_version> <item>16</item> </second> </item> <item> <first>x_reg_201</first> <second> <count>1</count> <item_version>0</item_version> <item>17</item> </second> </item> <item> <first>y_reg_212</first> <second> <count>1</count> <item_version>0</item_version> <item>18</item> </second> </item> </dp_regname_phi> <dp_port_io_nodes class_id="53" tracking_level="0" version="0"> <count>8</count> <item_version>0</item_version> <item class_id="54" tracking_level="0" version="0"> <first>in_channels_ch1(p0)</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>load</first> <second> <count>4</count> <item_version>0</item_version> <item>46</item> <item>46</item> <item>46</item> <item>46</item> </second> </item> </second> </item> <item> <first>in_channels_ch2(p0)</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>load</first> <second> <count>4</count> <item_version>0</item_version> <item>47</item> <item>47</item> <item>47</item> <item>47</item> </second> </item> </second> </item> <item> <first>in_channels_ch3(p0)</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>load</first> <second> <count>4</count> <item_version>0</item_version> <item>48</item> <item>48</item> <item>48</item> <item>48</item> </second> </item> </second> </item> <item> <first>in_height_read</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>9</item> </second> </item> </second> </item> <item> <first>in_width_read</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>10</item> </second> </item> </second> </item> <item> <first>out_channels_ch1(p0)</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>store</first> <second> <count>2</count> <item_version>0</item_version> <item>98</item> <item>98</item> </second> </item> </second> </item> <item> <first>out_channels_ch2(p0)</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>store</first> <second> <count>2</count> <item_version>0</item_version> <item>99</item> <item>99</item> </second> </item> </second> </item> <item> <first>out_channels_ch3(p0)</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>store</first> <second> <count>2</count> <item_version>0</item_version> <item>100</item> <item>100</item> </second> </item> </second> </item> </dp_port_io_nodes> <port2core class_id="55" tracking_level="0" version="0"> <count>6</count> <item_version>0</item_version> <item class_id="56" 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>6</first> <second>RAM</second> </item> <item> <first>7</first> <second>RAM</second> </item> <item> <first>8</first> <second>RAM</second> </item> </port2core> <node2core> <count>0</count> <item_version>0</item_version> </node2core> </syndb> </boost_serialization>
-- -- 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. -- -- with ada.unchecked_conversion; with soc.interrupts; with ewok.tasks_shared; with ewok.devices_shared; package ewok.interrupts with spark_mode => off is type t_interrupt_handler_access is access procedure (frame_a : in ewok.t_stack_frame_access); type t_interrupt_task_switch_handler_access is access function (frame_a : ewok.t_stack_frame_access) return ewok.t_stack_frame_access; type t_handler_type is (DEFAULT_HANDLER, TASK_SWITCH_HANDLER); type t_interrupt_cell (htype : t_handler_type := DEFAULT_HANDLER) is record task_id : ewok.tasks_shared.t_task_id; device_id : ewok.devices_shared.t_device_id; case htype is when DEFAULT_HANDLER => handler : t_interrupt_handler_access; when TASK_SWITCH_HANDLER => task_switch_handler : t_interrupt_task_switch_handler_access; end case; end record; type t_interrupt_cell_access is access all t_interrupt_cell; interrupt_table : array (soc.interrupts.t_interrupt) of aliased t_interrupt_cell; function to_system_address is new ada.unchecked_conversion (t_interrupt_handler_access, system_address); function to_handler_access is new ada.unchecked_conversion (system_address, t_interrupt_handler_access); procedure init; function is_interrupt_already_used (interrupt : soc.interrupts.t_interrupt) return boolean; procedure set_interrupt_handler (interrupt : in soc.interrupts.t_interrupt; handler : in t_interrupt_handler_access; task_id : in ewok.tasks_shared.t_task_id; device_id : in ewok.devices_shared.t_device_id; success : out boolean); procedure reset_interrupt_handler (interrupt : in soc.interrupts.t_interrupt; task_id : in ewok.tasks_shared.t_task_id; device_id : in ewok.devices_shared.t_device_id); procedure set_task_switching_handler (interrupt : in soc.interrupts.t_interrupt; handler : in t_interrupt_task_switch_handler_access; task_id : in ewok.tasks_shared.t_task_id; device_id : in ewok.devices_shared.t_device_id; success : out boolean); function get_device_from_interrupt (interrupt : soc.interrupts.t_interrupt) return ewok.devices_shared.t_device_id; end ewok.interrupts;
------------------------------------------------------------------------------ -- G E L A A S I S -- -- ASIS implementation for Gela project, a portable Ada compiler -- -- http://gela.ada-ru.org -- -- - - - - - - - - - - - - - - - -- -- Read copyright and license at the end of this file -- ------------------------------------------------------------------------------ -- $Revision: 209 $ $Date: 2013-11-30 21:03:24 +0200 (Сб., 30 нояб. 2013) $ with Encodings; generic type XML_Character is (<>); type XML_String is array (Positive range <>) of XML_Character; Nil_String : in XML_String; package XML_IO.Base_Readers is ------------ -- Reader -- ------------ type Reader is abstract tagged limited null record; function More_Pieces (Parser : in Reader) return Boolean is abstract; function Piece_Kind (Parser : in Reader) return Piece_Kinds is abstract; procedure Next (Parser : in out Reader) is abstract; function Encoding (Parser : in Reader) return XML_String is abstract; function Encoding (Parser : in Reader) return Encodings.Encoding is abstract; -- Piece: Start_Document function Standalone (Parser : in Reader) return Boolean is abstract; -- Piece: Start_Document function Text (Parser : in Reader) return XML_String is abstract; -- Piece: Characters, Processing_Instruction, Comment function Name (Parser : in Reader) return XML_String is abstract; -- Piece: Start_Element, End_Element, Processing_Instruction function Attribute_Count (Parser : in Reader) return List_Count is abstract; -- Piece: Start_Element function Attribute_Name (Parser : in Reader; Index : in List_Index) return XML_String is abstract; -- Piece: Start_Element function Attribute_Value (Parser : in Reader; Index : in List_Index) return XML_String is abstract; -- Piece: Start_Element function Attribute_Value (Parser : in Reader; Name : in XML_String; Default : in XML_String := Nil_String; Raise_Error : in Boolean := False) return XML_String is abstract; -- Piece: Start_Element end XML_IO.Base_Readers; ------------------------------------------------------------------------------ -- 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. ------------------------------------------------------------------------------
------------------------------------------------------------------------------ -- -- -- 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.Elements.Generic_Hash; function AMF.OCL.Call_Exps.Hash is new AMF.Elements.Generic_Hash (OCL_Call_Exp, OCL_Call_Exp_Access);
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Web 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 package provides entry point to handle SOAP requests received from -- HTTP server. ------------------------------------------------------------------------------ with Ada.Streams; with League.Strings; with Web_Services.SOAP.Reply_Streams; package Web_Services.SOAP.Dispatcher is procedure Dispatch (Input_Data : Ada.Streams.Stream_Element_Array; SOAP_Action : League.Strings.Universal_String; Stream : Web_Services.SOAP.Reply_Streams.Reply_Stream_Access); -- Dispatch SOAP request represented as Input_Data. Use Stream to return -- SOAP replies. end Web_Services.SOAP.Dispatcher;
with Ada.Exceptions; with Ada.Text_IO; -- For int."+": with Interfaces.C; package body A_Nodes is Module_Name : constant String := "A_Nodes"; package AEX renames Ada.Exceptions; package ATI renames Ada.Text_IO; -- Checks to be sure no Unit with this ID has already been pushed. Raises -- Usage_Error if so. procedure Check_Unit_Node (This : access Class; Unit : in a_nodes_h.Unit_Struct) is Parent_Name : constant String := Module_Name; Module_Name : constant String := Parent_Name & ".Check_Unit_Node"; ID : constant a_nodes_h.Unit_ID := Unit.ID; use type Interfaces.C.int; begin if This.Unit_IDs.Contains (ID) then raise Usage_Error with Module_Name & ": Tried to push second Unit with ID => " & ID'Image; else This.Unit_IDs.Insert (ID); if ID > This.Highest_Unit_ID then This.Highest_Unit_ID := ID; end if; end if; end Check_Unit_Node; -- Checks to be sure no Element with this ID has already been pushed. Raises -- Usage_Error if so. procedure Check_Element_Node (This : access Class; Element : in a_nodes_h.Element_Struct) is Parent_Name : constant String := Module_Name; Module_Name : constant String := Parent_Name & ".Check_Element_Node"; ID : constant a_nodes_h.Element_ID := Element.ID; use type Interfaces.C.int; begin if This.Element_IDs.Contains (ID) then raise Usage_Error with Module_Name & ": Tried to push second Element with ID => " & ID'Image; else -- TODO: Remove when no longer needed for debug: -- Ada.Text_IO.Put_Line ("a_nodes.Check_Element_Node: ID => " & ID'Image); This.Element_IDs.Insert (ID); if ID > This.Highest_Element_ID then This.Highest_Element_ID := ID; end if; end if; end Check_Element_Node; procedure Print_Exception_Info (Module_Name : in String; X : in AEX.Exception_Occurrence) is begin ATI.Put_Line ((1 .. 40 => '#')); ATI.Put_Line (Module_Name & ": ***EXCEPTION*** " & Aex.Exception_Information (X)); ATI.Put_Line ((1 .. 40 => '#')); end Print_Exception_Info; ------------ -- EXPORTED: ------------ procedure Set (This : access Class; Context : in a_nodes_h.Context_Struct) is begin This.Nodes.Context := Context; end Set; ------------ -- EXPORTED: ------------ procedure Push (This : access Class; Unit : in a_nodes_h.Unit_Struct) is Parent_Name : constant String := Module_Name; Module_Name : constant String := Parent_Name & ".Push"; List_Node : a_nodes_h.Unit_Struct_List_Struct := a_nodes_h.Support.Default_Unit_Struct_List_Struct; use type Interfaces.C.int; use type a_nodes_h.Unit_Structs_Ptr; begin begin Check_Unit_Node (This, Unit); exception when X : Usage_Error => Print_Exception_Info (Module_Name, X); raise; end; List_Node.Unit := Unit; if This.Nodes.Units = null then List_Node.Next := null; List_Node.Next_Count := 0; else List_Node.Next := This.Nodes.Units; List_Node.Next_Count := This.Nodes.Units.Next_Count + 1; end if; This.Nodes.Units := new a_nodes_h.Unit_Struct_List_Struct'(List_Node); end Push; ------------ -- EXPORTED: ------------ procedure Push (This : access Class; Element : in a_nodes_h.Element_Struct) is Parent_Name : constant String := Module_Name; Module_Name : constant String := Parent_Name & ".Push"; List_Node : a_nodes_h.Element_Struct_List_Struct := a_nodes_h.Support.Default_Element_Struct_List_Struct; use type Interfaces.C.int; use type a_nodes_h.Element_Structs_Ptr; begin begin Check_Element_Node (This, Element); exception when X : Usage_Error => Print_Exception_Info (Module_Name, X); raise; end; List_Node.Element := Element; if This.Nodes.Elements = null then List_Node.Next := null; List_Node.Next_Count := 0; else List_Node.Next := This.Nodes.Elements; List_Node.Next_Count := This.Nodes.Elements.Next_Count + 1; end if; This.Nodes.Elements := new a_nodes_h.Element_Struct_List_Struct'(List_Node); end Push; ------------ -- EXPORTED: ------------ procedure Add_Not_Implemented (This : access Class) is begin This.Not_Implemented := This.Not_Implemented + 1; end Add_Not_Implemented; ------------ -- EXPORTED: ------------ function Get_Not_Implemented (This : access Class) return Natural is begin return This.Not_Implemented; end Get_Not_Implemented; ------------ -- EXPORTED: ------------ function Get_Nodes (This : access Class) return a_nodes_h.Nodes_Struct is begin return This.Nodes; end Get_Nodes; ------------ -- EXPORTED: ------------ procedure Print_Stats (This : access Class) is Parent_Name : constant String := Module_Name; Module_Name : constant String := Parent_Name & ".Print_Stats"; procedure Put_Line (Message : in String)is begin ATI.Put_Line (Module_Name & ": " & Message); end Put_Line; begin Put_Line ("Total Units :" & This.Unit_Ids.Length'Image); Put_Line ("Highest Unit ID :" & This.Highest_Unit_ID'Image); Put_Line ("Total Elements :" & This.Element_Ids.Length'Image); Put_Line ("Highest Element ID :" & This.Highest_Element_ID'Image); Put_Line ("Not_Implemented :" & This.Not_Implemented'Image); end Print_Stats; end A_Nodes;
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- N A M E T -- -- -- -- B o d y -- -- -- -- Copyright (C) 1992-2010, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- 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. -- -- -- ------------------------------------------------------------------------------ -- WARNING: There is a C version of this package. Any changes to this -- source file must be properly reflected in the C header file namet.h -- which is created manually from namet.ads and namet.adb. with Debug; use Debug; with Opt; use Opt; with Output; use Output; with Tree_IO; use Tree_IO; with Widechar; use Widechar; with Interfaces; use Interfaces; package body Namet is Name_Chars_Reserve : constant := 5000; Name_Entries_Reserve : constant := 100; -- The names table is locked during gigi processing, since gigi assumes -- that the table does not move. After returning from gigi, the names -- table is unlocked again, since writing library file information needs -- to generate some extra names. To avoid the inefficiency of always -- reallocating during this second unlocked phase, we reserve a bit of -- extra space before doing the release call. Hash_Num : constant Int := 2**16; -- Number of headers in the hash table. Current hash algorithm is closely -- tailored to this choice, so it can only be changed if a corresponding -- change is made to the hash algorithm. Hash_Max : constant Int := Hash_Num - 1; -- Indexes in the hash header table run from 0 to Hash_Num - 1 subtype Hash_Index_Type is Int range 0 .. Hash_Max; -- Range of hash index values Hash_Table : array (Hash_Index_Type) of Name_Id; -- The hash table is used to locate existing entries in the names table. -- The entries point to the first names table entry whose hash value -- matches the hash code. Then subsequent names table entries with the -- same hash code value are linked through the Hash_Link fields. ----------------------- -- Local Subprograms -- ----------------------- function Hash return Hash_Index_Type; pragma Inline (Hash); -- Compute hash code for name stored in Name_Buffer (length in Name_Len) procedure Strip_Qualification_And_Suffixes; -- Given an encoded entity name in Name_Buffer, remove package body -- suffix as described for Strip_Package_Body_Suffix, and also remove -- all qualification, i.e. names followed by two underscores. The -- contents of Name_Buffer is modified by this call, and on return -- Name_Buffer and Name_Len reflect the stripped name. ----------------------------- -- Add_Char_To_Name_Buffer -- ----------------------------- procedure Add_Char_To_Name_Buffer (C : Character) is begin if Name_Len < Name_Buffer'Last then Name_Len := Name_Len + 1; Name_Buffer (Name_Len) := C; end if; end Add_Char_To_Name_Buffer; ---------------------------- -- Add_Nat_To_Name_Buffer -- ---------------------------- procedure Add_Nat_To_Name_Buffer (V : Nat) is begin if V >= 10 then Add_Nat_To_Name_Buffer (V / 10); end if; Add_Char_To_Name_Buffer (Character'Val (Character'Pos ('0') + V rem 10)); end Add_Nat_To_Name_Buffer; ---------------------------- -- Add_Str_To_Name_Buffer -- ---------------------------- procedure Add_Str_To_Name_Buffer (S : String) is begin for J in S'Range loop Add_Char_To_Name_Buffer (S (J)); end loop; end Add_Str_To_Name_Buffer; -------------- -- Finalize -- -------------- procedure Finalize is F : array (Int range 0 .. 50) of Int; -- N'th entry is the number of chains of length N, except last entry, -- which is the number of chains of length F'Last or more. Max_Chain_Length : Int := 0; -- Maximum length of all chains Probes : Int := 0; -- Used to compute average number of probes Nsyms : Int := 0; -- Number of symbols in table Verbosity : constant Int range 1 .. 3 := 1; pragma Warnings (Off, Verbosity); -- This constant indicates the level of verbosity in the output from -- this procedure. Currently this can only be changed by editing the -- declaration above and recompiling. That's good enough in practice, -- since we very rarely need to use this debug option. Settings are: -- -- 1 => print basic summary information -- 2 => in addition print number of entries per hash chain -- 3 => in addition print content of entries Zero : constant Int := Character'Pos ('0'); begin if not Debug_Flag_H then return; end if; for J in F'Range loop F (J) := 0; end loop; for J in Hash_Index_Type loop if Hash_Table (J) = No_Name then F (0) := F (0) + 1; else declare C : Int; N : Name_Id; S : Int; begin C := 0; N := Hash_Table (J); while N /= No_Name loop N := Name_Entries.Table (N).Hash_Link; C := C + 1; end loop; Nsyms := Nsyms + 1; Probes := Probes + (1 + C) * 100; if C > Max_Chain_Length then Max_Chain_Length := C; end if; if Verbosity >= 2 then Write_Str ("Hash_Table ("); Write_Int (J); Write_Str (") has "); Write_Int (C); Write_Str (" entries"); Write_Eol; end if; if C < F'Last then F (C) := F (C) + 1; else F (F'Last) := F (F'Last) + 1; end if; if Verbosity >= 3 then N := Hash_Table (J); while N /= No_Name loop S := Name_Entries.Table (N).Name_Chars_Index; Write_Str (" "); for J in 1 .. Name_Entries.Table (N).Name_Len loop Write_Char (Name_Chars.Table (S + Int (J))); end loop; Write_Eol; N := Name_Entries.Table (N).Hash_Link; end loop; end if; end; end if; end loop; Write_Eol; for J in F'Range loop if F (J) /= 0 then Write_Str ("Number of hash chains of length "); if J < 10 then Write_Char (' '); end if; Write_Int (J); if J = F'Last then Write_Str (" or greater"); end if; Write_Str (" = "); Write_Int (F (J)); Write_Eol; end if; end loop; -- Print out average number of probes, in the case where Name_Find is -- called for a string that is already in the table. Write_Eol; Write_Str ("Average number of probes for lookup = "); Probes := Probes / Nsyms; Write_Int (Probes / 200); Write_Char ('.'); Probes := (Probes mod 200) / 2; Write_Char (Character'Val (Zero + Probes / 10)); Write_Char (Character'Val (Zero + Probes mod 10)); Write_Eol; Write_Str ("Max_Chain_Length = "); Write_Int (Max_Chain_Length); Write_Eol; Write_Str ("Name_Chars'Length = "); Write_Int (Name_Chars.Last - Name_Chars.First + 1); Write_Eol; Write_Str ("Name_Entries'Length = "); Write_Int (Int (Name_Entries.Last - Name_Entries.First + 1)); Write_Eol; Write_Str ("Nsyms = "); Write_Int (Nsyms); Write_Eol; end Finalize; ----------------------------- -- Get_Decoded_Name_String -- ----------------------------- procedure Get_Decoded_Name_String (Id : Name_Id) is C : Character; P : Natural; begin Get_Name_String (Id); -- Skip scan if we already know there are no encodings if Name_Entries.Table (Id).Name_Has_No_Encodings then return; end if; -- Quick loop to see if there is anything special to do P := 1; loop if P = Name_Len then Name_Entries.Table (Id).Name_Has_No_Encodings := True; return; else C := Name_Buffer (P); exit when C = 'U' or else C = 'W' or else C = 'Q' or else C = 'O'; P := P + 1; end if; end loop; -- Here we have at least some encoding that we must decode Decode : declare New_Len : Natural; Old : Positive; New_Buf : String (1 .. Name_Buffer'Last); procedure Copy_One_Character; -- Copy a character from Name_Buffer to New_Buf. Includes case -- of copying a Uhh,Whhhh,WWhhhhhhhh sequence and decoding it. function Hex (N : Natural) return Word; -- Scans past N digits using Old pointer and returns hex value procedure Insert_Character (C : Character); -- Insert a new character into output decoded name ------------------------ -- Copy_One_Character -- ------------------------ procedure Copy_One_Character is C : Character; begin C := Name_Buffer (Old); -- U (upper half insertion case) if C = 'U' and then Old < Name_Len and then Name_Buffer (Old + 1) not in 'A' .. 'Z' and then Name_Buffer (Old + 1) /= '_' then Old := Old + 1; -- If we have upper half encoding, then we have to set an -- appropriate wide character sequence for this character. if Upper_Half_Encoding then Widechar.Set_Wide (Char_Code (Hex (2)), New_Buf, New_Len); -- For other encoding methods, upper half characters can -- simply use their normal representation. else Insert_Character (Character'Val (Hex (2))); end if; -- WW (wide wide character insertion) elsif C = 'W' and then Old < Name_Len and then Name_Buffer (Old + 1) = 'W' then Old := Old + 2; Widechar.Set_Wide (Char_Code (Hex (8)), New_Buf, New_Len); -- W (wide character insertion) elsif C = 'W' and then Old < Name_Len and then Name_Buffer (Old + 1) not in 'A' .. 'Z' and then Name_Buffer (Old + 1) /= '_' then Old := Old + 1; Widechar.Set_Wide (Char_Code (Hex (4)), New_Buf, New_Len); -- Any other character is copied unchanged else Insert_Character (C); Old := Old + 1; end if; end Copy_One_Character; --------- -- Hex -- --------- function Hex (N : Natural) return Word is T : Word := 0; C : Character; begin for J in 1 .. N loop C := Name_Buffer (Old); Old := Old + 1; pragma Assert (C in '0' .. '9' or else C in 'a' .. 'f'); if C <= '9' then T := 16 * T + Character'Pos (C) - Character'Pos ('0'); else -- C in 'a' .. 'f' T := 16 * T + Character'Pos (C) - (Character'Pos ('a') - 10); end if; end loop; return T; end Hex; ---------------------- -- Insert_Character -- ---------------------- procedure Insert_Character (C : Character) is begin New_Len := New_Len + 1; New_Buf (New_Len) := C; end Insert_Character; -- Start of processing for Decode begin New_Len := 0; Old := 1; -- Loop through characters of name while Old <= Name_Len loop -- Case of character literal, put apostrophes around character if Name_Buffer (Old) = 'Q' and then Old < Name_Len then Old := Old + 1; Insert_Character ('''); Copy_One_Character; Insert_Character ('''); -- Case of operator name elsif Name_Buffer (Old) = 'O' and then Old < Name_Len and then Name_Buffer (Old + 1) not in 'A' .. 'Z' and then Name_Buffer (Old + 1) /= '_' then Old := Old + 1; declare -- This table maps the 2nd and 3rd characters of the name -- into the required output. Two blanks means leave the -- name alone Map : constant String := "ab " & -- Oabs => "abs" "ad+ " & -- Oadd => "+" "an " & -- Oand => "and" "co& " & -- Oconcat => "&" "di/ " & -- Odivide => "/" "eq= " & -- Oeq => "=" "ex**" & -- Oexpon => "**" "gt> " & -- Ogt => ">" "ge>=" & -- Oge => ">=" "le<=" & -- Ole => "<=" "lt< " & -- Olt => "<" "mo " & -- Omod => "mod" "mu* " & -- Omutliply => "*" "ne/=" & -- One => "/=" "no " & -- Onot => "not" "or " & -- Oor => "or" "re " & -- Orem => "rem" "su- " & -- Osubtract => "-" "xo "; -- Oxor => "xor" J : Integer; begin Insert_Character ('"'); -- Search the map. Note that this loop must terminate, if -- not we have some kind of internal error, and a constraint -- error may be raised. J := Map'First; loop exit when Name_Buffer (Old) = Map (J) and then Name_Buffer (Old + 1) = Map (J + 1); J := J + 4; end loop; -- Special operator name if Map (J + 2) /= ' ' then Insert_Character (Map (J + 2)); if Map (J + 3) /= ' ' then Insert_Character (Map (J + 3)); end if; Insert_Character ('"'); -- Skip past original operator name in input while Old <= Name_Len and then Name_Buffer (Old) in 'a' .. 'z' loop Old := Old + 1; end loop; -- For other operator names, leave them in lower case, -- surrounded by apostrophes else -- Copy original operator name from input to output while Old <= Name_Len and then Name_Buffer (Old) in 'a' .. 'z' loop Copy_One_Character; end loop; Insert_Character ('"'); end if; end; -- Else copy one character and keep going else Copy_One_Character; end if; end loop; -- Copy new buffer as result Name_Len := New_Len; Name_Buffer (1 .. New_Len) := New_Buf (1 .. New_Len); end Decode; end Get_Decoded_Name_String; ------------------------------------------- -- Get_Decoded_Name_String_With_Brackets -- ------------------------------------------- procedure Get_Decoded_Name_String_With_Brackets (Id : Name_Id) is P : Natural; begin -- Case of operator name, normal decoding is fine if Name_Buffer (1) = 'O' then Get_Decoded_Name_String (Id); -- For character literals, normal decoding is fine elsif Name_Buffer (1) = 'Q' then Get_Decoded_Name_String (Id); -- Only remaining issue is U/W/WW sequences else Get_Name_String (Id); P := 1; while P < Name_Len loop if Name_Buffer (P + 1) in 'A' .. 'Z' then P := P + 1; -- Uhh encoding elsif Name_Buffer (P) = 'U' then for J in reverse P + 3 .. P + Name_Len loop Name_Buffer (J + 3) := Name_Buffer (J); end loop; Name_Len := Name_Len + 3; Name_Buffer (P + 3) := Name_Buffer (P + 2); Name_Buffer (P + 2) := Name_Buffer (P + 1); Name_Buffer (P) := '['; Name_Buffer (P + 1) := '"'; Name_Buffer (P + 4) := '"'; Name_Buffer (P + 5) := ']'; P := P + 6; -- WWhhhhhhhh encoding elsif Name_Buffer (P) = 'W' and then P + 9 <= Name_Len and then Name_Buffer (P + 1) = 'W' and then Name_Buffer (P + 2) not in 'A' .. 'Z' and then Name_Buffer (P + 2) /= '_' then Name_Buffer (P + 12 .. Name_Len + 2) := Name_Buffer (P + 10 .. Name_Len); Name_Buffer (P) := '['; Name_Buffer (P + 1) := '"'; Name_Buffer (P + 10) := '"'; Name_Buffer (P + 11) := ']'; Name_Len := Name_Len + 2; P := P + 12; -- Whhhh encoding elsif Name_Buffer (P) = 'W' and then P < Name_Len and then Name_Buffer (P + 1) not in 'A' .. 'Z' and then Name_Buffer (P + 1) /= '_' then Name_Buffer (P + 8 .. P + Name_Len + 3) := Name_Buffer (P + 5 .. Name_Len); Name_Buffer (P + 2 .. P + 5) := Name_Buffer (P + 1 .. P + 4); Name_Buffer (P) := '['; Name_Buffer (P + 1) := '"'; Name_Buffer (P + 6) := '"'; Name_Buffer (P + 7) := ']'; Name_Len := Name_Len + 3; P := P + 8; else P := P + 1; end if; end loop; end if; end Get_Decoded_Name_String_With_Brackets; ------------------------ -- Get_Last_Two_Chars -- ------------------------ procedure Get_Last_Two_Chars (N : Name_Id; C1, C2 : out Character) is NE : Name_Entry renames Name_Entries.Table (N); NEL : constant Int := Int (NE.Name_Len); begin if NEL >= 2 then C1 := Name_Chars.Table (NE.Name_Chars_Index + NEL - 1); C2 := Name_Chars.Table (NE.Name_Chars_Index + NEL - 0); else C1 := ASCII.NUL; C2 := ASCII.NUL; end if; end Get_Last_Two_Chars; --------------------- -- Get_Name_String -- --------------------- -- Procedure version leaving result in Name_Buffer, length in Name_Len procedure Get_Name_String (Id : Name_Id) is S : Int; begin pragma Assert (Id in Name_Entries.First .. Name_Entries.Last); S := Name_Entries.Table (Id).Name_Chars_Index; Name_Len := Natural (Name_Entries.Table (Id).Name_Len); for J in 1 .. Name_Len loop Name_Buffer (J) := Name_Chars.Table (S + Int (J)); end loop; end Get_Name_String; --------------------- -- Get_Name_String -- --------------------- -- Function version returning a string function Get_Name_String (Id : Name_Id) return String is S : Int; begin pragma Assert (Id in Name_Entries.First .. Name_Entries.Last); S := Name_Entries.Table (Id).Name_Chars_Index; declare R : String (1 .. Natural (Name_Entries.Table (Id).Name_Len)); begin for J in R'Range loop R (J) := Name_Chars.Table (S + Int (J)); end loop; return R; end; end Get_Name_String; -------------------------------- -- Get_Name_String_And_Append -- -------------------------------- procedure Get_Name_String_And_Append (Id : Name_Id) is S : Int; begin pragma Assert (Id in Name_Entries.First .. Name_Entries.Last); S := Name_Entries.Table (Id).Name_Chars_Index; for J in 1 .. Natural (Name_Entries.Table (Id).Name_Len) loop Name_Len := Name_Len + 1; Name_Buffer (Name_Len) := Name_Chars.Table (S + Int (J)); end loop; end Get_Name_String_And_Append; ------------------------- -- Get_Name_Table_Byte -- ------------------------- function Get_Name_Table_Byte (Id : Name_Id) return Byte is begin pragma Assert (Id in Name_Entries.First .. Name_Entries.Last); return Name_Entries.Table (Id).Byte_Info; end Get_Name_Table_Byte; ------------------------- -- Get_Name_Table_Info -- ------------------------- function Get_Name_Table_Info (Id : Name_Id) return Int is begin pragma Assert (Id in Name_Entries.First .. Name_Entries.Last); return Name_Entries.Table (Id).Int_Info; end Get_Name_Table_Info; ----------------------------------------- -- Get_Unqualified_Decoded_Name_String -- ----------------------------------------- procedure Get_Unqualified_Decoded_Name_String (Id : Name_Id) is begin Get_Decoded_Name_String (Id); Strip_Qualification_And_Suffixes; end Get_Unqualified_Decoded_Name_String; --------------------------------- -- Get_Unqualified_Name_String -- --------------------------------- procedure Get_Unqualified_Name_String (Id : Name_Id) is begin Get_Name_String (Id); Strip_Qualification_And_Suffixes; end Get_Unqualified_Name_String; ---------- -- Hash -- ---------- function Hash return Hash_Index_Type is -- This hash function looks at every character, in order to make it -- likely that similar strings get different hash values. The rotate by -- 7 bits has been determined empirically to be good, and it doesn't -- lose bits like a shift would. The final conversion can't overflow, -- because the table is 2**16 in size. This function probably needs to -- be changed if the hash table size is changed. -- Note that we could get some speed improvement by aligning the string -- to 32 or 64 bits, and doing word-wise xor's. We could also implement -- a growable table. It doesn't seem worth the trouble to do those -- things, for now. Result : Unsigned_16 := 0; begin for J in 1 .. Name_Len loop Result := Rotate_Left (Result, 7) xor Character'Pos (Name_Buffer (J)); end loop; return Hash_Index_Type (Result); end Hash; ---------------- -- Initialize -- ---------------- procedure Initialize is begin null; end Initialize; ------------------------------- -- Insert_Str_In_Name_Buffer -- ------------------------------- procedure Insert_Str_In_Name_Buffer (S : String; Index : Positive) is SL : constant Natural := S'Length; begin Name_Buffer (Index + SL .. Name_Len + SL) := Name_Buffer (Index .. Name_Len); Name_Buffer (Index .. Index + SL - 1) := S; Name_Len := Name_Len + SL; end Insert_Str_In_Name_Buffer; ---------------------- -- Is_Internal_Name -- ---------------------- -- Version taking an argument function Is_Internal_Name (Id : Name_Id) return Boolean is begin Get_Name_String (Id); return Is_Internal_Name; end Is_Internal_Name; ---------------------- -- Is_Internal_Name -- ---------------------- -- Version taking its input from Name_Buffer function Is_Internal_Name return Boolean is begin if Name_Buffer (1) = '_' or else Name_Buffer (Name_Len) = '_' then return True; else -- Test backwards, because we only want to test the last entity -- name if the name we have is qualified with other entities. for J in reverse 1 .. Name_Len loop if Is_OK_Internal_Letter (Name_Buffer (J)) then return True; -- Quit if we come to terminating double underscore (note that -- if the current character is an underscore, we know that -- there is a previous character present, since we already -- filtered out the case of Name_Buffer (1) = '_' above. elsif Name_Buffer (J) = '_' and then Name_Buffer (J - 1) = '_' and then Name_Buffer (J - 2) /= '_' then return False; end if; end loop; end if; return False; end Is_Internal_Name; --------------------------- -- Is_OK_Internal_Letter -- --------------------------- function Is_OK_Internal_Letter (C : Character) return Boolean is begin return C in 'A' .. 'Z' and then C /= 'O' and then C /= 'Q' and then C /= 'U' and then C /= 'W' and then C /= 'X'; end Is_OK_Internal_Letter; ---------------------- -- Is_Operator_Name -- ---------------------- function Is_Operator_Name (Id : Name_Id) return Boolean is S : Int; begin pragma Assert (Id in Name_Entries.First .. Name_Entries.Last); S := Name_Entries.Table (Id).Name_Chars_Index; return Name_Chars.Table (S + 1) = 'O'; end Is_Operator_Name; ------------------- -- Is_Valid_Name -- ------------------- function Is_Valid_Name (Id : Name_Id) return Boolean is begin return Id in Name_Entries.First .. Name_Entries.Last; end Is_Valid_Name; -------------------- -- Length_Of_Name -- -------------------- function Length_Of_Name (Id : Name_Id) return Nat is begin return Int (Name_Entries.Table (Id).Name_Len); end Length_Of_Name; ---------- -- Lock -- ---------- procedure Lock is begin Name_Chars.Set_Last (Name_Chars.Last + Name_Chars_Reserve); Name_Entries.Set_Last (Name_Entries.Last + Name_Entries_Reserve); Name_Chars.Locked := True; Name_Entries.Locked := True; Name_Chars.Release; Name_Entries.Release; end Lock; ------------------------ -- Name_Chars_Address -- ------------------------ function Name_Chars_Address return System.Address is begin return Name_Chars.Table (0)'Address; end Name_Chars_Address; ---------------- -- Name_Enter -- ---------------- function Name_Enter return Name_Id is begin Name_Entries.Append ((Name_Chars_Index => Name_Chars.Last, Name_Len => Short (Name_Len), Byte_Info => 0, Int_Info => 0, Name_Has_No_Encodings => False, Hash_Link => No_Name)); -- Set corresponding string entry in the Name_Chars table for J in 1 .. Name_Len loop Name_Chars.Append (Name_Buffer (J)); end loop; Name_Chars.Append (ASCII.NUL); return Name_Entries.Last; end Name_Enter; -------------------------- -- Name_Entries_Address -- -------------------------- function Name_Entries_Address return System.Address is begin return Name_Entries.Table (First_Name_Id)'Address; end Name_Entries_Address; ------------------------ -- Name_Entries_Count -- ------------------------ function Name_Entries_Count return Nat is begin return Int (Name_Entries.Last - Name_Entries.First + 1); end Name_Entries_Count; --------------- -- Name_Find -- --------------- function Name_Find return Name_Id is New_Id : Name_Id; -- Id of entry in hash search, and value to be returned S : Int; -- Pointer into string table Hash_Index : Hash_Index_Type; -- Computed hash index begin -- Quick handling for one character names if Name_Len = 1 then return Name_Id (First_Name_Id + Character'Pos (Name_Buffer (1))); -- Otherwise search hash table for existing matching entry else Hash_Index := Namet.Hash; New_Id := Hash_Table (Hash_Index); if New_Id = No_Name then Hash_Table (Hash_Index) := Name_Entries.Last + 1; else Search : loop if Name_Len /= Integer (Name_Entries.Table (New_Id).Name_Len) then goto No_Match; end if; S := Name_Entries.Table (New_Id).Name_Chars_Index; for J in 1 .. Name_Len loop if Name_Chars.Table (S + Int (J)) /= Name_Buffer (J) then goto No_Match; end if; end loop; return New_Id; -- Current entry in hash chain does not match <<No_Match>> if Name_Entries.Table (New_Id).Hash_Link /= No_Name then New_Id := Name_Entries.Table (New_Id).Hash_Link; else Name_Entries.Table (New_Id).Hash_Link := Name_Entries.Last + 1; exit Search; end if; end loop Search; end if; -- We fall through here only if a matching entry was not found in the -- hash table. We now create a new entry in the names table. The hash -- link pointing to the new entry (Name_Entries.Last+1) has been set. Name_Entries.Append ((Name_Chars_Index => Name_Chars.Last, Name_Len => Short (Name_Len), Hash_Link => No_Name, Name_Has_No_Encodings => False, Int_Info => 0, Byte_Info => 0)); -- Set corresponding string entry in the Name_Chars table for J in 1 .. Name_Len loop Name_Chars.Append (Name_Buffer (J)); end loop; Name_Chars.Append (ASCII.NUL); return Name_Entries.Last; end if; end Name_Find; ------------------ -- Reinitialize -- ------------------ procedure Reinitialize is begin Name_Chars.Init; Name_Entries.Init; -- Initialize entries for one character names for C in Character loop Name_Entries.Append ((Name_Chars_Index => Name_Chars.Last, Name_Len => 1, Byte_Info => 0, Int_Info => 0, Name_Has_No_Encodings => True, Hash_Link => No_Name)); Name_Chars.Append (C); Name_Chars.Append (ASCII.NUL); end loop; -- Clear hash table for J in Hash_Index_Type loop Hash_Table (J) := No_Name; end loop; end Reinitialize; ---------------------- -- Reset_Name_Table -- ---------------------- procedure Reset_Name_Table is begin for J in First_Name_Id .. Name_Entries.Last loop Name_Entries.Table (J).Int_Info := 0; Name_Entries.Table (J).Byte_Info := 0; end loop; end Reset_Name_Table; -------------------------------- -- Set_Character_Literal_Name -- -------------------------------- procedure Set_Character_Literal_Name (C : Char_Code) is begin Name_Buffer (1) := 'Q'; Name_Len := 1; Store_Encoded_Character (C); end Set_Character_Literal_Name; ------------------------- -- Set_Name_Table_Byte -- ------------------------- procedure Set_Name_Table_Byte (Id : Name_Id; Val : Byte) is begin pragma Assert (Id in Name_Entries.First .. Name_Entries.Last); Name_Entries.Table (Id).Byte_Info := Val; end Set_Name_Table_Byte; ------------------------- -- Set_Name_Table_Info -- ------------------------- procedure Set_Name_Table_Info (Id : Name_Id; Val : Int) is begin pragma Assert (Id in Name_Entries.First .. Name_Entries.Last); Name_Entries.Table (Id).Int_Info := Val; end Set_Name_Table_Info; ----------------------------- -- Store_Encoded_Character -- ----------------------------- procedure Store_Encoded_Character (C : Char_Code) is procedure Set_Hex_Chars (C : Char_Code); -- Stores given value, which is in the range 0 .. 255, as two hex -- digits (using lower case a-f) in Name_Buffer, incrementing Name_Len. ------------------- -- Set_Hex_Chars -- ------------------- procedure Set_Hex_Chars (C : Char_Code) is Hexd : constant String := "0123456789abcdef"; N : constant Natural := Natural (C); begin Name_Buffer (Name_Len + 1) := Hexd (N / 16 + 1); Name_Buffer (Name_Len + 2) := Hexd (N mod 16 + 1); Name_Len := Name_Len + 2; end Set_Hex_Chars; -- Start of processing for Store_Encoded_Character begin Name_Len := Name_Len + 1; if In_Character_Range (C) then declare CC : constant Character := Get_Character (C); begin if CC in 'a' .. 'z' or else CC in '0' .. '9' then Name_Buffer (Name_Len) := CC; else Name_Buffer (Name_Len) := 'U'; Set_Hex_Chars (C); end if; end; elsif In_Wide_Character_Range (C) then Name_Buffer (Name_Len) := 'W'; Set_Hex_Chars (C / 256); Set_Hex_Chars (C mod 256); else Name_Buffer (Name_Len) := 'W'; Name_Len := Name_Len + 1; Name_Buffer (Name_Len) := 'W'; Set_Hex_Chars (C / 2 ** 24); Set_Hex_Chars ((C / 2 ** 16) mod 256); Set_Hex_Chars ((C / 256) mod 256); Set_Hex_Chars (C mod 256); end if; end Store_Encoded_Character; -------------------------------------- -- Strip_Qualification_And_Suffixes -- -------------------------------------- procedure Strip_Qualification_And_Suffixes is J : Integer; begin -- Strip package body qualification string off end for J in reverse 2 .. Name_Len loop if Name_Buffer (J) = 'X' then Name_Len := J - 1; exit; end if; exit when Name_Buffer (J) /= 'b' and then Name_Buffer (J) /= 'n' and then Name_Buffer (J) /= 'p'; end loop; -- Find rightmost __ or $ separator if one exists. First we position -- to start the search. If we have a character constant, position -- just before it, otherwise position to last character but one if Name_Buffer (Name_Len) = ''' then J := Name_Len - 2; while J > 0 and then Name_Buffer (J) /= ''' loop J := J - 1; end loop; else J := Name_Len - 1; end if; -- Loop to search for rightmost __ or $ (homonym) separator while J > 1 loop -- If $ separator, homonym separator, so strip it and keep looking if Name_Buffer (J) = '$' then Name_Len := J - 1; J := Name_Len - 1; -- Else check for __ found elsif Name_Buffer (J) = '_' and then Name_Buffer (J + 1) = '_' then -- Found __ so see if digit follows, and if so, this is a -- homonym separator, so strip it and keep looking. if Name_Buffer (J + 2) in '0' .. '9' then Name_Len := J - 1; J := Name_Len - 1; -- If not a homonym separator, then we simply strip the -- separator and everything that precedes it, and we are done else Name_Buffer (1 .. Name_Len - J - 1) := Name_Buffer (J + 2 .. Name_Len); Name_Len := Name_Len - J - 1; exit; end if; else J := J - 1; end if; end loop; end Strip_Qualification_And_Suffixes; --------------- -- Tree_Read -- --------------- procedure Tree_Read is begin Name_Chars.Tree_Read; Name_Entries.Tree_Read; Tree_Read_Data (Hash_Table'Address, Hash_Table'Length * (Hash_Table'Component_Size / Storage_Unit)); end Tree_Read; ---------------- -- Tree_Write -- ---------------- procedure Tree_Write is begin Name_Chars.Tree_Write; Name_Entries.Tree_Write; Tree_Write_Data (Hash_Table'Address, Hash_Table'Length * (Hash_Table'Component_Size / Storage_Unit)); end Tree_Write; ------------ -- Unlock -- ------------ procedure Unlock is begin Name_Chars.Set_Last (Name_Chars.Last - Name_Chars_Reserve); Name_Entries.Set_Last (Name_Entries.Last - Name_Entries_Reserve); Name_Chars.Locked := False; Name_Entries.Locked := False; Name_Chars.Release; Name_Entries.Release; end Unlock; -------- -- wn -- -------- procedure wn (Id : Name_Id) is S : Int; begin if not Id'Valid then Write_Str ("<invalid name_id>"); elsif Id = No_Name then Write_Str ("<No_Name>"); elsif Id = Error_Name then Write_Str ("<Error_Name>"); else S := Name_Entries.Table (Id).Name_Chars_Index; Name_Len := Natural (Name_Entries.Table (Id).Name_Len); for J in 1 .. Name_Len loop Write_Char (Name_Chars.Table (S + Int (J))); end loop; end if; Write_Eol; end wn; ---------------- -- Write_Name -- ---------------- procedure Write_Name (Id : Name_Id) is begin if Id >= First_Name_Id then Get_Name_String (Id); Write_Str (Name_Buffer (1 .. Name_Len)); end if; end Write_Name; ------------------------ -- Write_Name_Decoded -- ------------------------ procedure Write_Name_Decoded (Id : Name_Id) is begin if Id >= First_Name_Id then Get_Decoded_Name_String (Id); Write_Str (Name_Buffer (1 .. Name_Len)); end if; end Write_Name_Decoded; -- Package initialization, initialize tables begin Reinitialize; end Namet;
No-one has translated the mmiecho example into Ada yet. Be the first to create mmiecho in Ada and get one free Internet! If you're the author of the Ada binding, this is a great way to get people to use 0MQ in Ada. To submit a new translation email it to zeromq-dev@lists.zeromq.org. Please: * Stick to identical functionality and naming used in examples so that readers can easily compare languages. * You MUST place your name as author in the examples so readers can contact you. * You MUST state in the email that you license your code under the MIT/X11 license. Subscribe to the email list at http://lists.zeromq.org/mailman/listinfo/zeromq-dev.
package Lto7_Pkg is type Iface_1 is interface; procedure op1(this : Iface_1) is abstract; type Iface_2 is interface; procedure op2 (this : Iface_2) is abstract; type Root is new Iface_1 with record m_name : String(1..4); end record; procedure op1 (this : Root); type DT is new Root and Iface_2 with null record; procedure op2 (this : DT); end Lto7_Pkg;
-- { dg-do run } -- { dg-options "-gnatp" } -- This test requires architecture- and OS-specific support code for unwinding -- through signal frames (typically located in *-unwind.h) to pass. Feel free -- to disable it if this code hasn't been implemented yet. procedure Null_Pointer_Deref2 is task T; task body T is type Int_Ptr is access all Integer; function Ident return Int_Ptr is begin return null; end; Data : Int_Ptr := Ident; begin Data.all := 1; exception when others => null; end T; begin null; end;