content
stringlengths
23
1.05M
with Ada.Characters.Conversions; --with Ada.Command_Line; --with Ada.Containers.Hashed_Maps; --with Ada.Containers.Ordered_Sets; --with Ada.Containers.Vectors; --with Ada.Strings.Wide_Fixed; --with Ada.Strings.Wide_Unbounded.Wide_Hash; --with Ada.Unchecked_Conversion; with Ada.Wide_Text_IO; with Ada.Wide_Wide_Text_IO; with Asis.Ada_Environments; with Asis.Compilation_Units; with Asis.Declarations; with Asis.Elements; --with Asis.Expressions; with Asis.Implementation; with League.Application; with League.String_Vectors; with League.Strings; with Documentation_Generator.Database; with Documentation_Generator.Wiki; procedure Documentation_Generator.Driver is use Documentation_Generator.Database; Extractor_Context : Asis.Context; Specification_Unit : Asis.Compilation_Unit; Implementation_Unit : Asis.Compilation_Unit; Module : Module_Access; -- type Subprogram_Information is record -- Declaration : Asis.Element; -- end record; -- -- type Subprogram_Information_Access is access all Subprogram_Information; -- -- package Subprogram_Vectors is -- new Ada.Containers.Vectors (Positive, Subprogram_Information_Access); -- -- type Homograph_Information is record -- Name : Ada.Strings.Wide_Unbounded.Unbounded_Wide_String; -- Subprograms : Subprogram_Vectors.Vector; -- end record; -- -- type Homograph_Information_Access is access all Homograph_Information; -- -- function Is_Less -- (Left : Homograph_Information_Access; -- Right : Homograph_Information_Access) return Boolean; -- -- package Homograph_Maps is -- new Ada.Containers.Hashed_Maps -- (Ada.Strings.Wide_Unbounded.Unbounded_Wide_String, -- Homograph_Information_Access, -- Ada.Strings.Wide_Unbounded.Wide_Hash, -- Ada.Strings.Wide_Unbounded."="); -- -- package Homograph_Sets is -- new Ada.Containers.Ordered_Sets -- (Homograph_Information_Access, Is_Less); -- -- type Type_Information is record -- Declaration : Asis.Element; ---- Name : Ada.Strings.Wide_Unbounded.Unbounded_Wide_String; ---- Is_Tagged : Boolean; -- Name_To_Operation : Homograph_Maps.Map; -- Operations : Homograph_Sets.Set; -- Name_To_Related : Homograph_Maps.Map; -- Related : Homograph_Sets.Set; -- end record; -- -- type Type_Information_Access is access all Type_Information; -- -- function Hash (Item : Asis.Element) return Ada.Containers.Hash_Type; -- -- package Type_Maps is -- new Ada.Containers.Hashed_Maps -- (Asis.Element, -- Type_Information_Access, -- Hash, -- Asis.Elements.Is_Equal); -- -- function Is_Less -- (Left : Type_Information_Access; -- Right : Type_Information_Access) return Boolean; -- -- package Type_Sets is -- new Ada.Containers.Ordered_Sets -- (Type_Information_Access, Is_Less); procedure Process_Specification; procedure Generate; procedure Dump (Element : Asis.Element); -- Output element's information suitable for debug purpose. procedure Analyze_Type_Declaration (Declaration : Asis.Element); -- Analyzes type declaration. procedure Analyze_Subprogram_Declaration (Declaration : Asis.Element); -- Analyzes subprogram declaration. -- function Name_Of (Item : Type_Information) return Wide_String; -- -- function "+" -- (Item : Wide_String) -- return Ada.Strings.Wide_Unbounded.Unbounded_Wide_String -- renames Ada.Strings.Wide_Unbounded.To_Unbounded_Wide_String; -- function "+" -- (Item : Ada.Strings.Wide_Unbounded.Unbounded_Wide_String) -- return Wide_String renames Ada.Strings.Wide_Unbounded.To_Wide_String; -- -- All_Types : Type_Sets.Set; -- Element_To_Type : Type_Maps.Map; ------------------------------------ -- Analyze_Subprogram_Declaration -- ------------------------------------ procedure Analyze_Subprogram_Declaration (Declaration : Asis.Element) is -- -- procedure Analyze_Parameter_Type_View -- (View : Asis.Element; Type_Declaration : out Asis.Element); -- -- --------------------------------- -- -- Analyze_Parameter_Type_View -- -- --------------------------------- -- -- procedure Analyze_Parameter_Type_View -- (View : Asis.Element; Type_Declaration : out Asis.Element) -- is -- use type Asis.Attribute_Kinds; -- -- Aux : Asis.Element := View; -- -- begin -- case Asis.Elements.Element_Kind (Aux) is -- when Asis.A_Definition => -- -- XXX Not implemented -- -- raise Program_Error; -- -- when Asis.An_Expression => -- -- For classwide parameters take prefix. -- -- if Asis.Elements.Attribute_Kind (Aux) -- = Asis.A_Class_Attribute -- then -- Aux := Asis.Expressions.Prefix (Aux); -- end if; -- -- Type_Declaration := -- Asis.Expressions.Corresponding_Name_Declaration (Aux); -- ------ Ada.Wide_Text_IO.Put_Line ------ (Asis.Elements.Debug_Image (Parameter)); ---- ------ case Asis.Elements.Expression_Kind (Parameter) is ------ when Asis.An_Attribute_Reference => ------ case Asis.Elements.Attribute_Kind (Parameter) is ------ when Asis.A_Class_Attribute => ------ -- XXX Not implemented ------ ------ Parameter := ------ Asis.Expressions.Prefix (Parameter); ------ null; ------ Ada.Wide_Text_IO.Put_Line ------ (Asis.Elements.Debug_Image (Parameter)); ------ ------ when others => ------ Ada.Wide_Text_IO.Put_Line ------ (Asis.Elements.Debug_Image (Parameter)); ------ end case; ------ ------ when Asis.An_Identifier => ------ -- XXX Not implemented ------ ------ null; ------ ------ when others => ------ Ada.Wide_Text_IO.Put_Line ------ (Asis.Elements.Debug_Image (Parameter)); ------ end case; ---- -- when others => -- raise Program_Error; -- end case; -- end Analyze_Parameter_Type_View; -- -- Name : constant Wide_String -- := Asis.Declarations.Defining_Name_Image -- (Asis.Declarations.Names (Subprogram_Declaration) (1)); -- Parameters : constant Asis.Parameter_Specification_List -- := Asis.Declarations.Parameter_Profile (Subprogram_Declaration); -- Type_Declaration : Asis.Element; -- Class : Type_Information_Access; -- Homograph : Homograph_Information_Access; -- -- begin -- -- Analyze first parameter to determine whether this subprogram -- -- belongs to one of types declared in the package; and potentially -- -- can be called using prefix notation. -- -- Analyze_Parameter_Type_View -- (Asis.Declarations.Object_Declaration_View (Parameters (1)), -- Type_Declaration); -- -- if Element_To_Type.Contains (Type_Declaration) then -- Class := Element_To_Type.Element (Type_Declaration); -- -- if not Class.Name_To_Operation.Contains (+Name) then -- Homograph := -- new Homograph_Information' -- (Name => +Name, -- Subprograms => Subprogram_Vectors.Empty_Vector); -- Class.Operations.Insert (Homograph); -- Class.Name_To_Operation.Insert (+Name, Homograph); -- -- else -- Homograph := Class.Name_To_Operation.Element (+Name); -- end if; -- -- Homograph.Subprograms.Append -- (new Subprogram_Information' -- (Declaration => Subprogram_Declaration)); -- -- return; -- end if; -- -- -- Check whether specified subprogram is a function to implement -- -- operator and add it to the list of operations when second -- -- parameter has type declared in the package. -- -- if Asis.Elements.Declaration_Kind (Subprogram_Declaration) -- = Asis.A_Function_Declaration -- and (Name = """=""" or Name = """&""") -- then -- Analyze_Parameter_Type_View -- (Asis.Declarations.Object_Declaration_View (Parameters (2)), -- Type_Declaration); -- -- if Element_To_Type.Contains (Type_Declaration) then -- Class := Element_To_Type.Element (Type_Declaration); -- -- if not Class.Name_To_Operation.Contains (+Name) then -- Homograph := -- new Homograph_Information' -- (Name => +Name, -- Subprograms => Subprogram_Vectors.Empty_Vector); -- Class.Operations.Insert (Homograph); -- Class.Name_To_Operation.Insert (+Name, Homograph); -- -- else -- Homograph := Class.Name_To_Operation.Element (+Name); -- end if; -- -- Homograph.Subprograms.Append -- (new Subprogram_Information' -- (Declaration => Subprogram_Declaration)); -- -- return; -- end if; -- end if; -- -- -- Analyze type of return value for the function to list subprogram -- -- as related. -- -- if Asis.Elements.Declaration_Kind (Subprogram_Declaration) -- = Asis.A_Function_Declaration -- then -- Analyze_Parameter_Type_View -- (Asis.Declarations.Result_Profile (Subprogram_Declaration), -- Type_Declaration); -- -- if Element_To_Type.Contains (Type_Declaration) then -- Class := Element_To_Type.Element (Type_Declaration); -- -- if not Class.Name_To_Related.Contains (+Name) then -- Homograph := -- new Homograph_Information' -- (Name => +Name, -- Subprograms => Subprogram_Vectors.Empty_Vector); -- Class.Related.Insert (Homograph); -- Class.Name_To_Related.Insert (+Name, Homograph); -- -- else -- Homograph := Class.Name_To_Related.Element (+Name); -- end if; -- -- Homograph.Subprograms.Append -- (new Subprogram_Information' -- (Declaration => Subprogram_Declaration)); -- -- return; -- end if; -- end if; -- -- Ada.Wide_Text_IO.Put_Line (Name); begin null; end Analyze_Subprogram_Declaration; ------------------------------ -- Analyze_Type_Declaration -- ------------------------------ procedure Analyze_Type_Declaration (Declaration : Asis.Element) is Type_Declaration : constant Type_Access := Lookup (Declaration); begin null; end Analyze_Type_Declaration; ---------- -- Dump -- ---------- procedure Dump (Element : Asis.Element) is begin Ada.Wide_Text_IO.Put_Line ("--------------------------------------------------------------------" & "----------"); Ada.Wide_Text_IO.Put_Line ("Element Kind : " & Asis.Element_Kinds'Wide_Image (Asis.Elements.Element_Kind (Element))); case Asis.Elements.Element_Kind (Element) is when Asis.A_Declaration => Ada.Wide_Text_IO.Put_Line ("Declaration Kind : " & Asis.Declaration_Kinds'Wide_Image (Asis.Elements.Declaration_Kind (Element))); when others => null; end case; Ada.Wide_Text_IO.Put_Line (Asis.Elements.Debug_Image (Element)); end Dump; -------------- -- Generate -- -------------- procedure Generate is -- -- procedure Put (Position : Type_Sets.Cursor); -- -- procedure Dump_Subprograms (Position : Type_Sets.Cursor); -- -- ---------------------- -- -- Dump_Subprograms -- -- ---------------------- -- -- procedure Dump_Subprograms (Position : Type_Sets.Cursor) is -- -- procedure Dump_Homograph (Position : Homograph_Sets.Cursor); -- -- -------------------- -- -- Dump_Homograph -- -- -------------------- -- -- procedure Dump_Homograph (Position : Homograph_Sets.Cursor) is -- Homograph : constant Homograph_Information_Access -- := Homograph_Sets.Element (Position); -- -- begin -- Ada.Wide_Text_IO.Put_Line (" " & (+Homograph.Name)); ---- Ada.Strings.Wide_Unbounded.Wide_Text_IO.Put_Line (Homograph.Name -- end Dump_Homograph; -- -- Info : constant Type_Information_Access -- := Type_Sets.Element (Position); -- Section : constant Wide_String -- := "Subprograms of " & Name_Of (Info.all); -- -- begin -- Ada.Wide_Text_IO.Put_Line (Section); -- Ada.Wide_Text_IO.Put_Line -- (Ada.Strings.Wide_Fixed."*" (Section'Length, '-')); -- -- if not Info.Operations.Is_Empty then -- Ada.Wide_Text_IO.New_Line; -- Ada.Wide_Text_IO.Put_Line ("============"); -- Ada.Wide_Text_IO.Put_Line (" Operations"); -- Ada.Wide_Text_IO.Put_Line ("============"); -- Info.Operations.Iterate (Dump_Homograph'Access); -- end if; -- -- if not Info.Related.Is_Empty then -- Ada.Wide_Text_IO.New_Line; -- Ada.Wide_Text_IO.Put_Line ("===================="); -- Ada.Wide_Text_IO.Put_Line (" Related Operations"); -- Ada.Wide_Text_IO.Put_Line ("===================="); -- Info.Related.Iterate (Dump_Homograph'Access); -- end if; -- end Dump_Subprograms; -- -- --------- -- -- Put -- -- --------- -- -- procedure Put (Position : Type_Sets.Cursor) is -- Info : Type_Information_Access := Type_Sets.Element (Position); -- -- begin -- Ada.Wide_Text_IO.Put_Line (" " & Name_Of (Info.all)); -- end Put; procedure Output_Type (The_Type : not null Type_Access) is begin Ada.Wide_Wide_Text_IO.Put_Line (The_Type.Name.To_Wide_Wide_String); end Output_Type; begin Ada.Wide_Wide_Text_IO.Put_Line ("List of Types"); Ada.Wide_Wide_Text_IO.Put_Line ("-------------"); Iterate (Output_Type'Access); -- All_Types.Iterate (Dump_Subprograms'Access); null; end Generate; -- ---------- -- -- Hash -- -- ---------- -- -- function Hash (Item : Asis.Element) return Ada.Containers.Hash_Type is -- function To_Hash_Type is -- new Ada.Unchecked_Conversion -- (Asis.Asis_Integer, Ada.Containers.Hash_Type); -- -- begin -- return To_Hash_Type (Asis.Elements.Hash (Item)); -- end Hash; -- -- ------------- -- -- Is_Less -- -- ------------- -- -- function Is_Less -- (Left : Homograph_Information_Access; -- Right : Homograph_Information_Access) return Boolean -- is -- use type Ada.Strings.Wide_Unbounded.Unbounded_Wide_String; -- -- begin -- return Left.Name < Right.Name; -- end Is_Less; -- -- ------------- -- -- Is_Less -- -- ------------- -- -- function Is_Less -- (Left : Type_Information_Access; -- Right : Type_Information_Access) return Boolean -- is -- L : constant Wide_String -- := Asis.Compilation_Units.Unit_Full_Name -- (Asis.Elements.Enclosing_Compilation_Unit (Left.Declaration)) -- & '.' -- & Name_Of (Left.all); -- R : constant Wide_String -- := Asis.Compilation_Units.Unit_Full_Name -- (Asis.Elements.Enclosing_Compilation_Unit (Right.Declaration)) -- & '.' -- & Name_Of (Right.all); -- -- begin -- return L < R; -- end Is_Less; -- -- ------------- -- -- Name_Of -- -- ------------- -- -- function Name_Of (Item : Type_Information) return Wide_String is -- Name : constant Asis.Defining_Name -- := Asis.Declarations.Names (Item.Declaration) (1); -- -- begin -- return Asis.Declarations.Defining_Name_Image (Name); -- end Name_Of; --------------------------- -- Process_Specification -- --------------------------- procedure Process_Specification is -- use type Asis.Declaration_Kinds; -- -- procedure Process_Type (Type_Declaration : Asis.Element); -- -- Process type declaration. -- -- procedure Process_Subprogram (Subprogram_Declaration : Asis.Element); -- -- Process declaration of the subprogram and add it to corresponding -- -- set of subprograms. -- -- ------------------------ -- -- Process_Subprogram -- -- ------------------------ -- -- procedure Process_Subprogram (Subprogram_Declaration : Asis.Element) is -- -- procedure Analyze_Parameter_Type_View -- (View : Asis.Element; Type_Declaration : out Asis.Element); -- -- --------------------------------- -- -- Analyze_Parameter_Type_View -- -- --------------------------------- -- -- procedure Analyze_Parameter_Type_View -- (View : Asis.Element; Type_Declaration : out Asis.Element) -- is -- use type Asis.Attribute_Kinds; -- -- Aux : Asis.Element := View; -- -- begin -- case Asis.Elements.Element_Kind (Aux) is -- when Asis.A_Definition => -- -- XXX Not implemented -- -- raise Program_Error; -- -- when Asis.An_Expression => -- -- For classwide parameters take prefix. -- -- if Asis.Elements.Attribute_Kind (Aux) -- = Asis.A_Class_Attribute -- then -- Aux := Asis.Expressions.Prefix (Aux); -- end if; -- -- Type_Declaration := -- Asis.Expressions.Corresponding_Name_Declaration (Aux); -- ------ Ada.Wide_Text_IO.Put_Line ------ (Asis.Elements.Debug_Image (Parameter)); ---- ------ case Asis.Elements.Expression_Kind (Parameter) is ------ when Asis.An_Attribute_Reference => ------ case Asis.Elements.Attribute_Kind (Parameter) is ------ when Asis.A_Class_Attribute => ------ -- XXX Not implemented ------ ------ Parameter := ------ Asis.Expressions.Prefix (Parameter); ------ null; ------ Ada.Wide_Text_IO.Put_Line ------ (Asis.Elements.Debug_Image (Parameter)); ------ ------ when others => ------ Ada.Wide_Text_IO.Put_Line ------ (Asis.Elements.Debug_Image (Parameter)); ------ end case; ------ ------ when Asis.An_Identifier => ------ -- XXX Not implemented ------ ------ null; ------ ------ when others => ------ Ada.Wide_Text_IO.Put_Line ------ (Asis.Elements.Debug_Image (Parameter)); ------ end case; ---- -- when others => -- raise Program_Error; -- end case; -- end Analyze_Parameter_Type_View; -- -- Name : constant Wide_String -- := Asis.Declarations.Defining_Name_Image -- (Asis.Declarations.Names (Subprogram_Declaration) (1)); -- Parameters : constant Asis.Parameter_Specification_List -- := Asis.Declarations.Parameter_Profile (Subprogram_Declaration); -- Type_Declaration : Asis.Element; -- Class : Type_Information_Access; -- Homograph : Homograph_Information_Access; -- -- begin -- -- Analyze first parameter to determine whether this subprogram -- -- belongs to one of types declared in the package; and potentially -- -- can be called using prefix notation. -- -- Analyze_Parameter_Type_View -- (Asis.Declarations.Object_Declaration_View (Parameters (1)), -- Type_Declaration); -- -- if Element_To_Type.Contains (Type_Declaration) then -- Class := Element_To_Type.Element (Type_Declaration); -- -- if not Class.Name_To_Operation.Contains (+Name) then -- Homograph := -- new Homograph_Information' -- (Name => +Name, -- Subprograms => Subprogram_Vectors.Empty_Vector); -- Class.Operations.Insert (Homograph); -- Class.Name_To_Operation.Insert (+Name, Homograph); -- -- else -- Homograph := Class.Name_To_Operation.Element (+Name); -- end if; -- -- Homograph.Subprograms.Append -- (new Subprogram_Information' -- (Declaration => Subprogram_Declaration)); -- -- return; -- end if; -- -- -- Check whether specified subprogram is a function to implement -- -- operator and add it to the list of operations when second -- -- parameter has type declared in the package. -- -- if Asis.Elements.Declaration_Kind (Subprogram_Declaration) -- = Asis.A_Function_Declaration -- and (Name = """=""" or Name = """&""") -- then -- Analyze_Parameter_Type_View -- (Asis.Declarations.Object_Declaration_View (Parameters (2)), -- Type_Declaration); -- -- if Element_To_Type.Contains (Type_Declaration) then -- Class := Element_To_Type.Element (Type_Declaration); -- -- if not Class.Name_To_Operation.Contains (+Name) then -- Homograph := -- new Homograph_Information' -- (Name => +Name, -- Subprograms => Subprogram_Vectors.Empty_Vector); -- Class.Operations.Insert (Homograph); -- Class.Name_To_Operation.Insert (+Name, Homograph); -- -- else -- Homograph := Class.Name_To_Operation.Element (+Name); -- end if; -- -- Homograph.Subprograms.Append -- (new Subprogram_Information' -- (Declaration => Subprogram_Declaration)); -- -- return; -- end if; -- end if; -- -- -- Analyze type of return value for the function to list subprogram -- -- as related. -- -- if Asis.Elements.Declaration_Kind (Subprogram_Declaration) -- = Asis.A_Function_Declaration -- then -- Analyze_Parameter_Type_View -- (Asis.Declarations.Result_Profile (Subprogram_Declaration), -- Type_Declaration); -- -- if Element_To_Type.Contains (Type_Declaration) then -- Class := Element_To_Type.Element (Type_Declaration); -- -- if not Class.Name_To_Related.Contains (+Name) then -- Homograph := -- new Homograph_Information' -- (Name => +Name, -- Subprograms => Subprogram_Vectors.Empty_Vector); -- Class.Related.Insert (Homograph); -- Class.Name_To_Related.Insert (+Name, Homograph); -- -- else -- Homograph := Class.Name_To_Related.Element (+Name); -- end if; -- -- Homograph.Subprograms.Append -- (new Subprogram_Information' -- (Declaration => Subprogram_Declaration)); -- -- return; -- end if; -- end if; -- -- Ada.Wide_Text_IO.Put_Line (Name); -- end Process_Subprogram; -- -- ------------------ -- -- Process_Type -- -- ------------------ -- -- procedure Process_Type (Type_Declaration : Asis.Element) is -- Info : Type_Information_Access; -- -- begin -- Info := -- new Type_Information' -- (Type_Declaration, ---- Asis.Elements.Declaration_Kind (Type_Declaration) ---- = Asis.A_Private_Type_Declaration ---- and then Asis.Elements.Definition_Kind ---- (Asis.Declarations.Type_Declaration_View ---- (Type_Declaration)) ---- = Asis.A_Tagged_Private_Type_Definition, -- Homograph_Maps.Empty_Map, -- Homograph_Sets.Empty_Set, -- Homograph_Maps.Empty_Map, -- Homograph_Sets.Empty_Set); -- All_Types.Insert (Info); -- Element_To_Type.Insert (Type_Declaration, Info); -- end Process_Type; Decls : constant Asis.Declarative_Item_List := Asis.Declarations.Visible_Part_Declarative_Items (Asis.Elements.Unit_Declaration (Specification_Unit)); Unit : constant Compilation_Unit_Access := Create (Specification_Unit, Module); begin for J in Decls'Range loop declare use type Asis.Element_Kinds; Element : constant Asis.Element := Decls (J); begin if Asis.Elements.Element_Kind (Element) /= Asis.A_Declaration then raise Program_Error; end if; case Asis.Elements.Declaration_Kind (Element) is when Asis.An_Ordinary_Type_Declaration => Analyze_Type_Declaration (Element); when Asis.A_Private_Type_Declaration => Analyze_Type_Declaration (Element); when Asis.A_Deferred_Constant_Declaration => null; when Asis.A_Procedure_Declaration => Analyze_Subprogram_Declaration (Element); when Asis.A_Function_Declaration => Analyze_Subprogram_Declaration (Element); when others => Dump (Element); raise Program_Error; end case; end; end loop; end Process_Specification; Arguments : constant League.String_Vectors.Universal_String_Vector := League.Application.Arguments; Files : League.Strings.Universal_String; Units : League.String_Vectors.Universal_String_Vector; Index : Positive := 1; begin -- Process command line arguments. while Index < Arguments.Length loop Files.Append (' '); Files.Append (Arguments.Element (Index)); Units.Append (Arguments.Element (Index + 1)); Index := Index + 2; end loop; Asis.Implementation.Initialize ("-asis12"); Asis.Ada_Environments.Associate (Extractor_Context, "Documentation_Extractor_Context", "-CN " & Files.To_UTF_16_Wide_String); Asis.Ada_Environments.Open (Extractor_Context); Module := Create (League.Strings.To_Universal_String ("League"), League.Strings.To_Universal_String ("Core components")); for J in 1 .. Units.Length loop Specification_Unit := Asis.Compilation_Units.Library_Unit_Declaration (Units.Element (J).To_UTF_16_Wide_String, Extractor_Context); -- Implementation_Unit := -- Asis.Compilation_Units.Compilation_Unit_Body -- (Units.Element (J).To_UTF_16_Wide_String, -- Extractor_Context); Process_Specification; end loop; Generate; Wiki.Generate; Asis.Ada_Environments.Close (Extractor_Context); Asis.Ada_Environments.Dissociate (Extractor_Context); Asis.Implementation.Finalize; end Documentation_Generator.Driver;
with Ada.Containers.Indefinite_Vectors; package String_Vectors is new Ada.Containers.Indefinite_Vectors (Index_Type => Positive, Element_Type => String);
----------------------------------------------------------------------- -- util-encoders-sha256 -- Compute SHA-256 hash -- Copyright (C) 2017, 2018, 2019 Stephane Carrez -- Written by Stephane Carrez (Stephane.Carrez@gmail.com) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- with Ada.Streams; with GNAT.SHA256; package Util.Encoders.SHA256 is HASH_SIZE : constant := 32; -- The SHA-256 binary hash (256-bit). subtype Hash_Array is Ada.Streams.Stream_Element_Array (0 .. HASH_SIZE - 1); -- The SHA-256 hash as hexadecimal string. subtype Digest is String (1 .. 2 * HASH_SIZE); subtype Base64_Digest is String (1 .. 44); -- ------------------------------ -- SHA256 Context -- ------------------------------ subtype Context is GNAT.SHA256.Context; -- Update the hash with the string. procedure Update (E : in out Context; S : in String) renames GNAT.SHA256.Update; -- Update the hash with the string. procedure Update (E : in out Context; S : in Ada.Streams.Stream_Element_Array) renames GNAT.SHA256.Update; -- Computes the SHA256 hash and returns the raw binary hash in <b>Hash</b>. procedure Finish (E : in out Context; Hash : out Hash_Array); -- Computes the SHA256 hash and returns the hexadecimal hash in <b>Hash</b>. procedure Finish (E : in out Context; Hash : out Digest); -- Computes the SHA256 hash and returns the base64 hash in <b>Hash</b>. procedure Finish_Base64 (E : in out Context; Hash : out Base64_Digest); end Util.Encoders.SHA256;
package body Accumulator is -- The accumulator lives through three states. It is in Virgin_State -- before any use of The_Function. It changes to Integer_State or -- Float_State, according to the input type used. The accumulation is -- memorized in variable I or F, according to the state. Float_State, -- once reached, is never left. A Float output on an Integer_State is -- simply a conversion, sans effect on state. (Marius Amado-Alves) type State_T is (Virgin_State, Integer_State, Float_State); State : State_T := Virgin_State; I : Integer; F : Float; function The_Function (X : Float) return Float is begin case State is when Virgin_State => State := Float_State; F := X; return F; when Integer_State => State := Float_State; F := Float (I) + X; return F; when Float_State => F := F + X; return F; end case; end; function The_Function (X : Integer) return Float is begin case State is when Virgin_State => State := Integer_State; I := X; return Float (I); when Integer_State => I := I + X; return Float (I); when Float_State => F := F + Float (X); return F; end case; end; function The_Function (X : Integer) return Integer is begin case State is when Virgin_State => State := Integer_State; I := X; return I; when Integer_State => I := I + X; return I; when Float_State => F := F + Float (X); return Integer (F); end case; end; end;
-- This spec has been automatically generated from STM32F303xE.svd pragma Restrictions (No_Elaboration_Code); pragma Ada_2012; pragma Style_Checks (Off); with System; package STM32_SVD.USB_FS is pragma Preelaborate; --------------- -- Registers -- --------------- subtype USB_EP0R_EA_Field is STM32_SVD.UInt4; subtype USB_EP0R_STAT_TX_Field is STM32_SVD.UInt2; subtype USB_EP0R_DTOG_TX_Field is STM32_SVD.Bit; subtype USB_EP0R_CTR_TX_Field is STM32_SVD.Bit; subtype USB_EP0R_EP_KIND_Field is STM32_SVD.Bit; subtype USB_EP0R_EP_TYPE_Field is STM32_SVD.UInt2; subtype USB_EP0R_SETUP_Field is STM32_SVD.Bit; subtype USB_EP0R_STAT_RX_Field is STM32_SVD.UInt2; subtype USB_EP0R_DTOG_RX_Field is STM32_SVD.Bit; subtype USB_EP0R_CTR_RX_Field is STM32_SVD.Bit; -- endpoint 0 register type USB_EP0R_Register is record -- Endpoint address EA : USB_EP0R_EA_Field := 16#0#; -- Status bits, for transmission transfers STAT_TX : USB_EP0R_STAT_TX_Field := 16#0#; -- Data Toggle, for transmission transfers DTOG_TX : USB_EP0R_DTOG_TX_Field := 16#0#; -- Correct Transfer for transmission CTR_TX : USB_EP0R_CTR_TX_Field := 16#0#; -- Endpoint kind EP_KIND : USB_EP0R_EP_KIND_Field := 16#0#; -- Endpoint type EP_TYPE : USB_EP0R_EP_TYPE_Field := 16#0#; -- Read-only. Setup transaction completed SETUP : USB_EP0R_SETUP_Field := 16#0#; -- Status bits, for reception transfers STAT_RX : USB_EP0R_STAT_RX_Field := 16#0#; -- Data Toggle, for reception transfers DTOG_RX : USB_EP0R_DTOG_RX_Field := 16#0#; -- Correct transfer for reception CTR_RX : USB_EP0R_CTR_RX_Field := 16#0#; -- unspecified Reserved_16_31 : STM32_SVD.UInt16 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for USB_EP0R_Register use record EA at 0 range 0 .. 3; STAT_TX at 0 range 4 .. 5; DTOG_TX at 0 range 6 .. 6; CTR_TX at 0 range 7 .. 7; EP_KIND at 0 range 8 .. 8; EP_TYPE at 0 range 9 .. 10; SETUP at 0 range 11 .. 11; STAT_RX at 0 range 12 .. 13; DTOG_RX at 0 range 14 .. 14; CTR_RX at 0 range 15 .. 15; Reserved_16_31 at 0 range 16 .. 31; end record; subtype USB_EP1R_EA_Field is STM32_SVD.UInt4; subtype USB_EP1R_STAT_TX_Field is STM32_SVD.UInt2; subtype USB_EP1R_DTOG_TX_Field is STM32_SVD.Bit; subtype USB_EP1R_CTR_TX_Field is STM32_SVD.Bit; subtype USB_EP1R_EP_KIND_Field is STM32_SVD.Bit; subtype USB_EP1R_EP_TYPE_Field is STM32_SVD.UInt2; subtype USB_EP1R_SETUP_Field is STM32_SVD.Bit; subtype USB_EP1R_STAT_RX_Field is STM32_SVD.UInt2; subtype USB_EP1R_DTOG_RX_Field is STM32_SVD.Bit; subtype USB_EP1R_CTR_RX_Field is STM32_SVD.Bit; -- endpoint 1 register type USB_EP1R_Register is record -- Endpoint address EA : USB_EP1R_EA_Field := 16#0#; -- Status bits, for transmission transfers STAT_TX : USB_EP1R_STAT_TX_Field := 16#0#; -- Data Toggle, for transmission transfers DTOG_TX : USB_EP1R_DTOG_TX_Field := 16#0#; -- Correct Transfer for transmission CTR_TX : USB_EP1R_CTR_TX_Field := 16#0#; -- Endpoint kind EP_KIND : USB_EP1R_EP_KIND_Field := 16#0#; -- Endpoint type EP_TYPE : USB_EP1R_EP_TYPE_Field := 16#0#; -- Read-only. Setup transaction completed SETUP : USB_EP1R_SETUP_Field := 16#0#; -- Status bits, for reception transfers STAT_RX : USB_EP1R_STAT_RX_Field := 16#0#; -- Data Toggle, for reception transfers DTOG_RX : USB_EP1R_DTOG_RX_Field := 16#0#; -- Correct transfer for reception CTR_RX : USB_EP1R_CTR_RX_Field := 16#0#; -- unspecified Reserved_16_31 : STM32_SVD.UInt16 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for USB_EP1R_Register use record EA at 0 range 0 .. 3; STAT_TX at 0 range 4 .. 5; DTOG_TX at 0 range 6 .. 6; CTR_TX at 0 range 7 .. 7; EP_KIND at 0 range 8 .. 8; EP_TYPE at 0 range 9 .. 10; SETUP at 0 range 11 .. 11; STAT_RX at 0 range 12 .. 13; DTOG_RX at 0 range 14 .. 14; CTR_RX at 0 range 15 .. 15; Reserved_16_31 at 0 range 16 .. 31; end record; subtype USB_EP2R_EA_Field is STM32_SVD.UInt4; subtype USB_EP2R_STAT_TX_Field is STM32_SVD.UInt2; subtype USB_EP2R_DTOG_TX_Field is STM32_SVD.Bit; subtype USB_EP2R_CTR_TX_Field is STM32_SVD.Bit; subtype USB_EP2R_EP_KIND_Field is STM32_SVD.Bit; subtype USB_EP2R_EP_TYPE_Field is STM32_SVD.UInt2; subtype USB_EP2R_SETUP_Field is STM32_SVD.Bit; subtype USB_EP2R_STAT_RX_Field is STM32_SVD.UInt2; subtype USB_EP2R_DTOG_RX_Field is STM32_SVD.Bit; subtype USB_EP2R_CTR_RX_Field is STM32_SVD.Bit; -- endpoint 2 register type USB_EP2R_Register is record -- Endpoint address EA : USB_EP2R_EA_Field := 16#0#; -- Status bits, for transmission transfers STAT_TX : USB_EP2R_STAT_TX_Field := 16#0#; -- Data Toggle, for transmission transfers DTOG_TX : USB_EP2R_DTOG_TX_Field := 16#0#; -- Correct Transfer for transmission CTR_TX : USB_EP2R_CTR_TX_Field := 16#0#; -- Endpoint kind EP_KIND : USB_EP2R_EP_KIND_Field := 16#0#; -- Endpoint type EP_TYPE : USB_EP2R_EP_TYPE_Field := 16#0#; -- Read-only. Setup transaction completed SETUP : USB_EP2R_SETUP_Field := 16#0#; -- Status bits, for reception transfers STAT_RX : USB_EP2R_STAT_RX_Field := 16#0#; -- Data Toggle, for reception transfers DTOG_RX : USB_EP2R_DTOG_RX_Field := 16#0#; -- Correct transfer for reception CTR_RX : USB_EP2R_CTR_RX_Field := 16#0#; -- unspecified Reserved_16_31 : STM32_SVD.UInt16 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for USB_EP2R_Register use record EA at 0 range 0 .. 3; STAT_TX at 0 range 4 .. 5; DTOG_TX at 0 range 6 .. 6; CTR_TX at 0 range 7 .. 7; EP_KIND at 0 range 8 .. 8; EP_TYPE at 0 range 9 .. 10; SETUP at 0 range 11 .. 11; STAT_RX at 0 range 12 .. 13; DTOG_RX at 0 range 14 .. 14; CTR_RX at 0 range 15 .. 15; Reserved_16_31 at 0 range 16 .. 31; end record; subtype USB_EP3R_EA_Field is STM32_SVD.UInt4; subtype USB_EP3R_STAT_TX_Field is STM32_SVD.UInt2; subtype USB_EP3R_DTOG_TX_Field is STM32_SVD.Bit; subtype USB_EP3R_CTR_TX_Field is STM32_SVD.Bit; subtype USB_EP3R_EP_KIND_Field is STM32_SVD.Bit; subtype USB_EP3R_EP_TYPE_Field is STM32_SVD.UInt2; subtype USB_EP3R_SETUP_Field is STM32_SVD.Bit; subtype USB_EP3R_STAT_RX_Field is STM32_SVD.UInt2; subtype USB_EP3R_DTOG_RX_Field is STM32_SVD.Bit; subtype USB_EP3R_CTR_RX_Field is STM32_SVD.Bit; -- endpoint 3 register type USB_EP3R_Register is record -- Endpoint address EA : USB_EP3R_EA_Field := 16#0#; -- Status bits, for transmission transfers STAT_TX : USB_EP3R_STAT_TX_Field := 16#0#; -- Data Toggle, for transmission transfers DTOG_TX : USB_EP3R_DTOG_TX_Field := 16#0#; -- Correct Transfer for transmission CTR_TX : USB_EP3R_CTR_TX_Field := 16#0#; -- Endpoint kind EP_KIND : USB_EP3R_EP_KIND_Field := 16#0#; -- Endpoint type EP_TYPE : USB_EP3R_EP_TYPE_Field := 16#0#; -- Read-only. Setup transaction completed SETUP : USB_EP3R_SETUP_Field := 16#0#; -- Status bits, for reception transfers STAT_RX : USB_EP3R_STAT_RX_Field := 16#0#; -- Data Toggle, for reception transfers DTOG_RX : USB_EP3R_DTOG_RX_Field := 16#0#; -- Correct transfer for reception CTR_RX : USB_EP3R_CTR_RX_Field := 16#0#; -- unspecified Reserved_16_31 : STM32_SVD.UInt16 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for USB_EP3R_Register use record EA at 0 range 0 .. 3; STAT_TX at 0 range 4 .. 5; DTOG_TX at 0 range 6 .. 6; CTR_TX at 0 range 7 .. 7; EP_KIND at 0 range 8 .. 8; EP_TYPE at 0 range 9 .. 10; SETUP at 0 range 11 .. 11; STAT_RX at 0 range 12 .. 13; DTOG_RX at 0 range 14 .. 14; CTR_RX at 0 range 15 .. 15; Reserved_16_31 at 0 range 16 .. 31; end record; subtype USB_EP4R_EA_Field is STM32_SVD.UInt4; subtype USB_EP4R_STAT_TX_Field is STM32_SVD.UInt2; subtype USB_EP4R_DTOG_TX_Field is STM32_SVD.Bit; subtype USB_EP4R_CTR_TX_Field is STM32_SVD.Bit; subtype USB_EP4R_EP_KIND_Field is STM32_SVD.Bit; subtype USB_EP4R_EP_TYPE_Field is STM32_SVD.UInt2; subtype USB_EP4R_SETUP_Field is STM32_SVD.Bit; subtype USB_EP4R_STAT_RX_Field is STM32_SVD.UInt2; subtype USB_EP4R_DTOG_RX_Field is STM32_SVD.Bit; subtype USB_EP4R_CTR_RX_Field is STM32_SVD.Bit; -- endpoint 4 register type USB_EP4R_Register is record -- Endpoint address EA : USB_EP4R_EA_Field := 16#0#; -- Status bits, for transmission transfers STAT_TX : USB_EP4R_STAT_TX_Field := 16#0#; -- Data Toggle, for transmission transfers DTOG_TX : USB_EP4R_DTOG_TX_Field := 16#0#; -- Correct Transfer for transmission CTR_TX : USB_EP4R_CTR_TX_Field := 16#0#; -- Endpoint kind EP_KIND : USB_EP4R_EP_KIND_Field := 16#0#; -- Endpoint type EP_TYPE : USB_EP4R_EP_TYPE_Field := 16#0#; -- Read-only. Setup transaction completed SETUP : USB_EP4R_SETUP_Field := 16#0#; -- Status bits, for reception transfers STAT_RX : USB_EP4R_STAT_RX_Field := 16#0#; -- Data Toggle, for reception transfers DTOG_RX : USB_EP4R_DTOG_RX_Field := 16#0#; -- Correct transfer for reception CTR_RX : USB_EP4R_CTR_RX_Field := 16#0#; -- unspecified Reserved_16_31 : STM32_SVD.UInt16 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for USB_EP4R_Register use record EA at 0 range 0 .. 3; STAT_TX at 0 range 4 .. 5; DTOG_TX at 0 range 6 .. 6; CTR_TX at 0 range 7 .. 7; EP_KIND at 0 range 8 .. 8; EP_TYPE at 0 range 9 .. 10; SETUP at 0 range 11 .. 11; STAT_RX at 0 range 12 .. 13; DTOG_RX at 0 range 14 .. 14; CTR_RX at 0 range 15 .. 15; Reserved_16_31 at 0 range 16 .. 31; end record; subtype USB_EP5R_EA_Field is STM32_SVD.UInt4; subtype USB_EP5R_STAT_TX_Field is STM32_SVD.UInt2; subtype USB_EP5R_DTOG_TX_Field is STM32_SVD.Bit; subtype USB_EP5R_CTR_TX_Field is STM32_SVD.Bit; subtype USB_EP5R_EP_KIND_Field is STM32_SVD.Bit; subtype USB_EP5R_EP_TYPE_Field is STM32_SVD.UInt2; subtype USB_EP5R_SETUP_Field is STM32_SVD.Bit; subtype USB_EP5R_STAT_RX_Field is STM32_SVD.UInt2; subtype USB_EP5R_DTOG_RX_Field is STM32_SVD.Bit; subtype USB_EP5R_CTR_RX_Field is STM32_SVD.Bit; -- endpoint 5 register type USB_EP5R_Register is record -- Endpoint address EA : USB_EP5R_EA_Field := 16#0#; -- Status bits, for transmission transfers STAT_TX : USB_EP5R_STAT_TX_Field := 16#0#; -- Data Toggle, for transmission transfers DTOG_TX : USB_EP5R_DTOG_TX_Field := 16#0#; -- Correct Transfer for transmission CTR_TX : USB_EP5R_CTR_TX_Field := 16#0#; -- Endpoint kind EP_KIND : USB_EP5R_EP_KIND_Field := 16#0#; -- Endpoint type EP_TYPE : USB_EP5R_EP_TYPE_Field := 16#0#; -- Read-only. Setup transaction completed SETUP : USB_EP5R_SETUP_Field := 16#0#; -- Status bits, for reception transfers STAT_RX : USB_EP5R_STAT_RX_Field := 16#0#; -- Data Toggle, for reception transfers DTOG_RX : USB_EP5R_DTOG_RX_Field := 16#0#; -- Correct transfer for reception CTR_RX : USB_EP5R_CTR_RX_Field := 16#0#; -- unspecified Reserved_16_31 : STM32_SVD.UInt16 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for USB_EP5R_Register use record EA at 0 range 0 .. 3; STAT_TX at 0 range 4 .. 5; DTOG_TX at 0 range 6 .. 6; CTR_TX at 0 range 7 .. 7; EP_KIND at 0 range 8 .. 8; EP_TYPE at 0 range 9 .. 10; SETUP at 0 range 11 .. 11; STAT_RX at 0 range 12 .. 13; DTOG_RX at 0 range 14 .. 14; CTR_RX at 0 range 15 .. 15; Reserved_16_31 at 0 range 16 .. 31; end record; subtype USB_EP6R_EA_Field is STM32_SVD.UInt4; subtype USB_EP6R_STAT_TX_Field is STM32_SVD.UInt2; subtype USB_EP6R_DTOG_TX_Field is STM32_SVD.Bit; subtype USB_EP6R_CTR_TX_Field is STM32_SVD.Bit; subtype USB_EP6R_EP_KIND_Field is STM32_SVD.Bit; subtype USB_EP6R_EP_TYPE_Field is STM32_SVD.UInt2; subtype USB_EP6R_SETUP_Field is STM32_SVD.Bit; subtype USB_EP6R_STAT_RX_Field is STM32_SVD.UInt2; subtype USB_EP6R_DTOG_RX_Field is STM32_SVD.Bit; subtype USB_EP6R_CTR_RX_Field is STM32_SVD.Bit; -- endpoint 6 register type USB_EP6R_Register is record -- Endpoint address EA : USB_EP6R_EA_Field := 16#0#; -- Status bits, for transmission transfers STAT_TX : USB_EP6R_STAT_TX_Field := 16#0#; -- Data Toggle, for transmission transfers DTOG_TX : USB_EP6R_DTOG_TX_Field := 16#0#; -- Correct Transfer for transmission CTR_TX : USB_EP6R_CTR_TX_Field := 16#0#; -- Endpoint kind EP_KIND : USB_EP6R_EP_KIND_Field := 16#0#; -- Endpoint type EP_TYPE : USB_EP6R_EP_TYPE_Field := 16#0#; -- Read-only. Setup transaction completed SETUP : USB_EP6R_SETUP_Field := 16#0#; -- Status bits, for reception transfers STAT_RX : USB_EP6R_STAT_RX_Field := 16#0#; -- Data Toggle, for reception transfers DTOG_RX : USB_EP6R_DTOG_RX_Field := 16#0#; -- Correct transfer for reception CTR_RX : USB_EP6R_CTR_RX_Field := 16#0#; -- unspecified Reserved_16_31 : STM32_SVD.UInt16 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for USB_EP6R_Register use record EA at 0 range 0 .. 3; STAT_TX at 0 range 4 .. 5; DTOG_TX at 0 range 6 .. 6; CTR_TX at 0 range 7 .. 7; EP_KIND at 0 range 8 .. 8; EP_TYPE at 0 range 9 .. 10; SETUP at 0 range 11 .. 11; STAT_RX at 0 range 12 .. 13; DTOG_RX at 0 range 14 .. 14; CTR_RX at 0 range 15 .. 15; Reserved_16_31 at 0 range 16 .. 31; end record; subtype USB_EP7R_EA_Field is STM32_SVD.UInt4; subtype USB_EP7R_STAT_TX_Field is STM32_SVD.UInt2; subtype USB_EP7R_DTOG_TX_Field is STM32_SVD.Bit; subtype USB_EP7R_CTR_TX_Field is STM32_SVD.Bit; subtype USB_EP7R_EP_KIND_Field is STM32_SVD.Bit; subtype USB_EP7R_EP_TYPE_Field is STM32_SVD.UInt2; subtype USB_EP7R_SETUP_Field is STM32_SVD.Bit; subtype USB_EP7R_STAT_RX_Field is STM32_SVD.UInt2; subtype USB_EP7R_DTOG_RX_Field is STM32_SVD.Bit; subtype USB_EP7R_CTR_RX_Field is STM32_SVD.Bit; -- endpoint 7 register type USB_EP7R_Register is record -- Endpoint address EA : USB_EP7R_EA_Field := 16#0#; -- Status bits, for transmission transfers STAT_TX : USB_EP7R_STAT_TX_Field := 16#0#; -- Data Toggle, for transmission transfers DTOG_TX : USB_EP7R_DTOG_TX_Field := 16#0#; -- Correct Transfer for transmission CTR_TX : USB_EP7R_CTR_TX_Field := 16#0#; -- Endpoint kind EP_KIND : USB_EP7R_EP_KIND_Field := 16#0#; -- Endpoint type EP_TYPE : USB_EP7R_EP_TYPE_Field := 16#0#; -- Read-only. Setup transaction completed SETUP : USB_EP7R_SETUP_Field := 16#0#; -- Status bits, for reception transfers STAT_RX : USB_EP7R_STAT_RX_Field := 16#0#; -- Data Toggle, for reception transfers DTOG_RX : USB_EP7R_DTOG_RX_Field := 16#0#; -- Correct transfer for reception CTR_RX : USB_EP7R_CTR_RX_Field := 16#0#; -- unspecified Reserved_16_31 : STM32_SVD.UInt16 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for USB_EP7R_Register use record EA at 0 range 0 .. 3; STAT_TX at 0 range 4 .. 5; DTOG_TX at 0 range 6 .. 6; CTR_TX at 0 range 7 .. 7; EP_KIND at 0 range 8 .. 8; EP_TYPE at 0 range 9 .. 10; SETUP at 0 range 11 .. 11; STAT_RX at 0 range 12 .. 13; DTOG_RX at 0 range 14 .. 14; CTR_RX at 0 range 15 .. 15; Reserved_16_31 at 0 range 16 .. 31; end record; subtype USB_CNTR_FRES_Field is STM32_SVD.Bit; subtype USB_CNTR_PDWN_Field is STM32_SVD.Bit; subtype USB_CNTR_LPMODE_Field is STM32_SVD.Bit; subtype USB_CNTR_FSUSP_Field is STM32_SVD.Bit; subtype USB_CNTR_RESUME_Field is STM32_SVD.Bit; subtype USB_CNTR_ESOFM_Field is STM32_SVD.Bit; subtype USB_CNTR_SOFM_Field is STM32_SVD.Bit; subtype USB_CNTR_RESETM_Field is STM32_SVD.Bit; subtype USB_CNTR_SUSPM_Field is STM32_SVD.Bit; subtype USB_CNTR_WKUPM_Field is STM32_SVD.Bit; subtype USB_CNTR_ERRM_Field is STM32_SVD.Bit; subtype USB_CNTR_PMAOVRM_Field is STM32_SVD.Bit; subtype USB_CNTR_CTRM_Field is STM32_SVD.Bit; -- control register type USB_CNTR_Register is record -- Force USB Reset FRES : USB_CNTR_FRES_Field := 16#1#; -- Power down PDWN : USB_CNTR_PDWN_Field := 16#1#; -- Low-power mode LPMODE : USB_CNTR_LPMODE_Field := 16#0#; -- Force suspend FSUSP : USB_CNTR_FSUSP_Field := 16#0#; -- Resume request RESUME : USB_CNTR_RESUME_Field := 16#0#; -- unspecified Reserved_5_7 : STM32_SVD.UInt3 := 16#0#; -- Expected start of frame interrupt mask ESOFM : USB_CNTR_ESOFM_Field := 16#0#; -- Start of frame interrupt mask SOFM : USB_CNTR_SOFM_Field := 16#0#; -- USB reset interrupt mask RESETM : USB_CNTR_RESETM_Field := 16#0#; -- Suspend mode interrupt mask SUSPM : USB_CNTR_SUSPM_Field := 16#0#; -- Wakeup interrupt mask WKUPM : USB_CNTR_WKUPM_Field := 16#0#; -- Error interrupt mask ERRM : USB_CNTR_ERRM_Field := 16#0#; -- Packet memory area over / underrun interrupt mask PMAOVRM : USB_CNTR_PMAOVRM_Field := 16#0#; -- Correct transfer interrupt mask CTRM : USB_CNTR_CTRM_Field := 16#0#; -- unspecified Reserved_16_31 : STM32_SVD.UInt16 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for USB_CNTR_Register use record FRES at 0 range 0 .. 0; PDWN at 0 range 1 .. 1; LPMODE at 0 range 2 .. 2; FSUSP at 0 range 3 .. 3; RESUME at 0 range 4 .. 4; Reserved_5_7 at 0 range 5 .. 7; ESOFM at 0 range 8 .. 8; SOFM at 0 range 9 .. 9; RESETM at 0 range 10 .. 10; SUSPM at 0 range 11 .. 11; WKUPM at 0 range 12 .. 12; ERRM at 0 range 13 .. 13; PMAOVRM at 0 range 14 .. 14; CTRM at 0 range 15 .. 15; Reserved_16_31 at 0 range 16 .. 31; end record; subtype ISTR_EP_ID_Field is STM32_SVD.UInt4; subtype ISTR_DIR_Field is STM32_SVD.Bit; subtype ISTR_ESOF_Field is STM32_SVD.Bit; subtype ISTR_SOF_Field is STM32_SVD.Bit; subtype ISTR_RESET_Field is STM32_SVD.Bit; subtype ISTR_SUSP_Field is STM32_SVD.Bit; subtype ISTR_WKUP_Field is STM32_SVD.Bit; subtype ISTR_ERR_Field is STM32_SVD.Bit; subtype ISTR_PMAOVR_Field is STM32_SVD.Bit; subtype ISTR_CTR_Field is STM32_SVD.Bit; -- interrupt status register type ISTR_Register is record -- Read-only. Endpoint Identifier EP_ID : ISTR_EP_ID_Field := 16#0#; -- Read-only. Direction of transaction DIR : ISTR_DIR_Field := 16#0#; -- unspecified Reserved_5_7 : STM32_SVD.UInt3 := 16#0#; -- Expected start frame ESOF : ISTR_ESOF_Field := 16#0#; -- start of frame SOF : ISTR_SOF_Field := 16#0#; -- reset request RESET : ISTR_RESET_Field := 16#0#; -- Suspend mode request SUSP : ISTR_SUSP_Field := 16#0#; -- Wakeup WKUP : ISTR_WKUP_Field := 16#0#; -- Error ERR : ISTR_ERR_Field := 16#0#; -- Packet memory area over / underrun PMAOVR : ISTR_PMAOVR_Field := 16#0#; -- Read-only. Correct transfer CTR : ISTR_CTR_Field := 16#0#; -- unspecified Reserved_16_31 : STM32_SVD.UInt16 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for ISTR_Register use record EP_ID at 0 range 0 .. 3; DIR at 0 range 4 .. 4; Reserved_5_7 at 0 range 5 .. 7; ESOF at 0 range 8 .. 8; SOF at 0 range 9 .. 9; RESET at 0 range 10 .. 10; SUSP at 0 range 11 .. 11; WKUP at 0 range 12 .. 12; ERR at 0 range 13 .. 13; PMAOVR at 0 range 14 .. 14; CTR at 0 range 15 .. 15; Reserved_16_31 at 0 range 16 .. 31; end record; subtype FNR_FN_Field is STM32_SVD.UInt11; subtype FNR_LSOF_Field is STM32_SVD.UInt2; subtype FNR_LCK_Field is STM32_SVD.Bit; subtype FNR_RXDM_Field is STM32_SVD.Bit; subtype FNR_RXDP_Field is STM32_SVD.Bit; -- frame number register type FNR_Register is record -- Read-only. Frame number FN : FNR_FN_Field; -- Read-only. Lost SOF LSOF : FNR_LSOF_Field; -- Read-only. Locked LCK : FNR_LCK_Field; -- Read-only. Receive data - line status RXDM : FNR_RXDM_Field; -- Read-only. Receive data + line status RXDP : FNR_RXDP_Field; -- unspecified Reserved_16_31 : STM32_SVD.UInt16; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for FNR_Register use record FN at 0 range 0 .. 10; LSOF at 0 range 11 .. 12; LCK at 0 range 13 .. 13; RXDM at 0 range 14 .. 14; RXDP at 0 range 15 .. 15; Reserved_16_31 at 0 range 16 .. 31; end record; -- DADDR_ADD array element subtype DADDR_ADD_Element is STM32_SVD.Bit; -- DADDR_ADD array type DADDR_ADD_Field_Array is array (1 .. 7) of DADDR_ADD_Element with Component_Size => 1, Size => 7; -- Type definition for DADDR_ADD type DADDR_ADD_Field (As_Array : Boolean := False) is record case As_Array is when False => -- ADD as a value Val : STM32_SVD.UInt7; when True => -- ADD as an array Arr : DADDR_ADD_Field_Array; end case; end record with Unchecked_Union, Size => 7; for DADDR_ADD_Field use record Val at 0 range 0 .. 6; Arr at 0 range 0 .. 6; end record; subtype DADDR_EF_Field is STM32_SVD.Bit; -- device address type DADDR_Register is record -- Device address ADD : DADDR_ADD_Field := (As_Array => False, Val => 16#0#); -- Enable function EF : DADDR_EF_Field := 16#0#; -- unspecified Reserved_8_31 : STM32_SVD.UInt24 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for DADDR_Register use record ADD at 0 range 0 .. 6; EF at 0 range 7 .. 7; Reserved_8_31 at 0 range 8 .. 31; end record; subtype BTABLE_BTABLE_Field is STM32_SVD.UInt13; -- Buffer table address type BTABLE_Register is record -- unspecified Reserved_0_2 : STM32_SVD.UInt3 := 16#0#; -- Buffer table BTABLE : BTABLE_BTABLE_Field := 16#0#; -- unspecified Reserved_16_31 : STM32_SVD.UInt16 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for BTABLE_Register use record Reserved_0_2 at 0 range 0 .. 2; BTABLE at 0 range 3 .. 15; Reserved_16_31 at 0 range 16 .. 31; end record; ----------------- -- Peripherals -- ----------------- -- Universal serial bus full-speed device interface type USB_FS_Peripheral is record -- endpoint 0 register USB_EP0R : aliased USB_EP0R_Register; -- endpoint 1 register USB_EP1R : aliased USB_EP1R_Register; -- endpoint 2 register USB_EP2R : aliased USB_EP2R_Register; -- endpoint 3 register USB_EP3R : aliased USB_EP3R_Register; -- endpoint 4 register USB_EP4R : aliased USB_EP4R_Register; -- endpoint 5 register USB_EP5R : aliased USB_EP5R_Register; -- endpoint 6 register USB_EP6R : aliased USB_EP6R_Register; -- endpoint 7 register USB_EP7R : aliased USB_EP7R_Register; -- control register USB_CNTR : aliased USB_CNTR_Register; -- interrupt status register ISTR : aliased ISTR_Register; -- frame number register FNR : aliased FNR_Register; -- device address DADDR : aliased DADDR_Register; -- Buffer table address BTABLE : aliased BTABLE_Register; end record with Volatile; for USB_FS_Peripheral use record USB_EP0R at 16#0# range 0 .. 31; USB_EP1R at 16#4# range 0 .. 31; USB_EP2R at 16#8# range 0 .. 31; USB_EP3R at 16#C# range 0 .. 31; USB_EP4R at 16#10# range 0 .. 31; USB_EP5R at 16#14# range 0 .. 31; USB_EP6R at 16#18# range 0 .. 31; USB_EP7R at 16#1C# range 0 .. 31; USB_CNTR at 16#40# range 0 .. 31; ISTR at 16#44# range 0 .. 31; FNR at 16#48# range 0 .. 31; DADDR at 16#4C# range 0 .. 31; BTABLE at 16#50# range 0 .. 31; end record; -- Universal serial bus full-speed device interface USB_FS_Periph : aliased USB_FS_Peripheral with Import, Address => System'To_Address (16#40005C00#); end STM32_SVD.USB_FS;
<?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>bp_f1244</name> <ret_bitwidth>0</ret_bitwidth> <ports class_id="2" tracking_level="0" version="0"> <count>9</count> <item_version>0</item_version> <item class_id="3" tracking_level="1" version="0" object_id="_1"> <Value class_id="4" tracking_level="0" version="0"> <Obj class_id="5" tracking_level="0" version="0"> <type>1</type> <id>1</id> <name>feInput_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>feInput.V.data.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</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>feInput_V_user_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>feInput.V.user.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>112</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>feInput_V_keep_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>feInput.V.keep.V</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> <item class_id_reference="3" object_id="_4"> <Value> <Obj> <type>1</type> <id>4</id> <name>feInput_V_last_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>feInput.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="_5"> <Value> <Obj> <type>1</type> <id>5</id> <name>flushAck_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>FIFO</coreName> </Obj> <bitwidth>1</bitwidth> </Value> <direction>0</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_6"> <Value> <Obj> <type>1</type> <id>6</id> <name>flushAck_V_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>FIFO</coreName> </Obj> <bitwidth>1</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_7"> <Value> <Obj> <type>1</type> <id>16</id> <name>metadataBuffer_rp_V_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>FIFO</coreName> </Obj> <bitwidth>248</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="_8"> <Value> <Obj> <type>1</type> <id>17</id> <name>valueBuffer_rp_V_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>FIFO</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="_9"> <Value> <Obj> <type>1</type> <id>19</id> <name>keyBuffer_rp_V_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>FIFO</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> </ports> <nodes class_id="8" tracking_level="0" version="0"> <count>310</count> <item_version>0</item_version> <item class_id="9" tracking_level="1" version="0" object_id="_10"> <Value> <Obj> <type>0</type> <id>122</id> <name>flushAck_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>529</item> <item>530</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>2.39</m_delay> </item> <item class_id_reference="9" object_id="_11"> <Value> <Obj> <type>0</type> <id>150</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>532</item> <item>533</item> <item>534</item> </oprand_edges> <opcode>write</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>2.39</m_delay> </item> <item class_id_reference="9" object_id="_12"> <Value> <Obj> <type>0</type> <id>163</id> <name>lastValueWord_load</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>54</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item class_id="11" tracking_level="0" version="0"> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/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>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>54</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>535</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_13"> <Value> <Obj> <type>0</type> <id>164</id> <name>bpf_wordCounter_load</name> <fileName></fileName> <fileDirectory></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>536</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_14"> <Value> <Obj> <type>0</type> <id>165</id> <name>p_Val2_35</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>128</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>128</second> </item> </second> </item> </inlineStackInfo> <originalName>__Val2__</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>537</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_15"> <Value> <Obj> <type>0</type> <id>166</id> <name></name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>54</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>54</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>538</item> <item>539</item> <item>540</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_16"> <Value> <Obj> <type>0</type> <id>168</id> <name>tmp</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>55</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>55</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</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>546</item> <item>548</item> </oprand_edges> <opcode>nbreadreq</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_17"> <Value> <Obj> <type>0</type> <id>169</id> <name></name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>55</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>55</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>549</item> <item>550</item> <item>551</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_18"> <Value> <Obj> <type>0</type> <id>171</id> <name>empty</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>56</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>56</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>185</bitwidth> </Value> <oprand_edges> <count>6</count> <item_version>0</item_version> <item>553</item> <item>554</item> <item>555</item> <item>556</item> <item>557</item> <item>4159</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_19"> <Value> <Obj> <type>0</type> <id>172</id> <name>tmp_data_V</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>56</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>56</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.data.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>558</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_20"> <Value> <Obj> <type>0</type> <id>173</id> <name>tmp_user_V</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>56</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>56</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.user.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>112</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>559</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_21"> <Value> <Obj> <type>0</type> <id>174</id> <name>tmp_i_i_i_i</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>58</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>58</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>560</item> <item>562</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.87</m_delay> </item> <item class_id_reference="9" object_id="_22"> <Value> <Obj> <type>0</type> <id>175</id> <name>p_Val2_29</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>60</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>60</second> </item> </second> </item> </inlineStackInfo> <originalName>__Val2__</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>248</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>563</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_23"> <Value> <Obj> <type>0</type> <id>176</id> <name>bpf_keyLength_V_load</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>76</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>76</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>564</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_24"> <Value> <Obj> <type>0</type> <id>177</id> <name>keyLengthBuffer_load</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>70</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>70</second> </item> </second> </item> </inlineStackInfo> <originalName>i_op</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>565</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>1</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_25"> <Value> <Obj> <type>0</type> <id>178</id> <name>bpf_opCode_V_load</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>73</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>73</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>566</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_26"> <Value> <Obj> <type>0</type> <id>179</id> <name>protocol_V_load</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>72</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>72</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>567</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_27"> <Value> <Obj> <type>0</type> <id>180</id> <name>tmp_i</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>73</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>73</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>568</item> <item>570</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.86</m_delay> </item> <item class_id_reference="9" object_id="_28"> <Value> <Obj> <type>0</type> <id>181</id> <name>tmp_36_i</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>73</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>73</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>571</item> <item>573</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.86</m_delay> </item> <item class_id_reference="9" object_id="_29"> <Value> <Obj> <type>0</type> <id>182</id> <name>tmp_37_i</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>73</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>73</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>574</item> <item>575</item> </oprand_edges> <opcode>or</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.48</m_delay> </item> <item class_id_reference="9" object_id="_30"> <Value> <Obj> <type>0</type> <id>183</id> <name></name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>58</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>58</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>576</item> <item>577</item> <item>578</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_31"> <Value> <Obj> <type>0</type> <id>185</id> <name>tmp_241_i_i_i_i</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>68</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>68</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>617</item> <item>618</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.87</m_delay> </item> <item class_id_reference="9" object_id="_32"> <Value> <Obj> <type>0</type> <id>186</id> <name>bpf_valueLengthBuffe_1</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>95</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>95</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>17</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>619</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_33"> <Value> <Obj> <type>0</type> <id>187</id> <name></name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>68</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>68</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>620</item> <item>621</item> <item>622</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_34"> <Value> <Obj> <type>0</type> <id>189</id> <name>tmp_245_i_i_i_i</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>80</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>80</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>693</item> <item>694</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.87</m_delay> </item> <item class_id_reference="9" object_id="_35"> <Value> <Obj> <type>0</type> <id>190</id> <name></name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>80</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>80</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>695</item> <item>696</item> <item>697</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_36"> <Value> <Obj> <type>0</type> <id>192</id> <name>tmp_247_i_i_i_i</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>93</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>93</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>747</item> <item>748</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.87</m_delay> </item> <item class_id_reference="9" object_id="_37"> <Value> <Obj> <type>0</type> <id>193</id> <name></name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>93</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>93</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>749</item> <item>750</item> <item>751</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_38"> <Value> <Obj> <type>0</type> <id>195</id> <name>tmp_250_i_i_i_i</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>101</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>101</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>775</item> <item>776</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.87</m_delay> </item> <item class_id_reference="9" object_id="_39"> <Value> <Obj> <type>0</type> <id>196</id> <name>valueShift_load</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>146</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>146</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>777</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_40"> <Value> <Obj> <type>0</type> <id>197</id> <name></name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>101</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>101</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>778</item> <item>779</item> <item>780</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_41"> <Value> <Obj> <type>0</type> <id>199</id> <name>tmp_254_i_i_i_i</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>122</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>122</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>835</item> <item>836</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.87</m_delay> </item> <item class_id_reference="9" object_id="_42"> <Value> <Obj> <type>0</type> <id>200</id> <name></name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>122</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>122</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>837</item> <item>838</item> <item>839</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_43"> <Value> <Obj> <type>0</type> <id>202</id> <name>tmp_259_i_i_i_i</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>145</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>145</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>1044</item> <item>1045</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.87</m_delay> </item> <item class_id_reference="9" object_id="_44"> <Value> <Obj> <type>0</type> <id>203</id> <name></name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>145</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>145</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>1046</item> <item>1047</item> <item>1048</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.85</m_delay> </item> <item class_id_reference="9" object_id="_45"> <Value> <Obj> <type>0</type> <id>205</id> <name>Lo_assign_16_cast11_s</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>146</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>146</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>1049</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_46"> <Value> <Obj> <type>0</type> <id>206</id> <name>tmp_71_i</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>146</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>146</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1050</item> <item>1051</item> <item>1052</item> <item>1053</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_47"> <Value> <Obj> <type>0</type> <id>207</id> <name>tmp_267_cast_i_i_i_i</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>146</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>146</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>6</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1054</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_48"> <Value> <Obj> <type>0</type> <id>208</id> <name>op2_assign_1_i</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>146</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>146</second> </item> </second> </item> </inlineStackInfo> <originalName>op2</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>6</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1056</item> <item>1057</item> </oprand_edges> <opcode>sub</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.09</m_delay> </item> <item class_id_reference="9" object_id="_49"> <Value> <Obj> <type>0</type> <id>209</id> <name>op2_assign_1_cast_i_s</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>146</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>146</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1058</item> </oprand_edges> <opcode>sext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_50"> <Value> <Obj> <type>0</type> <id>210</id> <name>tmp_268_cast_i_i_i_i</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>146</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>146</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1059</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_51"> <Value> <Obj> <type>0</type> <id>211</id> <name>tmp_269_i_i_i_i</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>146</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>146</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>1060</item> <item>1061</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.18</m_delay> </item> <item class_id_reference="9" object_id="_52"> <Value> <Obj> <type>0</type> <id>212</id> <name>tmp_523</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>154</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>154</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1062</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_53"> <Value> <Obj> <type>0</type> <id>213</id> <name>tmp_524</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>154</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>154</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>1063</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_54"> <Value> <Obj> <type>0</type> <id>214</id> <name>tmp_525</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>154</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>154</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1064</item> <item>1065</item> </oprand_edges> <opcode>lshr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_55"> <Value> <Obj> <type>0</type> <id>215</id> <name>p_Result_64</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>154</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>154</second> </item> </second> </item> </inlineStackInfo> <originalName>__Result__</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1066</item> <item>1067</item> </oprand_edges> <opcode>and</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_56"> <Value> <Obj> <type>0</type> <id>216</id> <name>tmp_527</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>146</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>146</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1069</item> <item>1070</item> <item>1071</item> <item>1072</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_57"> <Value> <Obj> <type>0</type> <id>217</id> <name>tmp_528</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>146</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>146</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>26</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1073</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_58"> <Value> <Obj> <type>0</type> <id>218</id> <name>icmp4</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>146</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>146</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>1074</item> <item>1075</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.48</m_delay> </item> <item class_id_reference="9" object_id="_59"> <Value> <Obj> <type>0</type> <id>219</id> <name>tmp_529</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>154</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>154</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1076</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_60"> <Value> <Obj> <type>0</type> <id>220</id> <name>tmp_530</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>154</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>154</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1077</item> <item>1078</item> </oprand_edges> <opcode>sub</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.27</m_delay> </item> <item class_id_reference="9" object_id="_61"> <Value> <Obj> <type>0</type> <id>221</id> <name>tmp_531</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>146</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>146</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1079</item> <item>1080</item> <item>1081</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_62"> <Value> <Obj> <type>0</type> <id>222</id> <name>tmp_532</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>146</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>146</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1082</item> <item>1083</item> <item>1084</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_63"> <Value> <Obj> <type>0</type> <id>223</id> <name>p_op</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>154</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>154</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1085</item> <item>1086</item> </oprand_edges> <opcode>sub</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.27</m_delay> </item> <item class_id_reference="9" object_id="_64"> <Value> <Obj> <type>0</type> <id>224</id> <name>tmp_533</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>154</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>154</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1087</item> <item>1088</item> <item>1090</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_65"> <Value> <Obj> <type>0</type> <id>225</id> <name>tmp_534</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>154</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>154</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>1091</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_66"> <Value> <Obj> <type>0</type> <id>226</id> <name>tmp_535</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>154</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>154</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>1092</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_67"> <Value> <Obj> <type>0</type> <id>227</id> <name>tmp_536</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>154</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>154</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>1093</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_68"> <Value> <Obj> <type>0</type> <id>228</id> <name>tmp_537</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>154</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>154</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1094</item> <item>1095</item> </oprand_edges> <opcode>shl</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>2.35</m_delay> </item> <item class_id_reference="9" object_id="_69"> <Value> <Obj> <type>0</type> <id>229</id> <name>tmp_538</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>154</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>154</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1096</item> <item>1097</item> <item>1098</item> <item>1099</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_70"> <Value> <Obj> <type>0</type> <id>230</id> <name>tmp_539</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>146</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>146</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1100</item> <item>1101</item> <item>1102</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_71"> <Value> <Obj> <type>0</type> <id>231</id> <name>tmp_540</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>154</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>154</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1103</item> <item>1104</item> </oprand_edges> <opcode>shl</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_72"> <Value> <Obj> <type>0</type> <id>232</id> <name>tmp_541</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>154</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>154</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1105</item> <item>1106</item> </oprand_edges> <opcode>lshr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_73"> <Value> <Obj> <type>0</type> <id>233</id> <name>p_demorgan</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>154</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>154</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1107</item> <item>1108</item> </oprand_edges> <opcode>and</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.58</m_delay> </item> <item class_id_reference="9" object_id="_74"> <Value> <Obj> <type>0</type> <id>234</id> <name>tmp_542</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>154</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>154</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1109</item> <item>1110</item> </oprand_edges> <opcode>xor</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_75"> <Value> <Obj> <type>0</type> <id>235</id> <name>tmp_543</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>154</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>154</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1111</item> <item>1112</item> </oprand_edges> <opcode>and</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_76"> <Value> <Obj> <type>0</type> <id>236</id> <name>tmp_544</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>154</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>154</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1113</item> <item>1114</item> </oprand_edges> <opcode>and</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_77"> <Value> <Obj> <type>0</type> <id>237</id> <name>p_Result_65</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>154</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>154</second> </item> </second> </item> </inlineStackInfo> <originalName>__Result__</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1115</item> <item>1116</item> </oprand_edges> <opcode>or</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.62</m_delay> </item> <item class_id_reference="9" object_id="_78"> <Value> <Obj> <type>0</type> <id>238</id> <name></name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>155</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>155</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>1117</item> <item>1118</item> <item>1119</item> </oprand_edges> <opcode>write</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>2.39</m_delay> </item> <item class_id_reference="9" object_id="_79"> <Value> <Obj> <type>0</type> <id>239</id> <name></name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>146</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>146</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>1120</item> <item>1121</item> <item>1122</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_80"> <Value> <Obj> <type>0</type> <id>241</id> <name></name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>149</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>149</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1123</item> <item>1124</item> <item>4155</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.22</m_delay> </item> <item class_id_reference="9" object_id="_81"> <Value> <Obj> <type>0</type> <id>242</id> <name></name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>152</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>152</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1125</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.85</m_delay> </item> <item class_id_reference="9" object_id="_82"> <Value> <Obj> <type>0</type> <id>244</id> <name>tmp_275_i_i_i_i</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>156</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>156</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1126</item> <item>1127</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.86</m_delay> </item> <item class_id_reference="9" object_id="_83"> <Value> <Obj> <type>0</type> <id>245</id> <name></name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>156</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>156</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1128</item> <item>1129</item> <item>1130</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.85</m_delay> </item> <item class_id_reference="9" object_id="_84"> <Value> <Obj> <type>0</type> <id>247</id> <name>tmp_595</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>157</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>157</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>1131</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_85"> <Value> <Obj> <type>0</type> <id>248</id> <name>tmp_278_i_i_i_i</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>157</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>157</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>1132</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_86"> <Value> <Obj> <type>0</type> <id>249</id> <name>valueTemp</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>157</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>157</second> </item> </second> </item> </inlineStackInfo> <originalName>valueTemp</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1133</item> <item>1134</item> </oprand_edges> <opcode>sub</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.30</m_delay> </item> <item class_id_reference="9" object_id="_87"> <Value> <Obj> <type>0</type> <id>250</id> <name>tmp_596</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>158</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>158</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1135</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_88"> <Value> <Obj> <type>0</type> <id>251</id> <name>Lo_assign_10_i</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>158</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>158</second> </item> </second> </item> </inlineStackInfo> <originalName>Lo</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1136</item> <item>1137</item> </oprand_edges> <opcode>sub</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.35</m_delay> </item> <item class_id_reference="9" object_id="_89"> <Value> <Obj> <type>0</type> <id>252</id> <name>tmp_597</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>158</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>158</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1138</item> <item>1139</item> <item>1140</item> <item>1141</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_90"> <Value> <Obj> <type>0</type> <id>253</id> <name>tmp_598</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>158</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>158</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>26</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1142</item> </oprand_edges> <opcode>sext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_91"> <Value> <Obj> <type>0</type> <id>254</id> <name>icmp8</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>158</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>158</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>1143</item> <item>1144</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.67</m_delay> </item> <item class_id_reference="9" object_id="_92"> <Value> <Obj> <type>0</type> <id>255</id> <name>tmp_599</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>158</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>158</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1145</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_93"> <Value> <Obj> <type>0</type> <id>256</id> <name>tmp_600</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>158</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>158</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1146</item> <item>1147</item> <item>1148</item> <item>1149</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_94"> <Value> <Obj> <type>0</type> <id>257</id> <name>tmp_601</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>158</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>158</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1150</item> <item>1151</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.27</m_delay> </item> <item class_id_reference="9" object_id="_95"> <Value> <Obj> <type>0</type> <id>258</id> <name>tmp_602</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>158</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>158</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1152</item> <item>1153</item> </oprand_edges> <opcode>sub</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.27</m_delay> </item> <item class_id_reference="9" object_id="_96"> <Value> <Obj> <type>0</type> <id>259</id> <name>tmp_603</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>158</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>158</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1154</item> <item>1155</item> </oprand_edges> <opcode>sub</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.27</m_delay> </item> <item class_id_reference="9" object_id="_97"> <Value> <Obj> <type>0</type> <id>260</id> <name>tmp_604</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>158</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>158</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1156</item> <item>1157</item> <item>1158</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_98"> <Value> <Obj> <type>0</type> <id>261</id> <name>tmp_605</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>158</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>158</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1159</item> <item>1160</item> <item>1161</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_99"> <Value> <Obj> <type>0</type> <id>262</id> <name>tmp_606</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>158</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>158</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1162</item> <item>1163</item> <item>1164</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_100"> <Value> <Obj> <type>0</type> <id>263</id> <name>tmp_607</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>158</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>158</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1165</item> <item>1166</item> </oprand_edges> <opcode>sub</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.27</m_delay> </item> <item class_id_reference="9" object_id="_101"> <Value> <Obj> <type>0</type> <id>264</id> <name>tmp_608</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>158</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>158</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1167</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_102"> <Value> <Obj> <type>0</type> <id>265</id> <name>tmp_609</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>158</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>158</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1168</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_103"> <Value> <Obj> <type>0</type> <id>266</id> <name>tmp_610</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>158</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>158</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1169</item> <item>1170</item> </oprand_edges> <opcode>lshr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>2.35</m_delay> </item> <item class_id_reference="9" object_id="_104"> <Value> <Obj> <type>0</type> <id>267</id> <name>tmp_611</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>158</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>158</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1171</item> <item>1172</item> </oprand_edges> <opcode>lshr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_105"> <Value> <Obj> <type>0</type> <id>268</id> <name>p_Result_66</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>158</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>158</second> </item> </second> </item> </inlineStackInfo> <originalName>__Result__</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1173</item> <item>1174</item> </oprand_edges> <opcode>and</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_106"> <Value> <Obj> <type>0</type> <id>269</id> <name>tmp_613</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>158</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>158</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1175</item> <item>1176</item> </oprand_edges> <opcode>sub</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.27</m_delay> </item> <item class_id_reference="9" object_id="_107"> <Value> <Obj> <type>0</type> <id>270</id> <name>tmp_614</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>158</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>158</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1177</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_108"> <Value> <Obj> <type>0</type> <id>271</id> <name>tmp_615</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>158</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>158</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1178</item> <item>1179</item> </oprand_edges> <opcode>lshr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.58</m_delay> </item> <item class_id_reference="9" object_id="_109"> <Value> <Obj> <type>0</type> <id>272</id> <name>tmp_616</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>158</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>158</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1180</item> <item>1181</item> </oprand_edges> <opcode>xor</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_110"> <Value> <Obj> <type>0</type> <id>273</id> <name>tmp_617</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>158</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>158</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1182</item> <item>1183</item> </oprand_edges> <opcode>and</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_111"> <Value> <Obj> <type>0</type> <id>274</id> <name>tmp_618</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>158</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>158</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1184</item> <item>1185</item> </oprand_edges> <opcode>and</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_112"> <Value> <Obj> <type>0</type> <id>275</id> <name>p_Result_55</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>158</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>158</second> </item> </second> </item> </inlineStackInfo> <originalName>__Result__</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1186</item> <item>1187</item> </oprand_edges> <opcode>or</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.58</m_delay> </item> <item class_id_reference="9" object_id="_113"> <Value> <Obj> <type>0</type> <id>276</id> <name>tmp_279_i_i_i_i</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>159</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>159</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>1188</item> <item>1190</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.18</m_delay> </item> <item class_id_reference="9" object_id="_114"> <Value> <Obj> <type>0</type> <id>277</id> <name>tmp_280_i_i_i_i</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>159</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>159</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>1191</item> <item>1192</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.18</m_delay> </item> <item class_id_reference="9" object_id="_115"> <Value> <Obj> <type>0</type> <id>278</id> <name>or_cond_i_i_i_i</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>159</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>159</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>1193</item> <item>1194</item> </oprand_edges> <opcode>or</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.48</m_delay> </item> <item class_id_reference="9" object_id="_116"> <Value> <Obj> <type>0</type> <id>279</id> <name></name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>159</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>159</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>1195</item> <item>1196</item> <item>1197</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_117"> <Value> <Obj> <type>0</type> <id>281</id> <name></name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>160</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>160</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>1199</item> <item>1200</item> <item>4158</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.85</m_delay> </item> <item class_id_reference="9" object_id="_118"> <Value> <Obj> <type>0</type> <id>282</id> <name></name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>161</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>161</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1201</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_119"> <Value> <Obj> <type>0</type> <id>284</id> <name></name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>162</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>162</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1202</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.85</m_delay> </item> <item class_id_reference="9" object_id="_120"> <Value> <Obj> <type>0</type> <id>286</id> <name>valueTempBuffer_V_ne_1</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>__Result__</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1203</item> <item>1204</item> <item>1205</item> <item>1206</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_121"> <Value> <Obj> <type>0</type> <id>287</id> <name>tmp_282_i_i_i_i</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>163</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>163</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>1207</item> <item>1209</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.18</m_delay> </item> <item class_id_reference="9" object_id="_122"> <Value> <Obj> <type>0</type> <id>288</id> <name>tmp_283_i_i_i_i</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>163</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>163</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>17</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1210</item> <item>1211</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.32</m_delay> </item> <item class_id_reference="9" object_id="_123"> <Value> <Obj> <type>0</type> <id>289</id> <name>tmp_419_i_i_i_i</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>163</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>163</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>17</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1212</item> <item>1213</item> <item>1214</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.53</m_delay> </item> <item class_id_reference="9" object_id="_124"> <Value> <Obj> <type>0</type> <id>290</id> <name></name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>163</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>163</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>1215</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.85</m_delay> </item> <item class_id_reference="9" object_id="_125"> <Value> <Obj> <type>0</type> <id>292</id> <name>valueTempBuffer_V_ne_2</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>__Result__</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1216</item> <item>1217</item> <item>1218</item> <item>1219</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_126"> <Value> <Obj> <type>0</type> <id>293</id> <name>storemerge1_i_i_i_i</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>163</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>163</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>17</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1220</item> <item>1221</item> <item>1222</item> <item>1223</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_127"> <Value> <Obj> <type>0</type> <id>294</id> <name></name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>163</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>163</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>1224</item> <item>1225</item> <item>4172</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.00</m_delay> </item> <item class_id_reference="9" object_id="_128"> <Value> <Obj> <type>0</type> <id>295</id> <name></name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>165</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>165</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>1226</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.85</m_delay> </item> <item class_id_reference="9" object_id="_129"> <Value> <Obj> <type>0</type> <id>297</id> <name></name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>123</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>123</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>840</item> <item>841</item> <item>842</item> </oprand_edges> <opcode>write</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>2.39</m_delay> </item> <item class_id_reference="9" object_id="_130"> <Value> <Obj> <type>0</type> <id>298</id> <name>tmp_258_i_i_i_i</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>124</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>124</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>843</item> <item>844</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.86</m_delay> </item> <item class_id_reference="9" object_id="_131"> <Value> <Obj> <type>0</type> <id>299</id> <name></name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>124</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>124</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>845</item> <item>846</item> <item>847</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_132"> <Value> <Obj> <type>0</type> <id>301</id> <name>tmp_520</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>73</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>73</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>1029</item> <item>1030</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.86</m_delay> </item> <item class_id_reference="9" object_id="_133"> <Value> <Obj> <type>0</type> <id>302</id> <name>tmp_521</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>73</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>73</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>1031</item> <item>1032</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.86</m_delay> </item> <item class_id_reference="9" object_id="_134"> <Value> <Obj> <type>0</type> <id>303</id> <name>tmp_522</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>73</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>73</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>1033</item> <item>1034</item> </oprand_edges> <opcode>or</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.48</m_delay> </item> <item class_id_reference="9" object_id="_135"> <Value> <Obj> <type>0</type> <id>304</id> <name></name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>73</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>73</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>1035</item> <item>1036</item> <item>1037</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_136"> <Value> <Obj> <type>0</type> <id>306</id> <name></name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>141</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>141</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>1038</item> <item>1039</item> <item>4167</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.92</m_delay> </item> <item class_id_reference="9" object_id="_137"> <Value> <Obj> <type>0</type> <id>307</id> <name></name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>142</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>142</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1040</item> <item>1041</item> <item>4154</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.22</m_delay> </item> <item class_id_reference="9" object_id="_138"> <Value> <Obj> <type>0</type> <id>308</id> <name></name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>143</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>143</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>1042</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_139"> <Value> <Obj> <type>0</type> <id>310</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>1043</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.85</m_delay> </item> <item class_id_reference="9" object_id="_140"> <Value> <Obj> <type>0</type> <id>312</id> <name>tmp_518</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>125</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>125</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>848</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>1</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_141"> <Value> <Obj> <type>0</type> <id>313</id> <name>tmp_261_i_i_i_i</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>125</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>125</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>850</item> <item>851</item> </oprand_edges> <opcode>sub</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>1</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.09</m_delay> </item> <item class_id_reference="9" object_id="_142"> <Value> <Obj> <type>0</type> <id>314</id> <name>tmp_519</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>125</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>125</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>852</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_143"> <Value> <Obj> <type>0</type> <id>315</id> <name>tmp_263_i_i_i_i</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>125</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>125</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>854</item> <item>855</item> <item>857</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>1</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_144"> <Value> <Obj> <type>0</type> <id>316</id> <name></name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>125</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>125</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>858</item> <item>859</item> <item>4174</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.85</m_delay> </item> <item class_id_reference="9" object_id="_145"> <Value> <Obj> <type>0</type> <id>317</id> <name>tmp_264_cast_i_i_i_i</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>126</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</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>860</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_146"> <Value> <Obj> <type>0</type> <id>318</id> <name>op2_assign_i</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>126</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>126</second> </item> </second> </item> </inlineStackInfo> <originalName>op2</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>862</item> <item>863</item> </oprand_edges> <opcode>sub</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.35</m_delay> </item> <item class_id_reference="9" object_id="_147"> <Value> <Obj> <type>0</type> <id>319</id> <name>op2_assign_cast_i_i_s</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>126</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>126</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>864</item> </oprand_edges> <opcode>sext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_148"> <Value> <Obj> <type>0</type> <id>320</id> <name>tmp_265_cast_i_i_i_i</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>126</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>126</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>865</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_149"> <Value> <Obj> <type>0</type> <id>321</id> <name>tmp_266_i_i_i_i</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>126</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>126</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>866</item> <item>867</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.18</m_delay> </item> <item class_id_reference="9" object_id="_150"> <Value> <Obj> <type>0</type> <id>322</id> <name>p_0283_i_i_i_i</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>126</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>126</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>868</item> <item>870</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.35</m_delay> </item> <item class_id_reference="9" object_id="_151"> <Value> <Obj> <type>0</type> <id>323</id> <name>p_0283_cast_i_i_i_i</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>126</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>126</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>17</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>871</item> </oprand_edges> <opcode>sext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_152"> <Value> <Obj> <type>0</type> <id>324</id> <name>tmp_273_i_i_i_i</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>126</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>126</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>17</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>872</item> <item>873</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.32</m_delay> </item> <item class_id_reference="9" object_id="_153"> <Value> <Obj> <type>0</type> <id>325</id> <name>storemerge27_i_i_i_i</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>126</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>126</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>17</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>874</item> <item>875</item> <item>877</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.53</m_delay> </item> <item class_id_reference="9" object_id="_154"> <Value> <Obj> <type>0</type> <id>326</id> <name></name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>126</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>126</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>878</item> <item>879</item> <item>4171</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.00</m_delay> </item> <item class_id_reference="9" object_id="_155"> <Value> <Obj> <type>0</type> <id>327</id> <name>tmp_274_i_i_i_i</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>127</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>127</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>880</item> <item>881</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.18</m_delay> </item> <item class_id_reference="9" object_id="_156"> <Value> <Obj> <type>0</type> <id>328</id> <name></name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>127</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>127</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>882</item> <item>883</item> <item>884</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_157"> <Value> <Obj> <type>0</type> <id>330</id> <name>tmp_276_cast_i_i_i_i</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>128</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>128</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>885</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>1</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_158"> <Value> <Obj> <type>0</type> <id>331</id> <name>tmp_571</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>128</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>128</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>887</item> <item>888</item> <item>889</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_159"> <Value> <Obj> <type>0</type> <id>332</id> <name>Lo_assign_i</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>128</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>128</second> </item> </second> </item> </inlineStackInfo> <originalName>Lo</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>891</item> <item>892</item> </oprand_edges> <opcode>sub</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>1</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.35</m_delay> </item> <item class_id_reference="9" object_id="_160"> <Value> <Obj> <type>0</type> <id>333</id> <name>tmp_572</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>128</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>128</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>894</item> <item>895</item> <item>897</item> <item>898</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_161"> <Value> <Obj> <type>0</type> <id>334</id> <name>tmp_573</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>128</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>128</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>26</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>899</item> </oprand_edges> <opcode>sext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_162"> <Value> <Obj> <type>0</type> <id>335</id> <name>icmp7</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>128</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>128</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>900</item> <item>902</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.67</m_delay> </item> <item class_id_reference="9" object_id="_163"> <Value> <Obj> <type>0</type> <id>336</id> <name>tmp_574</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>128</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>128</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>903</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>1</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_164"> <Value> <Obj> <type>0</type> <id>337</id> <name>tmp_575</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>128</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>128</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>905</item> <item>906</item> <item>908</item> <item>909</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_165"> <Value> <Obj> <type>0</type> <id>338</id> <name>tmp_576</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>128</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>128</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>911</item> <item>912</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.27</m_delay> </item> <item class_id_reference="9" object_id="_166"> <Value> <Obj> <type>0</type> <id>339</id> <name>tmp_577</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>128</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>128</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>914</item> <item>915</item> </oprand_edges> <opcode>sub</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>1</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.27</m_delay> </item> <item class_id_reference="9" object_id="_167"> <Value> <Obj> <type>0</type> <id>340</id> <name>tmp_578</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>128</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>128</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>916</item> <item>917</item> </oprand_edges> <opcode>sub</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.27</m_delay> </item> <item class_id_reference="9" object_id="_168"> <Value> <Obj> <type>0</type> <id>341</id> <name>tmp_579</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>128</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>128</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>918</item> <item>919</item> <item>920</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_169"> <Value> <Obj> <type>0</type> <id>342</id> <name>tmp_580</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>128</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>128</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>921</item> <item>922</item> <item>923</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_170"> <Value> <Obj> <type>0</type> <id>343</id> <name>tmp_581</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>128</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>128</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>924</item> <item>925</item> <item>926</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>1</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_171"> <Value> <Obj> <type>0</type> <id>344</id> <name>tmp_582</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>128</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>128</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>927</item> <item>928</item> </oprand_edges> <opcode>sub</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.27</m_delay> </item> <item class_id_reference="9" object_id="_172"> <Value> <Obj> <type>0</type> <id>345</id> <name>tmp_583</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>128</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>128</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>929</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>1</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_173"> <Value> <Obj> <type>0</type> <id>346</id> <name>tmp_584</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>128</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>128</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>930</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_174"> <Value> <Obj> <type>0</type> <id>347</id> <name>tmp_585</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>128</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>128</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>931</item> <item>932</item> </oprand_edges> <opcode>lshr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>1</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>2.35</m_delay> </item> <item class_id_reference="9" object_id="_175"> <Value> <Obj> <type>0</type> <id>348</id> <name>tmp_586</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>128</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>128</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>934</item> <item>935</item> </oprand_edges> <opcode>lshr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_176"> <Value> <Obj> <type>0</type> <id>349</id> <name>p_Result_61</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>128</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>128</second> </item> </second> </item> </inlineStackInfo> <originalName>__Result__</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>936</item> <item>937</item> </oprand_edges> <opcode>and</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>1</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_177"> <Value> <Obj> <type>0</type> <id>350</id> <name>tmp_588</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>128</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>128</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>939</item> <item>940</item> </oprand_edges> <opcode>sub</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.27</m_delay> </item> <item class_id_reference="9" object_id="_178"> <Value> <Obj> <type>0</type> <id>351</id> <name>tmp_589</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>128</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>128</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>941</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_179"> <Value> <Obj> <type>0</type> <id>352</id> <name>tmp_590</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>128</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>128</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>942</item> <item>943</item> </oprand_edges> <opcode>lshr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.58</m_delay> </item> <item class_id_reference="9" object_id="_180"> <Value> <Obj> <type>0</type> <id>353</id> <name>tmp_591</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>128</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>128</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>944</item> <item>945</item> </oprand_edges> <opcode>xor</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_181"> <Value> <Obj> <type>0</type> <id>354</id> <name>tmp_592</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>128</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>128</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>946</item> <item>947</item> </oprand_edges> <opcode>and</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_182"> <Value> <Obj> <type>0</type> <id>355</id> <name>tmp_593</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>128</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>128</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>948</item> <item>949</item> </oprand_edges> <opcode>and</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>1</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_183"> <Value> <Obj> <type>0</type> <id>356</id> <name>p_Result_49</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>128</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>128</second> </item> </second> </item> </inlineStackInfo> <originalName>__Result__</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>950</item> <item>951</item> </oprand_edges> <opcode>or</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>1</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.58</m_delay> </item> <item class_id_reference="9" object_id="_184"> <Value> <Obj> <type>0</type> <id>357</id> <name></name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>131</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>131</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>952</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>1</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.85</m_delay> </item> <item class_id_reference="9" object_id="_185"> <Value> <Obj> <type>0</type> <id>359</id> <name>tmp_547</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>70</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>70</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>953</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_186"> <Value> <Obj> <type>0</type> <id>360</id> <name>tmp_548</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>70</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>70</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>954</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_187"> <Value> <Obj> <type>0</type> <id>361</id> <name>Lo_assign_15_cast_i_s</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>133</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>133</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>955</item> <item>956</item> <item>957</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_188"> <Value> <Obj> <type>0</type> <id>362</id> <name>tmp_549</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>70</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>70</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>958</item> <item>959</item> <item>960</item> <item>961</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_189"> <Value> <Obj> <type>0</type> <id>363</id> <name>tmp_550</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>70</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>70</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>26</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>962</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_190"> <Value> <Obj> <type>0</type> <id>364</id> <name>icmp5</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>70</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>70</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>963</item> <item>964</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.87</m_delay> </item> <item class_id_reference="9" object_id="_191"> <Value> <Obj> <type>0</type> <id>365</id> <name>tmp_551</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>133</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>133</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>965</item> <item>966</item> <item>967</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_192"> <Value> <Obj> <type>0</type> <id>366</id> <name>tmp_552</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>133</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>133</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>968</item> <item>969</item> <item>970</item> <item>971</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_193"> <Value> <Obj> <type>0</type> <id>367</id> <name>tmp_553</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>133</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>133</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>972</item> <item>973</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.27</m_delay> </item> <item class_id_reference="9" object_id="_194"> <Value> <Obj> <type>0</type> <id>368</id> <name>tmp_554</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>133</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>133</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>974</item> <item>975</item> </oprand_edges> <opcode>sub</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.27</m_delay> </item> <item class_id_reference="9" object_id="_195"> <Value> <Obj> <type>0</type> <id>369</id> <name>tmp_555</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>133</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>133</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>976</item> <item>977</item> </oprand_edges> <opcode>sub</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.27</m_delay> </item> <item class_id_reference="9" object_id="_196"> <Value> <Obj> <type>0</type> <id>370</id> <name>tmp_556</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>133</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>133</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>978</item> <item>979</item> <item>980</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_197"> <Value> <Obj> <type>0</type> <id>371</id> <name>tmp_557</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>70</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>70</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>981</item> <item>982</item> <item>983</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_198"> <Value> <Obj> <type>0</type> <id>372</id> <name>tmp_558</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>70</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>70</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>984</item> <item>985</item> <item>986</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_199"> <Value> <Obj> <type>0</type> <id>373</id> <name>tmp_559</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>133</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>133</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>987</item> <item>988</item> </oprand_edges> <opcode>sub</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.27</m_delay> </item> <item class_id_reference="9" object_id="_200"> <Value> <Obj> <type>0</type> <id>374</id> <name>tmp_560</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>133</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>133</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>989</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_201"> <Value> <Obj> <type>0</type> <id>375</id> <name>tmp_561</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>133</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>133</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>990</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_202"> <Value> <Obj> <type>0</type> <id>376</id> <name>tmp_562</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>133</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>133</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>991</item> <item>992</item> </oprand_edges> <opcode>lshr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>2.35</m_delay> </item> <item class_id_reference="9" object_id="_203"> <Value> <Obj> <type>0</type> <id>377</id> <name>tmp_563</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>133</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>133</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>993</item> <item>994</item> </oprand_edges> <opcode>lshr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_204"> <Value> <Obj> <type>0</type> <id>378</id> <name>p_Result_62</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>133</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>133</second> </item> </second> </item> </inlineStackInfo> <originalName>__Result__</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>995</item> <item>996</item> </oprand_edges> <opcode>and</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_205"> <Value> <Obj> <type>0</type> <id>379</id> <name>tmp_565</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>133</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>133</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>997</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_206"> <Value> <Obj> <type>0</type> <id>380</id> <name>tmp_566</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>133</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>133</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>998</item> <item>999</item> </oprand_edges> <opcode>lshr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.58</m_delay> </item> <item class_id_reference="9" object_id="_207"> <Value> <Obj> <type>0</type> <id>381</id> <name>tmp_567</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>133</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>133</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1000</item> <item>1001</item> </oprand_edges> <opcode>xor</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_208"> <Value> <Obj> <type>0</type> <id>382</id> <name>tmp_568</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>133</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>133</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1002</item> <item>1003</item> </oprand_edges> <opcode>and</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_209"> <Value> <Obj> <type>0</type> <id>383</id> <name>tmp_569</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>133</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>133</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1004</item> <item>1005</item> </oprand_edges> <opcode>and</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_210"> <Value> <Obj> <type>0</type> <id>384</id> <name>p_Result_63</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>133</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>133</second> </item> </second> </item> </inlineStackInfo> <originalName>__Result__</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1006</item> <item>1007</item> </oprand_edges> <opcode>or</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.58</m_delay> </item> <item class_id_reference="9" object_id="_211"> <Value> <Obj> <type>0</type> <id>385</id> <name></name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>134</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>134</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>1008</item> <item>1009</item> <item>1010</item> </oprand_edges> <opcode>write</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>2.39</m_delay> </item> <item class_id_reference="9" object_id="_212"> <Value> <Obj> <type>0</type> <id>386</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>1011</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.85</m_delay> </item> <item class_id_reference="9" object_id="_213"> <Value> <Obj> <type>0</type> <id>388</id> <name>valueTempBuffer_V_ne</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>__Result__</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1012</item> <item>1013</item> <item>1014</item> <item>1015</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_214"> <Value> <Obj> <type>0</type> <id>389</id> <name>storemerge28_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> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1017</item> <item>1018</item> <item>1020</item> <item>1021</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>1</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.85</m_delay> </item> <item class_id_reference="9" object_id="_215"> <Value> <Obj> <type>0</type> <id>390</id> <name>storemerge28_cast22_s</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>136</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>136</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1022</item> </oprand_edges> <opcode>sext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>1</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_216"> <Value> <Obj> <type>0</type> <id>391</id> <name></name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>136</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>136</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>1023</item> <item>1024</item> <item>4168</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.92</m_delay> </item> <item class_id_reference="9" object_id="_217"> <Value> <Obj> <type>0</type> <id>392</id> <name>storemerge28_cast_ca</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>130</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>130</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>1025</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>1</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_218"> <Value> <Obj> <type>0</type> <id>393</id> <name></name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>130</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>130</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1026</item> <item>1027</item> <item>4157</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>1</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.22</m_delay> </item> <item class_id_reference="9" object_id="_219"> <Value> <Obj> <type>0</type> <id>394</id> <name></name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>139</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>139</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>1028</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.85</m_delay> </item> <item class_id_reference="9" object_id="_220"> <Value> <Obj> <type>0</type> <id>396</id> <name>valueTempBuffer_V_fl</name> <fileName></fileName> <fileDirectory></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>8</count> <item_version>0</item_version> <item>1227</item> <item>1228</item> <item>1230</item> <item>1231</item> <item>1232</item> <item>1233</item> <item>1234</item> <item>1235</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_221"> <Value> <Obj> <type>0</type> <id>397</id> <name>valueTempBuffer_V_ne_3</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>133</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>133</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>8</count> <item_version>0</item_version> <item>1236</item> <item>1237</item> <item>1239</item> <item>1240</item> <item>1241</item> <item>1242</item> <item>1243</item> <item>1244</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_222"> <Value> <Obj> <type>0</type> <id>398</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>1245</item> <item>1246</item> <item>1247</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_223"> <Value> <Obj> <type>0</type> <id>400</id> <name></name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>128</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>128</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1262</item> <item>1263</item> <item>4156</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_224"> <Value> <Obj> <type>0</type> <id>401</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>1264</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_225"> <Value> <Obj> <type>0</type> <id>403</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>1265</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_226"> <Value> <Obj> <type>0</type> <id>405</id> <name>tmp_253_i_i_i_i</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>102</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</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>781</item> <item>782</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.86</m_delay> </item> <item class_id_reference="9" object_id="_227"> <Value> <Obj> <type>0</type> <id>406</id> <name></name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>102</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>102</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>783</item> <item>784</item> <item>785</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_228"> <Value> <Obj> <type>0</type> <id>408</id> <name>tmp_516</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>110</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>110</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>795</item> <item>796</item> <item>797</item> <item>798</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_229"> <Value> <Obj> <type>0</type> <id>409</id> <name>icmp6</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>110</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>110</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>799</item> <item>800</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.87</m_delay> </item> <item class_id_reference="9" object_id="_230"> <Value> <Obj> <type>0</type> <id>410</id> <name></name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>110</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>110</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>801</item> <item>802</item> <item>803</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_231"> <Value> <Obj> <type>0</type> <id>412</id> <name>tmp_517</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>113</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>113</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>808</item> <item>809</item> <item>811</item> <item>812</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_232"> <Value> <Obj> <type>0</type> <id>413</id> <name>icmp9</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>113</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>113</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>813</item> <item>814</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.87</m_delay> </item> <item class_id_reference="9" object_id="_233"> <Value> <Obj> <type>0</type> <id>414</id> <name></name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>113</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>113</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>815</item> <item>816</item> <item>817</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_234"> <Value> <Obj> <type>0</type> <id>416</id> <name>tmp_546</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>115</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>115</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>818</item> <item>819</item> <item>820</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.58</m_delay> </item> <item class_id_reference="9" object_id="_235"> <Value> <Obj> <type>0</type> <id>417</id> <name></name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>115</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>115</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>821</item> <item>822</item> <item>4153</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.22</m_delay> </item> <item class_id_reference="9" object_id="_236"> <Value> <Obj> <type>0</type> <id>418</id> <name></name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>118</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>118</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>823</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_237"> <Value> <Obj> <type>0</type> <id>420</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>824</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_238"> <Value> <Obj> <type>0</type> <id>422</id> <name></name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>111</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>111</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>804</item> <item>805</item> <item>4152</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.22</m_delay> </item> <item class_id_reference="9" object_id="_239"> <Value> <Obj> <type>0</type> <id>423</id> <name></name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>112</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>112</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>806</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_240"> <Value> <Obj> <type>0</type> <id>425</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>825</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_241"> <Value> <Obj> <type>0</type> <id>427</id> <name>storemerge_cast_cast</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>104</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>104</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>786</item> <item>787</item> <item>789</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.58</m_delay> </item> <item class_id_reference="9" object_id="_242"> <Value> <Obj> <type>0</type> <id>428</id> <name></name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>104</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>104</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>790</item> <item>791</item> <item>4151</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.22</m_delay> </item> <item class_id_reference="9" object_id="_243"> <Value> <Obj> <type>0</type> <id>429</id> <name></name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>108</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>108</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>792</item> <item>793</item> <item>4173</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.85</m_delay> </item> <item class_id_reference="9" object_id="_244"> <Value> <Obj> <type>0</type> <id>430</id> <name></name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>109</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>109</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>794</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_245"> <Value> <Obj> <type>0</type> <id>432</id> <name></name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>119</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>119</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>826</item> <item>827</item> <item>828</item> </oprand_edges> <opcode>write</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>2.39</m_delay> </item> <item class_id_reference="9" object_id="_246"> <Value> <Obj> <type>0</type> <id>433</id> <name>tmp_281_i_i_i_i</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>120</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>120</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>829</item> <item>831</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.35</m_delay> </item> <item class_id_reference="9" object_id="_247"> <Value> <Obj> <type>0</type> <id>434</id> <name></name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>120</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>120</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>832</item> <item>833</item> <item>4166</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.92</m_delay> </item> <item class_id_reference="9" object_id="_248"> <Value> <Obj> <type>0</type> <id>435</id> <name></name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>121</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>121</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>834</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_249"> <Value> <Obj> <type>0</type> <id>437</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>1248</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_250"> <Value> <Obj> <type>0</type> <id>439</id> <name>tmp_511</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>94</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>94</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>752</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_251"> <Value> <Obj> <type>0</type> <id>440</id> <name>p_Result_60</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>94</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>94</second> </item> </second> </item> </inlineStackInfo> <originalName>__Result__</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>753</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_252"> <Value> <Obj> <type>0</type> <id>441</id> <name></name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>94</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>94</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>755</item> <item>756</item> <item>757</item> </oprand_edges> <opcode>write</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>2.39</m_delay> </item> <item class_id_reference="9" object_id="_253"> <Value> <Obj> <type>0</type> <id>442</id> <name>tmp_248_i_i_i_i</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>95</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>95</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>17</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>759</item> <item>760</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.32</m_delay> </item> <item class_id_reference="9" object_id="_254"> <Value> <Obj> <type>0</type> <id>443</id> <name></name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>95</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>95</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>761</item> <item>762</item> <item>4170</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.00</m_delay> </item> <item class_id_reference="9" object_id="_255"> <Value> <Obj> <type>0</type> <id>444</id> <name>tmp_512</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>96</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>96</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>763</item> <item>764</item> <item>765</item> <item>766</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_256"> <Value> <Obj> <type>0</type> <id>445</id> <name>icmp3</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>96</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>96</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>767</item> <item>768</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.87</m_delay> </item> <item class_id_reference="9" object_id="_257"> <Value> <Obj> <type>0</type> <id>446</id> <name>tmp_513</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>97</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>97</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>769</item> <item>770</item> <item>771</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.58</m_delay> </item> <item class_id_reference="9" object_id="_258"> <Value> <Obj> <type>0</type> <id>447</id> <name></name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>97</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</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>772</item> <item>773</item> <item>4148</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.22</m_delay> </item> <item class_id_reference="9" object_id="_259"> <Value> <Obj> <type>0</type> <id>448</id> <name></name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>100</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>100</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>774</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_260"> <Value> <Obj> <type>0</type> <id>450</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>1249</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_261"> <Value> <Obj> <type>0</type> <id>452</id> <name>tmp_246_i_i_i_i</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>81</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>81</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>698</item> <item>700</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.86</m_delay> </item> <item class_id_reference="9" object_id="_262"> <Value> <Obj> <type>0</type> <id>453</id> <name></name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>81</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>81</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>701</item> <item>702</item> <item>703</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_263"> <Value> <Obj> <type>0</type> <id>455</id> <name>tmp_508</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>73</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>73</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>708</item> <item>709</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.86</m_delay> </item> <item class_id_reference="9" object_id="_264"> <Value> <Obj> <type>0</type> <id>456</id> <name>tmp_509</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>73</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>73</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>710</item> <item>711</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.86</m_delay> </item> <item class_id_reference="9" object_id="_265"> <Value> <Obj> <type>0</type> <id>457</id> <name>tmp_510</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>73</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>73</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>712</item> <item>713</item> </oprand_edges> <opcode>or</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.48</m_delay> </item> <item class_id_reference="9" object_id="_266"> <Value> <Obj> <type>0</type> <id>458</id> <name></name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>73</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>73</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>714</item> <item>715</item> <item>716</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_267"> <Value> <Obj> <type>0</type> <id>460</id> <name>tmp_251_i_i_i_i</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>89</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>89</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>735</item> <item>737</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.86</m_delay> </item> <item class_id_reference="9" object_id="_268"> <Value> <Obj> <type>0</type> <id>461</id> <name></name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>89</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>89</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>738</item> <item>739</item> <item>740</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_269"> <Value> <Obj> <type>0</type> <id>463</id> <name></name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>90</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>90</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>741</item> <item>742</item> <item>4150</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.22</m_delay> </item> <item class_id_reference="9" object_id="_270"> <Value> <Obj> <type>0</type> <id>464</id> <name></name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>91</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>91</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>743</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_271"> <Value> <Obj> <type>0</type> <id>466</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>744</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_272"> <Value> <Obj> <type>0</type> <id>468</id> <name>tmp_514</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>84</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>84</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>718</item> <item>719</item> <item>721</item> <item>723</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_273"> <Value> <Obj> <type>0</type> <id>469</id> <name>icmp</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>84</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</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>724</item> <item>726</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.87</m_delay> </item> <item class_id_reference="9" object_id="_274"> <Value> <Obj> <type>0</type> <id>470</id> <name>tmp_515</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>85</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>85</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>727</item> <item>729</item> <item>731</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.58</m_delay> </item> <item class_id_reference="9" object_id="_275"> <Value> <Obj> <type>0</type> <id>471</id> <name></name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>85</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>85</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>732</item> <item>733</item> <item>4149</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.22</m_delay> </item> <item class_id_reference="9" object_id="_276"> <Value> <Obj> <type>0</type> <id>472</id> <name></name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>88</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</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>734</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_277"> <Value> <Obj> <type>0</type> <id>474</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>745</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_278"> <Value> <Obj> <type>0</type> <id>476</id> <name></name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>82</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>82</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>705</item> <item>706</item> <item>4147</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.22</m_delay> </item> <item class_id_reference="9" object_id="_279"> <Value> <Obj> <type>0</type> <id>477</id> <name></name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>82</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>82</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>707</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_280"> <Value> <Obj> <type>0</type> <id>479</id> <name></name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>92</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>92</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>746</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_281"> <Value> <Obj> <type>0</type> <id>481</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>1250</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_282"> <Value> <Obj> <type>0</type> <id>483</id> <name>p_Result_i_i_i_i_i</name> <fileName>sources/globals.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>127</lineNumber> <contextFuncName>byteSwap32</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>sources/globals.cpp</first> <second>byteSwap32</second> </first> <second>127</second> </item> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>69</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>623</item> <item>624</item> <item>625</item> <item>626</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_283"> <Value> <Obj> <type>0</type> <id>484</id> <name>p_Result_i_i_i_i_s</name> <fileName>sources/globals.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>127</lineNumber> <contextFuncName>byteSwap32</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>sources/globals.cpp</first> <second>byteSwap32</second> </first> <second>127</second> </item> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>69</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>627</item> <item>628</item> <item>630</item> <item>632</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_284"> <Value> <Obj> <type>0</type> <id>485</id> <name>tmp_506</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>56</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</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>634</item> <item>635</item> <item>636</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_285"> <Value> <Obj> <type>0</type> <id>486</id> <name>tmp_242_i_i_i_i</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>70</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>70</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>17</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>638</item> <item>639</item> <item>640</item> <item>641</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_286"> <Value> <Obj> <type>0</type> <id>487</id> <name>tmp_243_i_i_i_i</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>70</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>70</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>17</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>642</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_287"> <Value> <Obj> <type>0</type> <id>488</id> <name>tmp_244_i_i_i_i</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>70</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>70</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>17</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>643</item> <item>644</item> </oprand_edges> <opcode>sub</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.32</m_delay> </item> <item class_id_reference="9" object_id="_288"> <Value> <Obj> <type>0</type> <id>489</id> <name></name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>70</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>70</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>645</item> <item>646</item> <item>4169</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.00</m_delay> </item> <item class_id_reference="9" object_id="_289"> <Value> <Obj> <type>0</type> <id>490</id> <name>p_Result_56</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>72</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>72</second> </item> </second> </item> </inlineStackInfo> <originalName>__Result__</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>248</bitwidth> </Value> <oprand_edges> <count>5</count> <item_version>0</item_version> <item>648</item> <item>649</item> <item>650</item> <item>652</item> <item>654</item> </oprand_edges> <opcode>partset</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_290"> <Value> <Obj> <type>0</type> <id>491</id> <name>p_Result_57</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>73</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>73</second> </item> </second> </item> </inlineStackInfo> <originalName>__Result__</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>248</bitwidth> </Value> <oprand_edges> <count>5</count> <item_version>0</item_version> <item>656</item> <item>657</item> <item>658</item> <item>660</item> <item>662</item> </oprand_edges> <opcode>partset</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_291"> <Value> <Obj> <type>0</type> <id>492</id> <name>tmp_507</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>56</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>56</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>30</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>663</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_292"> <Value> <Obj> <type>0</type> <id>493</id> <name>p_Result_58</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>74</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>74</second> </item> </second> </item> </inlineStackInfo> <originalName>__Result__</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>248</bitwidth> </Value> <oprand_edges> <count>5</count> <item_version>0</item_version> <item>665</item> <item>666</item> <item>667</item> <item>669</item> <item>671</item> </oprand_edges> <opcode>partset</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_293"> <Value> <Obj> <type>0</type> <id>494</id> <name>tmp_71_i_i_i_i</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>76</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>76</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>25</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>673</item> <item>674</item> <item>675</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_294"> <Value> <Obj> <type>0</type> <id>495</id> <name>p_Result_59</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>76</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>76</second> </item> </second> </item> </inlineStackInfo> <originalName>__Result__</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>248</bitwidth> </Value> <oprand_edges> <count>5</count> <item_version>0</item_version> <item>677</item> <item>678</item> <item>679</item> <item>681</item> <item>682</item> </oprand_edges> <opcode>partset</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_295"> <Value> <Obj> <type>0</type> <id>496</id> <name></name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>76</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>76</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>683</item> <item>684</item> <item>4165</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.85</m_delay> </item> <item class_id_reference="9" object_id="_296"> <Value> <Obj> <type>0</type> <id>497</id> <name></name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>77</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>77</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>686</item> <item>687</item> <item>688</item> </oprand_edges> <opcode>write</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>2.39</m_delay> </item> <item class_id_reference="9" object_id="_297"> <Value> <Obj> <type>0</type> <id>498</id> <name></name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>78</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</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>690</item> <item>691</item> <item>4146</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.22</m_delay> </item> <item class_id_reference="9" object_id="_298"> <Value> <Obj> <type>0</type> <id>499</id> <name></name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>79</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>79</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>692</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_299"> <Value> <Obj> <type>0</type> <id>501</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>1251</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_300"> <Value> <Obj> <type>0</type> <id>503</id> <name>tmp_504</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>59</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>59</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>108</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>579</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_301"> <Value> <Obj> <type>0</type> <id>504</id> <name>loc_V_trunc_i_i_i_i</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>59</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>59</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>124</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>580</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_302"> <Value> <Obj> <type>0</type> <id>505</id> <name>p_Result_s</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>60</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>60</second> </item> </second> </item> </inlineStackInfo> <originalName>__Result__</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>248</bitwidth> </Value> <oprand_edges> <count>5</count> <item_version>0</item_version> <item>582</item> <item>583</item> <item>584</item> <item>586</item> <item>588</item> </oprand_edges> <opcode>partset</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_303"> <Value> <Obj> <type>0</type> <id>506</id> <name></name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>60</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>60</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>589</item> <item>590</item> <item>4160</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.85</m_delay> </item> <item class_id_reference="9" object_id="_304"> <Value> <Obj> <type>0</type> <id>507</id> <name>p_Result_61_i_i_i_s</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>61</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>61</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>592</item> <item>593</item> <item>595</item> <item>597</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_305"> <Value> <Obj> <type>0</type> <id>508</id> <name></name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>61</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>61</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>598</item> <item>599</item> <item>4161</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_306"> <Value> <Obj> <type>0</type> <id>509</id> <name></name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>62</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>62</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>600</item> <item>601</item> <item>4162</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.92</m_delay> </item> <item class_id_reference="9" object_id="_307"> <Value> <Obj> <type>0</type> <id>510</id> <name>p_Result_62_i_i_i_s</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>63</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>63</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>602</item> <item>603</item> <item>605</item> <item>607</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_308"> <Value> <Obj> <type>0</type> <id>511</id> <name></name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>63</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>63</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>608</item> <item>609</item> <item>4163</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_309"> <Value> <Obj> <type>0</type> <id>512</id> <name>tmp_505</name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>64</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>64</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>610</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_310"> <Value> <Obj> <type>0</type> <id>513</id> <name></name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>64</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</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>611</item> <item>612</item> <item>4164</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_311"> <Value> <Obj> <type>0</type> <id>514</id> <name></name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>65</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>65</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>614</item> <item>615</item> <item>4145</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.22</m_delay> </item> <item class_id_reference="9" object_id="_312"> <Value> <Obj> <type>0</type> <id>515</id> <name></name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>616</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_313"> <Value> <Obj> <type>0</type> <id>517</id> <name></name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>167</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>167</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1252</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_314"> <Value> <Obj> <type>0</type> <id>519</id> <name></name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>168</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>168</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1253</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_315"> <Value> <Obj> <type>0</type> <id>521</id> <name></name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>170</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>170</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>1254</item> <item>1255</item> <item>1256</item> </oprand_edges> <opcode>write</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>2.39</m_delay> </item> <item class_id_reference="9" object_id="_316"> <Value> <Obj> <type>0</type> <id>522</id> <name></name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>171</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>171</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>1257</item> <item>1258</item> <item>4143</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.85</m_delay> </item> <item class_id_reference="9" object_id="_317"> <Value> <Obj> <type>0</type> <id>523</id> <name></name> <fileName>sources/requestParser/requestParser.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>173</lineNumber> <contextFuncName>bp_f</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/requestParser/requestParser.cpp</first> <second>bp_f</second> </first> <second>173</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>1259</item> <item>1260</item> <item>4144</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.22</m_delay> </item> <item class_id_reference="9" object_id="_318"> <Value> <Obj> <type>0</type> <id>524</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>1261</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_319"> <Value> <Obj> <type>0</type> <id>526</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> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> </nodes> <consts class_id="15" tracking_level="0" version="0"> <count>55</count> <item_version>0</item_version> <item class_id="16" tracking_level="1" version="0" object_id="_320"> <Value> <Obj> <type>2</type> <id>547</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="_321"> <Value> <Obj> <type>2</type> <id>561</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="_322"> <Value> <Obj> <type>2</type> <id>569</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <const_type>0</const_type> <content>4</content> </item> <item class_id_reference="16" object_id="_323"> <Value> <Obj> <type>2</type> <id>572</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="_324"> <Value> <Obj> <type>2</type> <id>585</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>124</content> </item> <item class_id_reference="16" object_id="_325"> <Value> <Obj> <type>2</type> <id>587</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>247</content> </item> <item class_id_reference="16" object_id="_326"> <Value> <Obj> <type>2</type> <id>594</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="_327"> <Value> <Obj> <type>2</type> <id>596</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>31</content> </item> <item class_id_reference="16" object_id="_328"> <Value> <Obj> <type>2</type> <id>604</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="_329"> <Value> <Obj> <type>2</type> <id>606</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>15</content> </item> <item class_id_reference="16" object_id="_330"> <Value> <Obj> <type>2</type> <id>613</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_331"> <Value> <Obj> <type>2</type> <id>629</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="_332"> <Value> <Obj> <type>2</type> <id>631</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="_333"> <Value> <Obj> <type>2</type> <id>651</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>120</content> </item> <item class_id_reference="16" object_id="_334"> <Value> <Obj> <type>2</type> <id>653</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>123</content> </item> <item class_id_reference="16" object_id="_335"> <Value> <Obj> <type>2</type> <id>659</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>104</content> </item> <item class_id_reference="16" object_id="_336"> <Value> <Obj> <type>2</type> <id>661</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>111</content> </item> <item class_id_reference="16" object_id="_337"> <Value> <Obj> <type>2</type> <id>668</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>56</content> </item> <item class_id_reference="16" object_id="_338"> <Value> <Obj> <type>2</type> <id>670</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>85</content> </item> <item class_id_reference="16" object_id="_339"> <Value> <Obj> <type>2</type> <id>680</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="_340"> <Value> <Obj> <type>2</type> <id>689</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>2</content> </item> <item class_id_reference="16" object_id="_341"> <Value> <Obj> <type>2</type> <id>699</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_342"> <Value> <Obj> <type>2</type> <id>704</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>3</content> </item> <item class_id_reference="16" object_id="_343"> <Value> <Obj> <type>2</type> <id>720</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="_344"> <Value> <Obj> <type>2</type> <id>722</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="_345"> <Value> <Obj> <type>2</type> <id>725</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_346"> <Value> <Obj> <type>2</type> <id>728</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>4</content> </item> <item class_id_reference="16" object_id="_347"> <Value> <Obj> <type>2</type> <id>730</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>5</content> </item> <item class_id_reference="16" object_id="_348"> <Value> <Obj> <type>2</type> <id>736</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <const_type>0</const_type> <content>8</content> </item> <item class_id_reference="16" object_id="_349"> <Value> <Obj> <type>2</type> <id>758</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>17</bitwidth> </Value> <const_type>0</const_type> <content>131064</content> </item> <item class_id_reference="16" object_id="_350"> <Value> <Obj> <type>2</type> <id>788</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>6</content> </item> <item class_id_reference="16" object_id="_351"> <Value> <Obj> <type>2</type> <id>810</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="_352"> <Value> <Obj> <type>2</type> <id>830</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>248</content> </item> <item class_id_reference="16" object_id="_353"> <Value> <Obj> <type>2</type> <id>849</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <const_type>0</const_type> <content>8</content> </item> <item class_id_reference="16" object_id="_354"> <Value> <Obj> <type>2</type> <id>856</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_355"> <Value> <Obj> <type>2</type> <id>861</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>8</content> </item> <item class_id_reference="16" object_id="_356"> <Value> <Obj> <type>2</type> <id>869</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>504</content> </item> <item class_id_reference="16" object_id="_357"> <Value> <Obj> <type>2</type> <id>876</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>17</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_358"> <Value> <Obj> <type>2</type> <id>890</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>64</content> </item> <item class_id_reference="16" object_id="_359"> <Value> <Obj> <type>2</type> <id>896</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>6</content> </item> <item class_id_reference="16" object_id="_360"> <Value> <Obj> <type>2</type> <id>901</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> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_361"> <Value> <Obj> <type>2</type> <id>907</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="_362"> <Value> <Obj> <type>2</type> <id>910</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>65</content> </item> <item class_id_reference="16" object_id="_363"> <Value> <Obj> <type>2</type> <id>913</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>63</content> </item> <item class_id_reference="16" object_id="_364"> <Value> <Obj> <type>2</type> <id>933</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>18446744073709551615</content> </item> <item class_id_reference="16" object_id="_365"> <Value> <Obj> <type>2</type> <id>938</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>64</content> </item> <item class_id_reference="16" object_id="_366"> <Value> <Obj> <type>2</type> <id>1016</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_367"> <Value> <Obj> <type>2</type> <id>1019</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <const_type>0</const_type> <content>2</content> </item> <item class_id_reference="16" object_id="_368"> <Value> <Obj> <type>2</type> <id>1055</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>8</content> </item> <item class_id_reference="16" object_id="_369"> <Value> <Obj> <type>2</type> <id>1089</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="_370"> <Value> <Obj> <type>2</type> <id>1189</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>8</content> </item> <item class_id_reference="16" object_id="_371"> <Value> <Obj> <type>2</type> <id>1198</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_372"> <Value> <Obj> <type>2</type> <id>1208</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>17</bitwidth> </Value> <const_type>0</const_type> <content>8</content> </item> <item class_id_reference="16" object_id="_373"> <Value> <Obj> <type>2</type> <id>1229</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="_374"> <Value> <Obj> <type>2</type> <id>1238</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>4</const_type> <content>0</content> </item> </consts> <blocks class_id="17" tracking_level="0" version="0"> <count>57</count> <item_version>0</item_version> <item class_id="18" tracking_level="1" version="0" object_id="_375"> <Obj> <type>3</type> <id>167</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>6</count> <item_version>0</item_version> <item>122</item> <item>150</item> <item>163</item> <item>164</item> <item>165</item> <item>166</item> </node_objs> </item> <item class_id_reference="18" object_id="_376"> <Obj> <type>3</type> <id>170</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>168</item> <item>169</item> </node_objs> </item> <item class_id_reference="18" object_id="_377"> <Obj> <type>3</type> <id>184</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>13</count> <item_version>0</item_version> <item>171</item> <item>172</item> <item>173</item> <item>174</item> <item>175</item> <item>176</item> <item>177</item> <item>178</item> <item>179</item> <item>180</item> <item>181</item> <item>182</item> <item>183</item> </node_objs> </item> <item class_id_reference="18" object_id="_378"> <Obj> <type>3</type> <id>188</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>3</count> <item_version>0</item_version> <item>185</item> <item>186</item> <item>187</item> </node_objs> </item> <item class_id_reference="18" object_id="_379"> <Obj> <type>3</type> <id>191</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>189</item> <item>190</item> </node_objs> </item> <item class_id_reference="18" object_id="_380"> <Obj> <type>3</type> <id>194</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>192</item> <item>193</item> </node_objs> </item> <item class_id_reference="18" object_id="_381"> <Obj> <type>3</type> <id>198</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>195</item> <item>196</item> <item>197</item> </node_objs> </item> <item class_id_reference="18" object_id="_382"> <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>2</count> <item_version>0</item_version> <item>199</item> <item>200</item> </node_objs> </item> <item class_id_reference="18" object_id="_383"> <Obj> <type>3</type> <id>204</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>202</item> <item>203</item> </node_objs> </item> <item class_id_reference="18" object_id="_384"> <Obj> <type>3</type> <id>240</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>35</count> <item_version>0</item_version> <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>218</item> <item>219</item> <item>220</item> <item>221</item> <item>222</item> <item>223</item> <item>224</item> <item>225</item> <item>226</item> <item>227</item> <item>228</item> <item>229</item> <item>230</item> <item>231</item> <item>232</item> <item>233</item> <item>234</item> <item>235</item> <item>236</item> <item>237</item> <item>238</item> <item>239</item> </node_objs> </item> <item class_id_reference="18" object_id="_385"> <Obj> <type>3</type> <id>243</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>241</item> <item>242</item> </node_objs> </item> <item class_id_reference="18" object_id="_386"> <Obj> <type>3</type> <id>246</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>244</item> <item>245</item> </node_objs> </item> <item class_id_reference="18" object_id="_387"> <Obj> <type>3</type> <id>280</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>33</count> <item_version>0</item_version> <item>247</item> <item>248</item> <item>249</item> <item>250</item> <item>251</item> <item>252</item> <item>253</item> <item>254</item> <item>255</item> <item>256</item> <item>257</item> <item>258</item> <item>259</item> <item>260</item> <item>261</item> <item>262</item> <item>263</item> <item>264</item> <item>265</item> <item>266</item> <item>267</item> <item>268</item> <item>269</item> <item>270</item> <item>271</item> <item>272</item> <item>273</item> <item>274</item> <item>275</item> <item>276</item> <item>277</item> <item>278</item> <item>279</item> </node_objs> </item> <item class_id_reference="18" object_id="_388"> <Obj> <type>3</type> <id>283</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>281</item> <item>282</item> </node_objs> </item> <item class_id_reference="18" object_id="_389"> <Obj> <type>3</type> <id>285</id> <name>._crit_edge29.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>1</count> <item_version>0</item_version> <item>284</item> </node_objs> </item> <item class_id_reference="18" object_id="_390"> <Obj> <type>3</type> <id>291</id> <name>._crit_edge28.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>5</count> <item_version>0</item_version> <item>286</item> <item>287</item> <item>288</item> <item>289</item> <item>290</item> </node_objs> </item> <item class_id_reference="18" object_id="_391"> <Obj> <type>3</type> <id>296</id> <name>._crit_edge30.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>4</count> <item_version>0</item_version> <item>292</item> <item>293</item> <item>294</item> <item>295</item> </node_objs> </item> <item class_id_reference="18" object_id="_392"> <Obj> <type>3</type> <id>300</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>297</item> <item>298</item> <item>299</item> </node_objs> </item> <item class_id_reference="18" object_id="_393"> <Obj> <type>3</type> <id>305</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>301</item> <item>302</item> <item>303</item> <item>304</item> </node_objs> </item> <item class_id_reference="18" object_id="_394"> <Obj> <type>3</type> <id>309</id> <name>._crit_edge24.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>306</item> <item>307</item> <item>308</item> </node_objs> </item> <item class_id_reference="18" object_id="_395"> <Obj> <type>3</type> <id>311</id> <name>._crit_edge26.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>1</count> <item_version>0</item_version> <item>310</item> </node_objs> </item> <item class_id_reference="18" object_id="_396"> <Obj> <type>3</type> <id>329</id> <name>_ifconv.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>17</count> <item_version>0</item_version> <item>312</item> <item>313</item> <item>314</item> <item>315</item> <item>316</item> <item>317</item> <item>318</item> <item>319</item> <item>320</item> <item>321</item> <item>322</item> <item>323</item> <item>324</item> <item>325</item> <item>326</item> <item>327</item> <item>328</item> </node_objs> </item> <item class_id_reference="18" object_id="_397"> <Obj> <type>3</type> <id>358</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>28</count> <item_version>0</item_version> <item>330</item> <item>331</item> <item>332</item> <item>333</item> <item>334</item> <item>335</item> <item>336</item> <item>337</item> <item>338</item> <item>339</item> <item>340</item> <item>341</item> <item>342</item> <item>343</item> <item>344</item> <item>345</item> <item>346</item> <item>347</item> <item>348</item> <item>349</item> <item>350</item> <item>351</item> <item>352</item> <item>353</item> <item>354</item> <item>355</item> <item>356</item> <item>357</item> </node_objs> </item> <item class_id_reference="18" object_id="_398"> <Obj> <type>3</type> <id>387</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>28</count> <item_version>0</item_version> <item>359</item> <item>360</item> <item>361</item> <item>362</item> <item>363</item> <item>364</item> <item>365</item> <item>366</item> <item>367</item> <item>368</item> <item>369</item> <item>370</item> <item>371</item> <item>372</item> <item>373</item> <item>374</item> <item>375</item> <item>376</item> <item>377</item> <item>378</item> <item>379</item> <item>380</item> <item>381</item> <item>382</item> <item>383</item> <item>384</item> <item>385</item> <item>386</item> </node_objs> </item> <item class_id_reference="18" object_id="_399"> <Obj> <type>3</type> <id>395</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>7</count> <item_version>0</item_version> <item>388</item> <item>389</item> <item>390</item> <item>391</item> <item>392</item> <item>393</item> <item>394</item> </node_objs> </item> <item class_id_reference="18" object_id="_400"> <Obj> <type>3</type> <id>399</id> <name>._crit_edge27.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>396</item> <item>397</item> <item>398</item> </node_objs> </item> <item class_id_reference="18" object_id="_401"> <Obj> <type>3</type> <id>402</id> <name>mergeST.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>2</count> <item_version>0</item_version> <item>400</item> <item>401</item> </node_objs> </item> <item class_id_reference="18" object_id="_402"> <Obj> <type>3</type> <id>404</id> <name>.new.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>1</count> <item_version>0</item_version> <item>403</item> </node_objs> </item> <item class_id_reference="18" object_id="_403"> <Obj> <type>3</type> <id>407</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>405</item> <item>406</item> </node_objs> </item> <item class_id_reference="18" object_id="_404"> <Obj> <type>3</type> <id>411</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>408</item> <item>409</item> <item>410</item> </node_objs> </item> <item class_id_reference="18" object_id="_405"> <Obj> <type>3</type> <id>415</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>412</item> <item>413</item> <item>414</item> </node_objs> </item> <item class_id_reference="18" object_id="_406"> <Obj> <type>3</type> <id>419</id> <name>._crit_edge22.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>416</item> <item>417</item> <item>418</item> </node_objs> </item> <item class_id_reference="18" object_id="_407"> <Obj> <type>3</type> <id>421</id> <name>._crit_edge19.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>1</count> <item_version>0</item_version> <item>420</item> </node_objs> </item> <item class_id_reference="18" object_id="_408"> <Obj> <type>3</type> <id>424</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>422</item> <item>423</item> </node_objs> </item> <item class_id_reference="18" object_id="_409"> <Obj> <type>3</type> <id>426</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>425</item> </node_objs> </item> <item class_id_reference="18" object_id="_410"> <Obj> <type>3</type> <id>431</id> <name>._crit_edge18.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>4</count> <item_version>0</item_version> <item>427</item> <item>428</item> <item>429</item> <item>430</item> </node_objs> </item> <item class_id_reference="18" object_id="_411"> <Obj> <type>3</type> <id>436</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>432</item> <item>433</item> <item>434</item> <item>435</item> </node_objs> </item> <item class_id_reference="18" object_id="_412"> <Obj> <type>3</type> <id>438</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>437</item> </node_objs> </item> <item class_id_reference="18" object_id="_413"> <Obj> <type>3</type> <id>449</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>10</count> <item_version>0</item_version> <item>439</item> <item>440</item> <item>441</item> <item>442</item> <item>443</item> <item>444</item> <item>445</item> <item>446</item> <item>447</item> <item>448</item> </node_objs> </item> <item class_id_reference="18" object_id="_414"> <Obj> <type>3</type> <id>451</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>450</item> </node_objs> </item> <item class_id_reference="18" object_id="_415"> <Obj> <type>3</type> <id>454</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>452</item> <item>453</item> </node_objs> </item> <item class_id_reference="18" object_id="_416"> <Obj> <type>3</type> <id>459</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>455</item> <item>456</item> <item>457</item> <item>458</item> </node_objs> </item> <item class_id_reference="18" object_id="_417"> <Obj> <type>3</type> <id>462</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>460</item> <item>461</item> </node_objs> </item> <item class_id_reference="18" object_id="_418"> <Obj> <type>3</type> <id>465</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>463</item> <item>464</item> </node_objs> </item> <item class_id_reference="18" object_id="_419"> <Obj> <type>3</type> <id>467</id> <name>._crit_edge14.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>1</count> <item_version>0</item_version> <item>466</item> </node_objs> </item> <item class_id_reference="18" object_id="_420"> <Obj> <type>3</type> <id>473</id> <name>._crit_edge11.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>5</count> <item_version>0</item_version> <item>468</item> <item>469</item> <item>470</item> <item>471</item> <item>472</item> </node_objs> </item> <item class_id_reference="18" object_id="_421"> <Obj> <type>3</type> <id>475</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>474</item> </node_objs> </item> <item class_id_reference="18" object_id="_422"> <Obj> <type>3</type> <id>478</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>476</item> <item>477</item> </node_objs> </item> <item class_id_reference="18" object_id="_423"> <Obj> <type>3</type> <id>480</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>479</item> </node_objs> </item> <item class_id_reference="18" object_id="_424"> <Obj> <type>3</type> <id>482</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>481</item> </node_objs> </item> <item class_id_reference="18" object_id="_425"> <Obj> <type>3</type> <id>500</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>17</count> <item_version>0</item_version> <item>483</item> <item>484</item> <item>485</item> <item>486</item> <item>487</item> <item>488</item> <item>489</item> <item>490</item> <item>491</item> <item>492</item> <item>493</item> <item>494</item> <item>495</item> <item>496</item> <item>497</item> <item>498</item> <item>499</item> </node_objs> </item> <item class_id_reference="18" object_id="_426"> <Obj> <type>3</type> <id>502</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>501</item> </node_objs> </item> <item class_id_reference="18" object_id="_427"> <Obj> <type>3</type> <id>516</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>13</count> <item_version>0</item_version> <item>503</item> <item>504</item> <item>505</item> <item>506</item> <item>507</item> <item>508</item> <item>509</item> <item>510</item> <item>511</item> <item>512</item> <item>513</item> <item>514</item> <item>515</item> </node_objs> </item> <item class_id_reference="18" object_id="_428"> <Obj> <type>3</type> <id>518</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>517</item> </node_objs> </item> <item class_id_reference="18" object_id="_429"> <Obj> <type>3</type> <id>520</id> <name>._crit_edge9.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>1</count> <item_version>0</item_version> <item>519</item> </node_objs> </item> <item class_id_reference="18" object_id="_430"> <Obj> <type>3</type> <id>525</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>521</item> <item>522</item> <item>523</item> <item>524</item> </node_objs> </item> <item class_id_reference="18" object_id="_431"> <Obj> <type>3</type> <id>527</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>526</item> </node_objs> </item> </blocks> <edges class_id="19" tracking_level="0" version="0"> <count>731</count> <item_version>0</item_version> <item class_id="20" tracking_level="1" version="0" object_id="_432"> <id>530</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>122</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_433"> <id>533</id> <edge_type>1</edge_type> <source_obj>6</source_obj> <sink_obj>150</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_434"> <id>534</id> <edge_type>1</edge_type> <source_obj>122</source_obj> <sink_obj>150</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_435"> <id>535</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>163</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_436"> <id>536</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>164</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_437"> <id>537</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>165</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_438"> <id>538</id> <edge_type>1</edge_type> <source_obj>163</source_obj> <sink_obj>166</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_439"> <id>539</id> <edge_type>2</edge_type> <source_obj>170</source_obj> <sink_obj>166</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_440"> <id>540</id> <edge_type>2</edge_type> <source_obj>525</source_obj> <sink_obj>166</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_441"> <id>543</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>168</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_442"> <id>544</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>168</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_443"> <id>545</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>168</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_444"> <id>546</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>168</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_445"> <id>548</id> <edge_type>1</edge_type> <source_obj>547</source_obj> <sink_obj>168</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_446"> <id>549</id> <edge_type>1</edge_type> <source_obj>168</source_obj> <sink_obj>169</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_447"> <id>550</id> <edge_type>2</edge_type> <source_obj>520</source_obj> <sink_obj>169</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_448"> <id>551</id> <edge_type>2</edge_type> <source_obj>184</source_obj> <sink_obj>169</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_449"> <id>554</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>171</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_450"> <id>555</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>171</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_451"> <id>556</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>171</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_452"> <id>557</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>171</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_453"> <id>558</id> <edge_type>1</edge_type> <source_obj>171</source_obj> <sink_obj>172</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_454"> <id>559</id> <edge_type>1</edge_type> <source_obj>171</source_obj> <sink_obj>173</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_455"> <id>560</id> <edge_type>1</edge_type> <source_obj>164</source_obj> <sink_obj>174</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_456"> <id>562</id> <edge_type>1</edge_type> <source_obj>561</source_obj> <sink_obj>174</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_457"> <id>563</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>175</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_458"> <id>564</id> <edge_type>1</edge_type> <source_obj>11</source_obj> <sink_obj>176</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_459"> <id>565</id> <edge_type>1</edge_type> <source_obj>12</source_obj> <sink_obj>177</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_460"> <id>566</id> <edge_type>1</edge_type> <source_obj>13</source_obj> <sink_obj>178</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_461"> <id>567</id> <edge_type>1</edge_type> <source_obj>14</source_obj> <sink_obj>179</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_462"> <id>568</id> <edge_type>1</edge_type> <source_obj>178</source_obj> <sink_obj>180</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_463"> <id>570</id> <edge_type>1</edge_type> <source_obj>569</source_obj> <sink_obj>180</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_464"> <id>571</id> <edge_type>1</edge_type> <source_obj>178</source_obj> <sink_obj>181</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_465"> <id>573</id> <edge_type>1</edge_type> <source_obj>572</source_obj> <sink_obj>181</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_466"> <id>574</id> <edge_type>1</edge_type> <source_obj>181</source_obj> <sink_obj>182</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_467"> <id>575</id> <edge_type>1</edge_type> <source_obj>180</source_obj> <sink_obj>182</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_468"> <id>576</id> <edge_type>1</edge_type> <source_obj>174</source_obj> <sink_obj>183</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_469"> <id>577</id> <edge_type>2</edge_type> <source_obj>188</source_obj> <sink_obj>183</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_470"> <id>578</id> <edge_type>2</edge_type> <source_obj>516</source_obj> <sink_obj>183</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_471"> <id>579</id> <edge_type>1</edge_type> <source_obj>173</source_obj> <sink_obj>503</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_472"> <id>580</id> <edge_type>1</edge_type> <source_obj>503</source_obj> <sink_obj>504</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_473"> <id>583</id> <edge_type>1</edge_type> <source_obj>175</source_obj> <sink_obj>505</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_474"> <id>584</id> <edge_type>1</edge_type> <source_obj>504</source_obj> <sink_obj>505</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_475"> <id>586</id> <edge_type>1</edge_type> <source_obj>585</source_obj> <sink_obj>505</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_476"> <id>588</id> <edge_type>1</edge_type> <source_obj>587</source_obj> <sink_obj>505</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_477"> <id>589</id> <edge_type>1</edge_type> <source_obj>505</source_obj> <sink_obj>506</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_478"> <id>590</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>506</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_479"> <id>593</id> <edge_type>1</edge_type> <source_obj>172</source_obj> <sink_obj>507</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_480"> <id>595</id> <edge_type>1</edge_type> <source_obj>594</source_obj> <sink_obj>507</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_481"> <id>597</id> <edge_type>1</edge_type> <source_obj>596</source_obj> <sink_obj>507</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_482"> <id>598</id> <edge_type>1</edge_type> <source_obj>507</source_obj> <sink_obj>508</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_483"> <id>599</id> <edge_type>1</edge_type> <source_obj>11</source_obj> <sink_obj>508</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_484"> <id>600</id> <edge_type>1</edge_type> <source_obj>507</source_obj> <sink_obj>509</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_485"> <id>601</id> <edge_type>1</edge_type> <source_obj>12</source_obj> <sink_obj>509</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_486"> <id>603</id> <edge_type>1</edge_type> <source_obj>172</source_obj> <sink_obj>510</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_487"> <id>605</id> <edge_type>1</edge_type> <source_obj>604</source_obj> <sink_obj>510</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_488"> <id>607</id> <edge_type>1</edge_type> <source_obj>606</source_obj> <sink_obj>510</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_489"> <id>608</id> <edge_type>1</edge_type> <source_obj>510</source_obj> <sink_obj>511</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_490"> <id>609</id> <edge_type>1</edge_type> <source_obj>13</source_obj> <sink_obj>511</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_491"> <id>610</id> <edge_type>1</edge_type> <source_obj>172</source_obj> <sink_obj>512</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_492"> <id>611</id> <edge_type>1</edge_type> <source_obj>512</source_obj> <sink_obj>513</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_493"> <id>612</id> <edge_type>1</edge_type> <source_obj>14</source_obj> <sink_obj>513</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_494"> <id>614</id> <edge_type>1</edge_type> <source_obj>613</source_obj> <sink_obj>514</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_495"> <id>615</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>514</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_496"> <id>616</id> <edge_type>2</edge_type> <source_obj>518</source_obj> <sink_obj>515</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_497"> <id>617</id> <edge_type>1</edge_type> <source_obj>164</source_obj> <sink_obj>185</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_498"> <id>618</id> <edge_type>1</edge_type> <source_obj>613</source_obj> <sink_obj>185</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_499"> <id>619</id> <edge_type>1</edge_type> <source_obj>15</source_obj> <sink_obj>186</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_500"> <id>620</id> <edge_type>1</edge_type> <source_obj>185</source_obj> <sink_obj>187</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_501"> <id>621</id> <edge_type>2</edge_type> <source_obj>191</source_obj> <sink_obj>187</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_502"> <id>622</id> <edge_type>2</edge_type> <source_obj>500</source_obj> <sink_obj>187</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_503"> <id>624</id> <edge_type>1</edge_type> <source_obj>172</source_obj> <sink_obj>483</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_504"> <id>625</id> <edge_type>1</edge_type> <source_obj>594</source_obj> <sink_obj>483</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_505"> <id>626</id> <edge_type>1</edge_type> <source_obj>596</source_obj> <sink_obj>483</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_506"> <id>628</id> <edge_type>1</edge_type> <source_obj>172</source_obj> <sink_obj>484</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_507"> <id>630</id> <edge_type>1</edge_type> <source_obj>629</source_obj> <sink_obj>484</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_508"> <id>632</id> <edge_type>1</edge_type> <source_obj>631</source_obj> <sink_obj>484</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_509"> <id>635</id> <edge_type>1</edge_type> <source_obj>172</source_obj> <sink_obj>485</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_510"> <id>636</id> <edge_type>1</edge_type> <source_obj>604</source_obj> <sink_obj>485</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_511"> <id>639</id> <edge_type>1</edge_type> <source_obj>485</source_obj> <sink_obj>486</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_512"> <id>640</id> <edge_type>1</edge_type> <source_obj>484</source_obj> <sink_obj>486</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_513"> <id>641</id> <edge_type>1</edge_type> <source_obj>483</source_obj> <sink_obj>486</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_514"> <id>642</id> <edge_type>1</edge_type> <source_obj>177</source_obj> <sink_obj>487</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_515"> <id>643</id> <edge_type>1</edge_type> <source_obj>486</source_obj> <sink_obj>488</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_516"> <id>644</id> <edge_type>1</edge_type> <source_obj>487</source_obj> <sink_obj>488</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_517"> <id>645</id> <edge_type>1</edge_type> <source_obj>488</source_obj> <sink_obj>489</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_518"> <id>646</id> <edge_type>1</edge_type> <source_obj>15</source_obj> <sink_obj>489</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_519"> <id>649</id> <edge_type>1</edge_type> <source_obj>175</source_obj> <sink_obj>490</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_520"> <id>650</id> <edge_type>1</edge_type> <source_obj>179</source_obj> <sink_obj>490</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_521"> <id>652</id> <edge_type>1</edge_type> <source_obj>651</source_obj> <sink_obj>490</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_522"> <id>654</id> <edge_type>1</edge_type> <source_obj>653</source_obj> <sink_obj>490</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_523"> <id>657</id> <edge_type>1</edge_type> <source_obj>490</source_obj> <sink_obj>491</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_524"> <id>658</id> <edge_type>1</edge_type> <source_obj>178</source_obj> <sink_obj>491</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_525"> <id>660</id> <edge_type>1</edge_type> <source_obj>659</source_obj> <sink_obj>491</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_526"> <id>662</id> <edge_type>1</edge_type> <source_obj>661</source_obj> <sink_obj>491</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_527"> <id>663</id> <edge_type>1</edge_type> <source_obj>172</source_obj> <sink_obj>492</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_528"> <id>666</id> <edge_type>1</edge_type> <source_obj>491</source_obj> <sink_obj>493</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_529"> <id>667</id> <edge_type>1</edge_type> <source_obj>492</source_obj> <sink_obj>493</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_530"> <id>669</id> <edge_type>1</edge_type> <source_obj>668</source_obj> <sink_obj>493</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_531"> <id>671</id> <edge_type>1</edge_type> <source_obj>670</source_obj> <sink_obj>493</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_532"> <id>674</id> <edge_type>1</edge_type> <source_obj>488</source_obj> <sink_obj>494</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_533"> <id>675</id> <edge_type>1</edge_type> <source_obj>176</source_obj> <sink_obj>494</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_534"> <id>678</id> <edge_type>1</edge_type> <source_obj>493</source_obj> <sink_obj>495</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_535"> <id>679</id> <edge_type>1</edge_type> <source_obj>494</source_obj> <sink_obj>495</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_536"> <id>681</id> <edge_type>1</edge_type> <source_obj>680</source_obj> <sink_obj>495</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_537"> <id>682</id> <edge_type>1</edge_type> <source_obj>594</source_obj> <sink_obj>495</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_538"> <id>683</id> <edge_type>1</edge_type> <source_obj>495</source_obj> <sink_obj>496</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_539"> <id>684</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>496</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_540"> <id>687</id> <edge_type>1</edge_type> <source_obj>16</source_obj> <sink_obj>497</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_541"> <id>688</id> <edge_type>1</edge_type> <source_obj>495</source_obj> <sink_obj>497</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_542"> <id>690</id> <edge_type>1</edge_type> <source_obj>689</source_obj> <sink_obj>498</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_543"> <id>691</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>498</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_544"> <id>692</id> <edge_type>2</edge_type> <source_obj>502</source_obj> <sink_obj>499</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_545"> <id>693</id> <edge_type>1</edge_type> <source_obj>164</source_obj> <sink_obj>189</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_546"> <id>694</id> <edge_type>1</edge_type> <source_obj>689</source_obj> <sink_obj>189</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_547"> <id>695</id> <edge_type>1</edge_type> <source_obj>189</source_obj> <sink_obj>190</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_548"> <id>696</id> <edge_type>2</edge_type> <source_obj>194</source_obj> <sink_obj>190</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_549"> <id>697</id> <edge_type>2</edge_type> <source_obj>454</source_obj> <sink_obj>190</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_550"> <id>698</id> <edge_type>1</edge_type> <source_obj>178</source_obj> <sink_obj>452</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_551"> <id>700</id> <edge_type>1</edge_type> <source_obj>699</source_obj> <sink_obj>452</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_552"> <id>701</id> <edge_type>1</edge_type> <source_obj>452</source_obj> <sink_obj>453</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_553"> <id>702</id> <edge_type>2</edge_type> <source_obj>459</source_obj> <sink_obj>453</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_554"> <id>703</id> <edge_type>2</edge_type> <source_obj>478</source_obj> <sink_obj>453</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_555"> <id>705</id> <edge_type>1</edge_type> <source_obj>704</source_obj> <sink_obj>476</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_556"> <id>706</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>476</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_557"> <id>707</id> <edge_type>2</edge_type> <source_obj>480</source_obj> <sink_obj>477</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_558"> <id>708</id> <edge_type>1</edge_type> <source_obj>178</source_obj> <sink_obj>455</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_559"> <id>709</id> <edge_type>1</edge_type> <source_obj>569</source_obj> <sink_obj>455</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_560"> <id>710</id> <edge_type>1</edge_type> <source_obj>178</source_obj> <sink_obj>456</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_561"> <id>711</id> <edge_type>1</edge_type> <source_obj>572</source_obj> <sink_obj>456</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_562"> <id>712</id> <edge_type>1</edge_type> <source_obj>456</source_obj> <sink_obj>457</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_563"> <id>713</id> <edge_type>1</edge_type> <source_obj>455</source_obj> <sink_obj>457</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_564"> <id>714</id> <edge_type>1</edge_type> <source_obj>457</source_obj> <sink_obj>458</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_565"> <id>715</id> <edge_type>2</edge_type> <source_obj>462</source_obj> <sink_obj>458</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_566"> <id>716</id> <edge_type>2</edge_type> <source_obj>473</source_obj> <sink_obj>458</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_567"> <id>719</id> <edge_type>1</edge_type> <source_obj>177</source_obj> <sink_obj>468</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_568"> <id>721</id> <edge_type>1</edge_type> <source_obj>720</source_obj> <sink_obj>468</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_569"> <id>723</id> <edge_type>1</edge_type> <source_obj>722</source_obj> <sink_obj>468</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_570"> <id>724</id> <edge_type>1</edge_type> <source_obj>468</source_obj> <sink_obj>469</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_571"> <id>726</id> <edge_type>1</edge_type> <source_obj>725</source_obj> <sink_obj>469</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_572"> <id>727</id> <edge_type>1</edge_type> <source_obj>469</source_obj> <sink_obj>470</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_573"> <id>729</id> <edge_type>1</edge_type> <source_obj>728</source_obj> <sink_obj>470</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_574"> <id>731</id> <edge_type>1</edge_type> <source_obj>730</source_obj> <sink_obj>470</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_575"> <id>732</id> <edge_type>1</edge_type> <source_obj>470</source_obj> <sink_obj>471</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_576"> <id>733</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>471</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_577"> <id>734</id> <edge_type>2</edge_type> <source_obj>475</source_obj> <sink_obj>472</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_578"> <id>735</id> <edge_type>1</edge_type> <source_obj>178</source_obj> <sink_obj>460</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_579"> <id>737</id> <edge_type>1</edge_type> <source_obj>736</source_obj> <sink_obj>460</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_580"> <id>738</id> <edge_type>1</edge_type> <source_obj>460</source_obj> <sink_obj>461</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_581"> <id>739</id> <edge_type>2</edge_type> <source_obj>467</source_obj> <sink_obj>461</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_582"> <id>740</id> <edge_type>2</edge_type> <source_obj>465</source_obj> <sink_obj>461</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_583"> <id>741</id> <edge_type>1</edge_type> <source_obj>561</source_obj> <sink_obj>463</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_584"> <id>742</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>463</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_585"> <id>743</id> <edge_type>2</edge_type> <source_obj>467</source_obj> <sink_obj>464</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_586"> <id>744</id> <edge_type>2</edge_type> <source_obj>475</source_obj> <sink_obj>466</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_587"> <id>745</id> <edge_type>2</edge_type> <source_obj>480</source_obj> <sink_obj>474</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_588"> <id>746</id> <edge_type>2</edge_type> <source_obj>482</source_obj> <sink_obj>479</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_589"> <id>747</id> <edge_type>1</edge_type> <source_obj>164</source_obj> <sink_obj>192</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_590"> <id>748</id> <edge_type>1</edge_type> <source_obj>704</source_obj> <sink_obj>192</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_591"> <id>749</id> <edge_type>1</edge_type> <source_obj>192</source_obj> <sink_obj>193</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_592"> <id>750</id> <edge_type>2</edge_type> <source_obj>198</source_obj> <sink_obj>193</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_593"> <id>751</id> <edge_type>2</edge_type> <source_obj>449</source_obj> <sink_obj>193</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_594"> <id>752</id> <edge_type>1</edge_type> <source_obj>172</source_obj> <sink_obj>439</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_595"> <id>753</id> <edge_type>1</edge_type> <source_obj>439</source_obj> <sink_obj>440</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_596"> <id>756</id> <edge_type>1</edge_type> <source_obj>17</source_obj> <sink_obj>441</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_597"> <id>757</id> <edge_type>1</edge_type> <source_obj>440</source_obj> <sink_obj>441</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_598"> <id>759</id> <edge_type>1</edge_type> <source_obj>758</source_obj> <sink_obj>442</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_599"> <id>760</id> <edge_type>1</edge_type> <source_obj>186</source_obj> <sink_obj>442</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_600"> <id>761</id> <edge_type>1</edge_type> <source_obj>442</source_obj> <sink_obj>443</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_601"> <id>762</id> <edge_type>1</edge_type> <source_obj>15</source_obj> <sink_obj>443</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_602"> <id>764</id> <edge_type>1</edge_type> <source_obj>177</source_obj> <sink_obj>444</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_603"> <id>765</id> <edge_type>1</edge_type> <source_obj>720</source_obj> <sink_obj>444</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_604"> <id>766</id> <edge_type>1</edge_type> <source_obj>722</source_obj> <sink_obj>444</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_605"> <id>767</id> <edge_type>1</edge_type> <source_obj>444</source_obj> <sink_obj>445</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_606"> <id>768</id> <edge_type>1</edge_type> <source_obj>725</source_obj> <sink_obj>445</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_607"> <id>769</id> <edge_type>1</edge_type> <source_obj>445</source_obj> <sink_obj>446</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_608"> <id>770</id> <edge_type>1</edge_type> <source_obj>728</source_obj> <sink_obj>446</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_609"> <id>771</id> <edge_type>1</edge_type> <source_obj>730</source_obj> <sink_obj>446</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_610"> <id>772</id> <edge_type>1</edge_type> <source_obj>446</source_obj> <sink_obj>447</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_611"> <id>773</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>447</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_612"> <id>774</id> <edge_type>2</edge_type> <source_obj>451</source_obj> <sink_obj>448</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_613"> <id>775</id> <edge_type>1</edge_type> <source_obj>164</source_obj> <sink_obj>195</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_614"> <id>776</id> <edge_type>1</edge_type> <source_obj>728</source_obj> <sink_obj>195</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_615"> <id>777</id> <edge_type>1</edge_type> <source_obj>18</source_obj> <sink_obj>196</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_616"> <id>778</id> <edge_type>1</edge_type> <source_obj>195</source_obj> <sink_obj>197</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_617"> <id>779</id> <edge_type>2</edge_type> <source_obj>201</source_obj> <sink_obj>197</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_618"> <id>780</id> <edge_type>2</edge_type> <source_obj>407</source_obj> <sink_obj>197</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_619"> <id>781</id> <edge_type>1</edge_type> <source_obj>177</source_obj> <sink_obj>405</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_620"> <id>782</id> <edge_type>1</edge_type> <source_obj>736</source_obj> <sink_obj>405</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_621"> <id>783</id> <edge_type>1</edge_type> <source_obj>405</source_obj> <sink_obj>406</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_622"> <id>784</id> <edge_type>2</edge_type> <source_obj>411</source_obj> <sink_obj>406</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_623"> <id>785</id> <edge_type>2</edge_type> <source_obj>431</source_obj> <sink_obj>406</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_624"> <id>786</id> <edge_type>1</edge_type> <source_obj>182</source_obj> <sink_obj>427</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_625"> <id>787</id> <edge_type>1</edge_type> <source_obj>561</source_obj> <sink_obj>427</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_626"> <id>789</id> <edge_type>1</edge_type> <source_obj>788</source_obj> <sink_obj>427</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_627"> <id>790</id> <edge_type>1</edge_type> <source_obj>427</source_obj> <sink_obj>428</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_628"> <id>791</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>428</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_629"> <id>792</id> <edge_type>1</edge_type> <source_obj>572</source_obj> <sink_obj>429</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_630"> <id>793</id> <edge_type>1</edge_type> <source_obj>18</source_obj> <sink_obj>429</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_631"> <id>794</id> <edge_type>2</edge_type> <source_obj>436</source_obj> <sink_obj>430</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_632"> <id>796</id> <edge_type>1</edge_type> <source_obj>177</source_obj> <sink_obj>408</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_633"> <id>797</id> <edge_type>1</edge_type> <source_obj>720</source_obj> <sink_obj>408</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_634"> <id>798</id> <edge_type>1</edge_type> <source_obj>722</source_obj> <sink_obj>408</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_635"> <id>799</id> <edge_type>1</edge_type> <source_obj>408</source_obj> <sink_obj>409</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_636"> <id>800</id> <edge_type>1</edge_type> <source_obj>725</source_obj> <sink_obj>409</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_637"> <id>801</id> <edge_type>1</edge_type> <source_obj>409</source_obj> <sink_obj>410</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_638"> <id>802</id> <edge_type>2</edge_type> <source_obj>415</source_obj> <sink_obj>410</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_639"> <id>803</id> <edge_type>2</edge_type> <source_obj>424</source_obj> <sink_obj>410</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_640"> <id>804</id> <edge_type>1</edge_type> <source_obj>561</source_obj> <sink_obj>422</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_641"> <id>805</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>422</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_642"> <id>806</id> <edge_type>2</edge_type> <source_obj>426</source_obj> <sink_obj>423</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_643"> <id>809</id> <edge_type>1</edge_type> <source_obj>177</source_obj> <sink_obj>412</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_644"> <id>811</id> <edge_type>1</edge_type> <source_obj>810</source_obj> <sink_obj>412</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_645"> <id>812</id> <edge_type>1</edge_type> <source_obj>722</source_obj> <sink_obj>412</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_646"> <id>813</id> <edge_type>1</edge_type> <source_obj>412</source_obj> <sink_obj>413</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_647"> <id>814</id> <edge_type>1</edge_type> <source_obj>561</source_obj> <sink_obj>413</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_648"> <id>815</id> <edge_type>1</edge_type> <source_obj>413</source_obj> <sink_obj>414</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_649"> <id>816</id> <edge_type>2</edge_type> <source_obj>421</source_obj> <sink_obj>414</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_650"> <id>817</id> <edge_type>2</edge_type> <source_obj>419</source_obj> <sink_obj>414</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_651"> <id>818</id> <edge_type>1</edge_type> <source_obj>182</source_obj> <sink_obj>416</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_652"> <id>819</id> <edge_type>1</edge_type> <source_obj>728</source_obj> <sink_obj>416</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_653"> <id>820</id> <edge_type>1</edge_type> <source_obj>730</source_obj> <sink_obj>416</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_654"> <id>821</id> <edge_type>1</edge_type> <source_obj>416</source_obj> <sink_obj>417</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_655"> <id>822</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>417</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_656"> <id>823</id> <edge_type>2</edge_type> <source_obj>421</source_obj> <sink_obj>418</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_657"> <id>824</id> <edge_type>2</edge_type> <source_obj>426</source_obj> <sink_obj>420</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_658"> <id>825</id> <edge_type>2</edge_type> <source_obj>436</source_obj> <sink_obj>425</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_659"> <id>827</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>432</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_660"> <id>828</id> <edge_type>1</edge_type> <source_obj>172</source_obj> <sink_obj>432</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_661"> <id>829</id> <edge_type>1</edge_type> <source_obj>177</source_obj> <sink_obj>433</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_662"> <id>831</id> <edge_type>1</edge_type> <source_obj>830</source_obj> <sink_obj>433</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_663"> <id>832</id> <edge_type>1</edge_type> <source_obj>433</source_obj> <sink_obj>434</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_664"> <id>833</id> <edge_type>1</edge_type> <source_obj>12</source_obj> <sink_obj>434</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_665"> <id>834</id> <edge_type>2</edge_type> <source_obj>438</source_obj> <sink_obj>435</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_666"> <id>835</id> <edge_type>1</edge_type> <source_obj>164</source_obj> <sink_obj>199</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_667"> <id>836</id> <edge_type>1</edge_type> <source_obj>730</source_obj> <sink_obj>199</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_668"> <id>837</id> <edge_type>1</edge_type> <source_obj>199</source_obj> <sink_obj>200</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_669"> <id>838</id> <edge_type>2</edge_type> <source_obj>204</source_obj> <sink_obj>200</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_670"> <id>839</id> <edge_type>2</edge_type> <source_obj>300</source_obj> <sink_obj>200</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_671"> <id>841</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>297</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_672"> <id>842</id> <edge_type>1</edge_type> <source_obj>172</source_obj> <sink_obj>297</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_673"> <id>843</id> <edge_type>1</edge_type> <source_obj>178</source_obj> <sink_obj>298</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_674"> <id>844</id> <edge_type>1</edge_type> <source_obj>699</source_obj> <sink_obj>298</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_675"> <id>845</id> <edge_type>1</edge_type> <source_obj>298</source_obj> <sink_obj>299</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_676"> <id>846</id> <edge_type>2</edge_type> <source_obj>305</source_obj> <sink_obj>299</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_677"> <id>847</id> <edge_type>2</edge_type> <source_obj>329</source_obj> <sink_obj>299</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_678"> <id>848</id> <edge_type>1</edge_type> <source_obj>177</source_obj> <sink_obj>312</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_679"> <id>850</id> <edge_type>1</edge_type> <source_obj>849</source_obj> <sink_obj>313</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_680"> <id>851</id> <edge_type>1</edge_type> <source_obj>312</source_obj> <sink_obj>313</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_681"> <id>852</id> <edge_type>1</edge_type> <source_obj>313</source_obj> <sink_obj>314</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_682"> <id>855</id> <edge_type>1</edge_type> <source_obj>313</source_obj> <sink_obj>315</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_683"> <id>857</id> <edge_type>1</edge_type> <source_obj>856</source_obj> <sink_obj>315</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_684"> <id>858</id> <edge_type>1</edge_type> <source_obj>315</source_obj> <sink_obj>316</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_685"> <id>859</id> <edge_type>1</edge_type> <source_obj>18</source_obj> <sink_obj>316</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_686"> <id>860</id> <edge_type>1</edge_type> <source_obj>177</source_obj> <sink_obj>317</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_687"> <id>862</id> <edge_type>1</edge_type> <source_obj>861</source_obj> <sink_obj>318</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_688"> <id>863</id> <edge_type>1</edge_type> <source_obj>317</source_obj> <sink_obj>318</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_689"> <id>864</id> <edge_type>1</edge_type> <source_obj>318</source_obj> <sink_obj>319</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_690"> <id>865</id> <edge_type>1</edge_type> <source_obj>186</source_obj> <sink_obj>320</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_691"> <id>866</id> <edge_type>1</edge_type> <source_obj>320</source_obj> <sink_obj>321</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_692"> <id>867</id> <edge_type>1</edge_type> <source_obj>319</source_obj> <sink_obj>321</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_693"> <id>868</id> <edge_type>1</edge_type> <source_obj>317</source_obj> <sink_obj>322</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_694"> <id>870</id> <edge_type>1</edge_type> <source_obj>869</source_obj> <sink_obj>322</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_695"> <id>871</id> <edge_type>1</edge_type> <source_obj>322</source_obj> <sink_obj>323</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_696"> <id>872</id> <edge_type>1</edge_type> <source_obj>323</source_obj> <sink_obj>324</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_697"> <id>873</id> <edge_type>1</edge_type> <source_obj>186</source_obj> <sink_obj>324</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_698"> <id>874</id> <edge_type>1</edge_type> <source_obj>321</source_obj> <sink_obj>325</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_699"> <id>875</id> <edge_type>1</edge_type> <source_obj>324</source_obj> <sink_obj>325</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_700"> <id>877</id> <edge_type>1</edge_type> <source_obj>876</source_obj> <sink_obj>325</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_701"> <id>878</id> <edge_type>1</edge_type> <source_obj>325</source_obj> <sink_obj>326</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_702"> <id>879</id> <edge_type>1</edge_type> <source_obj>15</source_obj> <sink_obj>326</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_703"> <id>880</id> <edge_type>1</edge_type> <source_obj>325</source_obj> <sink_obj>327</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_704"> <id>881</id> <edge_type>1</edge_type> <source_obj>876</source_obj> <sink_obj>327</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_705"> <id>882</id> <edge_type>1</edge_type> <source_obj>327</source_obj> <sink_obj>328</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_706"> <id>883</id> <edge_type>2</edge_type> <source_obj>358</source_obj> <sink_obj>328</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_707"> <id>884</id> <edge_type>2</edge_type> <source_obj>387</source_obj> <sink_obj>328</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_708"> <id>885</id> <edge_type>1</edge_type> <source_obj>315</source_obj> <sink_obj>330</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_709"> <id>888</id> <edge_type>1</edge_type> <source_obj>314</source_obj> <sink_obj>331</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_710"> <id>889</id> <edge_type>1</edge_type> <source_obj>856</source_obj> <sink_obj>331</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_711"> <id>891</id> <edge_type>1</edge_type> <source_obj>890</source_obj> <sink_obj>332</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_712"> <id>892</id> <edge_type>1</edge_type> <source_obj>330</source_obj> <sink_obj>332</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_713"> <id>895</id> <edge_type>1</edge_type> <source_obj>332</source_obj> <sink_obj>333</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_714"> <id>897</id> <edge_type>1</edge_type> <source_obj>896</source_obj> <sink_obj>333</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_715"> <id>898</id> <edge_type>1</edge_type> <source_obj>604</source_obj> <sink_obj>333</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_716"> <id>899</id> <edge_type>1</edge_type> <source_obj>333</source_obj> <sink_obj>334</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_717"> <id>900</id> <edge_type>1</edge_type> <source_obj>334</source_obj> <sink_obj>335</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_718"> <id>902</id> <edge_type>1</edge_type> <source_obj>901</source_obj> <sink_obj>335</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_719"> <id>903</id> <edge_type>1</edge_type> <source_obj>332</source_obj> <sink_obj>336</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_720"> <id>906</id> <edge_type>1</edge_type> <source_obj>172</source_obj> <sink_obj>337</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_721"> <id>908</id> <edge_type>1</edge_type> <source_obj>907</source_obj> <sink_obj>337</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_722"> <id>909</id> <edge_type>1</edge_type> <source_obj>680</source_obj> <sink_obj>337</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_723"> <id>911</id> <edge_type>1</edge_type> <source_obj>910</source_obj> <sink_obj>338</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_724"> <id>912</id> <edge_type>1</edge_type> <source_obj>336</source_obj> <sink_obj>338</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_725"> <id>914</id> <edge_type>1</edge_type> <source_obj>913</source_obj> <sink_obj>339</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_726"> <id>915</id> <edge_type>1</edge_type> <source_obj>336</source_obj> <sink_obj>339</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_727"> <id>916</id> <edge_type>1</edge_type> <source_obj>913</source_obj> <sink_obj>340</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_728"> <id>917</id> <edge_type>1</edge_type> <source_obj>336</source_obj> <sink_obj>340</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_729"> <id>918</id> <edge_type>1</edge_type> <source_obj>335</source_obj> <sink_obj>341</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_730"> <id>919</id> <edge_type>1</edge_type> <source_obj>338</source_obj> <sink_obj>341</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_731"> <id>920</id> <edge_type>1</edge_type> <source_obj>340</source_obj> <sink_obj>341</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_732"> <id>921</id> <edge_type>1</edge_type> <source_obj>335</source_obj> <sink_obj>342</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_733"> <id>922</id> <edge_type>1</edge_type> <source_obj>337</source_obj> <sink_obj>342</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_734"> <id>923</id> <edge_type>1</edge_type> <source_obj>172</source_obj> <sink_obj>342</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_735"> <id>924</id> <edge_type>1</edge_type> <source_obj>335</source_obj> <sink_obj>343</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_736"> <id>925</id> <edge_type>1</edge_type> <source_obj>339</source_obj> <sink_obj>343</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_737"> <id>926</id> <edge_type>1</edge_type> <source_obj>336</source_obj> <sink_obj>343</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_738"> <id>927</id> <edge_type>1</edge_type> <source_obj>913</source_obj> <sink_obj>344</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_739"> <id>928</id> <edge_type>1</edge_type> <source_obj>341</source_obj> <sink_obj>344</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_740"> <id>929</id> <edge_type>1</edge_type> <source_obj>343</source_obj> <sink_obj>345</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_741"> <id>930</id> <edge_type>1</edge_type> <source_obj>344</source_obj> <sink_obj>346</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_742"> <id>931</id> <edge_type>1</edge_type> <source_obj>342</source_obj> <sink_obj>347</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_743"> <id>932</id> <edge_type>1</edge_type> <source_obj>345</source_obj> <sink_obj>347</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_744"> <id>934</id> <edge_type>1</edge_type> <source_obj>933</source_obj> <sink_obj>348</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_745"> <id>935</id> <edge_type>1</edge_type> <source_obj>346</source_obj> <sink_obj>348</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_746"> <id>936</id> <edge_type>1</edge_type> <source_obj>347</source_obj> <sink_obj>349</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_747"> <id>937</id> <edge_type>1</edge_type> <source_obj>348</source_obj> <sink_obj>349</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_748"> <id>939</id> <edge_type>1</edge_type> <source_obj>938</source_obj> <sink_obj>350</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_749"> <id>940</id> <edge_type>1</edge_type> <source_obj>331</source_obj> <sink_obj>350</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_750"> <id>941</id> <edge_type>1</edge_type> <source_obj>350</source_obj> <sink_obj>351</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_751"> <id>942</id> <edge_type>1</edge_type> <source_obj>933</source_obj> <sink_obj>352</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_752"> <id>943</id> <edge_type>1</edge_type> <source_obj>351</source_obj> <sink_obj>352</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_753"> <id>944</id> <edge_type>1</edge_type> <source_obj>352</source_obj> <sink_obj>353</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_754"> <id>945</id> <edge_type>1</edge_type> <source_obj>933</source_obj> <sink_obj>353</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_755"> <id>946</id> <edge_type>1</edge_type> <source_obj>165</source_obj> <sink_obj>354</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_756"> <id>947</id> <edge_type>1</edge_type> <source_obj>353</source_obj> <sink_obj>354</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_757"> <id>948</id> <edge_type>1</edge_type> <source_obj>349</source_obj> <sink_obj>355</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_758"> <id>949</id> <edge_type>1</edge_type> <source_obj>352</source_obj> <sink_obj>355</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_759"> <id>950</id> <edge_type>1</edge_type> <source_obj>354</source_obj> <sink_obj>356</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_760"> <id>951</id> <edge_type>1</edge_type> <source_obj>355</source_obj> <sink_obj>356</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_761"> <id>952</id> <edge_type>2</edge_type> <source_obj>395</source_obj> <sink_obj>357</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_762"> <id>953</id> <edge_type>1</edge_type> <source_obj>177</source_obj> <sink_obj>359</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_763"> <id>954</id> <edge_type>1</edge_type> <source_obj>177</source_obj> <sink_obj>360</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_764"> <id>956</id> <edge_type>1</edge_type> <source_obj>360</source_obj> <sink_obj>361</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_765"> <id>957</id> <edge_type>1</edge_type> <source_obj>856</source_obj> <sink_obj>361</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_766"> <id>959</id> <edge_type>1</edge_type> <source_obj>177</source_obj> <sink_obj>362</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_767"> <id>960</id> <edge_type>1</edge_type> <source_obj>720</source_obj> <sink_obj>362</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_768"> <id>961</id> <edge_type>1</edge_type> <source_obj>722</source_obj> <sink_obj>362</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_769"> <id>962</id> <edge_type>1</edge_type> <source_obj>362</source_obj> <sink_obj>363</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_770"> <id>963</id> <edge_type>1</edge_type> <source_obj>363</source_obj> <sink_obj>364</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_771"> <id>964</id> <edge_type>1</edge_type> <source_obj>901</source_obj> <sink_obj>364</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_772"> <id>966</id> <edge_type>1</edge_type> <source_obj>359</source_obj> <sink_obj>365</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_773"> <id>967</id> <edge_type>1</edge_type> <source_obj>856</source_obj> <sink_obj>365</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_774"> <id>969</id> <edge_type>1</edge_type> <source_obj>172</source_obj> <sink_obj>366</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_775"> <id>970</id> <edge_type>1</edge_type> <source_obj>907</source_obj> <sink_obj>366</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_776"> <id>971</id> <edge_type>1</edge_type> <source_obj>680</source_obj> <sink_obj>366</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_777"> <id>972</id> <edge_type>1</edge_type> <source_obj>365</source_obj> <sink_obj>367</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_778"> <id>973</id> <edge_type>1</edge_type> <source_obj>910</source_obj> <sink_obj>367</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_779"> <id>974</id> <edge_type>1</edge_type> <source_obj>913</source_obj> <sink_obj>368</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_780"> <id>975</id> <edge_type>1</edge_type> <source_obj>365</source_obj> <sink_obj>368</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_781"> <id>976</id> <edge_type>1</edge_type> <source_obj>913</source_obj> <sink_obj>369</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_782"> <id>977</id> <edge_type>1</edge_type> <source_obj>365</source_obj> <sink_obj>369</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_783"> <id>978</id> <edge_type>1</edge_type> <source_obj>364</source_obj> <sink_obj>370</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_784"> <id>979</id> <edge_type>1</edge_type> <source_obj>367</source_obj> <sink_obj>370</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_785"> <id>980</id> <edge_type>1</edge_type> <source_obj>369</source_obj> <sink_obj>370</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_786"> <id>981</id> <edge_type>1</edge_type> <source_obj>364</source_obj> <sink_obj>371</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_787"> <id>982</id> <edge_type>1</edge_type> <source_obj>366</source_obj> <sink_obj>371</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_788"> <id>983</id> <edge_type>1</edge_type> <source_obj>172</source_obj> <sink_obj>371</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_789"> <id>984</id> <edge_type>1</edge_type> <source_obj>364</source_obj> <sink_obj>372</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_790"> <id>985</id> <edge_type>1</edge_type> <source_obj>368</source_obj> <sink_obj>372</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_791"> <id>986</id> <edge_type>1</edge_type> <source_obj>365</source_obj> <sink_obj>372</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_792"> <id>987</id> <edge_type>1</edge_type> <source_obj>913</source_obj> <sink_obj>373</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_793"> <id>988</id> <edge_type>1</edge_type> <source_obj>370</source_obj> <sink_obj>373</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_794"> <id>989</id> <edge_type>1</edge_type> <source_obj>372</source_obj> <sink_obj>374</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_795"> <id>990</id> <edge_type>1</edge_type> <source_obj>373</source_obj> <sink_obj>375</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_796"> <id>991</id> <edge_type>1</edge_type> <source_obj>371</source_obj> <sink_obj>376</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_797"> <id>992</id> <edge_type>1</edge_type> <source_obj>374</source_obj> <sink_obj>376</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_798"> <id>993</id> <edge_type>1</edge_type> <source_obj>933</source_obj> <sink_obj>377</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_799"> <id>994</id> <edge_type>1</edge_type> <source_obj>375</source_obj> <sink_obj>377</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_800"> <id>995</id> <edge_type>1</edge_type> <source_obj>376</source_obj> <sink_obj>378</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_801"> <id>996</id> <edge_type>1</edge_type> <source_obj>377</source_obj> <sink_obj>378</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_802"> <id>997</id> <edge_type>1</edge_type> <source_obj>361</source_obj> <sink_obj>379</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_803"> <id>998</id> <edge_type>1</edge_type> <source_obj>933</source_obj> <sink_obj>380</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_804"> <id>999</id> <edge_type>1</edge_type> <source_obj>379</source_obj> <sink_obj>380</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_805"> <id>1000</id> <edge_type>1</edge_type> <source_obj>380</source_obj> <sink_obj>381</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_806"> <id>1001</id> <edge_type>1</edge_type> <source_obj>933</source_obj> <sink_obj>381</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_807"> <id>1002</id> <edge_type>1</edge_type> <source_obj>165</source_obj> <sink_obj>382</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_808"> <id>1003</id> <edge_type>1</edge_type> <source_obj>381</source_obj> <sink_obj>382</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_809"> <id>1004</id> <edge_type>1</edge_type> <source_obj>378</source_obj> <sink_obj>383</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_810"> <id>1005</id> <edge_type>1</edge_type> <source_obj>380</source_obj> <sink_obj>383</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_811"> <id>1006</id> <edge_type>1</edge_type> <source_obj>382</source_obj> <sink_obj>384</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_812"> <id>1007</id> <edge_type>1</edge_type> <source_obj>383</source_obj> <sink_obj>384</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_813"> <id>1009</id> <edge_type>1</edge_type> <source_obj>17</source_obj> <sink_obj>385</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_814"> <id>1010</id> <edge_type>1</edge_type> <source_obj>384</source_obj> <sink_obj>385</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_815"> <id>1011</id> <edge_type>2</edge_type> <source_obj>395</source_obj> <sink_obj>386</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_816"> <id>1012</id> <edge_type>1</edge_type> <source_obj>384</source_obj> <sink_obj>388</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_817"> <id>1013</id> <edge_type>2</edge_type> <source_obj>387</source_obj> <sink_obj>388</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_818"> <id>1014</id> <edge_type>1</edge_type> <source_obj>356</source_obj> <sink_obj>388</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_819"> <id>1015</id> <edge_type>2</edge_type> <source_obj>358</source_obj> <sink_obj>388</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_820"> <id>1017</id> <edge_type>1</edge_type> <source_obj>1016</source_obj> <sink_obj>389</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_821"> <id>1018</id> <edge_type>2</edge_type> <source_obj>387</source_obj> <sink_obj>389</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_822"> <id>1020</id> <edge_type>1</edge_type> <source_obj>1019</source_obj> <sink_obj>389</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_823"> <id>1021</id> <edge_type>2</edge_type> <source_obj>358</source_obj> <sink_obj>389</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_824"> <id>1022</id> <edge_type>1</edge_type> <source_obj>389</source_obj> <sink_obj>390</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_825"> <id>1023</id> <edge_type>1</edge_type> <source_obj>572</source_obj> <sink_obj>391</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_826"> <id>1024</id> <edge_type>1</edge_type> <source_obj>12</source_obj> <sink_obj>391</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_827"> <id>1025</id> <edge_type>1</edge_type> <source_obj>390</source_obj> <sink_obj>392</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_828"> <id>1026</id> <edge_type>1</edge_type> <source_obj>392</source_obj> <sink_obj>393</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_829"> <id>1027</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>393</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_830"> <id>1028</id> <edge_type>2</edge_type> <source_obj>399</source_obj> <sink_obj>394</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_831"> <id>1029</id> <edge_type>1</edge_type> <source_obj>178</source_obj> <sink_obj>301</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_832"> <id>1030</id> <edge_type>1</edge_type> <source_obj>569</source_obj> <sink_obj>301</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_833"> <id>1031</id> <edge_type>1</edge_type> <source_obj>178</source_obj> <sink_obj>302</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_834"> <id>1032</id> <edge_type>1</edge_type> <source_obj>572</source_obj> <sink_obj>302</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_835"> <id>1033</id> <edge_type>1</edge_type> <source_obj>302</source_obj> <sink_obj>303</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_836"> <id>1034</id> <edge_type>1</edge_type> <source_obj>301</source_obj> <sink_obj>303</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_837"> <id>1035</id> <edge_type>1</edge_type> <source_obj>303</source_obj> <sink_obj>304</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_838"> <id>1036</id> <edge_type>2</edge_type> <source_obj>311</source_obj> <sink_obj>304</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_839"> <id>1037</id> <edge_type>2</edge_type> <source_obj>309</source_obj> <sink_obj>304</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_840"> <id>1038</id> <edge_type>1</edge_type> <source_obj>572</source_obj> <sink_obj>306</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_841"> <id>1039</id> <edge_type>1</edge_type> <source_obj>12</source_obj> <sink_obj>306</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_842"> <id>1040</id> <edge_type>1</edge_type> <source_obj>561</source_obj> <sink_obj>307</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_843"> <id>1041</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>307</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_844"> <id>1042</id> <edge_type>2</edge_type> <source_obj>311</source_obj> <sink_obj>308</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_845"> <id>1043</id> <edge_type>2</edge_type> <source_obj>399</source_obj> <sink_obj>310</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_846"> <id>1044</id> <edge_type>1</edge_type> <source_obj>164</source_obj> <sink_obj>202</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_847"> <id>1045</id> <edge_type>1</edge_type> <source_obj>788</source_obj> <sink_obj>202</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_848"> <id>1046</id> <edge_type>1</edge_type> <source_obj>202</source_obj> <sink_obj>203</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_849"> <id>1047</id> <edge_type>2</edge_type> <source_obj>399</source_obj> <sink_obj>203</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_850"> <id>1048</id> <edge_type>2</edge_type> <source_obj>240</source_obj> <sink_obj>203</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_851"> <id>1049</id> <edge_type>1</edge_type> <source_obj>196</source_obj> <sink_obj>205</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_852"> <id>1051</id> <edge_type>1</edge_type> <source_obj>196</source_obj> <sink_obj>206</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_853"> <id>1052</id> <edge_type>1</edge_type> <source_obj>720</source_obj> <sink_obj>206</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_854"> <id>1053</id> <edge_type>1</edge_type> <source_obj>722</source_obj> <sink_obj>206</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_855"> <id>1054</id> <edge_type>1</edge_type> <source_obj>206</source_obj> <sink_obj>207</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_856"> <id>1056</id> <edge_type>1</edge_type> <source_obj>1055</source_obj> <sink_obj>208</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_857"> <id>1057</id> <edge_type>1</edge_type> <source_obj>207</source_obj> <sink_obj>208</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_858"> <id>1058</id> <edge_type>1</edge_type> <source_obj>208</source_obj> <sink_obj>209</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_859"> <id>1059</id> <edge_type>1</edge_type> <source_obj>186</source_obj> <sink_obj>210</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_860"> <id>1060</id> <edge_type>1</edge_type> <source_obj>210</source_obj> <sink_obj>211</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_861"> <id>1061</id> <edge_type>1</edge_type> <source_obj>209</source_obj> <sink_obj>211</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_862"> <id>1062</id> <edge_type>1</edge_type> <source_obj>196</source_obj> <sink_obj>212</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_863"> <id>1063</id> <edge_type>1</edge_type> <source_obj>212</source_obj> <sink_obj>213</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_864"> <id>1064</id> <edge_type>1</edge_type> <source_obj>933</source_obj> <sink_obj>214</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_865"> <id>1065</id> <edge_type>1</edge_type> <source_obj>213</source_obj> <sink_obj>214</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_866"> <id>1066</id> <edge_type>1</edge_type> <source_obj>172</source_obj> <sink_obj>215</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_867"> <id>1067</id> <edge_type>1</edge_type> <source_obj>214</source_obj> <sink_obj>215</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_868"> <id>1070</id> <edge_type>1</edge_type> <source_obj>196</source_obj> <sink_obj>216</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_869"> <id>1071</id> <edge_type>1</edge_type> <source_obj>896</source_obj> <sink_obj>216</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_870"> <id>1072</id> <edge_type>1</edge_type> <source_obj>722</source_obj> <sink_obj>216</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_871"> <id>1073</id> <edge_type>1</edge_type> <source_obj>216</source_obj> <sink_obj>217</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_872"> <id>1074</id> <edge_type>1</edge_type> <source_obj>217</source_obj> <sink_obj>218</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_873"> <id>1075</id> <edge_type>1</edge_type> <source_obj>901</source_obj> <sink_obj>218</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_874"> <id>1076</id> <edge_type>1</edge_type> <source_obj>196</source_obj> <sink_obj>219</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_875"> <id>1077</id> <edge_type>1</edge_type> <source_obj>913</source_obj> <sink_obj>220</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_876"> <id>1078</id> <edge_type>1</edge_type> <source_obj>219</source_obj> <sink_obj>220</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_877"> <id>1079</id> <edge_type>1</edge_type> <source_obj>218</source_obj> <sink_obj>221</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_878"> <id>1080</id> <edge_type>1</edge_type> <source_obj>913</source_obj> <sink_obj>221</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_879"> <id>1081</id> <edge_type>1</edge_type> <source_obj>219</source_obj> <sink_obj>221</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_880"> <id>1082</id> <edge_type>1</edge_type> <source_obj>218</source_obj> <sink_obj>222</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_881"> <id>1083</id> <edge_type>1</edge_type> <source_obj>220</source_obj> <sink_obj>222</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_882"> <id>1084</id> <edge_type>1</edge_type> <source_obj>219</source_obj> <sink_obj>222</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_883"> <id>1085</id> <edge_type>1</edge_type> <source_obj>913</source_obj> <sink_obj>223</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_884"> <id>1086</id> <edge_type>1</edge_type> <source_obj>219</source_obj> <sink_obj>223</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_885"> <id>1087</id> <edge_type>1</edge_type> <source_obj>218</source_obj> <sink_obj>224</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_886"> <id>1088</id> <edge_type>1</edge_type> <source_obj>223</source_obj> <sink_obj>224</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_887"> <id>1090</id> <edge_type>1</edge_type> <source_obj>1089</source_obj> <sink_obj>224</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_888"> <id>1091</id> <edge_type>1</edge_type> <source_obj>222</source_obj> <sink_obj>225</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_889"> <id>1092</id> <edge_type>1</edge_type> <source_obj>221</source_obj> <sink_obj>226</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_890"> <id>1093</id> <edge_type>1</edge_type> <source_obj>224</source_obj> <sink_obj>227</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_891"> <id>1094</id> <edge_type>1</edge_type> <source_obj>215</source_obj> <sink_obj>228</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_892"> <id>1095</id> <edge_type>1</edge_type> <source_obj>225</source_obj> <sink_obj>228</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_893"> <id>1097</id> <edge_type>1</edge_type> <source_obj>228</source_obj> <sink_obj>229</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_894"> <id>1098</id> <edge_type>1</edge_type> <source_obj>907</source_obj> <sink_obj>229</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_895"> <id>1099</id> <edge_type>1</edge_type> <source_obj>680</source_obj> <sink_obj>229</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_896"> <id>1100</id> <edge_type>1</edge_type> <source_obj>218</source_obj> <sink_obj>230</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_897"> <id>1101</id> <edge_type>1</edge_type> <source_obj>229</source_obj> <sink_obj>230</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_898"> <id>1102</id> <edge_type>1</edge_type> <source_obj>228</source_obj> <sink_obj>230</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_899"> <id>1103</id> <edge_type>1</edge_type> <source_obj>933</source_obj> <sink_obj>231</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_900"> <id>1104</id> <edge_type>1</edge_type> <source_obj>226</source_obj> <sink_obj>231</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_901"> <id>1105</id> <edge_type>1</edge_type> <source_obj>933</source_obj> <sink_obj>232</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_902"> <id>1106</id> <edge_type>1</edge_type> <source_obj>227</source_obj> <sink_obj>232</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_903"> <id>1107</id> <edge_type>1</edge_type> <source_obj>231</source_obj> <sink_obj>233</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_904"> <id>1108</id> <edge_type>1</edge_type> <source_obj>232</source_obj> <sink_obj>233</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_905"> <id>1109</id> <edge_type>1</edge_type> <source_obj>233</source_obj> <sink_obj>234</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_906"> <id>1110</id> <edge_type>1</edge_type> <source_obj>933</source_obj> <sink_obj>234</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_907"> <id>1111</id> <edge_type>1</edge_type> <source_obj>165</source_obj> <sink_obj>235</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_908"> <id>1112</id> <edge_type>1</edge_type> <source_obj>234</source_obj> <sink_obj>235</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_909"> <id>1113</id> <edge_type>1</edge_type> <source_obj>230</source_obj> <sink_obj>236</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_910"> <id>1114</id> <edge_type>1</edge_type> <source_obj>233</source_obj> <sink_obj>236</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_911"> <id>1115</id> <edge_type>1</edge_type> <source_obj>235</source_obj> <sink_obj>237</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_912"> <id>1116</id> <edge_type>1</edge_type> <source_obj>236</source_obj> <sink_obj>237</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_913"> <id>1118</id> <edge_type>1</edge_type> <source_obj>17</source_obj> <sink_obj>238</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_914"> <id>1119</id> <edge_type>1</edge_type> <source_obj>237</source_obj> <sink_obj>238</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_915"> <id>1120</id> <edge_type>1</edge_type> <source_obj>211</source_obj> <sink_obj>239</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_916"> <id>1121</id> <edge_type>2</edge_type> <source_obj>243</source_obj> <sink_obj>239</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_917"> <id>1122</id> <edge_type>2</edge_type> <source_obj>246</source_obj> <sink_obj>239</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_918"> <id>1123</id> <edge_type>1</edge_type> <source_obj>561</source_obj> <sink_obj>241</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_919"> <id>1124</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>241</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_920"> <id>1125</id> <edge_type>2</edge_type> <source_obj>296</source_obj> <sink_obj>242</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_921"> <id>1126</id> <edge_type>1</edge_type> <source_obj>196</source_obj> <sink_obj>244</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_922"> <id>1127</id> <edge_type>1</edge_type> <source_obj>572</source_obj> <sink_obj>244</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_923"> <id>1128</id> <edge_type>1</edge_type> <source_obj>244</source_obj> <sink_obj>245</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_924"> <id>1129</id> <edge_type>2</edge_type> <source_obj>280</source_obj> <sink_obj>245</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_925"> <id>1130</id> <edge_type>2</edge_type> <source_obj>291</source_obj> <sink_obj>245</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_926"> <id>1131</id> <edge_type>1</edge_type> <source_obj>186</source_obj> <sink_obj>247</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_927"> <id>1132</id> <edge_type>1</edge_type> <source_obj>177</source_obj> <sink_obj>248</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_928"> <id>1133</id> <edge_type>1</edge_type> <source_obj>247</source_obj> <sink_obj>249</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_929"> <id>1134</id> <edge_type>1</edge_type> <source_obj>248</source_obj> <sink_obj>249</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_930"> <id>1135</id> <edge_type>1</edge_type> <source_obj>196</source_obj> <sink_obj>250</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_931"> <id>1136</id> <edge_type>1</edge_type> <source_obj>890</source_obj> <sink_obj>251</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_932"> <id>1137</id> <edge_type>1</edge_type> <source_obj>205</source_obj> <sink_obj>251</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_933"> <id>1139</id> <edge_type>1</edge_type> <source_obj>251</source_obj> <sink_obj>252</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_934"> <id>1140</id> <edge_type>1</edge_type> <source_obj>896</source_obj> <sink_obj>252</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_935"> <id>1141</id> <edge_type>1</edge_type> <source_obj>604</source_obj> <sink_obj>252</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_936"> <id>1142</id> <edge_type>1</edge_type> <source_obj>252</source_obj> <sink_obj>253</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_937"> <id>1143</id> <edge_type>1</edge_type> <source_obj>253</source_obj> <sink_obj>254</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_938"> <id>1144</id> <edge_type>1</edge_type> <source_obj>901</source_obj> <sink_obj>254</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_939"> <id>1145</id> <edge_type>1</edge_type> <source_obj>251</source_obj> <sink_obj>255</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_940"> <id>1147</id> <edge_type>1</edge_type> <source_obj>172</source_obj> <sink_obj>256</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_941"> <id>1148</id> <edge_type>1</edge_type> <source_obj>907</source_obj> <sink_obj>256</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_942"> <id>1149</id> <edge_type>1</edge_type> <source_obj>680</source_obj> <sink_obj>256</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_943"> <id>1150</id> <edge_type>1</edge_type> <source_obj>910</source_obj> <sink_obj>257</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_944"> <id>1151</id> <edge_type>1</edge_type> <source_obj>255</source_obj> <sink_obj>257</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_945"> <id>1152</id> <edge_type>1</edge_type> <source_obj>913</source_obj> <sink_obj>258</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_946"> <id>1153</id> <edge_type>1</edge_type> <source_obj>255</source_obj> <sink_obj>258</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_947"> <id>1154</id> <edge_type>1</edge_type> <source_obj>913</source_obj> <sink_obj>259</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_948"> <id>1155</id> <edge_type>1</edge_type> <source_obj>255</source_obj> <sink_obj>259</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_949"> <id>1156</id> <edge_type>1</edge_type> <source_obj>254</source_obj> <sink_obj>260</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_950"> <id>1157</id> <edge_type>1</edge_type> <source_obj>257</source_obj> <sink_obj>260</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_951"> <id>1158</id> <edge_type>1</edge_type> <source_obj>259</source_obj> <sink_obj>260</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_952"> <id>1159</id> <edge_type>1</edge_type> <source_obj>254</source_obj> <sink_obj>261</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_953"> <id>1160</id> <edge_type>1</edge_type> <source_obj>256</source_obj> <sink_obj>261</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_954"> <id>1161</id> <edge_type>1</edge_type> <source_obj>172</source_obj> <sink_obj>261</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_955"> <id>1162</id> <edge_type>1</edge_type> <source_obj>254</source_obj> <sink_obj>262</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_956"> <id>1163</id> <edge_type>1</edge_type> <source_obj>258</source_obj> <sink_obj>262</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_957"> <id>1164</id> <edge_type>1</edge_type> <source_obj>255</source_obj> <sink_obj>262</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_958"> <id>1165</id> <edge_type>1</edge_type> <source_obj>913</source_obj> <sink_obj>263</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_959"> <id>1166</id> <edge_type>1</edge_type> <source_obj>260</source_obj> <sink_obj>263</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_960"> <id>1167</id> <edge_type>1</edge_type> <source_obj>262</source_obj> <sink_obj>264</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_961"> <id>1168</id> <edge_type>1</edge_type> <source_obj>263</source_obj> <sink_obj>265</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_962"> <id>1169</id> <edge_type>1</edge_type> <source_obj>261</source_obj> <sink_obj>266</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_963"> <id>1170</id> <edge_type>1</edge_type> <source_obj>264</source_obj> <sink_obj>266</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_964"> <id>1171</id> <edge_type>1</edge_type> <source_obj>933</source_obj> <sink_obj>267</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_965"> <id>1172</id> <edge_type>1</edge_type> <source_obj>265</source_obj> <sink_obj>267</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_966"> <id>1173</id> <edge_type>1</edge_type> <source_obj>266</source_obj> <sink_obj>268</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_967"> <id>1174</id> <edge_type>1</edge_type> <source_obj>267</source_obj> <sink_obj>268</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_968"> <id>1175</id> <edge_type>1</edge_type> <source_obj>938</source_obj> <sink_obj>269</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_969"> <id>1176</id> <edge_type>1</edge_type> <source_obj>250</source_obj> <sink_obj>269</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_970"> <id>1177</id> <edge_type>1</edge_type> <source_obj>269</source_obj> <sink_obj>270</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_971"> <id>1178</id> <edge_type>1</edge_type> <source_obj>933</source_obj> <sink_obj>271</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_972"> <id>1179</id> <edge_type>1</edge_type> <source_obj>270</source_obj> <sink_obj>271</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_973"> <id>1180</id> <edge_type>1</edge_type> <source_obj>271</source_obj> <sink_obj>272</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_974"> <id>1181</id> <edge_type>1</edge_type> <source_obj>933</source_obj> <sink_obj>272</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_975"> <id>1182</id> <edge_type>1</edge_type> <source_obj>237</source_obj> <sink_obj>273</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_976"> <id>1183</id> <edge_type>1</edge_type> <source_obj>272</source_obj> <sink_obj>273</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_977"> <id>1184</id> <edge_type>1</edge_type> <source_obj>268</source_obj> <sink_obj>274</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_978"> <id>1185</id> <edge_type>1</edge_type> <source_obj>271</source_obj> <sink_obj>274</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_979"> <id>1186</id> <edge_type>1</edge_type> <source_obj>273</source_obj> <sink_obj>275</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_980"> <id>1187</id> <edge_type>1</edge_type> <source_obj>274</source_obj> <sink_obj>275</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_981"> <id>1188</id> <edge_type>1</edge_type> <source_obj>249</source_obj> <sink_obj>276</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_982"> <id>1190</id> <edge_type>1</edge_type> <source_obj>1189</source_obj> <sink_obj>276</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_983"> <id>1191</id> <edge_type>1</edge_type> <source_obj>247</source_obj> <sink_obj>277</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_984"> <id>1192</id> <edge_type>1</edge_type> <source_obj>248</source_obj> <sink_obj>277</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_985"> <id>1193</id> <edge_type>1</edge_type> <source_obj>276</source_obj> <sink_obj>278</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_986"> <id>1194</id> <edge_type>1</edge_type> <source_obj>277</source_obj> <sink_obj>278</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_987"> <id>1195</id> <edge_type>1</edge_type> <source_obj>278</source_obj> <sink_obj>279</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_988"> <id>1196</id> <edge_type>2</edge_type> <source_obj>283</source_obj> <sink_obj>279</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_989"> <id>1197</id> <edge_type>2</edge_type> <source_obj>285</source_obj> <sink_obj>279</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_990"> <id>1199</id> <edge_type>1</edge_type> <source_obj>1198</source_obj> <sink_obj>281</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_991"> <id>1200</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>281</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_992"> <id>1201</id> <edge_type>2</edge_type> <source_obj>285</source_obj> <sink_obj>282</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_993"> <id>1202</id> <edge_type>2</edge_type> <source_obj>291</source_obj> <sink_obj>284</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_994"> <id>1203</id> <edge_type>1</edge_type> <source_obj>237</source_obj> <sink_obj>286</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_995"> <id>1204</id> <edge_type>2</edge_type> <source_obj>246</source_obj> <sink_obj>286</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_996"> <id>1205</id> <edge_type>1</edge_type> <source_obj>275</source_obj> <sink_obj>286</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_997"> <id>1206</id> <edge_type>2</edge_type> <source_obj>285</source_obj> <sink_obj>286</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_998"> <id>1207</id> <edge_type>1</edge_type> <source_obj>186</source_obj> <sink_obj>287</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_999"> <id>1209</id> <edge_type>1</edge_type> <source_obj>1208</source_obj> <sink_obj>287</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1000"> <id>1210</id> <edge_type>1</edge_type> <source_obj>186</source_obj> <sink_obj>288</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1001"> <id>1211</id> <edge_type>1</edge_type> <source_obj>758</source_obj> <sink_obj>288</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1002"> <id>1212</id> <edge_type>1</edge_type> <source_obj>287</source_obj> <sink_obj>289</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1003"> <id>1213</id> <edge_type>1</edge_type> <source_obj>288</source_obj> <sink_obj>289</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1004"> <id>1214</id> <edge_type>1</edge_type> <source_obj>876</source_obj> <sink_obj>289</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1005"> <id>1215</id> <edge_type>2</edge_type> <source_obj>296</source_obj> <sink_obj>290</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1006"> <id>1216</id> <edge_type>1</edge_type> <source_obj>286</source_obj> <sink_obj>292</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1007"> <id>1217</id> <edge_type>2</edge_type> <source_obj>291</source_obj> <sink_obj>292</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1008"> <id>1218</id> <edge_type>1</edge_type> <source_obj>237</source_obj> <sink_obj>292</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1009"> <id>1219</id> <edge_type>2</edge_type> <source_obj>243</source_obj> <sink_obj>292</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1010"> <id>1220</id> <edge_type>1</edge_type> <source_obj>289</source_obj> <sink_obj>293</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1011"> <id>1221</id> <edge_type>2</edge_type> <source_obj>291</source_obj> <sink_obj>293</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1012"> <id>1222</id> <edge_type>1</edge_type> <source_obj>876</source_obj> <sink_obj>293</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1013"> <id>1223</id> <edge_type>2</edge_type> <source_obj>243</source_obj> <sink_obj>293</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1014"> <id>1224</id> <edge_type>1</edge_type> <source_obj>293</source_obj> <sink_obj>294</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1015"> <id>1225</id> <edge_type>1</edge_type> <source_obj>15</source_obj> <sink_obj>294</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1016"> <id>1226</id> <edge_type>2</edge_type> <source_obj>399</source_obj> <sink_obj>295</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1017"> <id>1227</id> <edge_type>1</edge_type> <source_obj>1198</source_obj> <sink_obj>396</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1018"> <id>1228</id> <edge_type>2</edge_type> <source_obj>395</source_obj> <sink_obj>396</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1019"> <id>1230</id> <edge_type>1</edge_type> <source_obj>1229</source_obj> <sink_obj>396</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1020"> <id>1231</id> <edge_type>2</edge_type> <source_obj>311</source_obj> <sink_obj>396</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1021"> <id>1232</id> <edge_type>1</edge_type> <source_obj>1198</source_obj> <sink_obj>396</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1022"> <id>1233</id> <edge_type>2</edge_type> <source_obj>296</source_obj> <sink_obj>396</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1023"> <id>1234</id> <edge_type>1</edge_type> <source_obj>1229</source_obj> <sink_obj>396</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1024"> <id>1235</id> <edge_type>2</edge_type> <source_obj>204</source_obj> <sink_obj>396</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1025"> <id>1236</id> <edge_type>1</edge_type> <source_obj>388</source_obj> <sink_obj>397</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1026"> <id>1237</id> <edge_type>2</edge_type> <source_obj>395</source_obj> <sink_obj>397</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1027"> <id>1239</id> <edge_type>1</edge_type> <source_obj>1238</source_obj> <sink_obj>397</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1028"> <id>1240</id> <edge_type>2</edge_type> <source_obj>311</source_obj> <sink_obj>397</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1029"> <id>1241</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>397</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1030"> <id>1242</id> <edge_type>2</edge_type> <source_obj>296</source_obj> <sink_obj>397</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1031"> <id>1243</id> <edge_type>1</edge_type> <source_obj>1238</source_obj> <sink_obj>397</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1032"> <id>1244</id> <edge_type>2</edge_type> <source_obj>204</source_obj> <sink_obj>397</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1033"> <id>1245</id> <edge_type>1</edge_type> <source_obj>396</source_obj> <sink_obj>398</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1034"> <id>1246</id> <edge_type>2</edge_type> <source_obj>404</source_obj> <sink_obj>398</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1035"> <id>1247</id> <edge_type>2</edge_type> <source_obj>402</source_obj> <sink_obj>398</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1036"> <id>1248</id> <edge_type>2</edge_type> <source_obj>451</source_obj> <sink_obj>437</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1037"> <id>1249</id> <edge_type>2</edge_type> <source_obj>482</source_obj> <sink_obj>450</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1038"> <id>1250</id> <edge_type>2</edge_type> <source_obj>502</source_obj> <sink_obj>481</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1039"> <id>1251</id> <edge_type>2</edge_type> <source_obj>518</source_obj> <sink_obj>501</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1040"> <id>1252</id> <edge_type>2</edge_type> <source_obj>520</source_obj> <sink_obj>517</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1041"> <id>1253</id> <edge_type>2</edge_type> <source_obj>527</source_obj> <sink_obj>519</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1042"> <id>1255</id> <edge_type>1</edge_type> <source_obj>17</source_obj> <sink_obj>521</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1043"> <id>1256</id> <edge_type>1</edge_type> <source_obj>165</source_obj> <sink_obj>521</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1044"> <id>1257</id> <edge_type>1</edge_type> <source_obj>1229</source_obj> <sink_obj>522</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1045"> <id>1258</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>522</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1046"> <id>1259</id> <edge_type>1</edge_type> <source_obj>561</source_obj> <sink_obj>523</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1047"> <id>1260</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>523</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1048"> <id>1261</id> <edge_type>2</edge_type> <source_obj>527</source_obj> <sink_obj>524</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1049"> <id>1262</id> <edge_type>1</edge_type> <source_obj>397</source_obj> <sink_obj>400</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1050"> <id>1263</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>400</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1051"> <id>1264</id> <edge_type>2</edge_type> <source_obj>404</source_obj> <sink_obj>401</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1052"> <id>1265</id> <edge_type>2</edge_type> <source_obj>438</source_obj> <sink_obj>403</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1053"> <id>4065</id> <edge_type>2</edge_type> <source_obj>167</source_obj> <sink_obj>525</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1054"> <id>4066</id> <edge_type>2</edge_type> <source_obj>167</source_obj> <sink_obj>170</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1055"> <id>4067</id> <edge_type>2</edge_type> <source_obj>170</source_obj> <sink_obj>184</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1056"> <id>4068</id> <edge_type>2</edge_type> <source_obj>170</source_obj> <sink_obj>520</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1057"> <id>4069</id> <edge_type>2</edge_type> <source_obj>184</source_obj> <sink_obj>516</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1058"> <id>4070</id> <edge_type>2</edge_type> <source_obj>184</source_obj> <sink_obj>188</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1059"> <id>4071</id> <edge_type>2</edge_type> <source_obj>188</source_obj> <sink_obj>500</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1060"> <id>4072</id> <edge_type>2</edge_type> <source_obj>188</source_obj> <sink_obj>191</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1061"> <id>4073</id> <edge_type>2</edge_type> <source_obj>191</source_obj> <sink_obj>454</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1062"> <id>4074</id> <edge_type>2</edge_type> <source_obj>191</source_obj> <sink_obj>194</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1063"> <id>4075</id> <edge_type>2</edge_type> <source_obj>194</source_obj> <sink_obj>449</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1064"> <id>4076</id> <edge_type>2</edge_type> <source_obj>194</source_obj> <sink_obj>198</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1065"> <id>4077</id> <edge_type>2</edge_type> <source_obj>198</source_obj> <sink_obj>407</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1066"> <id>4078</id> <edge_type>2</edge_type> <source_obj>198</source_obj> <sink_obj>201</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1067"> <id>4079</id> <edge_type>2</edge_type> <source_obj>201</source_obj> <sink_obj>300</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1068"> <id>4080</id> <edge_type>2</edge_type> <source_obj>201</source_obj> <sink_obj>204</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1069"> <id>4081</id> <edge_type>2</edge_type> <source_obj>204</source_obj> <sink_obj>240</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1070"> <id>4082</id> <edge_type>2</edge_type> <source_obj>204</source_obj> <sink_obj>399</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1071"> <id>4083</id> <edge_type>2</edge_type> <source_obj>240</source_obj> <sink_obj>246</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1072"> <id>4084</id> <edge_type>2</edge_type> <source_obj>240</source_obj> <sink_obj>243</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1073"> <id>4085</id> <edge_type>2</edge_type> <source_obj>243</source_obj> <sink_obj>296</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1074"> <id>4086</id> <edge_type>2</edge_type> <source_obj>246</source_obj> <sink_obj>291</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1075"> <id>4087</id> <edge_type>2</edge_type> <source_obj>246</source_obj> <sink_obj>280</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1076"> <id>4088</id> <edge_type>2</edge_type> <source_obj>280</source_obj> <sink_obj>285</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1077"> <id>4089</id> <edge_type>2</edge_type> <source_obj>280</source_obj> <sink_obj>283</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1078"> <id>4090</id> <edge_type>2</edge_type> <source_obj>283</source_obj> <sink_obj>285</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1079"> <id>4091</id> <edge_type>2</edge_type> <source_obj>285</source_obj> <sink_obj>291</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1080"> <id>4092</id> <edge_type>2</edge_type> <source_obj>291</source_obj> <sink_obj>296</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1081"> <id>4093</id> <edge_type>2</edge_type> <source_obj>296</source_obj> <sink_obj>399</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1082"> <id>4094</id> <edge_type>2</edge_type> <source_obj>300</source_obj> <sink_obj>329</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1083"> <id>4095</id> <edge_type>2</edge_type> <source_obj>300</source_obj> <sink_obj>305</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1084"> <id>4096</id> <edge_type>2</edge_type> <source_obj>305</source_obj> <sink_obj>309</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1085"> <id>4097</id> <edge_type>2</edge_type> <source_obj>305</source_obj> <sink_obj>311</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1086"> <id>4098</id> <edge_type>2</edge_type> <source_obj>309</source_obj> <sink_obj>311</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1087"> <id>4099</id> <edge_type>2</edge_type> <source_obj>311</source_obj> <sink_obj>399</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1088"> <id>4100</id> <edge_type>2</edge_type> <source_obj>329</source_obj> <sink_obj>387</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1089"> <id>4101</id> <edge_type>2</edge_type> <source_obj>329</source_obj> <sink_obj>358</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1090"> <id>4102</id> <edge_type>2</edge_type> <source_obj>358</source_obj> <sink_obj>395</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1091"> <id>4103</id> <edge_type>2</edge_type> <source_obj>387</source_obj> <sink_obj>395</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1092"> <id>4104</id> <edge_type>2</edge_type> <source_obj>395</source_obj> <sink_obj>399</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1093"> <id>4105</id> <edge_type>2</edge_type> <source_obj>399</source_obj> <sink_obj>402</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1094"> <id>4106</id> <edge_type>2</edge_type> <source_obj>399</source_obj> <sink_obj>404</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1095"> <id>4107</id> <edge_type>2</edge_type> <source_obj>402</source_obj> <sink_obj>404</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1096"> <id>4108</id> <edge_type>2</edge_type> <source_obj>404</source_obj> <sink_obj>438</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1097"> <id>4109</id> <edge_type>2</edge_type> <source_obj>407</source_obj> <sink_obj>431</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1098"> <id>4110</id> <edge_type>2</edge_type> <source_obj>407</source_obj> <sink_obj>411</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1099"> <id>4111</id> <edge_type>2</edge_type> <source_obj>411</source_obj> <sink_obj>424</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1100"> <id>4112</id> <edge_type>2</edge_type> <source_obj>411</source_obj> <sink_obj>415</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1101"> <id>4113</id> <edge_type>2</edge_type> <source_obj>415</source_obj> <sink_obj>419</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1102"> <id>4114</id> <edge_type>2</edge_type> <source_obj>415</source_obj> <sink_obj>421</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1103"> <id>4115</id> <edge_type>2</edge_type> <source_obj>419</source_obj> <sink_obj>421</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1104"> <id>4116</id> <edge_type>2</edge_type> <source_obj>421</source_obj> <sink_obj>426</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1105"> <id>4117</id> <edge_type>2</edge_type> <source_obj>424</source_obj> <sink_obj>426</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1106"> <id>4118</id> <edge_type>2</edge_type> <source_obj>426</source_obj> <sink_obj>436</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1107"> <id>4119</id> <edge_type>2</edge_type> <source_obj>431</source_obj> <sink_obj>436</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1108"> <id>4120</id> <edge_type>2</edge_type> <source_obj>436</source_obj> <sink_obj>438</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1109"> <id>4121</id> <edge_type>2</edge_type> <source_obj>438</source_obj> <sink_obj>451</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1110"> <id>4122</id> <edge_type>2</edge_type> <source_obj>449</source_obj> <sink_obj>451</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1111"> <id>4123</id> <edge_type>2</edge_type> <source_obj>451</source_obj> <sink_obj>482</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1112"> <id>4124</id> <edge_type>2</edge_type> <source_obj>454</source_obj> <sink_obj>478</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1113"> <id>4125</id> <edge_type>2</edge_type> <source_obj>454</source_obj> <sink_obj>459</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1114"> <id>4126</id> <edge_type>2</edge_type> <source_obj>459</source_obj> <sink_obj>473</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1115"> <id>4127</id> <edge_type>2</edge_type> <source_obj>459</source_obj> <sink_obj>462</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1116"> <id>4128</id> <edge_type>2</edge_type> <source_obj>462</source_obj> <sink_obj>465</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1117"> <id>4129</id> <edge_type>2</edge_type> <source_obj>462</source_obj> <sink_obj>467</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1118"> <id>4130</id> <edge_type>2</edge_type> <source_obj>465</source_obj> <sink_obj>467</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1119"> <id>4131</id> <edge_type>2</edge_type> <source_obj>467</source_obj> <sink_obj>475</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1120"> <id>4132</id> <edge_type>2</edge_type> <source_obj>473</source_obj> <sink_obj>475</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1121"> <id>4133</id> <edge_type>2</edge_type> <source_obj>475</source_obj> <sink_obj>480</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1122"> <id>4134</id> <edge_type>2</edge_type> <source_obj>478</source_obj> <sink_obj>480</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1123"> <id>4135</id> <edge_type>2</edge_type> <source_obj>480</source_obj> <sink_obj>482</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1124"> <id>4136</id> <edge_type>2</edge_type> <source_obj>482</source_obj> <sink_obj>502</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1125"> <id>4137</id> <edge_type>2</edge_type> <source_obj>500</source_obj> <sink_obj>502</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1126"> <id>4138</id> <edge_type>2</edge_type> <source_obj>502</source_obj> <sink_obj>518</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1127"> <id>4139</id> <edge_type>2</edge_type> <source_obj>516</source_obj> <sink_obj>518</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1128"> <id>4140</id> <edge_type>2</edge_type> <source_obj>518</source_obj> <sink_obj>520</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1129"> <id>4141</id> <edge_type>2</edge_type> <source_obj>520</source_obj> <sink_obj>527</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1130"> <id>4142</id> <edge_type>2</edge_type> <source_obj>525</source_obj> <sink_obj>527</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1131"> <id>4143</id> <edge_type>4</edge_type> <source_obj>163</source_obj> <sink_obj>522</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1132"> <id>4144</id> <edge_type>4</edge_type> <source_obj>164</source_obj> <sink_obj>523</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1133"> <id>4145</id> <edge_type>4</edge_type> <source_obj>164</source_obj> <sink_obj>514</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1134"> <id>4146</id> <edge_type>4</edge_type> <source_obj>164</source_obj> <sink_obj>498</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1135"> <id>4147</id> <edge_type>4</edge_type> <source_obj>164</source_obj> <sink_obj>476</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1136"> <id>4148</id> <edge_type>4</edge_type> <source_obj>164</source_obj> <sink_obj>447</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1137"> <id>4149</id> <edge_type>4</edge_type> <source_obj>164</source_obj> <sink_obj>471</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1138"> <id>4150</id> <edge_type>4</edge_type> <source_obj>164</source_obj> <sink_obj>463</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1139"> <id>4151</id> <edge_type>4</edge_type> <source_obj>164</source_obj> <sink_obj>428</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1140"> <id>4152</id> <edge_type>4</edge_type> <source_obj>164</source_obj> <sink_obj>422</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1141"> <id>4153</id> <edge_type>4</edge_type> <source_obj>164</source_obj> <sink_obj>417</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1142"> <id>4154</id> <edge_type>4</edge_type> <source_obj>164</source_obj> <sink_obj>307</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1143"> <id>4155</id> <edge_type>4</edge_type> <source_obj>164</source_obj> <sink_obj>241</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1144"> <id>4156</id> <edge_type>4</edge_type> <source_obj>165</source_obj> <sink_obj>400</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1145"> <id>4157</id> <edge_type>4</edge_type> <source_obj>164</source_obj> <sink_obj>393</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1146"> <id>4158</id> <edge_type>4</edge_type> <source_obj>163</source_obj> <sink_obj>281</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1147"> <id>4159</id> <edge_type>4</edge_type> <source_obj>168</source_obj> <sink_obj>171</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1148"> <id>4160</id> <edge_type>4</edge_type> <source_obj>175</source_obj> <sink_obj>506</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1149"> <id>4161</id> <edge_type>4</edge_type> <source_obj>176</source_obj> <sink_obj>508</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1150"> <id>4162</id> <edge_type>4</edge_type> <source_obj>177</source_obj> <sink_obj>509</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1151"> <id>4163</id> <edge_type>4</edge_type> <source_obj>178</source_obj> <sink_obj>511</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1152"> <id>4164</id> <edge_type>4</edge_type> <source_obj>179</source_obj> <sink_obj>513</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1153"> <id>4165</id> <edge_type>4</edge_type> <source_obj>175</source_obj> <sink_obj>496</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1154"> <id>4166</id> <edge_type>4</edge_type> <source_obj>177</source_obj> <sink_obj>434</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1155"> <id>4167</id> <edge_type>4</edge_type> <source_obj>177</source_obj> <sink_obj>306</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1156"> <id>4168</id> <edge_type>4</edge_type> <source_obj>177</source_obj> <sink_obj>391</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1157"> <id>4169</id> <edge_type>4</edge_type> <source_obj>186</source_obj> <sink_obj>489</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1158"> <id>4170</id> <edge_type>4</edge_type> <source_obj>186</source_obj> <sink_obj>443</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1159"> <id>4171</id> <edge_type>4</edge_type> <source_obj>186</source_obj> <sink_obj>326</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1160"> <id>4172</id> <edge_type>4</edge_type> <source_obj>186</source_obj> <sink_obj>294</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1161"> <id>4173</id> <edge_type>4</edge_type> <source_obj>196</source_obj> <sink_obj>429</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1162"> <id>4174</id> <edge_type>4</edge_type> <source_obj>196</source_obj> <sink_obj>316</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="_1163"> <mId>1</mId> <mTag>bp_f1244</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>57</count> <item_version>0</item_version> <item>167</item> <item>170</item> <item>184</item> <item>188</item> <item>191</item> <item>194</item> <item>198</item> <item>201</item> <item>204</item> <item>240</item> <item>243</item> <item>246</item> <item>280</item> <item>283</item> <item>285</item> <item>291</item> <item>296</item> <item>300</item> <item>305</item> <item>309</item> <item>311</item> <item>329</item> <item>358</item> <item>387</item> <item>395</item> <item>399</item> <item>402</item> <item>404</item> <item>407</item> <item>411</item> <item>415</item> <item>419</item> <item>421</item> <item>424</item> <item>426</item> <item>431</item> <item>436</item> <item>438</item> <item>449</item> <item>451</item> <item>454</item> <item>459</item> <item>462</item> <item>465</item> <item>467</item> <item>473</item> <item>475</item> <item>478</item> <item>480</item> <item>482</item> <item>500</item> <item>502</item> <item>516</item> <item>518</item> <item>520</item> <item>525</item> <item>527</item> </basic_blocks> <mII>1</mII> <mDepth>2</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>1</mMinLatency> <mMaxLatency>1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> </cdfg_regions> <fsm class_id="24" tracking_level="1" version="0" object_id="_1164"> <states class_id="25" tracking_level="0" version="0"> <count>2</count> <item_version>0</item_version> <item class_id="26" tracking_level="1" version="0" object_id="_1165"> <id>1</id> <operations class_id="27" tracking_level="0" version="0"> <count>256</count> <item_version>0</item_version> <item class_id="28" tracking_level="1" version="0" object_id="_1166"> <id>163</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1167"> <id>164</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1168"> <id>165</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1169"> <id>166</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1170"> <id>168</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1171"> <id>169</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1172"> <id>171</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1173"> <id>172</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1174"> <id>173</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1175"> <id>174</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1176"> <id>177</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1177"> <id>178</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1178"> <id>180</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1179"> <id>181</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1180"> <id>182</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1181"> <id>183</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1182"> <id>185</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1183"> <id>186</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1184"> <id>187</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1185"> <id>189</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1186"> <id>190</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1187"> <id>192</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1188"> <id>193</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1189"> <id>195</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1190"> <id>196</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1191"> <id>197</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1192"> <id>199</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1193"> <id>200</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1194"> <id>202</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1195"> <id>203</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1196"> <id>205</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1197"> <id>206</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1198"> <id>207</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1199"> <id>208</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1200"> <id>209</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1201"> <id>210</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1202"> <id>211</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1203"> <id>212</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1204"> <id>213</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1205"> <id>214</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1206"> <id>215</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1207"> <id>216</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1208"> <id>217</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1209"> <id>218</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1210"> <id>219</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1211"> <id>220</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1212"> <id>221</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1213"> <id>222</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1214"> <id>223</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1215"> <id>224</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1216"> <id>225</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1217"> <id>226</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1218"> <id>227</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1219"> <id>228</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1220"> <id>229</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1221"> <id>230</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1222"> <id>231</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1223"> <id>232</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1224"> <id>233</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1225"> <id>234</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1226"> <id>235</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1227"> <id>236</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1228"> <id>237</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1229"> <id>239</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1230"> <id>241</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1231"> <id>242</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1232"> <id>244</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1233"> <id>245</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1234"> <id>247</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1235"> <id>248</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1236"> <id>249</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1237"> <id>250</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1238"> <id>251</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1239"> <id>252</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1240"> <id>253</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1241"> <id>254</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1242"> <id>255</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1243"> <id>256</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1244"> <id>257</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1245"> <id>258</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1246"> <id>259</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1247"> <id>260</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1248"> <id>261</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1249"> <id>262</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1250"> <id>263</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1251"> <id>264</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1252"> <id>265</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1253"> <id>266</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1254"> <id>267</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1255"> <id>268</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1256"> <id>269</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1257"> <id>270</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1258"> <id>271</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1259"> <id>272</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1260"> <id>273</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1261"> <id>274</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1262"> <id>275</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1263"> <id>276</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1264"> <id>277</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1265"> <id>278</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1266"> <id>279</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1267"> <id>281</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1268"> <id>284</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1269"> <id>286</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1270"> <id>287</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1271"> <id>288</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1272"> <id>289</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1273"> <id>290</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1274"> <id>292</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1275"> <id>293</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1276"> <id>294</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1277"> <id>295</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1278"> <id>298</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1279"> <id>299</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1280"> <id>301</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1281"> <id>302</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1282"> <id>303</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1283"> <id>304</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1284"> <id>306</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1285"> <id>307</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1286"> <id>310</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1287"> <id>312</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1288"> <id>313</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1289"> <id>314</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1290"> <id>315</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1291"> <id>316</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1292"> <id>317</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1293"> <id>318</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1294"> <id>319</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1295"> <id>320</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1296"> <id>321</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1297"> <id>322</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1298"> <id>323</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1299"> <id>324</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1300"> <id>325</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1301"> <id>326</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1302"> <id>327</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1303"> <id>328</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1304"> <id>330</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1305"> <id>331</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1306"> <id>332</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1307"> <id>333</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1308"> <id>334</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1309"> <id>335</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1310"> <id>336</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1311"> <id>337</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1312"> <id>338</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1313"> <id>339</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1314"> <id>340</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1315"> <id>341</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1316"> <id>342</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1317"> <id>343</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1318"> <id>344</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1319"> <id>345</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1320"> <id>346</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1321"> <id>347</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1322"> <id>348</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1323"> <id>349</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1324"> <id>350</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1325"> <id>351</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1326"> <id>352</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1327"> <id>353</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1328"> <id>354</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1329"> <id>355</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1330"> <id>356</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1331"> <id>357</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1332"> <id>359</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1333"> <id>360</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1334"> <id>361</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1335"> <id>362</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1336"> <id>363</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1337"> <id>364</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1338"> <id>365</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1339"> <id>366</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1340"> <id>367</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1341"> <id>368</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1342"> <id>369</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1343"> <id>370</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1344"> <id>371</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1345"> <id>372</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1346"> <id>373</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1347"> <id>374</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1348"> <id>375</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1349"> <id>376</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1350"> <id>377</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1351"> <id>378</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1352"> <id>379</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1353"> <id>380</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1354"> <id>381</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1355"> <id>382</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1356"> <id>383</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1357"> <id>384</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1358"> <id>386</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1359"> <id>388</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1360"> <id>389</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1361"> <id>390</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1362"> <id>391</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1363"> <id>392</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1364"> <id>393</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1365"> <id>394</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1366"> <id>396</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1367"> <id>397</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1368"> <id>398</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1369"> <id>400</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1370"> <id>405</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1371"> <id>406</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1372"> <id>408</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1373"> <id>409</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1374"> <id>410</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1375"> <id>412</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1376"> <id>413</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1377"> <id>414</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1378"> <id>416</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1379"> <id>417</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1380"> <id>422</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1381"> <id>427</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1382"> <id>428</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1383"> <id>429</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1384"> <id>433</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1385"> <id>434</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1386"> <id>442</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1387"> <id>443</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1388"> <id>444</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1389"> <id>445</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1390"> <id>446</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1391"> <id>447</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1392"> <id>452</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1393"> <id>453</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1394"> <id>455</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1395"> <id>456</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1396"> <id>457</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1397"> <id>458</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1398"> <id>460</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1399"> <id>461</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1400"> <id>463</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1401"> <id>468</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1402"> <id>469</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1403"> <id>470</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1404"> <id>471</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1405"> <id>476</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1406"> <id>483</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1407"> <id>484</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1408"> <id>485</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1409"> <id>486</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1410"> <id>487</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1411"> <id>488</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1412"> <id>489</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1413"> <id>498</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1414"> <id>503</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1415"> <id>507</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1416"> <id>509</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1417"> <id>510</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1418"> <id>511</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1419"> <id>514</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1420"> <id>522</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1421"> <id>523</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_1422"> <id>2</id> <operations> <count>195</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_1423"> <id>20</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1424"> <id>21</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1425"> <id>22</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1426"> <id>23</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1427"> <id>24</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1428"> <id>25</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1429"> <id>26</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1430"> <id>27</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1431"> <id>28</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1432"> <id>29</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1433"> <id>30</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1434"> <id>31</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1435"> <id>32</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1436"> <id>33</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1437"> <id>34</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1438"> <id>35</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1439"> <id>36</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1440"> <id>37</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1441"> <id>38</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1442"> <id>39</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1443"> <id>40</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1444"> <id>41</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1445"> <id>42</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1446"> <id>43</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1447"> <id>44</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1448"> <id>45</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1449"> <id>46</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1450"> <id>47</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1451"> <id>48</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1452"> <id>49</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1453"> <id>50</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1454"> <id>51</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1455"> <id>52</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1456"> <id>53</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1457"> <id>54</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1458"> <id>55</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1459"> <id>56</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1460"> <id>57</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1461"> <id>58</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1462"> <id>59</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1463"> <id>60</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1464"> <id>61</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1465"> <id>62</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1466"> <id>63</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1467"> <id>64</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1468"> <id>65</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1469"> <id>66</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1470"> <id>67</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1471"> <id>68</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1472"> <id>69</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1473"> <id>70</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1474"> <id>71</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1475"> <id>72</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1476"> <id>73</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1477"> <id>74</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1478"> <id>75</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1479"> <id>76</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1480"> <id>77</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1481"> <id>78</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1482"> <id>79</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1483"> <id>80</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1484"> <id>81</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1485"> <id>82</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1486"> <id>83</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1487"> <id>84</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1488"> <id>85</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1489"> <id>86</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1490"> <id>87</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1491"> <id>88</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1492"> <id>89</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1493"> <id>90</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1494"> <id>91</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1495"> <id>92</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1496"> <id>93</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1497"> <id>94</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1498"> <id>95</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1499"> <id>96</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1500"> <id>97</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1501"> <id>98</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1502"> <id>99</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1503"> <id>100</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1504"> <id>101</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1505"> <id>102</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1506"> <id>103</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1507"> <id>104</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1508"> <id>105</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1509"> <id>106</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1510"> <id>107</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1511"> <id>108</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1512"> <id>109</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1513"> <id>110</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1514"> <id>111</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1515"> <id>112</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1516"> <id>113</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1517"> <id>114</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1518"> <id>115</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1519"> <id>116</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1520"> <id>117</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1521"> <id>118</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1522"> <id>119</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1523"> <id>120</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1524"> <id>121</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1525"> <id>122</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1526"> <id>123</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1527"> <id>124</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1528"> <id>125</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1529"> <id>126</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1530"> <id>127</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1531"> <id>128</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1532"> <id>129</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1533"> <id>130</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1534"> <id>131</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1535"> <id>132</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1536"> <id>133</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1537"> <id>134</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1538"> <id>135</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1539"> <id>136</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1540"> <id>137</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1541"> <id>138</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1542"> <id>139</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1543"> <id>140</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1544"> <id>141</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1545"> <id>142</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1546"> <id>143</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1547"> <id>144</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1548"> <id>145</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1549"> <id>146</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1550"> <id>147</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1551"> <id>148</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1552"> <id>149</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1553"> <id>150</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1554"> <id>151</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1555"> <id>152</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1556"> <id>153</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1557"> <id>154</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1558"> <id>155</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1559"> <id>156</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1560"> <id>157</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1561"> <id>158</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1562"> <id>159</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1563"> <id>160</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1564"> <id>161</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1565"> <id>162</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1566"> <id>175</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1567"> <id>176</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1568"> <id>179</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1569"> <id>238</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1570"> <id>282</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1571"> <id>297</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1572"> <id>308</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1573"> <id>385</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1574"> <id>401</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1575"> <id>403</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1576"> <id>418</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1577"> <id>420</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1578"> <id>423</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1579"> <id>425</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1580"> <id>430</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1581"> <id>432</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1582"> <id>435</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1583"> <id>437</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1584"> <id>439</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1585"> <id>440</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1586"> <id>441</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1587"> <id>448</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1588"> <id>450</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1589"> <id>464</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1590"> <id>466</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1591"> <id>472</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1592"> <id>474</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1593"> <id>477</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1594"> <id>479</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1595"> <id>481</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1596"> <id>490</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1597"> <id>491</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1598"> <id>492</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1599"> <id>493</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1600"> <id>494</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1601"> <id>495</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1602"> <id>496</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1603"> <id>497</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1604"> <id>499</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1605"> <id>501</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1606"> <id>504</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1607"> <id>505</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1608"> <id>506</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1609"> <id>508</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1610"> <id>512</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1611"> <id>513</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1612"> <id>515</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1613"> <id>517</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1614"> <id>519</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1615"> <id>521</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1616"> <id>524</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1617"> <id>526</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> </states> <transitions class_id="29" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="30" tracking_level="1" version="0" object_id="_1618"> <inState>1</inState> <outState>2</outState> <condition class_id="31" tracking_level="0" version="0"> <id>278</id> <sop class_id="32" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="33" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> </transitions> </fsm> <res class_id="-1"></res> <node_label_latency class_id="35" tracking_level="0" version="0"> <count>310</count> <item_version>0</item_version> <item class_id="36" tracking_level="0" version="0"> <first>122</first> <second class_id="37" tracking_level="0" version="0"> <first>1</first> <second>0</second> </second> </item> <item> <first>150</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>163</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>164</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>165</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>166</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>168</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>169</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>171</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>172</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>173</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>174</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>175</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>176</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>177</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>178</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>179</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>180</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>181</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>182</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>183</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>185</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>186</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>187</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>189</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>190</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>192</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>193</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>195</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>196</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>197</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>199</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>200</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>202</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>203</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>205</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>206</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>207</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>208</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>209</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>210</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>211</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>212</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>213</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>214</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>215</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>216</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>217</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>218</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>219</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>220</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>221</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>222</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>223</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>224</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>225</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>226</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>227</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>228</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>229</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>230</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>231</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>232</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>233</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>234</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>235</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>236</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>237</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>238</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>239</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>241</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>242</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>244</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>245</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>247</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>248</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>249</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>250</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>251</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>252</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>253</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>254</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>255</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>256</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>257</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>258</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>259</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>260</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>261</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>262</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>263</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>264</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>265</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>266</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>267</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>268</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>269</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>270</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>271</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>272</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>273</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>274</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>275</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>276</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>277</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>278</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>279</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>281</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>282</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>284</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>286</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>287</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>288</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>289</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>290</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>292</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>293</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>294</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>295</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>297</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>298</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>299</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>301</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>302</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>303</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>304</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>306</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>307</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>308</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>310</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>312</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>313</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>314</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>315</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>316</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>317</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>318</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>319</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>320</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>321</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>322</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>323</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>324</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>325</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>326</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>327</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>328</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>330</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>331</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>332</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>333</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>334</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>335</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>336</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>337</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>338</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>339</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>340</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>341</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>342</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>343</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>344</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>345</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>346</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>347</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>348</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>349</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>350</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>351</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>352</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>353</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>354</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>355</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>356</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>357</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>359</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>360</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>361</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>362</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>363</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>364</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>365</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>366</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>367</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>368</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>369</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>370</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>371</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>372</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>373</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>374</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>375</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>376</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>377</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>378</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>379</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>380</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>381</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>382</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>383</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>384</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>385</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>386</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>388</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>389</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>390</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>391</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>392</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>393</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>394</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>396</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>397</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>398</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>400</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>401</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>403</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>405</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>406</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>408</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>409</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>410</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>412</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>413</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>414</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>416</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>417</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>418</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>420</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>422</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>423</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>425</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>427</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>428</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>429</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>430</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>432</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>433</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>434</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>435</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>437</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>439</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>440</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>441</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>442</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>443</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>444</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>445</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>446</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>447</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>448</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>450</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>452</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>453</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>455</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>456</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>457</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>458</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>460</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>461</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>463</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>464</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>466</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>468</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>469</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>470</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>471</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>472</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>474</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>476</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>477</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>479</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>481</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>483</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>484</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>485</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>486</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>487</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>488</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>489</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>490</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>491</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>492</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>493</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>494</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>495</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>496</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>497</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>498</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>499</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>501</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>503</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>504</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>505</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>506</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>507</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>508</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>509</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>510</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>511</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>512</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>513</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>514</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>515</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>517</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>519</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>521</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>522</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>523</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>524</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>526</first> <second> <first>1</first> <second>0</second> </second> </item> </node_label_latency> <bblk_ent_exit class_id="38" tracking_level="0" version="0"> <count>57</count> <item_version>0</item_version> <item class_id="39" tracking_level="0" version="0"> <first>167</first> <second class_id="40" tracking_level="0" version="0"> <first>0</first> <second>1</second> </second> </item> <item> <first>170</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>184</first> <second> <first>0</first> <second>1</second> </second> </item> <item> <first>188</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>191</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>194</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>198</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>201</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>204</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>240</first> <second> <first>0</first> <second>1</second> </second> </item> <item> <first>243</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>246</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>280</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>283</first> <second> <first>0</first> <second>1</second> </second> </item> <item> <first>285</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>291</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>296</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>300</first> <second> <first>0</first> <second>1</second> </second> </item> <item> <first>305</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>309</first> <second> <first>0</first> <second>1</second> </second> </item> <item> <first>311</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>329</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>358</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>387</first> <second> <first>0</first> <second>1</second> </second> </item> <item> <first>395</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>399</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>402</first> <second> <first>0</first> <second>1</second> </second> </item> <item> <first>404</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>407</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>411</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>415</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>419</first> <second> <first>0</first> <second>1</second> </second> </item> <item> <first>421</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>424</first> <second> <first>0</first> <second>1</second> </second> </item> <item> <first>426</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>431</first> <second> <first>0</first> <second>1</second> </second> </item> <item> <first>436</first> <second> <first>0</first> <second>1</second> </second> </item> <item> <first>438</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>449</first> <second> <first>0</first> <second>1</second> </second> </item> <item> <first>451</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>454</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>459</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>462</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>465</first> <second> <first>0</first> <second>1</second> </second> </item> <item> <first>467</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>473</first> <second> <first>0</first> <second>1</second> </second> </item> <item> <first>475</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>478</first> <second> <first>0</first> <second>1</second> </second> </item> <item> <first>480</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>482</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>500</first> <second> <first>0</first> <second>1</second> </second> </item> <item> <first>502</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>516</first> <second> <first>0</first> <second>1</second> </second> </item> <item> <first>518</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>520</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>525</first> <second> <first>0</first> <second>1</second> </second> </item> <item> <first>527</first> <second> <first>1</first> <second>1</second> </second> </item> </bblk_ent_exit> <regions class_id="41" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="42" tracking_level="1" version="0" object_id="_1619"> <region_name>bp_f1244</region_name> <basic_blocks> <count>57</count> <item_version>0</item_version> <item>167</item> <item>170</item> <item>184</item> <item>188</item> <item>191</item> <item>194</item> <item>198</item> <item>201</item> <item>204</item> <item>240</item> <item>243</item> <item>246</item> <item>280</item> <item>283</item> <item>285</item> <item>291</item> <item>296</item> <item>300</item> <item>305</item> <item>309</item> <item>311</item> <item>329</item> <item>358</item> <item>387</item> <item>395</item> <item>399</item> <item>402</item> <item>404</item> <item>407</item> <item>411</item> <item>415</item> <item>419</item> <item>421</item> <item>424</item> <item>426</item> <item>431</item> <item>436</item> <item>438</item> <item>449</item> <item>451</item> <item>454</item> <item>459</item> <item>462</item> <item>465</item> <item>467</item> <item>473</item> <item>475</item> <item>478</item> <item>480</item> <item>482</item> <item>500</item> <item>502</item> <item>516</item> <item>518</item> <item>520</item> <item>525</item> <item>527</item> </basic_blocks> <nodes> <count>0</count> <item_version>0</item_version> </nodes> <anchor_node>-1</anchor_node> <region_type>8</region_type> <interval>1</interval> <pipe_depth>2</pipe_depth> </item> </regions> <dp_fu_nodes class_id="43" tracking_level="0" version="0"> <count>235</count> <item_version>0</item_version> <item class_id="44" tracking_level="0" version="0"> <first>268</first> <second> <count>1</count> <item_version>0</item_version> <item>168</item> </second> </item> <item> <first>282</first> <second> <count>1</count> <item_version>0</item_version> <item>171</item> </second> </item> <item> <first>294</first> <second> <count>1</count> <item_version>0</item_version> <item>122</item> </second> </item> <item> <first>300</first> <second> <count>1</count> <item_version>0</item_version> <item>150</item> </second> </item> <item> <first>308</first> <second> <count>4</count> <item_version>0</item_version> <item>238</item> <item>385</item> <item>441</item> <item>521</item> </second> </item> <item> <first>315</first> <second> <count>2</count> <item_version>0</item_version> <item>297</item> <item>432</item> </second> </item> <item> <first>322</first> <second> <count>1</count> <item_version>0</item_version> <item>497</item> </second> </item> <item> <first>332</first> <second> <count>1</count> <item_version>0</item_version> <item>286</item> </second> </item> <item> <first>341</first> <second> <count>1</count> <item_version>0</item_version> <item>292</item> </second> </item> <item> <first>351</first> <second> <count>1</count> <item_version>0</item_version> <item>293</item> </second> </item> <item> <first>361</first> <second> <count>1</count> <item_version>0</item_version> <item>388</item> </second> </item> <item> <first>370</first> <second> <count>1</count> <item_version>0</item_version> <item>389</item> </second> </item> <item> <first>381</first> <second> <count>1</count> <item_version>0</item_version> <item>396</item> </second> </item> <item> <first>399</first> <second> <count>1</count> <item_version>0</item_version> <item>397</item> </second> </item> <item> <first>413</first> <second> <count>5</count> <item_version>0</item_version> <item>241</item> <item>307</item> <item>422</item> <item>463</item> <item>523</item> </second> </item> <item> <first>419</first> <second> <count>1</count> <item_version>0</item_version> <item>298</item> </second> </item> <item> <first>424</first> <second> <count>1</count> <item_version>0</item_version> <item>452</item> </second> </item> <item> <first>429</first> <second> <count>2</count> <item_version>0</item_version> <item>301</item> <item>455</item> </second> </item> <item> <first>434</first> <second> <count>2</count> <item_version>0</item_version> <item>302</item> <item>456</item> </second> </item> <item> <first>439</first> <second> <count>1</count> <item_version>0</item_version> <item>303</item> </second> </item> <item> <first>445</first> <second> <count>1</count> <item_version>0</item_version> <item>457</item> </second> </item> <item> <first>451</first> <second> <count>2</count> <item_version>0</item_version> <item>306</item> <item>391</item> </second> </item> <item> <first>457</first> <second> <count>4</count> <item_version>0</item_version> <item>362</item> <item>408</item> <item>444</item> <item>468</item> </second> </item> <item> <first>466</first> <second> <count>2</count> <item_version>0</item_version> <item>445</item> <item>469</item> </second> </item> <item> <first>472</first> <second> <count>2</count> <item_version>0</item_version> <item>446</item> <item>470</item> </second> </item> <item> <first>480</first> <second> <count>2</count> <item_version>0</item_version> <item>447</item> <item>471</item> </second> </item> <item> <first>486</first> <second> <count>2</count> <item_version>0</item_version> <item>483</item> <item>507</item> </second> </item> <item> <first>495</first> <second> <count>1</count> <item_version>0</item_version> <item>163</item> </second> </item> <item> <first>499</first> <second> <count>1</count> <item_version>0</item_version> <item>164</item> </second> </item> <item> <first>503</first> <second> <count>1</count> <item_version>0</item_version> <item>165</item> </second> </item> <item> <first>507</first> <second> <count>1</count> <item_version>0</item_version> <item>172</item> </second> </item> <item> <first>512</first> <second> <count>1</count> <item_version>0</item_version> <item>173</item> </second> </item> <item> <first>516</first> <second> <count>1</count> <item_version>0</item_version> <item>174</item> </second> </item> <item> <first>522</first> <second> <count>1</count> <item_version>0</item_version> <item>177</item> </second> </item> <item> <first>527</first> <second> <count>1</count> <item_version>0</item_version> <item>178</item> </second> </item> <item> <first>535</first> <second> <count>1</count> <item_version>0</item_version> <item>180</item> </second> </item> <item> <first>541</first> <second> <count>1</count> <item_version>0</item_version> <item>181</item> </second> </item> <item> <first>547</first> <second> <count>1</count> <item_version>0</item_version> <item>182</item> </second> </item> <item> <first>553</first> <second> <count>1</count> <item_version>0</item_version> <item>185</item> </second> </item> <item> <first>559</first> <second> <count>1</count> <item_version>0</item_version> <item>186</item> </second> </item> <item> <first>563</first> <second> <count>1</count> <item_version>0</item_version> <item>189</item> </second> </item> <item> <first>569</first> <second> <count>1</count> <item_version>0</item_version> <item>192</item> </second> </item> <item> <first>575</first> <second> <count>1</count> <item_version>0</item_version> <item>195</item> </second> </item> <item> <first>581</first> <second> <count>1</count> <item_version>0</item_version> <item>196</item> </second> </item> <item> <first>585</first> <second> <count>1</count> <item_version>0</item_version> <item>199</item> </second> </item> <item> <first>591</first> <second> <count>1</count> <item_version>0</item_version> <item>202</item> </second> </item> <item> <first>597</first> <second> <count>1</count> <item_version>0</item_version> <item>205</item> </second> </item> <item> <first>601</first> <second> <count>1</count> <item_version>0</item_version> <item>206</item> </second> </item> <item> <first>611</first> <second> <count>1</count> <item_version>0</item_version> <item>207</item> </second> </item> <item> <first>615</first> <second> <count>1</count> <item_version>0</item_version> <item>208</item> </second> </item> <item> <first>621</first> <second> <count>1</count> <item_version>0</item_version> <item>209</item> </second> </item> <item> <first>625</first> <second> <count>1</count> <item_version>0</item_version> <item>210</item> </second> </item> <item> <first>629</first> <second> <count>1</count> <item_version>0</item_version> <item>211</item> </second> </item> <item> <first>635</first> <second> <count>1</count> <item_version>0</item_version> <item>212</item> </second> </item> <item> <first>639</first> <second> <count>1</count> <item_version>0</item_version> <item>213</item> </second> </item> <item> <first>643</first> <second> <count>1</count> <item_version>0</item_version> <item>214</item> </second> </item> <item> <first>649</first> <second> <count>1</count> <item_version>0</item_version> <item>215</item> </second> </item> <item> <first>655</first> <second> <count>1</count> <item_version>0</item_version> <item>216</item> </second> </item> <item> <first>665</first> <second> <count>1</count> <item_version>0</item_version> <item>217</item> </second> </item> <item> <first>669</first> <second> <count>1</count> <item_version>0</item_version> <item>218</item> </second> </item> <item> <first>675</first> <second> <count>1</count> <item_version>0</item_version> <item>219</item> </second> </item> <item> <first>679</first> <second> <count>1</count> <item_version>0</item_version> <item>220</item> </second> </item> <item> <first>685</first> <second> <count>1</count> <item_version>0</item_version> <item>221</item> </second> </item> <item> <first>693</first> <second> <count>1</count> <item_version>0</item_version> <item>222</item> </second> </item> <item> <first>701</first> <second> <count>1</count> <item_version>0</item_version> <item>223</item> </second> </item> <item> <first>707</first> <second> <count>1</count> <item_version>0</item_version> <item>224</item> </second> </item> <item> <first>715</first> <second> <count>1</count> <item_version>0</item_version> <item>225</item> </second> </item> <item> <first>719</first> <second> <count>1</count> <item_version>0</item_version> <item>226</item> </second> </item> <item> <first>723</first> <second> <count>1</count> <item_version>0</item_version> <item>227</item> </second> </item> <item> <first>727</first> <second> <count>1</count> <item_version>0</item_version> <item>228</item> </second> </item> <item> <first>733</first> <second> <count>1</count> <item_version>0</item_version> <item>229</item> </second> </item> <item> <first>743</first> <second> <count>1</count> <item_version>0</item_version> <item>230</item> </second> </item> <item> <first>751</first> <second> <count>1</count> <item_version>0</item_version> <item>231</item> </second> </item> <item> <first>757</first> <second> <count>1</count> <item_version>0</item_version> <item>232</item> </second> </item> <item> <first>763</first> <second> <count>1</count> <item_version>0</item_version> <item>233</item> </second> </item> <item> <first>769</first> <second> <count>1</count> <item_version>0</item_version> <item>234</item> </second> </item> <item> <first>775</first> <second> <count>1</count> <item_version>0</item_version> <item>235</item> </second> </item> <item> <first>781</first> <second> <count>1</count> <item_version>0</item_version> <item>236</item> </second> </item> <item> <first>787</first> <second> <count>1</count> <item_version>0</item_version> <item>237</item> </second> </item> <item> <first>795</first> <second> <count>1</count> <item_version>0</item_version> <item>244</item> </second> </item> <item> <first>801</first> <second> <count>1</count> <item_version>0</item_version> <item>247</item> </second> </item> <item> <first>805</first> <second> <count>1</count> <item_version>0</item_version> <item>248</item> </second> </item> <item> <first>809</first> <second> <count>1</count> <item_version>0</item_version> <item>249</item> </second> </item> <item> <first>815</first> <second> <count>1</count> <item_version>0</item_version> <item>250</item> </second> </item> <item> <first>819</first> <second> <count>1</count> <item_version>0</item_version> <item>251</item> </second> </item> <item> <first>825</first> <second> <count>1</count> <item_version>0</item_version> <item>252</item> </second> </item> <item> <first>835</first> <second> <count>1</count> <item_version>0</item_version> <item>253</item> </second> </item> <item> <first>839</first> <second> <count>1</count> <item_version>0</item_version> <item>254</item> </second> </item> <item> <first>845</first> <second> <count>1</count> <item_version>0</item_version> <item>255</item> </second> </item> <item> <first>849</first> <second> <count>1</count> <item_version>0</item_version> <item>256</item> </second> </item> <item> <first>859</first> <second> <count>1</count> <item_version>0</item_version> <item>257</item> </second> </item> <item> <first>865</first> <second> <count>1</count> <item_version>0</item_version> <item>258</item> </second> </item> <item> <first>871</first> <second> <count>1</count> <item_version>0</item_version> <item>259</item> </second> </item> <item> <first>877</first> <second> <count>1</count> <item_version>0</item_version> <item>260</item> </second> </item> <item> <first>885</first> <second> <count>1</count> <item_version>0</item_version> <item>261</item> </second> </item> <item> <first>893</first> <second> <count>1</count> <item_version>0</item_version> <item>262</item> </second> </item> <item> <first>901</first> <second> <count>1</count> <item_version>0</item_version> <item>263</item> </second> </item> <item> <first>907</first> <second> <count>1</count> <item_version>0</item_version> <item>264</item> </second> </item> <item> <first>911</first> <second> <count>1</count> <item_version>0</item_version> <item>265</item> </second> </item> <item> <first>915</first> <second> <count>1</count> <item_version>0</item_version> <item>266</item> </second> </item> <item> <first>921</first> <second> <count>1</count> <item_version>0</item_version> <item>267</item> </second> </item> <item> <first>927</first> <second> <count>1</count> <item_version>0</item_version> <item>268</item> </second> </item> <item> <first>933</first> <second> <count>1</count> <item_version>0</item_version> <item>269</item> </second> </item> <item> <first>939</first> <second> <count>1</count> <item_version>0</item_version> <item>270</item> </second> </item> <item> <first>943</first> <second> <count>1</count> <item_version>0</item_version> <item>271</item> </second> </item> <item> <first>949</first> <second> <count>1</count> <item_version>0</item_version> <item>272</item> </second> </item> <item> <first>955</first> <second> <count>1</count> <item_version>0</item_version> <item>273</item> </second> </item> <item> <first>961</first> <second> <count>1</count> <item_version>0</item_version> <item>274</item> </second> </item> <item> <first>967</first> <second> <count>1</count> <item_version>0</item_version> <item>275</item> </second> </item> <item> <first>974</first> <second> <count>1</count> <item_version>0</item_version> <item>276</item> </second> </item> <item> <first>980</first> <second> <count>1</count> <item_version>0</item_version> <item>277</item> </second> </item> <item> <first>986</first> <second> <count>1</count> <item_version>0</item_version> <item>278</item> </second> </item> <item> <first>992</first> <second> <count>1</count> <item_version>0</item_version> <item>281</item> </second> </item> <item> <first>998</first> <second> <count>1</count> <item_version>0</item_version> <item>287</item> </second> </item> <item> <first>1004</first> <second> <count>1</count> <item_version>0</item_version> <item>288</item> </second> </item> <item> <first>1010</first> <second> <count>1</count> <item_version>0</item_version> <item>289</item> </second> </item> <item> <first>1019</first> <second> <count>1</count> <item_version>0</item_version> <item>294</item> </second> </item> <item> <first>1025</first> <second> <count>1</count> <item_version>0</item_version> <item>312</item> </second> </item> <item> <first>1029</first> <second> <count>1</count> <item_version>0</item_version> <item>313</item> </second> </item> <item> <first>1035</first> <second> <count>1</count> <item_version>0</item_version> <item>314</item> </second> </item> <item> <first>1039</first> <second> <count>1</count> <item_version>0</item_version> <item>315</item> </second> </item> <item> <first>1047</first> <second> <count>1</count> <item_version>0</item_version> <item>316</item> </second> </item> <item> <first>1053</first> <second> <count>1</count> <item_version>0</item_version> <item>317</item> </second> </item> <item> <first>1057</first> <second> <count>1</count> <item_version>0</item_version> <item>318</item> </second> </item> <item> <first>1063</first> <second> <count>1</count> <item_version>0</item_version> <item>319</item> </second> </item> <item> <first>1067</first> <second> <count>1</count> <item_version>0</item_version> <item>320</item> </second> </item> <item> <first>1071</first> <second> <count>1</count> <item_version>0</item_version> <item>321</item> </second> </item> <item> <first>1077</first> <second> <count>1</count> <item_version>0</item_version> <item>322</item> </second> </item> <item> <first>1083</first> <second> <count>1</count> <item_version>0</item_version> <item>323</item> </second> </item> <item> <first>1087</first> <second> <count>1</count> <item_version>0</item_version> <item>324</item> </second> </item> <item> <first>1093</first> <second> <count>1</count> <item_version>0</item_version> <item>325</item> </second> </item> <item> <first>1101</first> <second> <count>1</count> <item_version>0</item_version> <item>326</item> </second> </item> <item> <first>1107</first> <second> <count>1</count> <item_version>0</item_version> <item>327</item> </second> </item> <item> <first>1113</first> <second> <count>1</count> <item_version>0</item_version> <item>330</item> </second> </item> <item> <first>1117</first> <second> <count>1</count> <item_version>0</item_version> <item>331</item> </second> </item> <item> <first>1125</first> <second> <count>1</count> <item_version>0</item_version> <item>332</item> </second> </item> <item> <first>1131</first> <second> <count>1</count> <item_version>0</item_version> <item>333</item> </second> </item> <item> <first>1141</first> <second> <count>1</count> <item_version>0</item_version> <item>334</item> </second> </item> <item> <first>1145</first> <second> <count>1</count> <item_version>0</item_version> <item>335</item> </second> </item> <item> <first>1151</first> <second> <count>1</count> <item_version>0</item_version> <item>336</item> </second> </item> <item> <first>1155</first> <second> <count>1</count> <item_version>0</item_version> <item>337</item> </second> </item> <item> <first>1165</first> <second> <count>1</count> <item_version>0</item_version> <item>338</item> </second> </item> <item> <first>1171</first> <second> <count>1</count> <item_version>0</item_version> <item>339</item> </second> </item> <item> <first>1177</first> <second> <count>1</count> <item_version>0</item_version> <item>340</item> </second> </item> <item> <first>1183</first> <second> <count>1</count> <item_version>0</item_version> <item>341</item> </second> </item> <item> <first>1191</first> <second> <count>1</count> <item_version>0</item_version> <item>342</item> </second> </item> <item> <first>1199</first> <second> <count>1</count> <item_version>0</item_version> <item>343</item> </second> </item> <item> <first>1207</first> <second> <count>1</count> <item_version>0</item_version> <item>344</item> </second> </item> <item> <first>1213</first> <second> <count>1</count> <item_version>0</item_version> <item>345</item> </second> </item> <item> <first>1217</first> <second> <count>1</count> <item_version>0</item_version> <item>346</item> </second> </item> <item> <first>1221</first> <second> <count>1</count> <item_version>0</item_version> <item>347</item> </second> </item> <item> <first>1227</first> <second> <count>1</count> <item_version>0</item_version> <item>348</item> </second> </item> <item> <first>1233</first> <second> <count>1</count> <item_version>0</item_version> <item>349</item> </second> </item> <item> <first>1239</first> <second> <count>1</count> <item_version>0</item_version> <item>350</item> </second> </item> <item> <first>1245</first> <second> <count>1</count> <item_version>0</item_version> <item>351</item> </second> </item> <item> <first>1249</first> <second> <count>1</count> <item_version>0</item_version> <item>352</item> </second> </item> <item> <first>1255</first> <second> <count>1</count> <item_version>0</item_version> <item>353</item> </second> </item> <item> <first>1261</first> <second> <count>1</count> <item_version>0</item_version> <item>354</item> </second> </item> <item> <first>1267</first> <second> <count>1</count> <item_version>0</item_version> <item>355</item> </second> </item> <item> <first>1273</first> <second> <count>1</count> <item_version>0</item_version> <item>356</item> </second> </item> <item> <first>1280</first> <second> <count>1</count> <item_version>0</item_version> <item>359</item> </second> </item> <item> <first>1284</first> <second> <count>1</count> <item_version>0</item_version> <item>360</item> </second> </item> <item> <first>1288</first> <second> <count>1</count> <item_version>0</item_version> <item>361</item> </second> </item> <item> <first>1296</first> <second> <count>1</count> <item_version>0</item_version> <item>363</item> </second> </item> <item> <first>1300</first> <second> <count>1</count> <item_version>0</item_version> <item>364</item> </second> </item> <item> <first>1306</first> <second> <count>1</count> <item_version>0</item_version> <item>365</item> </second> </item> <item> <first>1314</first> <second> <count>1</count> <item_version>0</item_version> <item>366</item> </second> </item> <item> <first>1324</first> <second> <count>1</count> <item_version>0</item_version> <item>367</item> </second> </item> <item> <first>1330</first> <second> <count>1</count> <item_version>0</item_version> <item>368</item> </second> </item> <item> <first>1336</first> <second> <count>1</count> <item_version>0</item_version> <item>369</item> </second> </item> <item> <first>1342</first> <second> <count>1</count> <item_version>0</item_version> <item>370</item> </second> </item> <item> <first>1350</first> <second> <count>1</count> <item_version>0</item_version> <item>371</item> </second> </item> <item> <first>1358</first> <second> <count>1</count> <item_version>0</item_version> <item>372</item> </second> </item> <item> <first>1366</first> <second> <count>1</count> <item_version>0</item_version> <item>373</item> </second> </item> <item> <first>1372</first> <second> <count>1</count> <item_version>0</item_version> <item>374</item> </second> </item> <item> <first>1376</first> <second> <count>1</count> <item_version>0</item_version> <item>375</item> </second> </item> <item> <first>1380</first> <second> <count>1</count> <item_version>0</item_version> <item>376</item> </second> </item> <item> <first>1386</first> <second> <count>1</count> <item_version>0</item_version> <item>377</item> </second> </item> <item> <first>1392</first> <second> <count>1</count> <item_version>0</item_version> <item>378</item> </second> </item> <item> <first>1398</first> <second> <count>1</count> <item_version>0</item_version> <item>379</item> </second> </item> <item> <first>1402</first> <second> <count>1</count> <item_version>0</item_version> <item>380</item> </second> </item> <item> <first>1408</first> <second> <count>1</count> <item_version>0</item_version> <item>381</item> </second> </item> <item> <first>1414</first> <second> <count>1</count> <item_version>0</item_version> <item>382</item> </second> </item> <item> <first>1420</first> <second> <count>1</count> <item_version>0</item_version> <item>383</item> </second> </item> <item> <first>1426</first> <second> <count>1</count> <item_version>0</item_version> <item>384</item> </second> </item> <item> <first>1433</first> <second> <count>1</count> <item_version>0</item_version> <item>390</item> </second> </item> <item> <first>1437</first> <second> <count>1</count> <item_version>0</item_version> <item>392</item> </second> </item> <item> <first>1441</first> <second> <count>1</count> <item_version>0</item_version> <item>393</item> </second> </item> <item> <first>1447</first> <second> <count>1</count> <item_version>0</item_version> <item>400</item> </second> </item> <item> <first>1453</first> <second> <count>1</count> <item_version>0</item_version> <item>405</item> </second> </item> <item> <first>1459</first> <second> <count>1</count> <item_version>0</item_version> <item>409</item> </second> </item> <item> <first>1465</first> <second> <count>1</count> <item_version>0</item_version> <item>412</item> </second> </item> <item> <first>1475</first> <second> <count>1</count> <item_version>0</item_version> <item>413</item> </second> </item> <item> <first>1481</first> <second> <count>1</count> <item_version>0</item_version> <item>416</item> </second> </item> <item> <first>1489</first> <second> <count>1</count> <item_version>0</item_version> <item>417</item> </second> </item> <item> <first>1495</first> <second> <count>1</count> <item_version>0</item_version> <item>427</item> </second> </item> <item> <first>1503</first> <second> <count>1</count> <item_version>0</item_version> <item>428</item> </second> </item> <item> <first>1509</first> <second> <count>1</count> <item_version>0</item_version> <item>429</item> </second> </item> <item> <first>1515</first> <second> <count>1</count> <item_version>0</item_version> <item>433</item> </second> </item> <item> <first>1521</first> <second> <count>1</count> <item_version>0</item_version> <item>434</item> </second> </item> <item> <first>1527</first> <second> <count>1</count> <item_version>0</item_version> <item>442</item> </second> </item> <item> <first>1533</first> <second> <count>1</count> <item_version>0</item_version> <item>443</item> </second> </item> <item> <first>1539</first> <second> <count>1</count> <item_version>0</item_version> <item>460</item> </second> </item> <item> <first>1545</first> <second> <count>1</count> <item_version>0</item_version> <item>476</item> </second> </item> <item> <first>1551</first> <second> <count>1</count> <item_version>0</item_version> <item>484</item> </second> </item> <item> <first>1561</first> <second> <count>1</count> <item_version>0</item_version> <item>485</item> </second> </item> <item> <first>1569</first> <second> <count>1</count> <item_version>0</item_version> <item>486</item> </second> </item> <item> <first>1579</first> <second> <count>1</count> <item_version>0</item_version> <item>487</item> </second> </item> <item> <first>1583</first> <second> <count>1</count> <item_version>0</item_version> <item>488</item> </second> </item> <item> <first>1589</first> <second> <count>1</count> <item_version>0</item_version> <item>489</item> </second> </item> <item> <first>1595</first> <second> <count>1</count> <item_version>0</item_version> <item>498</item> </second> </item> <item> <first>1601</first> <second> <count>1</count> <item_version>0</item_version> <item>503</item> </second> </item> <item> <first>1605</first> <second> <count>1</count> <item_version>0</item_version> <item>509</item> </second> </item> <item> <first>1611</first> <second> <count>1</count> <item_version>0</item_version> <item>510</item> </second> </item> <item> <first>1621</first> <second> <count>1</count> <item_version>0</item_version> <item>511</item> </second> </item> <item> <first>1627</first> <second> <count>1</count> <item_version>0</item_version> <item>514</item> </second> </item> <item> <first>1633</first> <second> <count>1</count> <item_version>0</item_version> <item>522</item> </second> </item> <item> <first>1639</first> <second> <count>1</count> <item_version>0</item_version> <item>175</item> </second> </item> <item> <first>1643</first> <second> <count>1</count> <item_version>0</item_version> <item>176</item> </second> </item> <item> <first>1647</first> <second> <count>1</count> <item_version>0</item_version> <item>179</item> </second> </item> <item> <first>1651</first> <second> <count>1</count> <item_version>0</item_version> <item>439</item> </second> </item> <item> <first>1654</first> <second> <count>1</count> <item_version>0</item_version> <item>440</item> </second> </item> <item> <first>1659</first> <second> <count>1</count> <item_version>0</item_version> <item>490</item> </second> </item> <item> <first>1671</first> <second> <count>1</count> <item_version>0</item_version> <item>491</item> </second> </item> <item> <first>1682</first> <second> <count>1</count> <item_version>0</item_version> <item>492</item> </second> </item> <item> <first>1685</first> <second> <count>1</count> <item_version>0</item_version> <item>493</item> </second> </item> <item> <first>1697</first> <second> <count>1</count> <item_version>0</item_version> <item>494</item> </second> </item> <item> <first>1704</first> <second> <count>1</count> <item_version>0</item_version> <item>495</item> </second> </item> <item> <first>1717</first> <second> <count>1</count> <item_version>0</item_version> <item>496</item> </second> </item> <item> <first>1723</first> <second> <count>1</count> <item_version>0</item_version> <item>504</item> </second> </item> <item> <first>1726</first> <second> <count>1</count> <item_version>0</item_version> <item>505</item> </second> </item> <item> <first>1738</first> <second> <count>1</count> <item_version>0</item_version> <item>506</item> </second> </item> <item> <first>1744</first> <second> <count>1</count> <item_version>0</item_version> <item>508</item> </second> </item> <item> <first>1749</first> <second> <count>1</count> <item_version>0</item_version> <item>512</item> </second> </item> <item> <first>1752</first> <second> <count>1</count> <item_version>0</item_version> <item>513</item> </second> </item> </dp_fu_nodes> <dp_fu_nodes_expression class_id="46" tracking_level="0" version="0"> <count>193</count> <item_version>0</item_version> <item class_id="47" tracking_level="0" version="0"> <first>Lo_assign_10_i_fu_819</first> <second> <count>1</count> <item_version>0</item_version> <item>251</item> </second> </item> <item> <first>Lo_assign_15_cast_i_s_fu_1288</first> <second> <count>1</count> <item_version>0</item_version> <item>361</item> </second> </item> <item> <first>Lo_assign_16_cast11_s_fu_597</first> <second> <count>1</count> <item_version>0</item_version> <item>205</item> </second> </item> <item> <first>Lo_assign_i_fu_1125</first> <second> <count>1</count> <item_version>0</item_version> <item>332</item> </second> </item> <item> <first>grp_fu_429</first> <second> <count>2</count> <item_version>0</item_version> <item>301</item> <item>455</item> </second> </item> <item> <first>grp_fu_434</first> <second> <count>2</count> <item_version>0</item_version> <item>302</item> <item>456</item> </second> </item> <item> <first>grp_fu_457</first> <second> <count>4</count> <item_version>0</item_version> <item>362</item> <item>408</item> <item>444</item> <item>468</item> </second> </item> <item> <first>grp_fu_466</first> <second> <count>2</count> <item_version>0</item_version> <item>445</item> <item>469</item> </second> </item> <item> <first>grp_fu_472</first> <second> <count>2</count> <item_version>0</item_version> <item>446</item> <item>470</item> </second> </item> <item> <first>grp_fu_486</first> <second> <count>2</count> <item_version>0</item_version> <item>483</item> <item>507</item> </second> </item> <item> <first>icmp4_fu_669</first> <second> <count>1</count> <item_version>0</item_version> <item>218</item> </second> </item> <item> <first>icmp5_fu_1300</first> <second> <count>1</count> <item_version>0</item_version> <item>364</item> </second> </item> <item> <first>icmp6_fu_1459</first> <second> <count>1</count> <item_version>0</item_version> <item>409</item> </second> </item> <item> <first>icmp7_fu_1145</first> <second> <count>1</count> <item_version>0</item_version> <item>335</item> </second> </item> <item> <first>icmp8_fu_839</first> <second> <count>1</count> <item_version>0</item_version> <item>254</item> </second> </item> <item> <first>icmp9_fu_1475</first> <second> <count>1</count> <item_version>0</item_version> <item>413</item> </second> </item> <item> <first>loc_V_trunc_i_i_i_i_fu_1723</first> <second> <count>1</count> <item_version>0</item_version> <item>504</item> </second> </item> <item> <first>op2_assign_1_cast_i_s_fu_621</first> <second> <count>1</count> <item_version>0</item_version> <item>209</item> </second> </item> <item> <first>op2_assign_1_i_fu_615</first> <second> <count>1</count> <item_version>0</item_version> <item>208</item> </second> </item> <item> <first>op2_assign_cast_i_i_s_fu_1063</first> <second> <count>1</count> <item_version>0</item_version> <item>319</item> </second> </item> <item> <first>op2_assign_i_fu_1057</first> <second> <count>1</count> <item_version>0</item_version> <item>318</item> </second> </item> <item> <first>or_cond_i_i_i_i_fu_986</first> <second> <count>1</count> <item_version>0</item_version> <item>278</item> </second> </item> <item> <first>p_0283_cast_i_i_i_i_fu_1083</first> <second> <count>1</count> <item_version>0</item_version> <item>323</item> </second> </item> <item> <first>p_0283_i_i_i_i_fu_1077</first> <second> <count>1</count> <item_version>0</item_version> <item>322</item> </second> </item> <item> <first>p_Result_49_fu_1273</first> <second> <count>1</count> <item_version>0</item_version> <item>356</item> </second> </item> <item> <first>p_Result_55_fu_967</first> <second> <count>1</count> <item_version>0</item_version> <item>275</item> </second> </item> <item> <first>p_Result_56_fu_1659</first> <second> <count>1</count> <item_version>0</item_version> <item>490</item> </second> </item> <item> <first>p_Result_57_fu_1671</first> <second> <count>1</count> <item_version>0</item_version> <item>491</item> </second> </item> <item> <first>p_Result_58_fu_1685</first> <second> <count>1</count> <item_version>0</item_version> <item>493</item> </second> </item> <item> <first>p_Result_59_fu_1704</first> <second> <count>1</count> <item_version>0</item_version> <item>495</item> </second> </item> <item> <first>p_Result_60_fu_1654</first> <second> <count>1</count> <item_version>0</item_version> <item>440</item> </second> </item> <item> <first>p_Result_61_fu_1233</first> <second> <count>1</count> <item_version>0</item_version> <item>349</item> </second> </item> <item> <first>p_Result_62_fu_1392</first> <second> <count>1</count> <item_version>0</item_version> <item>378</item> </second> </item> <item> <first>p_Result_62_i_i_i_s_fu_1611</first> <second> <count>1</count> <item_version>0</item_version> <item>510</item> </second> </item> <item> <first>p_Result_63_fu_1426</first> <second> <count>1</count> <item_version>0</item_version> <item>384</item> </second> </item> <item> <first>p_Result_64_fu_649</first> <second> <count>1</count> <item_version>0</item_version> <item>215</item> </second> </item> <item> <first>p_Result_65_fu_787</first> <second> <count>1</count> <item_version>0</item_version> <item>237</item> </second> </item> <item> <first>p_Result_66_fu_927</first> <second> <count>1</count> <item_version>0</item_version> <item>268</item> </second> </item> <item> <first>p_Result_i_i_i_i_s_fu_1551</first> <second> <count>1</count> <item_version>0</item_version> <item>484</item> </second> </item> <item> <first>p_Result_s_fu_1726</first> <second> <count>1</count> <item_version>0</item_version> <item>505</item> </second> </item> <item> <first>p_demorgan_fu_763</first> <second> <count>1</count> <item_version>0</item_version> <item>233</item> </second> </item> <item> <first>p_op_fu_701</first> <second> <count>1</count> <item_version>0</item_version> <item>223</item> </second> </item> <item> <first>storemerge1_i_i_i_i_phi_fu_351</first> <second> <count>1</count> <item_version>0</item_version> <item>293</item> </second> </item> <item> <first>storemerge27_i_i_i_i_fu_1093</first> <second> <count>1</count> <item_version>0</item_version> <item>325</item> </second> </item> <item> <first>storemerge28_cast22_s_fu_1433</first> <second> <count>1</count> <item_version>0</item_version> <item>390</item> </second> </item> <item> <first>storemerge28_cast_ca_fu_1437</first> <second> <count>1</count> <item_version>0</item_version> <item>392</item> </second> </item> <item> <first>storemerge28_i_i_i_i_phi_fu_370</first> <second> <count>1</count> <item_version>0</item_version> <item>389</item> </second> </item> <item> <first>storemerge_cast_cast_fu_1495</first> <second> <count>1</count> <item_version>0</item_version> <item>427</item> </second> </item> <item> <first>tmp_241_i_i_i_i_fu_553</first> <second> <count>1</count> <item_version>0</item_version> <item>185</item> </second> </item> <item> <first>tmp_242_i_i_i_i_fu_1569</first> <second> <count>1</count> <item_version>0</item_version> <item>486</item> </second> </item> <item> <first>tmp_243_i_i_i_i_fu_1579</first> <second> <count>1</count> <item_version>0</item_version> <item>487</item> </second> </item> <item> <first>tmp_244_i_i_i_i_fu_1583</first> <second> <count>1</count> <item_version>0</item_version> <item>488</item> </second> </item> <item> <first>tmp_245_i_i_i_i_fu_563</first> <second> <count>1</count> <item_version>0</item_version> <item>189</item> </second> </item> <item> <first>tmp_246_i_i_i_i_fu_424</first> <second> <count>1</count> <item_version>0</item_version> <item>452</item> </second> </item> <item> <first>tmp_247_i_i_i_i_fu_569</first> <second> <count>1</count> <item_version>0</item_version> <item>192</item> </second> </item> <item> <first>tmp_248_i_i_i_i_fu_1527</first> <second> <count>1</count> <item_version>0</item_version> <item>442</item> </second> </item> <item> <first>tmp_250_i_i_i_i_fu_575</first> <second> <count>1</count> <item_version>0</item_version> <item>195</item> </second> </item> <item> <first>tmp_251_i_i_i_i_fu_1539</first> <second> <count>1</count> <item_version>0</item_version> <item>460</item> </second> </item> <item> <first>tmp_253_i_i_i_i_fu_1453</first> <second> <count>1</count> <item_version>0</item_version> <item>405</item> </second> </item> <item> <first>tmp_254_i_i_i_i_fu_585</first> <second> <count>1</count> <item_version>0</item_version> <item>199</item> </second> </item> <item> <first>tmp_258_i_i_i_i_fu_419</first> <second> <count>1</count> <item_version>0</item_version> <item>298</item> </second> </item> <item> <first>tmp_259_i_i_i_i_fu_591</first> <second> <count>1</count> <item_version>0</item_version> <item>202</item> </second> </item> <item> <first>tmp_261_i_i_i_i_fu_1029</first> <second> <count>1</count> <item_version>0</item_version> <item>313</item> </second> </item> <item> <first>tmp_263_i_i_i_i_fu_1039</first> <second> <count>1</count> <item_version>0</item_version> <item>315</item> </second> </item> <item> <first>tmp_264_cast_i_i_i_i_fu_1053</first> <second> <count>1</count> <item_version>0</item_version> <item>317</item> </second> </item> <item> <first>tmp_265_cast_i_i_i_i_fu_1067</first> <second> <count>1</count> <item_version>0</item_version> <item>320</item> </second> </item> <item> <first>tmp_266_i_i_i_i_fu_1071</first> <second> <count>1</count> <item_version>0</item_version> <item>321</item> </second> </item> <item> <first>tmp_267_cast_i_i_i_i_fu_611</first> <second> <count>1</count> <item_version>0</item_version> <item>207</item> </second> </item> <item> <first>tmp_268_cast_i_i_i_i_fu_625</first> <second> <count>1</count> <item_version>0</item_version> <item>210</item> </second> </item> <item> <first>tmp_269_i_i_i_i_fu_629</first> <second> <count>1</count> <item_version>0</item_version> <item>211</item> </second> </item> <item> <first>tmp_273_i_i_i_i_fu_1087</first> <second> <count>1</count> <item_version>0</item_version> <item>324</item> </second> </item> <item> <first>tmp_274_i_i_i_i_fu_1107</first> <second> <count>1</count> <item_version>0</item_version> <item>327</item> </second> </item> <item> <first>tmp_275_i_i_i_i_fu_795</first> <second> <count>1</count> <item_version>0</item_version> <item>244</item> </second> </item> <item> <first>tmp_276_cast_i_i_i_i_fu_1113</first> <second> <count>1</count> <item_version>0</item_version> <item>330</item> </second> </item> <item> <first>tmp_278_i_i_i_i_fu_805</first> <second> <count>1</count> <item_version>0</item_version> <item>248</item> </second> </item> <item> <first>tmp_279_i_i_i_i_fu_974</first> <second> <count>1</count> <item_version>0</item_version> <item>276</item> </second> </item> <item> <first>tmp_280_i_i_i_i_fu_980</first> <second> <count>1</count> <item_version>0</item_version> <item>277</item> </second> </item> <item> <first>tmp_281_i_i_i_i_fu_1515</first> <second> <count>1</count> <item_version>0</item_version> <item>433</item> </second> </item> <item> <first>tmp_282_i_i_i_i_fu_998</first> <second> <count>1</count> <item_version>0</item_version> <item>287</item> </second> </item> <item> <first>tmp_283_i_i_i_i_fu_1004</first> <second> <count>1</count> <item_version>0</item_version> <item>288</item> </second> </item> <item> <first>tmp_36_i_fu_541</first> <second> <count>1</count> <item_version>0</item_version> <item>181</item> </second> </item> <item> <first>tmp_37_i_fu_547</first> <second> <count>1</count> <item_version>0</item_version> <item>182</item> </second> </item> <item> <first>tmp_419_i_i_i_i_fu_1010</first> <second> <count>1</count> <item_version>0</item_version> <item>289</item> </second> </item> <item> <first>tmp_504_fu_1601</first> <second> <count>1</count> <item_version>0</item_version> <item>503</item> </second> </item> <item> <first>tmp_505_fu_1749</first> <second> <count>1</count> <item_version>0</item_version> <item>512</item> </second> </item> <item> <first>tmp_506_fu_1561</first> <second> <count>1</count> <item_version>0</item_version> <item>485</item> </second> </item> <item> <first>tmp_507_fu_1682</first> <second> <count>1</count> <item_version>0</item_version> <item>492</item> </second> </item> <item> <first>tmp_510_fu_445</first> <second> <count>1</count> <item_version>0</item_version> <item>457</item> </second> </item> <item> <first>tmp_511_fu_1651</first> <second> <count>1</count> <item_version>0</item_version> <item>439</item> </second> </item> <item> <first>tmp_517_fu_1465</first> <second> <count>1</count> <item_version>0</item_version> <item>412</item> </second> </item> <item> <first>tmp_518_fu_1025</first> <second> <count>1</count> <item_version>0</item_version> <item>312</item> </second> </item> <item> <first>tmp_519_fu_1035</first> <second> <count>1</count> <item_version>0</item_version> <item>314</item> </second> </item> <item> <first>tmp_522_fu_439</first> <second> <count>1</count> <item_version>0</item_version> <item>303</item> </second> </item> <item> <first>tmp_523_fu_635</first> <second> <count>1</count> <item_version>0</item_version> <item>212</item> </second> </item> <item> <first>tmp_524_fu_639</first> <second> <count>1</count> <item_version>0</item_version> <item>213</item> </second> </item> <item> <first>tmp_525_fu_643</first> <second> <count>1</count> <item_version>0</item_version> <item>214</item> </second> </item> <item> <first>tmp_527_fu_655</first> <second> <count>1</count> <item_version>0</item_version> <item>216</item> </second> </item> <item> <first>tmp_528_fu_665</first> <second> <count>1</count> <item_version>0</item_version> <item>217</item> </second> </item> <item> <first>tmp_529_fu_675</first> <second> <count>1</count> <item_version>0</item_version> <item>219</item> </second> </item> <item> <first>tmp_530_fu_679</first> <second> <count>1</count> <item_version>0</item_version> <item>220</item> </second> </item> <item> <first>tmp_531_fu_685</first> <second> <count>1</count> <item_version>0</item_version> <item>221</item> </second> </item> <item> <first>tmp_532_fu_693</first> <second> <count>1</count> <item_version>0</item_version> <item>222</item> </second> </item> <item> <first>tmp_533_fu_707</first> <second> <count>1</count> <item_version>0</item_version> <item>224</item> </second> </item> <item> <first>tmp_534_fu_715</first> <second> <count>1</count> <item_version>0</item_version> <item>225</item> </second> </item> <item> <first>tmp_535_fu_719</first> <second> <count>1</count> <item_version>0</item_version> <item>226</item> </second> </item> <item> <first>tmp_536_fu_723</first> <second> <count>1</count> <item_version>0</item_version> <item>227</item> </second> </item> <item> <first>tmp_537_fu_727</first> <second> <count>1</count> <item_version>0</item_version> <item>228</item> </second> </item> <item> <first>tmp_538_fu_733</first> <second> <count>1</count> <item_version>0</item_version> <item>229</item> </second> </item> <item> <first>tmp_539_fu_743</first> <second> <count>1</count> <item_version>0</item_version> <item>230</item> </second> </item> <item> <first>tmp_540_fu_751</first> <second> <count>1</count> <item_version>0</item_version> <item>231</item> </second> </item> <item> <first>tmp_541_fu_757</first> <second> <count>1</count> <item_version>0</item_version> <item>232</item> </second> </item> <item> <first>tmp_542_fu_769</first> <second> <count>1</count> <item_version>0</item_version> <item>234</item> </second> </item> <item> <first>tmp_543_fu_775</first> <second> <count>1</count> <item_version>0</item_version> <item>235</item> </second> </item> <item> <first>tmp_544_fu_781</first> <second> <count>1</count> <item_version>0</item_version> <item>236</item> </second> </item> <item> <first>tmp_546_fu_1481</first> <second> <count>1</count> <item_version>0</item_version> <item>416</item> </second> </item> <item> <first>tmp_547_fu_1280</first> <second> <count>1</count> <item_version>0</item_version> <item>359</item> </second> </item> <item> <first>tmp_548_fu_1284</first> <second> <count>1</count> <item_version>0</item_version> <item>360</item> </second> </item> <item> <first>tmp_550_fu_1296</first> <second> <count>1</count> <item_version>0</item_version> <item>363</item> </second> </item> <item> <first>tmp_551_fu_1306</first> <second> <count>1</count> <item_version>0</item_version> <item>365</item> </second> </item> <item> <first>tmp_552_fu_1314</first> <second> <count>1</count> <item_version>0</item_version> <item>366</item> </second> </item> <item> <first>tmp_553_fu_1324</first> <second> <count>1</count> <item_version>0</item_version> <item>367</item> </second> </item> <item> <first>tmp_554_fu_1330</first> <second> <count>1</count> <item_version>0</item_version> <item>368</item> </second> </item> <item> <first>tmp_555_fu_1336</first> <second> <count>1</count> <item_version>0</item_version> <item>369</item> </second> </item> <item> <first>tmp_556_fu_1342</first> <second> <count>1</count> <item_version>0</item_version> <item>370</item> </second> </item> <item> <first>tmp_557_fu_1350</first> <second> <count>1</count> <item_version>0</item_version> <item>371</item> </second> </item> <item> <first>tmp_558_fu_1358</first> <second> <count>1</count> <item_version>0</item_version> <item>372</item> </second> </item> <item> <first>tmp_559_fu_1366</first> <second> <count>1</count> <item_version>0</item_version> <item>373</item> </second> </item> <item> <first>tmp_560_fu_1372</first> <second> <count>1</count> <item_version>0</item_version> <item>374</item> </second> </item> <item> <first>tmp_561_fu_1376</first> <second> <count>1</count> <item_version>0</item_version> <item>375</item> </second> </item> <item> <first>tmp_562_fu_1380</first> <second> <count>1</count> <item_version>0</item_version> <item>376</item> </second> </item> <item> <first>tmp_563_fu_1386</first> <second> <count>1</count> <item_version>0</item_version> <item>377</item> </second> </item> <item> <first>tmp_565_fu_1398</first> <second> <count>1</count> <item_version>0</item_version> <item>379</item> </second> </item> <item> <first>tmp_566_fu_1402</first> <second> <count>1</count> <item_version>0</item_version> <item>380</item> </second> </item> <item> <first>tmp_567_fu_1408</first> <second> <count>1</count> <item_version>0</item_version> <item>381</item> </second> </item> <item> <first>tmp_568_fu_1414</first> <second> <count>1</count> <item_version>0</item_version> <item>382</item> </second> </item> <item> <first>tmp_569_fu_1420</first> <second> <count>1</count> <item_version>0</item_version> <item>383</item> </second> </item> <item> <first>tmp_571_fu_1117</first> <second> <count>1</count> <item_version>0</item_version> <item>331</item> </second> </item> <item> <first>tmp_572_fu_1131</first> <second> <count>1</count> <item_version>0</item_version> <item>333</item> </second> </item> <item> <first>tmp_573_fu_1141</first> <second> <count>1</count> <item_version>0</item_version> <item>334</item> </second> </item> <item> <first>tmp_574_fu_1151</first> <second> <count>1</count> <item_version>0</item_version> <item>336</item> </second> </item> <item> <first>tmp_575_fu_1155</first> <second> <count>1</count> <item_version>0</item_version> <item>337</item> </second> </item> <item> <first>tmp_576_fu_1165</first> <second> <count>1</count> <item_version>0</item_version> <item>338</item> </second> </item> <item> <first>tmp_577_fu_1171</first> <second> <count>1</count> <item_version>0</item_version> <item>339</item> </second> </item> <item> <first>tmp_578_fu_1177</first> <second> <count>1</count> <item_version>0</item_version> <item>340</item> </second> </item> <item> <first>tmp_579_fu_1183</first> <second> <count>1</count> <item_version>0</item_version> <item>341</item> </second> </item> <item> <first>tmp_580_fu_1191</first> <second> <count>1</count> <item_version>0</item_version> <item>342</item> </second> </item> <item> <first>tmp_581_fu_1199</first> <second> <count>1</count> <item_version>0</item_version> <item>343</item> </second> </item> <item> <first>tmp_582_fu_1207</first> <second> <count>1</count> <item_version>0</item_version> <item>344</item> </second> </item> <item> <first>tmp_583_fu_1213</first> <second> <count>1</count> <item_version>0</item_version> <item>345</item> </second> </item> <item> <first>tmp_584_fu_1217</first> <second> <count>1</count> <item_version>0</item_version> <item>346</item> </second> </item> <item> <first>tmp_585_fu_1221</first> <second> <count>1</count> <item_version>0</item_version> <item>347</item> </second> </item> <item> <first>tmp_586_fu_1227</first> <second> <count>1</count> <item_version>0</item_version> <item>348</item> </second> </item> <item> <first>tmp_588_fu_1239</first> <second> <count>1</count> <item_version>0</item_version> <item>350</item> </second> </item> <item> <first>tmp_589_fu_1245</first> <second> <count>1</count> <item_version>0</item_version> <item>351</item> </second> </item> <item> <first>tmp_590_fu_1249</first> <second> <count>1</count> <item_version>0</item_version> <item>352</item> </second> </item> <item> <first>tmp_591_fu_1255</first> <second> <count>1</count> <item_version>0</item_version> <item>353</item> </second> </item> <item> <first>tmp_592_fu_1261</first> <second> <count>1</count> <item_version>0</item_version> <item>354</item> </second> </item> <item> <first>tmp_593_fu_1267</first> <second> <count>1</count> <item_version>0</item_version> <item>355</item> </second> </item> <item> <first>tmp_595_fu_801</first> <second> <count>1</count> <item_version>0</item_version> <item>247</item> </second> </item> <item> <first>tmp_596_fu_815</first> <second> <count>1</count> <item_version>0</item_version> <item>250</item> </second> </item> <item> <first>tmp_597_fu_825</first> <second> <count>1</count> <item_version>0</item_version> <item>252</item> </second> </item> <item> <first>tmp_598_fu_835</first> <second> <count>1</count> <item_version>0</item_version> <item>253</item> </second> </item> <item> <first>tmp_599_fu_845</first> <second> <count>1</count> <item_version>0</item_version> <item>255</item> </second> </item> <item> <first>tmp_600_fu_849</first> <second> <count>1</count> <item_version>0</item_version> <item>256</item> </second> </item> <item> <first>tmp_601_fu_859</first> <second> <count>1</count> <item_version>0</item_version> <item>257</item> </second> </item> <item> <first>tmp_602_fu_865</first> <second> <count>1</count> <item_version>0</item_version> <item>258</item> </second> </item> <item> <first>tmp_603_fu_871</first> <second> <count>1</count> <item_version>0</item_version> <item>259</item> </second> </item> <item> <first>tmp_604_fu_877</first> <second> <count>1</count> <item_version>0</item_version> <item>260</item> </second> </item> <item> <first>tmp_605_fu_885</first> <second> <count>1</count> <item_version>0</item_version> <item>261</item> </second> </item> <item> <first>tmp_606_fu_893</first> <second> <count>1</count> <item_version>0</item_version> <item>262</item> </second> </item> <item> <first>tmp_607_fu_901</first> <second> <count>1</count> <item_version>0</item_version> <item>263</item> </second> </item> <item> <first>tmp_608_fu_907</first> <second> <count>1</count> <item_version>0</item_version> <item>264</item> </second> </item> <item> <first>tmp_609_fu_911</first> <second> <count>1</count> <item_version>0</item_version> <item>265</item> </second> </item> <item> <first>tmp_610_fu_915</first> <second> <count>1</count> <item_version>0</item_version> <item>266</item> </second> </item> <item> <first>tmp_611_fu_921</first> <second> <count>1</count> <item_version>0</item_version> <item>267</item> </second> </item> <item> <first>tmp_613_fu_933</first> <second> <count>1</count> <item_version>0</item_version> <item>269</item> </second> </item> <item> <first>tmp_614_fu_939</first> <second> <count>1</count> <item_version>0</item_version> <item>270</item> </second> </item> <item> <first>tmp_615_fu_943</first> <second> <count>1</count> <item_version>0</item_version> <item>271</item> </second> </item> <item> <first>tmp_616_fu_949</first> <second> <count>1</count> <item_version>0</item_version> <item>272</item> </second> </item> <item> <first>tmp_617_fu_955</first> <second> <count>1</count> <item_version>0</item_version> <item>273</item> </second> </item> <item> <first>tmp_618_fu_961</first> <second> <count>1</count> <item_version>0</item_version> <item>274</item> </second> </item> <item> <first>tmp_71_i_fu_601</first> <second> <count>1</count> <item_version>0</item_version> <item>206</item> </second> </item> <item> <first>tmp_71_i_i_i_i_fu_1697</first> <second> <count>1</count> <item_version>0</item_version> <item>494</item> </second> </item> <item> <first>tmp_data_V_fu_507</first> <second> <count>1</count> <item_version>0</item_version> <item>172</item> </second> </item> <item> <first>tmp_i_fu_535</first> <second> <count>1</count> <item_version>0</item_version> <item>180</item> </second> </item> <item> <first>tmp_i_i_i_i_fu_516</first> <second> <count>1</count> <item_version>0</item_version> <item>174</item> </second> </item> <item> <first>tmp_user_V_fu_512</first> <second> <count>1</count> <item_version>0</item_version> <item>173</item> </second> </item> <item> <first>valueTempBuffer_V_fl_phi_fu_381</first> <second> <count>1</count> <item_version>0</item_version> <item>396</item> </second> </item> <item> <first>valueTempBuffer_V_ne_1_phi_fu_332</first> <second> <count>1</count> <item_version>0</item_version> <item>286</item> </second> </item> <item> <first>valueTempBuffer_V_ne_2_phi_fu_341</first> <second> <count>1</count> <item_version>0</item_version> <item>292</item> </second> </item> <item> <first>valueTempBuffer_V_ne_3_phi_fu_399</first> <second> <count>1</count> <item_version>0</item_version> <item>397</item> </second> </item> <item> <first>valueTempBuffer_V_ne_phi_fu_361</first> <second> <count>1</count> <item_version>0</item_version> <item>388</item> </second> </item> <item> <first>valueTemp_fu_809</first> <second> <count>1</count> <item_version>0</item_version> <item>249</item> </second> </item> </dp_fu_nodes_expression> <dp_fu_nodes_module> <count>0</count> <item_version>0</item_version> </dp_fu_nodes_module> <dp_fu_nodes_io> <count>42</count> <item_version>0</item_version> <item> <first>StgValue_104_store_fu_992</first> <second> <count>1</count> <item_version>0</item_version> <item>281</item> </second> </item> <item> <first>StgValue_113_store_fu_1019</first> <second> <count>1</count> <item_version>0</item_version> <item>294</item> </second> </item> <item> <first>StgValue_128_store_fu_1047</first> <second> <count>1</count> <item_version>0</item_version> <item>316</item> </second> </item> <item> <first>StgValue_138_store_fu_1101</first> <second> <count>1</count> <item_version>0</item_version> <item>326</item> </second> </item> <item> <first>StgValue_201_store_fu_1441</first> <second> <count>1</count> <item_version>0</item_version> <item>393</item> </second> </item> <item> <first>StgValue_206_store_fu_1447</first> <second> <count>1</count> <item_version>0</item_version> <item>400</item> </second> </item> <item> <first>StgValue_216_store_fu_1489</first> <second> <count>1</count> <item_version>0</item_version> <item>417</item> </second> </item> <item> <first>StgValue_219_store_fu_1503</first> <second> <count>1</count> <item_version>0</item_version> <item>428</item> </second> </item> <item> <first>StgValue_220_store_fu_1509</first> <second> <count>1</count> <item_version>0</item_version> <item>429</item> </second> </item> <item> <first>StgValue_222_store_fu_1521</first> <second> <count>1</count> <item_version>0</item_version> <item>434</item> </second> </item> <item> <first>StgValue_224_store_fu_1533</first> <second> <count>1</count> <item_version>0</item_version> <item>443</item> </second> </item> <item> <first>StgValue_242_store_fu_1545</first> <second> <count>1</count> <item_version>0</item_version> <item>476</item> </second> </item> <item> <first>StgValue_249_store_fu_1589</first> <second> <count>1</count> <item_version>0</item_version> <item>489</item> </second> </item> <item> <first>StgValue_250_store_fu_1595</first> <second> <count>1</count> <item_version>0</item_version> <item>498</item> </second> </item> <item> <first>StgValue_253_store_fu_1605</first> <second> <count>1</count> <item_version>0</item_version> <item>509</item> </second> </item> <item> <first>StgValue_255_store_fu_1621</first> <second> <count>1</count> <item_version>0</item_version> <item>511</item> </second> </item> <item> <first>StgValue_256_store_fu_1627</first> <second> <count>1</count> <item_version>0</item_version> <item>514</item> </second> </item> <item> <first>StgValue_257_store_fu_1633</first> <second> <count>1</count> <item_version>0</item_version> <item>522</item> </second> </item> <item> <first>StgValue_389_write_fu_300</first> <second> <count>1</count> <item_version>0</item_version> <item>150</item> </second> </item> <item> <first>StgValue_438_store_fu_1717</first> <second> <count>1</count> <item_version>0</item_version> <item>496</item> </second> </item> <item> <first>StgValue_439_write_fu_322</first> <second> <count>1</count> <item_version>0</item_version> <item>497</item> </second> </item> <item> <first>StgValue_444_store_fu_1738</first> <second> <count>1</count> <item_version>0</item_version> <item>506</item> </second> </item> <item> <first>StgValue_445_store_fu_1744</first> <second> <count>1</count> <item_version>0</item_version> <item>508</item> </second> </item> <item> <first>StgValue_447_store_fu_1752</first> <second> <count>1</count> <item_version>0</item_version> <item>513</item> </second> </item> <item> <first>bpf_keyLength_V_load_load_fu_1643</first> <second> <count>1</count> <item_version>0</item_version> <item>176</item> </second> </item> <item> <first>bpf_opCode_V_load_load_fu_527</first> <second> <count>1</count> <item_version>0</item_version> <item>178</item> </second> </item> <item> <first>bpf_valueLengthBuffe_1_load_fu_559</first> <second> <count>1</count> <item_version>0</item_version> <item>186</item> </second> </item> <item> <first>bpf_wordCounter_load_load_fu_499</first> <second> <count>1</count> <item_version>0</item_version> <item>164</item> </second> </item> <item> <first>empty_read_fu_282</first> <second> <count>1</count> <item_version>0</item_version> <item>171</item> </second> </item> <item> <first>flushAck_V_read_read_fu_294</first> <second> <count>1</count> <item_version>0</item_version> <item>122</item> </second> </item> <item> <first>grp_store_fu_413</first> <second> <count>5</count> <item_version>0</item_version> <item>241</item> <item>307</item> <item>422</item> <item>463</item> <item>523</item> </second> </item> <item> <first>grp_store_fu_451</first> <second> <count>2</count> <item_version>0</item_version> <item>306</item> <item>391</item> </second> </item> <item> <first>grp_store_fu_480</first> <second> <count>2</count> <item_version>0</item_version> <item>447</item> <item>471</item> </second> </item> <item> <first>grp_write_fu_308</first> <second> <count>4</count> <item_version>0</item_version> <item>238</item> <item>385</item> <item>441</item> <item>521</item> </second> </item> <item> <first>grp_write_fu_315</first> <second> <count>2</count> <item_version>0</item_version> <item>297</item> <item>432</item> </second> </item> <item> <first>keyLengthBuffer_load_load_fu_522</first> <second> <count>1</count> <item_version>0</item_version> <item>177</item> </second> </item> <item> <first>lastValueWord_load_load_fu_495</first> <second> <count>1</count> <item_version>0</item_version> <item>163</item> </second> </item> <item> <first>p_Val2_29_load_fu_1639</first> <second> <count>1</count> <item_version>0</item_version> <item>175</item> </second> </item> <item> <first>p_Val2_35_load_fu_503</first> <second> <count>1</count> <item_version>0</item_version> <item>165</item> </second> </item> <item> <first>protocol_V_load_load_fu_1647</first> <second> <count>1</count> <item_version>0</item_version> <item>179</item> </second> </item> <item> <first>tmp_nbreadreq_fu_268</first> <second> <count>1</count> <item_version>0</item_version> <item>168</item> </second> </item> <item> <first>valueShift_load_load_fu_581</first> <second> <count>1</count> <item_version>0</item_version> <item>196</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="48" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_mem_port_nodes> <dp_reg_nodes> <count>36</count> <item_version>0</item_version> <item> <first>329</first> <second> <count>1</count> <item_version>0</item_version> <item>286</item> </second> </item> <item> <first>338</first> <second> <count>1</count> <item_version>0</item_version> <item>292</item> </second> </item> <item> <first>348</first> <second> <count>1</count> <item_version>0</item_version> <item>293</item> </second> </item> <item> <first>358</first> <second> <count>1</count> <item_version>0</item_version> <item>388</item> </second> </item> <item> <first>367</first> <second> <count>1</count> <item_version>0</item_version> <item>389</item> </second> </item> <item> <first>378</first> <second> <count>1</count> <item_version>0</item_version> <item>396</item> </second> </item> <item> <first>396</first> <second> <count>1</count> <item_version>0</item_version> <item>397</item> </second> </item> <item> <first>1758</first> <second> <count>1</count> <item_version>0</item_version> <item>163</item> </second> </item> <item> <first>1762</first> <second> <count>1</count> <item_version>0</item_version> <item>165</item> </second> </item> <item> <first>1767</first> <second> <count>1</count> <item_version>0</item_version> <item>168</item> </second> </item> <item> <first>1771</first> <second> <count>1</count> <item_version>0</item_version> <item>172</item> </second> </item> <item> <first>1779</first> <second> <count>1</count> <item_version>0</item_version> <item>174</item> </second> </item> <item> <first>1783</first> <second> <count>1</count> <item_version>0</item_version> <item>178</item> </second> </item> <item> <first>1788</first> <second> <count>1</count> <item_version>0</item_version> <item>185</item> </second> </item> <item> <first>1792</first> <second> <count>1</count> <item_version>0</item_version> <item>189</item> </second> </item> <item> <first>1796</first> <second> <count>1</count> <item_version>0</item_version> <item>192</item> </second> </item> <item> <first>1800</first> <second> <count>1</count> <item_version>0</item_version> <item>195</item> </second> </item> <item> <first>1804</first> <second> <count>1</count> <item_version>0</item_version> <item>199</item> </second> </item> <item> <first>1808</first> <second> <count>1</count> <item_version>0</item_version> <item>202</item> </second> </item> <item> <first>1812</first> <second> <count>1</count> <item_version>0</item_version> <item>211</item> </second> </item> <item> <first>1816</first> <second> <count>1</count> <item_version>0</item_version> <item>237</item> </second> </item> <item> <first>1821</first> <second> <count>1</count> <item_version>0</item_version> <item>244</item> </second> </item> <item> <first>1825</first> <second> <count>1</count> <item_version>0</item_version> <item>278</item> </second> </item> <item> <first>1829</first> <second> <count>1</count> <item_version>0</item_version> <item>298</item> </second> </item> <item> <first>1833</first> <second> <count>1</count> <item_version>0</item_version> <item>303</item> </second> </item> <item> <first>1837</first> <second> <count>1</count> <item_version>0</item_version> <item>327</item> </second> </item> <item> <first>1841</first> <second> <count>1</count> <item_version>0</item_version> <item>384</item> </second> </item> <item> <first>1846</first> <second> <count>1</count> <item_version>0</item_version> <item>405</item> </second> </item> <item> <first>1850</first> <second> <count>1</count> <item_version>0</item_version> <item>409</item> </second> </item> <item> <first>1854</first> <second> <count>1</count> <item_version>0</item_version> <item>413</item> </second> </item> <item> <first>1858</first> <second> <count>1</count> <item_version>0</item_version> <item>452</item> </second> </item> <item> <first>1862</first> <second> <count>1</count> <item_version>0</item_version> <item>457</item> </second> </item> <item> <first>1866</first> <second> <count>1</count> <item_version>0</item_version> <item>460</item> </second> </item> <item> <first>1870</first> <second> <count>1</count> <item_version>0</item_version> <item>488</item> </second> </item> <item> <first>1875</first> <second> <count>1</count> <item_version>0</item_version> <item>503</item> </second> </item> <item> <first>1880</first> <second> <count>1</count> <item_version>0</item_version> <item>507</item> </second> </item> </dp_reg_nodes> <dp_regname_nodes> <count>36</count> <item_version>0</item_version> <item> <first>bpf_opCode_V_load_reg_1783</first> <second> <count>1</count> <item_version>0</item_version> <item>178</item> </second> </item> <item> <first>icmp6_reg_1850</first> <second> <count>1</count> <item_version>0</item_version> <item>409</item> </second> </item> <item> <first>icmp9_reg_1854</first> <second> <count>1</count> <item_version>0</item_version> <item>413</item> </second> </item> <item> <first>lastValueWord_load_reg_1758</first> <second> <count>1</count> <item_version>0</item_version> <item>163</item> </second> </item> <item> <first>or_cond_i_i_i_i_reg_1825</first> <second> <count>1</count> <item_version>0</item_version> <item>278</item> </second> </item> <item> <first>p_Result_61_i_i_i_s_reg_1880</first> <second> <count>1</count> <item_version>0</item_version> <item>507</item> </second> </item> <item> <first>p_Result_63_reg_1841</first> <second> <count>1</count> <item_version>0</item_version> <item>384</item> </second> </item> <item> <first>p_Result_65_reg_1816</first> <second> <count>1</count> <item_version>0</item_version> <item>237</item> </second> </item> <item> <first>p_Val2_35_reg_1762</first> <second> <count>1</count> <item_version>0</item_version> <item>165</item> </second> </item> <item> <first>storemerge1_i_i_i_i_reg_348</first> <second> <count>1</count> <item_version>0</item_version> <item>293</item> </second> </item> <item> <first>storemerge28_i_i_i_i_reg_367</first> <second> <count>1</count> <item_version>0</item_version> <item>389</item> </second> </item> <item> <first>tmp_241_i_i_i_i_reg_1788</first> <second> <count>1</count> <item_version>0</item_version> <item>185</item> </second> </item> <item> <first>tmp_244_i_i_i_i_reg_1870</first> <second> <count>1</count> <item_version>0</item_version> <item>488</item> </second> </item> <item> <first>tmp_245_i_i_i_i_reg_1792</first> <second> <count>1</count> <item_version>0</item_version> <item>189</item> </second> </item> <item> <first>tmp_246_i_i_i_i_reg_1858</first> <second> <count>1</count> <item_version>0</item_version> <item>452</item> </second> </item> <item> <first>tmp_247_i_i_i_i_reg_1796</first> <second> <count>1</count> <item_version>0</item_version> <item>192</item> </second> </item> <item> <first>tmp_250_i_i_i_i_reg_1800</first> <second> <count>1</count> <item_version>0</item_version> <item>195</item> </second> </item> <item> <first>tmp_251_i_i_i_i_reg_1866</first> <second> <count>1</count> <item_version>0</item_version> <item>460</item> </second> </item> <item> <first>tmp_253_i_i_i_i_reg_1846</first> <second> <count>1</count> <item_version>0</item_version> <item>405</item> </second> </item> <item> <first>tmp_254_i_i_i_i_reg_1804</first> <second> <count>1</count> <item_version>0</item_version> <item>199</item> </second> </item> <item> <first>tmp_258_i_i_i_i_reg_1829</first> <second> <count>1</count> <item_version>0</item_version> <item>298</item> </second> </item> <item> <first>tmp_259_i_i_i_i_reg_1808</first> <second> <count>1</count> <item_version>0</item_version> <item>202</item> </second> </item> <item> <first>tmp_269_i_i_i_i_reg_1812</first> <second> <count>1</count> <item_version>0</item_version> <item>211</item> </second> </item> <item> <first>tmp_274_i_i_i_i_reg_1837</first> <second> <count>1</count> <item_version>0</item_version> <item>327</item> </second> </item> <item> <first>tmp_275_i_i_i_i_reg_1821</first> <second> <count>1</count> <item_version>0</item_version> <item>244</item> </second> </item> <item> <first>tmp_504_reg_1875</first> <second> <count>1</count> <item_version>0</item_version> <item>503</item> </second> </item> <item> <first>tmp_510_reg_1862</first> <second> <count>1</count> <item_version>0</item_version> <item>457</item> </second> </item> <item> <first>tmp_522_reg_1833</first> <second> <count>1</count> <item_version>0</item_version> <item>303</item> </second> </item> <item> <first>tmp_data_V_reg_1771</first> <second> <count>1</count> <item_version>0</item_version> <item>172</item> </second> </item> <item> <first>tmp_i_i_i_i_reg_1779</first> <second> <count>1</count> <item_version>0</item_version> <item>174</item> </second> </item> <item> <first>tmp_reg_1767</first> <second> <count>1</count> <item_version>0</item_version> <item>168</item> </second> </item> <item> <first>valueTempBuffer_V_fl_reg_378</first> <second> <count>1</count> <item_version>0</item_version> <item>396</item> </second> </item> <item> <first>valueTempBuffer_V_ne_1_reg_329</first> <second> <count>1</count> <item_version>0</item_version> <item>286</item> </second> </item> <item> <first>valueTempBuffer_V_ne_2_reg_338</first> <second> <count>1</count> <item_version>0</item_version> <item>292</item> </second> </item> <item> <first>valueTempBuffer_V_ne_3_reg_396</first> <second> <count>1</count> <item_version>0</item_version> <item>397</item> </second> </item> <item> <first>valueTempBuffer_V_ne_reg_358</first> <second> <count>1</count> <item_version>0</item_version> <item>388</item> </second> </item> </dp_regname_nodes> <dp_reg_phi> <count>7</count> <item_version>0</item_version> <item> <first>329</first> <second> <count>1</count> <item_version>0</item_version> <item>286</item> </second> </item> <item> <first>338</first> <second> <count>1</count> <item_version>0</item_version> <item>292</item> </second> </item> <item> <first>348</first> <second> <count>1</count> <item_version>0</item_version> <item>293</item> </second> </item> <item> <first>358</first> <second> <count>1</count> <item_version>0</item_version> <item>388</item> </second> </item> <item> <first>367</first> <second> <count>1</count> <item_version>0</item_version> <item>389</item> </second> </item> <item> <first>378</first> <second> <count>1</count> <item_version>0</item_version> <item>396</item> </second> </item> <item> <first>396</first> <second> <count>1</count> <item_version>0</item_version> <item>397</item> </second> </item> </dp_reg_phi> <dp_regname_phi> <count>7</count> <item_version>0</item_version> <item> <first>storemerge1_i_i_i_i_reg_348</first> <second> <count>1</count> <item_version>0</item_version> <item>293</item> </second> </item> <item> <first>storemerge28_i_i_i_i_reg_367</first> <second> <count>1</count> <item_version>0</item_version> <item>389</item> </second> </item> <item> <first>valueTempBuffer_V_fl_reg_378</first> <second> <count>1</count> <item_version>0</item_version> <item>396</item> </second> </item> <item> <first>valueTempBuffer_V_ne_1_reg_329</first> <second> <count>1</count> <item_version>0</item_version> <item>286</item> </second> </item> <item> <first>valueTempBuffer_V_ne_2_reg_338</first> <second> <count>1</count> <item_version>0</item_version> <item>292</item> </second> </item> <item> <first>valueTempBuffer_V_ne_3_reg_396</first> <second> <count>1</count> <item_version>0</item_version> <item>397</item> </second> </item> <item> <first>valueTempBuffer_V_ne_reg_358</first> <second> <count>1</count> <item_version>0</item_version> <item>388</item> </second> </item> </dp_regname_phi> <dp_port_io_nodes class_id="49" tracking_level="0" version="0"> <count>9</count> <item_version>0</item_version> <item class_id="50" tracking_level="0" version="0"> <first>feInput_V_data_V</first> <second> <count>2</count> <item_version>0</item_version> <item> <first>nbreadreq</first> <second> <count>1</count> <item_version>0</item_version> <item>168</item> </second> </item> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>171</item> </second> </item> </second> </item> <item> <first>feInput_V_keep_V</first> <second> <count>2</count> <item_version>0</item_version> <item> <first>nbreadreq</first> <second> <count>1</count> <item_version>0</item_version> <item>168</item> </second> </item> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>171</item> </second> </item> </second> </item> <item> <first>feInput_V_last_V</first> <second> <count>2</count> <item_version>0</item_version> <item> <first>nbreadreq</first> <second> <count>1</count> <item_version>0</item_version> <item>168</item> </second> </item> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>171</item> </second> </item> </second> </item> <item> <first>feInput_V_user_V</first> <second> <count>2</count> <item_version>0</item_version> <item> <first>nbreadreq</first> <second> <count>1</count> <item_version>0</item_version> <item>168</item> </second> </item> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>171</item> </second> </item> </second> </item> <item> <first>flushAck_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>122</item> </second> </item> </second> </item> <item> <first>flushAck_V_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>150</item> </second> </item> </second> </item> <item> <first>keyBuffer_rp_V_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>write</first> <second> <count>2</count> <item_version>0</item_version> <item>432</item> <item>297</item> </second> </item> </second> </item> <item> <first>metadataBuffer_rp_V_s</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>write</first> <second> <count>1</count> <item_version>0</item_version> <item>497</item> </second> </item> </second> </item> <item> <first>valueBuffer_rp_V_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>write</first> <second> <count>4</count> <item_version>0</item_version> <item>441</item> <item>385</item> <item>238</item> <item>521</item> </second> </item> </second> </item> </dp_port_io_nodes> <port2core class_id="51" tracking_level="0" version="0"> <count>5</count> <item_version>0</item_version> <item class_id="52" tracking_level="0" version="0"> <first>5</first> <second>FIFO</second> </item> <item> <first>6</first> <second>FIFO</second> </item> <item> <first>16</first> <second>FIFO</second> </item> <item> <first>17</first> <second>FIFO</second> </item> <item> <first>19</first> <second>FIFO</second> </item> </port2core> <node2core> <count>0</count> <item_version>0</item_version> </node2core> </syndb> </boost_serialization>
with freeType_C.FT_Face, freeType_C.FT_Size; package freetype.face_Size -- -- The face_Size class provides an abstraction layer for the Freetype Size type. -- is type Item is tagged private; type View is access all Item'Class; --------- --- Forge -- procedure destruct (Self : in out Item) is null; -------------- --- Attributes -- function CharSize (Self : access Item; Face : in freeType_C.FT_Face.item; point_Size : in Natural; x_Resolution, y_Resolution : in Natural) return Boolean; -- -- Sets the char size for the current face. -- -- This doesn't guarantee that the size was set correctly. Clients should call 'check Error' for -- more information if this function returns false. If an error does occur the size object isn't modified. -- -- Face: Parent face for this size object. -- point_Size: The face size in points (1/72 inch). -- x_Resolution: The horizontal resolution of the target device. -- y_Resolution: The vertical resolution of the target device. -- -- Returns true if the size has been set. function CharSize (Self : in Item) return Natural; -- Returns the char size in points. -- -- Get the char size for the current face. function Ascender (Self : in Item) return Float; -- Returns the Ascender height. -- -- Gets the global ascender height for the face in pixels. function Descender (Self : in Item) return Float; -- Returns the Descender height. -- -- Gets the global descender height for the face in pixels. function Height (Self : in Item) return Float; -- Returns the height in pixels. -- -- Gets the global face height for the face. -- -- If the face is scalable this returns the height of the global -- bounding box which ensures that any glyph will be less than or -- equal to this height. If the font isn't scalable there is no -- guarantee that glyphs will not be taller than this value. function Width (Self : in Item) return Float; -- Returns the width in pixels. -- -- Gets the global face width for the face. -- -- If the face is scalable this returns the width of the global -- bounding box which ensures that any glyph will be less than or -- equal to this width. If the font isn't scalable this value is -- the max_advance for the face. function Underline (Self : in Item) return Float; -- Returns the underline position in pixels. -- -- Gets the underline position for the face. function Error (Self : in Item) return freeType_C.FT_Error; -- Returns the current error code. -- -- Queries for errors. private type Item is tagged record ftFace : freeType_C.FT_Face.item; -- The current Freetype face that this FTSize object relates to. ftSize : freeType_C.FT_Size.item; -- The freetype Size. Size : Natural := 0; -- The size in points. xResolution, -- The horizontal resolution. yResolution : Natural := 0; -- The vertical resolution. Err : freeType_C.FT_Error := 0; -- Current error code. Zero means no error. end record; end freetype.face_Size;
with Ada.Numerics.Discrete_Random; with Ada.Containers.Vectors; with Ada.Finalization; use Ada.Containers; use Ada.Finalization; with Memory; use Memory; with Util; use Util; -- Base package for benchmarks. package Benchmark is -- An exception that is raised when an invalid argument is -- provided to a benchmark. Invalid_Argument : exception; -- An exception that is raised when an address is out of the -- range of valid addresses. Invalid_Address : exception; -- The base data type for benchmarks. type Benchmark_Type is abstract new Limited_Controlled with private; type Benchmark_Pointer is access all Benchmark_Type'Class; -- Set an argument to the benchmark. -- Benchmarks that have additional arguments should override this -- procedure and call it only if no benchmark-specific arguments were -- recognized. procedure Set_Argument(benchmark : in out Benchmark_Type; arg : in String); -- Set the memory for the benchmark to use. procedure Set_Memory(benchmark : in out Benchmark_Type'Class; mem : in Memory_Pointer); -- Reset the memory and random number generator. procedure Reset(benchmark : in out Benchmark_Type'Class; context : in Natural); -- The body of the benchmark. procedure Run(benchmark : in Benchmark_Type) is abstract; -- Destroy the benchmark. procedure Destroy(benchmark : in out Benchmark_Pointer); private package Random is new Ada.Numerics.Discrete_Random(Natural); package Data_Vectors is new Vectors(Natural, Integer); type Data_Pointer is access all Data_Vectors.Vector; type Benchmark_Type is abstract new Limited_Controlled with record generator : Random.Generator; mem : Memory.Memory_Pointer; data : Data_Pointer := null; spacing : Time_Type := 0; seed : Integer := 15; max_addr : Address_Type := 0; end record; overriding procedure Initialize(benchmark : in out Benchmark_Type); overriding procedure Finalize(benchmark : in out Benchmark_Type); -- Check if argument in arg matches name. -- This will '=' and all folloing characters in arg. function Check_Argument(arg : String; name : String) return Boolean; -- Extract the value from an argument (the part following '='). function Extract_Argument(arg : String) return String; -- Get a random number. function Get_Random(benchmark : Benchmark_Type'Class) return Natural; -- Simulate a memory read and return the integer stored at the address. function Read_Value(benchmark : Benchmark_Type'Class; address : Natural) return Integer; -- Simulate a memory write and set an integer to be stored at the address. procedure Write_Value(benchmark : in Benchmark_Type'Class; address : in Natural; value : in Integer); -- Simulate a memory read. procedure Read(benchmark : in Benchmark_Type'Class; address : in Address_Type; size : in Positive); -- Simulate a memory write. procedure Write(benchmark : in Benchmark_Type'Class; address : in Address_Type; size : in Positive); -- Simulate idle cycles. procedure Idle(benchmark : in Benchmark_Type'Class; cycles : in Time_Type); end Benchmark;
pragma License (Unrestricted); -- BSD 3-Clause -- translated unit from dSFMT (dSFMT-common.h, dSFMT.c) private generic package Ada.Numerics.dSFMT.Generating is -- SSE2 version pragma Preelaborate; procedure do_recursion ( r : aliased out w128_t; a, b : aliased w128_t; lung : aliased in out w128_t) with Convention => Intrinsic; pragma Inline_Always (do_recursion); procedure convert_c0o1 (w : aliased in out w128_t) with Convention => Intrinsic; procedure convert_o0c1 (w : aliased in out w128_t) with Convention => Intrinsic; procedure convert_o0o1 (w : aliased in out w128_t) with Convention => Intrinsic; pragma Inline_Always (convert_c0o1); pragma Inline_Always (convert_o0c1); pragma Inline_Always (convert_o0o1); end Ada.Numerics.dSFMT.Generating;
package body ACO.Drivers.Dummy is overriding procedure Receive_Message_Blocking (This : in out Dummy_Driver; Msg : out ACO.Messages.Message) is begin This.Get_First_Sent (Msg); end Receive_Message_Blocking; overriding procedure Send_Message (This : in out Dummy_Driver; Msg : in ACO.Messages.Message) is begin This.Tx_Buffer.Append (Msg); end Send_Message; overriding procedure Initialize (This : in out Dummy_Driver) is begin This.Tx_Buffer.Clear; end Initialize; overriding procedure Finalize (This : in out Dummy_Driver) is begin This.Tx_Buffer.Clear; end Finalize; overriding function Is_Message_Pending (This : Dummy_Driver) return Boolean is begin return This.Nof_Sent > 0; end Is_Message_Pending; procedure Get_First_Sent (This : in out Dummy_Driver; Msg : out ACO.Messages.Message) is begin if Natural (This.Tx_Buffer.Length) > 0 then Msg := This.Tx_Buffer.First_Element; This.Tx_Buffer.Delete_First; else raise Constraint_Error with "No messages sent"; end if; end Get_First_Sent; function Nof_Sent (This : Dummy_Driver) return Natural is (Natural (This.Tx_Buffer.Length)); overriding function Current_Time (This : Dummy_Driver) return Ada.Real_Time.Time is (This.T_Now); procedure Set_Time (This : in out Dummy_Driver; T : in Ada.Real_Time.Time) is begin This.T_Now := T; end Set_Time; end ACO.Drivers.Dummy;
package body Improved_Trie is function Find_Move_Immediate_Child (Parent : in out Cursor; Element : Element_Type) return Boolean is Tree_Leaf : Trie.Cursor; begin Tree_Leaf := Trie.First_Child(Parent); while Trie.Has_Element(Tree_Leaf) loop if Trie.Element(Tree_Leaf) = Element then Parent:=Tree_Leaf; return True; else Trie.Next_Sibling(Tree_Leaf); end if; end loop; return False; end Find_Move_Immediate_Child; function Find_Immediate_Child (Parent : Cursor; Element : Element_Type) return Cursor is Tree_Leaf : Cursor; begin Tree_Leaf := First_Child(Parent); while Has_Element(Tree_Leaf) loop if Trie.Element(Tree_Leaf) = Element then return Tree_Leaf; else Next_Sibling(Tree_Leaf); end if; end loop; return No_Element; end Find_Immediate_Child; function Add_String (T : in out Tree; Input : String; Address : Integer) return Boolean is Tree_Leaf : Cursor := T.Root; Test_Element : Element_Type; begin Test_Element.B := -1; --Ada.Text_IO.Put_Line("----"); for I in Input'First..Input'Last loop Test_Element.A := Input(I); --Ada.Text_IO.Put_Line(Character'Image(Test_Element.A)); if Find_Move_Immediate_Child(Tree_Leaf, Test_Element) = False then --Ada.Text_IO.Put_Line("Appending " & Character'Image(Test_Element.A)); Append_Child(T, Tree_Leaf, Test_Element); Tree_Leaf := Last_Child(Tree_Leaf); end if; end loop; Test_Element.A := Input(Input'Last); Test_Element.B := Address; if Element(Tree_Leaf).B > -1 then return False; --Duplicate string end if; Replace_Element(T, Tree_Leaf, Test_Element); return True; end Add_String; function Find_String (T : Tree; Input : String) return Integer is Tree_Leaf : Cursor := T.Root; Test_Element : Element_Type; begin for I in 1..Input'Length loop Test_Element.A := Input(I); if Find_Move_Immediate_Child(Tree_Leaf, Test_Element) = False then return -1; end if; end loop; return Element(Tree_Leaf).B; end Find_String; end Improved_Trie;
separate (Ayacc) procedure Print_Statistics is use Text_IO, Parse_Table, Rule_Table, Symbol_Table; begin if Options.Summary then Put_Line(Rule'Image(Last_Rule - First_Rule + 1) & " Productions"); Put_Line(Grammar_Symbol'Image (Last_Symbol(Nonterminal) - First_Symbol(Nonterminal) + 1) & " Nonterminals"); Put_Line(Grammar_Symbol'Image (Last_Symbol(Terminal) - First_Symbol(Terminal) + 1) & " Terminals"); Put_Line(Integer'Image(Number_of_States) & " States"); Put_Line (Integer'Image(Shift_Reduce_Conflicts) & " Shift/Reduce conflicts"); Put_Line (Integer'Image(Reduce_Reduce_Conflicts) & " Reduce/Reduce conflicts"); else if Shift_Reduce_Conflicts /= 0 then Put_Line (Integer'Image(Shift_Reduce_Conflicts) & " Shift/Reduce Conflicts"); end if; if Reduce_Reduce_Conflicts /= 0 then Put_Line (Integer'Image(Reduce_Reduce_Conflicts) & " Reduce/Reduce Conflicts"); end if; end if; end Print_Statistics;
-- Copyright (c) 2019 Maxim Reznik <reznikmm@gmail.com> -- -- SPDX-License-Identifier: MIT -- License-Filename: LICENSE ------------------------------------------------------------- with Server_Test_Proc; with Coroutines.Timeouts; with TCP_Servers; procedure Server_Test is begin Coroutines.Initialize; Coroutines.Timeouts.Initialize; TCP_Servers.Listen_Port (Port => 12345, Run => Server_Test_Proc'Access, Stack => 40_960); end Server_Test;
-------------------------------------------------------------------------------- -- -- -- Copyright (C) 2004, RISC OS Ada Library (RASCAL) developers. -- -- -- -- This library is free software; you can redistribute it and/or -- -- modify it under the terms of the GNU Lesser General Public -- -- License as published by the Free Software Foundation; either -- -- version 2.1 of the License, or (at your option) any later version. -- -- -- -- This library is distributed in the hope that it will be useful, -- -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -- -- Lesser General Public License for more details. -- -- -- -- You should have received a copy of the GNU Lesser General Public -- -- License along with this library; if not, write to the Free Software -- -- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -- -- -- -------------------------------------------------------------------------------- -- @brief ToolboxQuit types and methods. -- $Author$ -- $Date$ -- $Revision$ with RASCAL.Toolbox; use RASCAL.Toolbox; with RASCAL.OS; use RASCAL.OS; with Interfaces.C; use Interfaces.C; with System.Unsigned_Types; use System.Unsigned_Types; package RASCAL.ToolboxQuit is -- -- Raised when the Quit Dialogue is about to be shown to the user. --Type lacks union. -- type Toolbox_Quit_AboutToBeShown is record Header : Toolbox_Event_Header; Show_Type : Integer; end record; pragma Convention (C, Toolbox_Quit_AboutToBeShown); type Toolbox_Quit_AboutToBeShown_Pointer is access Toolbox_Quit_AboutToBeShown; type ATEL_Toolbox_Quit_AboutToBeShown is abstract new Toolbox_EventListener(Toolbox_Event_Quit_AboutToBeShown,-1,-1) with record Event : Toolbox_Quit_AboutToBeShown_Pointer; end record; -- -- Raised when the user clicks on the Cancel action button. -- type Toolbox_Quit_Cancel is record Header : Toolbox_Event_Header; end record; pragma Convention (C, Toolbox_Quit_Cancel); type Toolbox_Quit_Cancel_Pointer is access Toolbox_Quit_Cancel; type ATEL_Toolbox_Quit_Cancel is abstract new Toolbox_EventListener(Toolbox_Event_Quit_Cancel,-1,-1) with record Event : Toolbox_Quit_Cancel_Pointer; end record; -- -- Raised after the Quit object has been closed. -- type Toolbox_Quit_DialogueCompleted is record Header : Toolbox_Event_Header; end record; pragma Convention (C, Toolbox_Quit_DialogueCompleted); type Toolbox_Quit_DialogueCompleted_Pointer is access Toolbox_Quit_DialogueCompleted; type ATEL_Toolbox_Quit_DialogueCompleted is abstract new Toolbox_EventListener(Toolbox_Event_Quit_DialogueCompleted,-1,-1) with record Event : Toolbox_Quit_DialogueCompleted_Pointer; end record; -- -- Raised when the user clicks on the Quit action button. -- type Toolbox_Quit_Quit is record Header : Toolbox_Event_Header; end record; pragma Convention (C, Toolbox_Quit_Quit); type Toolbox_Quit_Quit_Pointer is access Toolbox_Quit_Quit; type ATEL_Toolbox_Quit_Quit is abstract new Toolbox_EventListener(Toolbox_Event_Quit_Quit,-1,-1) with record Event : Toolbox_Quit_Quit_Pointer; end record; -- -- Returns the Wimp id of the underlying window used for the quit dialogue. -- function Get_Window_ID (Quit : Object_ID; Flags: in System.Unsigned_Types.Unsigned := 0) return Object_ID; -- -- Returns the message displayed in the quit dialogue. -- function Get_Message (Quit : Object_ID; Flags: in System.Unsigned_Types.Unsigned := 0) return string; -- -- Returns the title of the Quit dialogue. -- function Get_Title (Quit : Object_ID; Flags: in System.Unsigned_Types.Unsigned := 0) return string; -- -- Sets the message displayed in the quit dialogue. -- procedure Set_Message (Quit : in Object_ID; Message : in string; Flags : in System.Unsigned_Types.Unsigned := 0); -- -- Sets the title of the Quit dialogue. -- procedure Set_Title (Quit : in Object_ID; Title : in string; Flags : in System.Unsigned_Types.Unsigned := 0); -- -- -- procedure Handle(The : in ATEL_Toolbox_Quit_AboutToBeShown) is abstract; -- -- -- procedure Handle(The : in ATEL_Toolbox_Quit_Cancel) is abstract; -- -- -- procedure Handle(The : in ATEL_Toolbox_Quit_DialogueCompleted) is abstract; -- -- -- procedure Handle(The : in ATEL_Toolbox_Quit_Quit) is abstract; end RASCAL.ToolboxQuit;
with NCurses; use NCurses; with Board; use Board; with Ada.exceptions; with Ada.Text_IO; with Ada.Strings.Fixed; use Ada.Strings.Fixed; with GNAT.Command_Line; use GNAT.Command_Line; with GNAT.Sockets; use GNAT.Sockets; procedure Chess is -- pragma Suppress(All_Checks); type Game_Options is (None, Network, Local); procedure Print_and_Clear (Item : in String) with Inline is begin Attribute_On(3); Pretty_Print_Line_Window(Item); Refresh; delay 1.0; Print_Board; end Print_and_Clear; Player_Select_Request : Cordinate_Type; Player_Move_Request : Cordinate_Type; Temp : Byte; Game_Status : Game_Options := None; Port : Port_Type := 0; Is_Host : Boolean := False; -- Address_String : String (1..15) := (others=>' '); Address_String : String := "192.168.1.53"; Client : Socket_Type; Address : Sock_Addr_Type; Channel : Stream_Access; Receiver : Socket_Type; Connection : Socket_Type; Initial_Move : Boolean := True; begin loop case Getopt ("l n h p: i:") is when 'l' => if Game_Status = None then Game_Status := Local; else Ada.Text_IO.Put_Line("Conflicting agument : '-l'"); return; end if; when 'n' => if Game_Status = None then Game_Status := Network; else Ada.Text_IO.Put_Line("Conflicting agument : '-n'"); return; end if; when 'p' => Port := Port_Type'Value(Parameter); when 'h' => Is_Host := True; when 'i' => Move(Parameter, Address_String); when others => exit; end case; end loop; if Game_Status = Network then if (Port = 0 or Address_String = 15*' ') then Ada.Text_IO.Put_Line("Argument Error"); return; end if; if Is_Host then Create_Socket (Receiver); Set_Socket_Option (Socket => Receiver, Option => (Name=>Reuse_Address, Enabled => True)); Bind_Socket (Socket => Receiver, Address => (Family=>Family_Inet, Addr=>Inet_Addr (Address_String), Port=>Port)); Listen_Socket (Socket => Receiver); Accept_Socket (Server => Receiver, Socket => Connection, Address => Address); -- Put_Line("Client connected from " & Image (Address)); Channel := Stream (Connection); else Create_Socket (Client); Address.Addr := Inet_Addr(Address_String); Address.Port := Port; Connect_Socket (Client, Address); Channel := Stream (Client); end if; end if; Init_Scr; Start_Color_Init; Reset_Board; Print_Board; Game_Loop : loop if Initial_Move then Initial_Move := False; if Is_Host then goto HOST_START; end if; end if; Wait_For_Input : loop begin if Game_Status = Network then Get_Variables(Channel); end if; Print_Board; if Is_Winner in 1..2 then Print_and_Clear("Player" & Integer'Image(Is_Winner) & " is the winner"); goto FINISH; end if; exit; exception when others => Print_Board; end; end loop Wait_For_Input; <<HOST_START>> Move_Loop : loop begin Temp := Get_Input; if Temp /= 16#FF# then Player_Select_Request := (Y=>Position(Temp / 2**4), X=>Position(Temp and 16#0F#)); Pretty_Print_Line_Window("Selected " & Character'Val(Character'Pos('A') + Integer(Player_Select_Request.X)) & " -" & Integer'Image(Integer(Player_Select_Request.Y) + 1)); Temp := Get_Input; if Temp /= 16#FF# then Player_Move_Request := (Y=>Position(Temp / 2**4), X=>Position(Temp and 16#0F#)); if Player_Select_Request /= Player_Move_Request then Move(Player_Select_Request, Player_Move_Request); End_Turn; Print_Board; if Game_Status = Network then Set_Variables(Channel); end if; if Is_Winner in 1..2 then Print_and_Clear("Player" & Integer'Image(Is_Winner) & " is the winner"); goto FINISH; end if; exit; else Print_and_Clear("Same Position"); end if; else Print_and_Clear("Input not in range"); end if; else Print_and_Clear("Input not in range"); end if; exception when Collision => Print_and_Clear("Piece in the way"); when Empty_Zone => Print_and_Clear("No piece there"); when Not_Allowed => Print_and_Clear("Move is illegal"); when Error : Others => End_Win; Ada.Text_IO.Put("Unexpected Exception : " & Ada.Exceptions.Exception_Information(Error)); exit; end; end loop Move_Loop; end loop Game_Loop; <<FINISH>> End_Win; end Chess;
with Cairo.PDF; with Cairo.Surface; with Ada.Command_Line; with Ada.Text_IO; with GNAT.OS_Lib; with CUPS.CUPS; procedure Cups.Tests.Main is Tmpfilename : constant String := "MUPP.ps"; WIDTH : constant := 595.0; HEIGHT : constant := 842.0; Surface : Cairo.Cairo_Surface := Cairo.PDF.Create (Filename => Tmpfilename, Width_In_Points => WIDTH, Height_In_Points => HEIGHT); Context : Cairo.Cairo_Context := Cairo.Create (Surface); begin -- Draw Some Text Cairo.Select_Font_Face (Cr => Context, Family => "Arial Black", Slant => Cairo.Cairo_Font_Slant_Normal, Weight => Cairo.Cairo_Font_Weight_Normal); Cairo.Set_Font_Size (Cr => Context, Size => 30.0); Cairo.Show_Text (Cr => Context, Utf8 => Ada.Command_Line.Argument (1)); -- finish up Cairo.Show_Page (Context); Cairo.Destroy (Context); Cairo.Surface.Flush (Surface); Cairo.Surface_Destroy (Surface); Ada.Text_IO.Put_Line (CUPS.GetDefault); Ada.Text_IO.Put_Line (CUPS.PrintFile (CUPS.GetDefault, Tmpfilename, "cairo PS")'Img); end Cups.Tests.Main;
with ARM_Input; package ARM_String is -- -- Ada reference manual formatter (ARM_Form). -- -- This package contains the definition of reading input from a string. -- -- --------------------------------------- -- Copyright 2000, 2011 -- AXE Consultants. All rights reserved. -- P.O. Box 1512, Madison WI 53701 -- E-Mail: randy@rrsoftware.com -- -- ARM_Form is free software: you can redistribute it and/or modify -- it under the terms of the GNU General Public License version 3 -- as published by the Free Software Foundation. -- -- AXE CONSULTANTS MAKES THIS TOOL AND SOURCE CODE AVAILABLE ON AN "AS IS" -- BASIS AND MAKES NO WARRANTY, EXPRESS OR IMPLIED, AS TO THE ACCURACY, -- CAPABILITY, EFFICIENCY, MERCHANTABILITY, OR FUNCTIONING OF THIS TOOL. -- IN NO EVENT WILL AXE CONSULTANTS BE LIABLE FOR ANY GENERAL, -- CONSEQUENTIAL, INDIRECT, INCIDENTAL, EXEMPLARY, OR SPECIAL DAMAGES, -- EVEN IF AXE CONSULTANTS HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -- DAMAGES. -- -- A copy of the GNU General Public License is available in the file -- gpl-3-0.txt in the standard distribution of the ARM_Form tool. -- Otherwise, see <http://www.gnu.org/licenses/>. -- -- If the GPLv3 license is not satisfactory for your needs, a commercial -- use license is available for this tool. Contact Randy at AXE Consultants -- for more information. -- -- --------------------------------------- -- -- Edit History: -- -- 5/15/00 - RLB - Created package. -- 10/18/11 - RLB - Changed to GPLv3 license. type String_Input_Type is new ARM_Input.Input_Type with private; procedure Open (Input_Object : in out String_Input_Type; Text : in String; Text_Name : in String); -- Open an input object for a string (Text), with a name of Text_Name. -- (The name is used for error messages). procedure Close (Input_Object : in out String_Input_Type); -- Close the input object (entity). -- May propagate exceptions from the underlying implementation -- (that is, I/O exceptions). procedure Get_Char (Input_Object : in out String_Input_Type; Char : out Character); -- We represent end of line by Ascii.LF. -- Raises: End_Error when the end of file is reached. -- Not_Valid_Error if Input_Object is not valid (open). procedure Replace_Char (Input_Object : in out String_Input_Type); -- Replaces the last character read (with Get_Char); the next call -- to Get_Char will return it. -- Raises: Not_Valid_Error if Input_Object is not valid (open). function Line_String (Input_Object : in String_Input_Type) return String; -- Returns a string representing the line number and entity. -- Usually used in error messages. -- Raises: Not_Valid_Error if Input_Object is not valid (open). procedure Start_Recording (Input_Object : in out String_Input_Type); -- Start recording all characters read into a local buffer. -- Use this when text needs to be formatted into the output -- file *and* be saved for future use. -- Raises: Not_Valid_Error if Input_Object is not valid (open). procedure Stop_Recording_and_Read_Result (Input_Object : in out String_Input_Type; Result : out String; Len : out Natural); -- Stop recording characters read. Put the result into Result, -- and the number of characters written into Len. -- Raises: Not_Valid_Error if Input_Object is not valid (open). private type String_Input_Type is new ARM_Input.Input_Type with record Is_Valid : Boolean := False; Line_Counter : Natural := 0; Buffer : String(1..4000); Buffer_Len : Natural := 0; Buffer_Index : Natural := 0; -- Last character read from buffer. -- For recording: Recording : Boolean := False; Recording_Start : Natural := 0; -- First character of recorded section. -- Name: Name : String(1..120); Name_Len : Natural; end record; end ARM_String;
-- Standard Ada library specification -- Copyright (c) 2004-2016 AXE Consultants -- Copyright (c) 2004, 2005, 2006 Ada-Europe -- Copyright (c) 2000 The MITRE Corporation, Inc. -- Copyright (c) 1992, 1993, 1994, 1995 Intermetrics, Inc. -- SPDX-License-Identifier: BSD-3-Clause and LicenseRef-AdaReferenceManual --------------------------------------------------------------------------- package Ada.Synchronous_Barriers is pragma Preelaborate(Synchronous_Barriers); subtype Barrier_Limit is Positive range 1 .. implementation_defined; type Synchronous_Barrier (Release_Threshold : Barrier_Limit) is limited private; procedure Wait_For_Release (The_Barrier : in out Synchronous_Barrier; Notified : out Boolean); private -- not specified by the language end Ada.Synchronous_Barriers;
-- This file is generated by SWIG. Please do *not* modify by hand. -- with c_math_c.Vector_3; with interfaces.C; package box2d_c.b2d_Contact is -- Item -- type Item is record Object_A : access box2d_c.Object; Object_B : access box2d_c.Object; Site : aliased c_math_c.Vector_3.Item; end record; -- Items -- type Items is array (interfaces.C.Size_t range <>) of aliased box2d_c.b2d_Contact.Item; -- Pointer -- type Pointer is access all box2d_c.b2d_Contact.Item; -- Pointers -- type Pointers is array (interfaces.C.Size_t range <>) of aliased box2d_c.b2d_Contact.Pointer; -- Pointer_Pointer -- type Pointer_Pointer is access all box2d_c.b2d_Contact.Pointer; function construct return box2d_c.b2d_Contact.Item; private pragma Import (C, construct, "Ada_new_b2d_Contact"); end box2d_c.b2d_Contact;
with openGL.Font; package openGL.Model.text -- -- Provides an abstract model for rendering text. -- is type Item is abstract new Model.item with -- TODO: Make private. record null; end record; type View is access all Item'Class; procedure Text_is (Self : in out Item; Now : in String) is abstract; function Text (Self : in Item) return String is abstract; function Font (Self : in Item) return Font.view is abstract; no_such_Font : exception; end openGL.Model.text;
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- P R J . M A K R -- -- -- -- S p e c -- -- -- -- Copyright (C) 2001-2005, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 2, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING. If not, write -- -- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, -- -- Boston, MA 02110-1301, USA. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- Support for procedure Gnatname -- For arbitrary naming schemes, create or update a project file, -- or create a configuration pragmas file. package Prj.Makr is procedure Make (File_Path : String; Project_File : Boolean; Directories : Argument_List; Name_Patterns : Argument_List; Excluded_Patterns : Argument_List; Foreign_Patterns : Argument_List; Preproc_Switches : Argument_List; Very_Verbose : Boolean); -- Create a project file or a configuration pragmas file -- -- Project_File is the path name of the project file. If the project -- file already exists parse it and keep all the elements that are not -- automatically generated. -- -- Directory_List_File is the path name of a text file that -- contains on each non empty line the path names of the source -- directories for the project file. The source directories -- are relative to the directory of the project file. -- -- File_Name_Patterns is a GNAT.Regexp string pattern such as -- ".*\.ads|.*\.adb" or any other pattern. -- -- A project file (without any sources) is automatically generated -- with the name <project>_naming. It contains a package Naming with -- all the specs and bodies for the project. -- A file containing the source file names is automatically -- generated and used as the Source_File_List for the project file. -- It includes all sources that follow the Foreign_Patterns (except those -- that follow Excluded_Patterns). -- Preproc_switches is a list of optional preprocessor switches -gnatep= -- and -gnateD that are used when invoking the compiler to find the -- unit name and kind. end Prj.Makr;
with Ada.Text_IO; use Ada.Text_IO; procedure Test is begin put('''); end;
-- see OpenUxAS\src\Communications\ZeroMqSenderBase.h with UxAS.Comms.Transport.ZeroMQ_Socket_Configurations; use UxAS.Comms.Transport.ZeroMQ_Socket_Configurations; with ZMQ.Sockets; package UxAS.Comms.Transport.ZeroMQ_Sender is type ZeroMq_Sender_Base is new Transport_Base with private; -- void -- initialize (const std::string& sourceGroup, uint32_t entityId, uint32_t serviceId, SocketConfiguration& zeroMqSocketConfiguration); procedure Initialize (This : in out ZeroMq_Sender_Base; Source_Group : String; Entity_Id : UInt32; Service_Id : UInt32; SocketConfig : ZeroMq_Socket_Configuration) with Pre'Class => Source_Group'Length <= Source_Group_Max_Length; private type ZeroMq_Sender_Base is new Transport_Base with record -- std::string m_sourceGroup; Source_Group : Dynamic_String (Source_Group_Max_Length); -- std::string m_entityIdString; Entity_Id_String : Dynamic_String (Entity_Id_Max_Length); -- std::string m_serviceIdString; Service_Id_String : Dynamic_String (Service_Id_String_Max_Length); -- ZeroMqSocketConfiguration m_zeroMqSocketConfiguration; ZMQ_Socket_Config : ZeroMq_Socket_Configuration; -- std::unique_ptr<zmq::socket_t> m_zmqSocket; ZMQ_Socket : ZMQ.Sockets.Socket; end record; end UxAS.Comms.Transport.ZeroMQ_Sender;
with Ada.Text_IO, Ada.Integer_Text_IO; package body Knights_Tour is type Pair is array(1..2) of Integer; type Pair_Array is array (Positive range <>) of Pair; Pairs: constant Pair_Array (1..8) := ((-2,1),(-1,2),(1,2),(2,1),(2,-1),(1,-2),(-1,-2),(-2,-1)); -- places for the night to go (relative to the current position) function Count_Moves(Board: Tour) return Natural is N: Natural := 0; begin for I in Index loop for J in Index loop if Board(I,J) < Natural'Last then N := N + 1; end if; end loop; end loop; return N; end Count_Moves; function Get_Tour(Start_X, Start_Y: Index; Scene: Tour := Empty) return Tour is Done: Boolean; Move_Count: Natural := Count_Moves(Scene); Visited: Tour; -- Visited(I, J) = 0: not yet visited -- Visited(I, J) = K: visited at the k-th move -- Visited(I, J) = Integer'Last: never visit procedure Visit(X, Y: Index; Move_Number: Positive; Found: out Boolean) is XX, YY: Integer; begin Found := False; Visited(X, Y) := Move_Number; if Move_Number = Move_Count then Found := True; else for P in Pairs'Range loop XX := X + Pairs(P)(1); YY := Y + Pairs(P)(2); if (XX in Index) and then (YY in Index) and then Visited(XX, YY) = 0 then Visit(XX, YY, Move_Number+1, Found); -- recursion if Found then return; -- no need to search further end if; end if; end loop; Visited(X, Y) := 0; -- undo previous mark end if; end Visit; begin Visited := Scene; Visit(Start_X, Start_Y, 1, Done); if not Done then Visited := Scene; end if; return Visited; end Get_Tour; procedure Tour_IO(The_Tour: Tour; Width: Natural := 4) is begin for I in Index loop for J in Index loop if The_Tour(I, J) < Integer'Last then Ada.Integer_Text_IO.Put(The_Tour(I, J), Width); else for W in 1 .. Width-1 loop Ada.Text_IO.Put(" "); end loop; Ada.Text_IO.Put("-"); -- deliberately not visited end if; end loop; Ada.Text_IO.New_Line; end loop; end Tour_IO; end Knights_Tour;
-- SPDX-License-Identifier: Apache-2.0 -- -- Copyright (c) 2018 onox <denkpadje@gmail.com> -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. with GL.Barriers; with GL.Compute; with GL.Types.Compute; with Orka.Rendering.Programs.Modules; package body Orka.Algorithms.Prefix_Sums is function Create_Factory (Location : Resources.Locations.Location_Ptr) return Factory is use Rendering.Programs; begin return (Program_Prefix_Sum => Create_Program (Modules.Create_Module (Location, CS => "algorithms/prefix-sum.comp")), Program_Add => Create_Program (Modules.Create_Module (Location, CS => "algorithms/prefix-sum-add.comp"))); end Create_Factory; function Create_Prefix_Sum (Object : Factory; Length : Positive) return Prefix_Sum'Class is use Rendering.Buffers; use all type Types.Numeric_Type; Work_Group_Count : constant GL.Types.Compute.Dimension_Size_Array := GL.Compute.Max_Compute_Work_Group_Count; Max_Group_Count : constant Natural := Natural (Work_Group_Count (X)); Work_Group_Size : constant GL.Types.Compute.Dimension_Size_Array := Object.Program_Prefix_Sum.Compute_Work_Group_Size; -- Multiply by 4 because the shader processes 4 numbers per invocation Local_Size : constant Natural := 4 * Natural (Work_Group_Size (X)); Padding : constant Boolean := Length rem Local_Size /= 0; Work_Groups : constant Natural := Length / Local_Size + (if Padding then 1 else 0); Sum_Padding : constant Boolean := Work_Groups rem Local_Size /= 0; Sum_Work_Groups : constant Natural := Work_Groups / Local_Size + (if Sum_Padding then 1 else 0); pragma Assert (Work_Groups <= Max_Group_Count); pragma Assert (Sum_Work_Groups <= Max_Group_Count); pragma Assert (Sum_Work_Groups <= Local_Size); -- Support prefix sum of work group totals without recursion begin return Prefix_Sum'(Programs => Object, Length => Length, Work_Groups => Work_Groups, Sum_Work_Groups => Sum_Work_Groups, -- Buffer_1 is the buffer given as a parameter to Compute_Prefix_Sum -- and contains the initial/final values Buffer_2 => Create_Buffer (Flags => (others => False), Kind => UInt_Type, Length => Work_Groups), Buffer_3 => Create_Buffer (Flags => (others => False), Kind => UInt_Type, Length => Sum_Work_Groups), Buffer_4 => Create_Buffer (Flags => (others => False), Kind => UInt_Type, Length => 1)); end Create_Prefix_Sum; procedure Compute_Prefix_Sum (Object : in out Prefix_Sum; Buffer : Rendering.Buffers.Buffer) is use GL.Types; use all type Rendering.Buffers.Indexed_Buffer_Target; procedure Compute_Sum (Buffer_1, Buffer_2 : Rendering.Buffers.Buffer; Work_Groups : Natural) is begin Buffer_1.Bind (Shader_Storage, 0); Buffer_2.Bind (Shader_Storage, 1); GL.Barriers.Memory_Barrier ((Shader_Storage => True, others => False)); GL.Compute.Dispatch_Compute (X => UInt (Work_Groups)); end Compute_Sum; procedure Add (Buffer_1, Buffer_2 : Rendering.Buffers.Buffer; Work_Groups : Natural) is begin Buffer_1.Bind (Shader_Storage, 0); Buffer_2.Bind (Shader_Storage, 1); GL.Barriers.Memory_Barrier ((Shader_Storage => True, others => False)); GL.Compute.Dispatch_Compute (X => UInt (Work_Groups)); end Add; begin -- Phase 1a: Compute prefix sum Object.Programs.Program_Prefix_Sum.Use_Program; Compute_Sum (Buffer, Object.Buffer_2, Object.Work_Groups); -- A prefix sum has been computed per work group. If we have multiple -- groups, then we need to compute offsets and add them to the individual -- prefix sums if Object.Work_Groups > 1 then -- Phase 2a: Apply prefix sum to buffer containing total of each work group -- This will be an exclusive sum, so the first element will be set to zero Compute_Sum (Object.Buffer_2, Object.Buffer_3, Object.Sum_Work_Groups); if Object.Sum_Work_Groups > 1 then -- Phase 3a Compute_Sum (Object.Buffer_3, Object.Buffer_4, 1); -- Buffer_4 is always unused because of the assumption that -- Sum_Work_Groups <= Local_Size so that we only need one work group -- (otherwise we would need to apply the algorithm to Buffer_4 as well) -- Phase 3b: There is no phase 3b because there is only one work group -- Phase 2b: Add offsets to the prefix sums of the totals Object.Programs.Program_Add.Use_Program; Add (Object.Buffer_2, Object.Buffer_3, Object.Work_Groups); else -- Buffer_3 is unused, we can directly use Buffer_2 for the -- offsets (since it's an exclusive sum) Object.Programs.Program_Add.Use_Program; end if; -- Phase 1b: Add offsets to the prefix sums Add (Buffer, Object.Buffer_2, Object.Work_Groups); else -- Buffer_2 is unused, we can directly use Buffer as the final result null; end if; end Compute_Prefix_Sum; end Orka.Algorithms.Prefix_Sums;
with Ada.Text_IO; with Ada.Command_Line; procedure Factors is Number : Positive; Test_Nr : Positive := 1; begin if Ada.Command_Line.Argument_Count /= 1 then Ada.Text_IO.Put (Ada.Text_IO.Standard_Error, "Missing argument!"); Ada.Command_Line.Set_Exit_Status (Ada.Command_Line.Failure); return; end if; Number := Positive'Value (Ada.Command_Line.Argument (1)); Ada.Text_IO.Put ("Factors of" & Positive'Image (Number) & ": "); loop if Number mod Test_Nr = 0 then Ada.Text_IO.Put (Positive'Image (Test_Nr) & ","); end if; exit when Test_Nr ** 2 >= Number; Test_Nr := Test_Nr + 1; end loop; Ada.Text_IO.Put_Line (Positive'Image (Number) & "."); end Factors;
pragma License (Unrestricted); with Ada.Numerics.Complex_Types; with Ada.Text_IO.Complex_IO; package Ada.Complex_Text_IO is new Text_IO.Complex_IO (Numerics.Complex_Types);
-- ----------------------------------------------------------------------------- -- smk, the smart make (http://lionel.draghi.free.fr/smk/) -- © 2018, 2019 Lionel Draghi <lionel.draghi@free.fr> -- SPDX-License-Identifier: APSL-2.0 -- ----------------------------------------------------------------------------- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- http://www.apache.org/licenses/LICENSE-2.0 -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. -- ----------------------------------------------------------------------------- with Smk.Files.File_Lists; with Smk.IO; with Smk.Settings; with Ada.Directories; procedure Smk.Files.Find_Unused (From : in File_Name; -- must be a dir Not_In : in File_Lists.Map; Put_In : in out File_Lists.Map) is use Smk.Files.File_Lists; -- -------------------------------------------------------------------------- procedure Walk_Dir (Dir : in String) is use Ada.Directories; Search : Search_Type; File : Directory_Entry_Type; begin IO.Put_Line ("Start searching new files in " & Dir, Level => IO.Debug); Start_Search (Search, Directory => Dir, Pattern => "*", Filter => (Ordinary_File => True, Directory => True, others => False)); while More_Entries (Search) loop Get_Next_Entry (Search, File); declare Full_Name : constant String := Ada.Directories.Full_Name (File); Simple_Name : constant String := Ada.Directories.Simple_Name (File); begin if Simple_Name = ".." or Simple_Name = "." then IO.Put_Line ("Ignoring " & Simple_Name, Level => IO.Debug); elsif Not_In.Contains (+Full_Name) then IO.Put_Line (Simple_Name & " already known", Level => IO.Debug); else -- A genuine new file: IO.Put_Line ("New file " & Simple_Name, Level => IO.Debug); if not Settings.In_Ignore_List (Simple_Name) then Put_In.Insert (+Full_Name, Create (File => +Full_Name, Role => Unused)); end if; if Kind (File) = Directory then Walk_Dir (Full_Name); -- recursive call end if; end if; end; end loop; end Walk_Dir; begin Walk_Dir (+From); end Smk.Files.Find_Unused;
with Ada.Containers.Ordered_Sets; package kv.avm.Actor_References.Sets is new Ada.Containers.Ordered_Sets(Element_Type => Actor_Reference_Type);
-- -- -- package Tables.Names Copyright (c) Dmitry A. Kazakov -- -- Interface Luebeck -- -- Spring, 2003 -- -- -- -- Last revision : 13:11 14 Sep 2019 -- -- -- -- This library is free software; you can redistribute it and/or -- -- modify it under the terms of the GNU General Public License as -- -- published by the Free Software Foundation; either version 2 of -- -- the License, or (at your option) any later version. This library -- -- is distributed in the hope that it will be useful, but WITHOUT -- -- ANY WARRANTY; without even the implied warranty of -- -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -- -- General Public License for more details. You should have -- -- received a copy of the GNU General Public License along with -- -- this library; if not, write to the Free Software Foundation, -- -- Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -- -- -- -- As a special exception, if other files instantiate generics from -- -- this unit, or you link this unit with other files to produce an -- -- executable, this unit does not by itself cause the resulting -- -- executable to be covered by the GNU General Public License. This -- -- exception does not however invalidate any other reasons why the -- -- executable file might be covered by the GNU Public License. -- --____________________________________________________________________-- -- -- This package defines type Dictionary derived from Table. It has same -- functionality as the base type, but intended for keeping only valid -- case-insensitive names. The case is ignored when matched (Find, -- Get), but kept by the table. Additionally, any non-empty chain of -- characters from the set Blanks is considered equivalent when -- matched. The procedure Check_Spelling is used to check spelling of a -- name before placing it into the table. It may raise Constraint_Error -- to indicate a wrong spelling. The procedure Check_Matched is used to -- check whether the matched keyword is a proper name. It is called -- from Get with Pointer set to the first character following the -- matched name. It returns True if the name fits. Usually an -- implementation checks whether Source (Pointer) is neither a letter -- nor a digit. Check_Matched is never called with Pointer outside -- Source'Range. -- with Ada.Strings.Maps; with Ada.Characters.Latin_1; generic with procedure Check_Spelling (Name : String) is <>; with function Check_Matched (Source : String; Pointer : Integer) return Boolean is <>; Blanks : Ada.Strings.Maps.Character_Set := Ada.Strings.Maps.To_Set (' ' & Ada.Characters.Latin_1.HT); package Tables.Names is type Dictionary is new Table with private; -- -- Add -- Overrides Tables... -- -- Constraint_Error is propagated if Name is spelled incorrectly. -- procedure Add ( Folder : in out Dictionary; Name : String; Data : Tag ); procedure Add ( Folder : in out Dictionary; Name : String; Data : Tag; Offset : out Positive ); -- -- Delete -- Overrides Tables... -- procedure Delete (Folder : in out Dictionary; Name : String); -- -- Find -- Overrides Tables... -- function Find (Folder : Dictionary; Name : String) return Tag; -- -- Get -- Overrides Tables... -- procedure Get ( Source : String; Pointer : in out Integer; Folder : Dictionary; Data : out Tag ); procedure Get ( Source : String; Pointer : in out Integer; Folder : Dictionary; Data : out Tag; Got_It : out Boolean ); -- -- IsIn -- Overrides Tables... -- function IsIn (Folder : Dictionary; Name : String) return Boolean; -- -- Locate -- Overrides Tables... -- function Locate (Folder : Dictionary; Name : String) return Natural; procedure Locate ( Source : String; Pointer : in out Integer; Folder : Dictionary; Offset : out Natural ); -- -- Replace -- Overrides Tables... -- -- Constraint_Error is propagated if Name is spelled incorrectly. -- procedure Replace ( Folder : in out Dictionary; Name : String; Data : Tag ); procedure Replace ( Folder : in out Dictionary; Name : String; Data : Tag; Offset : out Positive ); private pragma Inline (Find); pragma Inline (IsIn); type Dictionary is new Table with null record; -- -- Search -- Overrides Tables... -- function Search (Folder : Dictionary; Name : String) return Integer; end Tables.Names;
-- Copyright (c) 2017 Maxim Reznik <reznikmm@gmail.com> -- -- SPDX-License-Identifier: MIT -- License-Filename: LICENSE ------------------------------------------------------------- with Ada.Containers.Doubly_Linked_Lists; with League.Strings; with Incr.Nodes.Tokens; with Incr.Parsers.Incremental; with Incr.Version_Trees; with Ada_LSP.Ada_Parser_Data; with Ada_LSP.Contexts; with Ada_LSP.Documents; package body Ada_LSP.Completion_Tokens is function "+" (Text : Wide_Wide_String) return League.Strings.Universal_String renames League.Strings.To_Universal_String; package Node_Lists is new Ada.Containers.Doubly_Linked_Lists (Incr.Nodes.Node_Access, Incr.Nodes."="); -------------------------- -- Fill_Completion_List -- -------------------------- overriding procedure Fill_Completion_List (Self : Completion_Handler; Context : Ada_LSP.Completions.Context'Class; Result : in out LSP.Messages.CompletionList) is use Incr.Parsers.Incremental.Parser_Data_Providers; -- use type Incr.Nodes.Node_Access; Provider : constant Ada_LSP.Ada_Parser_Data.Provider_Access := Self.Context.Get_Parser_Data_Provider; Next_Action : constant Action_Table_Access := Provider.Actions; Next_State : constant State_Table_Access := Provider.States; State : Parser_State := 1; Token : constant Incr.Nodes.Tokens.Token_Access := Context.Token; Doc : constant Ada_LSP.Documents.Constant_Document_Access := Context.Document; Start : constant Incr.Nodes.Node_Access := Incr.Nodes.Node_Access (Doc.Start_Of_Stream); Now : constant Incr.Version_Trees.Version := Doc.History.Changing; List : Node_Lists.List; Subtree : Incr.Nodes.Node_Access := Token.Previous_Subtree (Now); begin while Subtree not in Start | null loop List.Prepend (Subtree); Subtree := Subtree.Previous_Subtree (Now); end loop; for Node of List loop State := Next_State (State, Node.Kind); end loop; for J in Incr.Nodes.Node_Kind'(1) .. 108 loop if Next_Action (State, J).Kind /= Error then declare Item : LSP.Messages.CompletionItem; begin Item.label := +Provider.Kind_Image (J); Item.kind := (True, LSP.Messages.Keyword); Result.items.Append (Item); end; end if; end loop; end Fill_Completion_List; end Ada_LSP.Completion_Tokens;
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- W A R N S W -- -- -- -- S p e c -- -- -- -- Copyright (C) 1999-2020, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING3. If not, go to -- -- http://www.gnu.org/licenses for a complete copy of the license. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- This unit contains the routines used to handle setting of warning options package Warnsw is ------------------- -- Warning Flags -- ------------------- -- These flags are activated or deactivated by -gnatw switches and control -- whether warnings of a given class will be generated or not. -- Note: most of these flags are still in opt, but the plan is to move them -- here as time goes by. And in fact a really nice idea would be to put -- them all in a Warn_Record so that they would be easy to save/restore. Warn_On_Anonymous_Allocators : Boolean := False; -- Warn when allocators for anonymous access types are present, which, -- although not illegal in Ada, may be confusing to users due to how -- accessibility checks get generated. Off by default, modified by use -- of -gnatw_a/_A and set as part of -gnatwa. Warn_On_Late_Primitives : Boolean := False; -- Warn when tagged type public primitives are defined after its private -- extensions. Warn_On_Unknown_Compile_Time_Warning : Boolean := True; -- Warn on a pragma Compile_Time_Warning whose condition has a value that -- is not known at compile time. Warn_On_Overridden_Size : Boolean := False; -- Warn when explicit record component clause or array component_size -- clause specifies a size that overrides a size for the type which was -- set with an explicit size clause. Off by default, modified by use of -- -gnatw.s/.S (but not -gnatwa). Warn_On_Questionable_Layout : Boolean := False; -- Warn when default layout of a record type is questionable for run-time -- efficiency reasons and would be improved by reordering the components. -- Off by default, modified by use of -gnatw.q/.Q (but not -gnatwa). -- WARNING: There is a matching C declaration of this variable in fe.h Warn_On_Record_Holes : Boolean := False; -- Warn when explicit record component clauses leave uncovered holes (gaps) -- in a record layout. Off by default, set by -gnatw.h (but not -gnatwa). Warn_On_Component_Order : Boolean := False; -- Warn when record component clauses are out of order with respect to the -- component declarations, or if the memory layout is out of order with -- respect to component declarations and clauses. Off by default, set by -- -gnatw_r (but not -gnatwa). Warn_On_Size_Alignment : Boolean := True; -- Warn when explicit Size and Alignment clauses are given for a type, and -- the size is not a multiple of the alignment. Off by default, modified -- by use of -gnatw.z/.Z and set as part of -gnatwa. Warn_On_Standard_Redefinition : Boolean := False; -- Warn when a program defines an identifier that matches a name in -- Standard. Off by default, modified by use of -gnatw.k/.K (but not -- by -gnatwa). ----------------------------------- -- Saving and Restoring Warnings -- ----------------------------------- -- Type used to save and restore warnings type Warning_Record is record Address_Clause_Overlay_Warnings : Boolean; Check_Unreferenced : Boolean; Check_Unreferenced_Formals : Boolean; Check_Withs : Boolean; Constant_Condition_Warnings : Boolean; Elab_Info_Messages : Boolean; Elab_Warnings : Boolean; Implementation_Unit_Warnings : Boolean; Ineffective_Inline_Warnings : Boolean; List_Body_Required_Info : Boolean; List_Inherited_Aspects : Boolean; No_Warn_On_Non_Local_Exception : Boolean; Warning_Doc_Switch : Boolean; Warn_On_Ada_2005_Compatibility : Boolean; Warn_On_Ada_2012_Compatibility : Boolean; Warn_On_All_Unread_Out_Parameters : Boolean; Warn_On_Anonymous_Allocators : Boolean; Warn_On_Assertion_Failure : Boolean; Warn_On_Assumed_Low_Bound : Boolean; Warn_On_Atomic_Synchronization : Boolean; Warn_On_Bad_Fixed_Value : Boolean; Warn_On_Biased_Representation : Boolean; Warn_On_Constant : Boolean; Warn_On_Deleted_Code : Boolean; Warn_On_Dereference : Boolean; Warn_On_Export_Import : Boolean; Warn_On_Hiding : Boolean; Warn_On_Late_Primitives : Boolean; Warn_On_Modified_Unread : Boolean; Warn_On_No_Value_Assigned : Boolean; Warn_On_Non_Local_Exception : Boolean; Warn_On_Object_Renames_Function : Boolean; Warn_On_Obsolescent_Feature : Boolean; Warn_On_Overlap : Boolean; Warn_On_Overridden_Size : Boolean; Warn_On_Parameter_Order : Boolean; Warn_On_Questionable_Layout : Boolean; Warn_On_Questionable_Missing_Parens : Boolean; Warn_On_Record_Holes : Boolean; Warn_On_Component_Order : Boolean; Warn_On_Redundant_Constructs : Boolean; Warn_On_Reverse_Bit_Order : Boolean; Warn_On_Size_Alignment : Boolean; Warn_On_Standard_Redefinition : Boolean; Warn_On_Suspicious_Contract : Boolean; Warn_On_Suspicious_Modulus_Value : Boolean; Warn_On_Unchecked_Conversion : Boolean; Warn_On_Unknown_Compile_Time_Warning : Boolean; Warn_On_Unordered_Enumeration_Type : Boolean; Warn_On_Unrecognized_Pragma : Boolean; Warn_On_Unrepped_Components : Boolean; Warn_On_Warnings_Off : Boolean; end record; function Save_Warnings return Warning_Record; -- Returns current settingh of warnings procedure Restore_Warnings (W : Warning_Record); -- Restores current settings of warning flags from W ----------------- -- Subprograms -- ----------------- function Set_Warning_Switch (C : Character) return Boolean; -- This function sets the warning switch or switches corresponding to the -- given character. It is used to process a -gnatw switch on the command -- line, or a character in a string literal in pragma Warnings. Returns -- True for valid warning character C, False for invalid character. function Set_Dot_Warning_Switch (C : Character) return Boolean; -- This function sets the warning switch or switches corresponding to the -- given character preceded by a dot. Used to process a -gnatw. switch on -- the command line or .C in a string literal in pragma Warnings. Returns -- True for valid warning character C, False for invalid character. function Set_Underscore_Warning_Switch (C : Character) return Boolean; -- This function sets the warning switch or switches corresponding to the -- given character preceded by an underscore. Used to process a -gnatw_ -- switch on the command line or _C in a string literal in pragma Warnings. -- Returns True for valid warnings character C, False for invalid -- character. procedure Set_GNAT_Mode_Warnings; -- This is called in -gnatg mode to set the warnings for gnat mode. It is -- also used to set the proper warning statuses for -gnatw.g. Note that -- this set of warnings is neither a subset nor a superset of -gnatwa, it -- enables warnings that are not included in -gnatwa and disables warnings -- that are included in -gnatwa (such as Warn_On_Implementation_Units, that -- we clearly want to be False for units built with -gnatg). end Warnsw;
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- P A R . C H 2 -- -- -- -- B o d y -- -- -- -- Copyright (C) 1992-2005, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 2, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING. If not, write -- -- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, -- -- Boston, MA 02110-1301, USA. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ pragma Style_Checks (All_Checks); -- Turn off subprogram body ordering check. Subprograms are in order -- by RM section rather than alphabetical separate (Par) package body Ch2 is -- Local functions, used only in this chapter procedure Scan_Pragma_Argument_Association (Identifier_Seen : in out Boolean; Association : out Node_Id); -- Scans out a pragma argument association. Identifier_Seen is true on -- entry if a previous association had an identifier, and gets set True if -- the scanned association has an identifier (this is used to check the -- rule that no associations without identifiers can follow an association -- which has an identifier). The result is returned in Association. --------------------- -- 2.3 Identifier -- --------------------- -- IDENTIFIER ::= LETTER {[UNDERLINE] LETTER_OR_DIGIT} -- LETTER_OR_DIGIT ::= IDENTIFIER_LETTER | DIGIT -- An IDENTIFIER shall not be a reserved word -- Error recovery: can raise Error_Resync (cannot return Error) function P_Identifier (C : Id_Check := None) return Node_Id is Ident_Node : Node_Id; begin -- All set if we do indeed have an identifier if Token = Tok_Identifier then -- Ada 2005 (AI-284): Compiling in Ada95 mode we warn that INTERFACE, -- OVERRIDING, and SYNCHRONIZED are new reserved words. if Ada_Version = Ada_95 and then Warn_On_Ada_2005_Compatibility then if Token_Name = Name_Overriding or else Token_Name = Name_Synchronized or else (Token_Name = Name_Interface and then Prev_Token /= Tok_Pragma) then Error_Msg_N ("& is a reserved word in Ada 2005?", Token_Node); end if; end if; Ident_Node := Token_Node; Scan; -- past Identifier return Ident_Node; -- If we have a reserved identifier, manufacture an identifier with -- a corresponding name after posting an appropriate error message elsif Is_Reserved_Identifier (C) then Scan_Reserved_Identifier (Force_Msg => False); Ident_Node := Token_Node; Scan; -- past the node return Ident_Node; -- Otherwise we have junk that cannot be interpreted as an identifier else T_Identifier; -- to give message raise Error_Resync; end if; end P_Identifier; -------------------------- -- 2.3 Letter Or Digit -- -------------------------- -- Parsed by P_Identifier (2.3) -------------------------- -- 2.4 Numeric Literal -- -------------------------- -- NUMERIC_LITERAL ::= DECIMAL_LITERAL | BASED_LITERAL -- Numeric literal is returned by the scanner as either -- Tok_Integer_Literal or Tok_Real_Literal ---------------------------- -- 2.4.1 Decimal Literal -- ---------------------------- -- DECIMAL_LITERAL ::= NUMERAL [.NUMERAL] [EXPONENT] -- Handled by scanner as part of numeric lIteral handing (see 2.4) -------------------- -- 2.4.1 Numeral -- -------------------- -- NUMERAL ::= DIGIT {[UNDERLINE] DIGIT} -- Handled by scanner as part of numeric literal handling (see 2.4) --------------------- -- 2.4.1 Exponent -- --------------------- -- EXPONENT ::= E [+] NUMERAL | E - NUMERAL -- Handled by scanner as part of numeric literal handling (see 2.4) -------------------------- -- 2.4.2 Based Literal -- -------------------------- -- BASED_LITERAL ::= -- BASE # BASED_NUMERAL [.BASED_NUMERAL] # [EXPONENT] -- Handled by scanner as part of numeric literal handling (see 2.4) ----------------- -- 2.4.2 Base -- ----------------- -- BASE ::= NUMERAL -- Handled by scanner as part of numeric literal handling (see 2.4) -------------------------- -- 2.4.2 Based Numeral -- -------------------------- -- BASED_NUMERAL ::= -- EXTENDED_DIGIT {[UNDERLINE] EXTENDED_DIGIT} -- Handled by scanner as part of numeric literal handling (see 2.4) --------------------------- -- 2.4.2 Extended Digit -- --------------------------- -- EXTENDED_DIGIT ::= DIGIT | A | B | C | D | E | F -- Handled by scanner as part of numeric literal handling (see 2.4) ---------------------------- -- 2.5 Character Literal -- ---------------------------- -- CHARACTER_LITERAL ::= ' GRAPHIC_CHARACTER ' -- Handled by the scanner and returned as Tok_Character_Literal ------------------------- -- 2.6 String Literal -- ------------------------- -- STRING LITERAL ::= "{STRING_ELEMENT}" -- Handled by the scanner and returned as Tok_Character_Literal -- or if the string looks like an operator as Tok_Operator_Symbol. ------------------------- -- 2.6 String Element -- ------------------------- -- STRING_ELEMENT ::= "" | non-quotation_mark_GRAPHIC_CHARACTER -- A STRING_ELEMENT is either a pair of quotation marks ("), -- or a single GRAPHIC_CHARACTER other than a quotation mark. -- Handled by scanner as part of string literal handling (see 2.4) ------------------ -- 2.7 Comment -- ------------------ -- A COMMENT starts with two adjacent hyphens and extends up to the -- end of the line. A COMMENT may appear on any line of a program. -- Handled by the scanner which simply skips past encountered comments ----------------- -- 2.8 Pragma -- ----------------- -- PRAGMA ::= pragma IDENTIFIER -- [(PRAGMA_ARGUMENT_ASSOCIATION {, PRAGMA_ARGUMENT_ASSOCIATION})]; -- The caller has checked that the initial token is PRAGMA -- Error recovery: cannot raise Error_Resync -- One special piece of processing is needed in this routine. As described -- in the section on "Handling semicolon used in place of IS" in module -- Parse, the parser detects the case of missing subprogram bodies to -- allow recovery from this syntactic error. Pragma INTERFACE (and, for -- Ada 95, pragma IMPORT) can appear in place of the body. The parser must -- recognize the use of these two pragmas in this context, otherwise it -- will think there are missing bodies, and try to change ; to IS, when -- in fact the bodies ARE present, supplied by these pragmas. function P_Pragma return Node_Id is Interface_Check_Required : Boolean := False; -- Set True if check of pragma INTERFACE is required Import_Check_Required : Boolean := False; -- Set True if check of pragma IMPORT is required Arg_Count : Int := 0; -- Number of argument associations processed Identifier_Seen : Boolean := False; -- Set True if an identifier is encountered for a pragma argument. Used -- to check that there are no more arguments without identifiers. Pragma_Node : Node_Id; Pragma_Name : Name_Id; Semicolon_Loc : Source_Ptr; Ident_Node : Node_Id; Assoc_Node : Node_Id; Result : Node_Id; procedure Skip_Pragma_Semicolon; -- Skip past semicolon at end of pragma --------------------------- -- Skip_Pragma_Semicolon -- --------------------------- procedure Skip_Pragma_Semicolon is begin if Token /= Tok_Semicolon then T_Semicolon; Resync_Past_Semicolon; else Scan; -- past semicolon end if; end Skip_Pragma_Semicolon; -- Start of processing for P_Pragma begin Pragma_Node := New_Node (N_Pragma, Token_Ptr); Scan; -- past PRAGMA Pragma_Name := Token_Name; if Style_Check then Style.Check_Pragma_Name; end if; -- Ada 2005 (AI-284): INTERFACE is a new reserved word but it is -- allowed as a pragma name. if Ada_Version >= Ada_05 and then Token = Tok_Interface then Pragma_Name := Name_Interface; Ident_Node := Token_Node; Scan; -- past INTERFACE else Ident_Node := P_Identifier; Delete_Node (Ident_Node); end if; Set_Chars (Pragma_Node, Pragma_Name); -- See if special INTERFACE/IMPORT check is required if SIS_Entry_Active then Interface_Check_Required := (Pragma_Name = Name_Interface); Import_Check_Required := (Pragma_Name = Name_Import); else Interface_Check_Required := False; Import_Check_Required := False; end if; -- Scan arguments. We assume that arguments are present if there is -- a left paren, or if a semicolon is missing and there is another -- token on the same line as the pragma name. if Token = Tok_Left_Paren or else (Token /= Tok_Semicolon and then not Token_Is_At_Start_Of_Line) then Set_Pragma_Argument_Associations (Pragma_Node, New_List); T_Left_Paren; loop Arg_Count := Arg_Count + 1; Scan_Pragma_Argument_Association (Identifier_Seen, Assoc_Node); if Arg_Count = 2 and then (Interface_Check_Required or else Import_Check_Required) then -- Here is where we cancel the SIS active status if this pragma -- supplies a body for the currently active subprogram spec. if Nkind (Expression (Assoc_Node)) in N_Direct_Name and then Chars (Expression (Assoc_Node)) = Chars (SIS_Labl) then SIS_Entry_Active := False; end if; end if; Append (Assoc_Node, Pragma_Argument_Associations (Pragma_Node)); exit when Token /= Tok_Comma; Scan; -- past comma end loop; -- If we have := for pragma Debug, it is worth special casing -- the error message (it is easy to think of pragma Debug as -- taking a statement, and an assignment statement is the most -- likely candidate for this error) if Token = Tok_Colon_Equal and then Pragma_Name = Name_Debug then Error_Msg_SC ("argument for pragma Debug must be procedure call"); Resync_To_Semicolon; -- Normal case, we expect a right paren here else T_Right_Paren; end if; end if; Semicolon_Loc := Token_Ptr; -- Now we have two tasks left, we need to scan out the semicolon -- following the pragma, and we have to call Par.Prag to process -- the pragma. Normally we do them in this order, however, there -- is one exception namely pragma Style_Checks where we like to -- skip the semicolon after processing the pragma, since that way -- the style checks for the scanning of the semicolon follow the -- settings of the pragma. -- You might think we could just unconditionally do things in -- the opposite order, but there are other pragmas, notably the -- case of pragma Source_File_Name, which assume the semicolon -- is already scanned out. if Chars (Pragma_Node) = Name_Style_Checks then Result := Par.Prag (Pragma_Node, Semicolon_Loc); Skip_Pragma_Semicolon; return Result; else Skip_Pragma_Semicolon; return Par.Prag (Pragma_Node, Semicolon_Loc); end if; exception when Error_Resync => Resync_Past_Semicolon; return Error; end P_Pragma; -- This routine is called if a pragma is encountered in an inappropriate -- position, the pragma is scanned out and control returns to continue. -- The caller has checked that the initial token is pragma -- Error recovery: cannot raise Error_Resync procedure P_Pragmas_Misplaced is begin while Token = Tok_Pragma loop Error_Msg_SC ("pragma not allowed here"); Discard_Junk_Node (P_Pragma); end loop; end P_Pragmas_Misplaced; -- This function is called to scan out an optional sequence of pragmas. -- If no pragmas are found, then No_List is returned. -- Error recovery: Cannot raise Error_Resync function P_Pragmas_Opt return List_Id is L : List_Id; begin if Token = Tok_Pragma then L := New_List; P_Pragmas_Opt (L); return L; else return No_List; end if; end P_Pragmas_Opt; -- This procedure is called to scan out an optional sequence of pragmas. -- Any pragmas found are appended to the list provided as an argument. -- Error recovery: Cannot raise Error_Resync procedure P_Pragmas_Opt (List : List_Id) is P : Node_Id; begin while Token = Tok_Pragma loop P := P_Pragma; if Chars (P) = Name_Assert or else Chars (P) = Name_Debug then Error_Msg_Name_1 := Chars (P); Error_Msg_N ("pragma% must be in declaration/statement context", P); else Append (P, List); end if; end loop; end P_Pragmas_Opt; -------------------------------------- -- 2.8 Pragma_Argument Association -- -------------------------------------- -- PRAGMA_ARGUMENT_ASSOCIATION ::= -- [pragma_argument_IDENTIFIER =>] NAME -- | [pragma_argument_IDENTIFIER =>] EXPRESSION -- Error recovery: cannot raise Error_Resync procedure Scan_Pragma_Argument_Association (Identifier_Seen : in out Boolean; Association : out Node_Id) is Scan_State : Saved_Scan_State; Identifier_Node : Node_Id; begin Association := New_Node (N_Pragma_Argument_Association, Token_Ptr); Set_Chars (Association, No_Name); if Token = Tok_Identifier then Identifier_Node := Token_Node; Save_Scan_State (Scan_State); -- at Identifier Scan; -- past Identifier if Token = Tok_Arrow then Identifier_Seen := True; Scan; -- past arrow Set_Chars (Association, Chars (Identifier_Node)); Delete_Node (Identifier_Node); -- Case of argument with no identifier else Restore_Scan_State (Scan_State); -- to Identifier if Identifier_Seen then Error_Msg_SC ("|pragma argument identifier required here ('R'M' 2.8(4))"); end if; end if; end if; Set_Expression (Association, P_Expression); end Scan_Pragma_Argument_Association; end Ch2;
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- S E M _ D I S T -- -- -- -- S p e c -- -- -- -- $Revision$ -- -- -- Copyright (C) 1992-2000 Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 2, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING. If not, write -- -- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, -- -- MA 02111-1307, USA. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- Semantic processing for distribution annex facilities with Types; use Types; package Sem_Dist is procedure Add_Stub_Constructs (N : Node_Id); -- Create the stubs constructs for a remote call interface package -- specification or body or for a shared passive specification. For -- caller stubs, expansion takes place directly in the specification and -- no additional compilation unit is created. function Is_All_Remote_Call (N : Node_Id) return Boolean; -- Check whether a function or procedure call should be expanded into -- a remote call, because the entity is declared in a package decl that -- is not currently in scope, and the proper pragmas apply. procedure Process_Partition_Id (N : Node_Id); -- Replace attribute reference with call to runtime function. The result -- is converted to the context type, because the attribute yields a -- universal integer value. procedure Process_Remote_AST_Attribute (N : Node_Id; New_Type : Entity_Id); -- Given N, an access attribute reference node whose prefix is a -- remote subprogram, rewrite N with a call to a conversion function -- whose return type is New_Type. procedure Process_Remote_AST_Declaration (N : Node_Id); -- Given N, an access to subprogram type declaration node in RCI or -- remote types unit, build a new record (fat pointer) type declaration -- using the old Defining_Identifier of N and a link to the old -- declaration node N whose Defining_Identifier is changed. -- We also construct declarations of two subprograms in the unit -- specification which handle remote access to subprogram type -- (fat pointer) dereference and the unit receiver that handles -- remote calls (from remote access to subprogram type values.) function Remote_AST_E_Dereference (P : Node_Id) return Boolean; -- If the prefix of an explicit dereference is a record type that -- represent the fat pointer for an Remote access to subprogram, in -- the context of a call, rewrite the enclosing call node into a -- remote call, the first actual of which is the fat pointer. Return -- true if the context is correct and the transformation took place. function Remote_AST_I_Dereference (P : Node_Id) return Boolean; -- If P is a record type that represents the fat pointer for a remote -- access to subprogram, and P is the prefix of a call, insert an -- explicit dereference and perform the transformation described for -- the previous function. function Remote_AST_Null_Value (N : Node_Id; Typ : Entity_Id) return Boolean; -- If N is a null value and Typ a remote access to subprogram type, -- this function will check if null needs to be replaced with an -- aggregate and will return True in this case. Otherwise, it will -- return False. function Get_Subprogram_Id (E : Entity_Id) return Int; -- Given a subprogram defined in a RCI package, get its subprogram id -- which will be used for remote calls. function Package_Specification_Of_Scope (E : Entity_Id) return Node_Id; -- Return the N_Package_Specification corresponding to a scope E end Sem_Dist;
package body IRC is Client : Socket_Type; Channel : Stream_Access; Current_Line : Unbounded_String; procedure Connect_To (Server : Sock_Addr_Type) is begin Create_Socket (Client); Connect_Socket (Client, Server); Channel := Stream (Client); end Connect_To; function Get_Line return Unbounded_String is Line : Unbounded_String; Char : Character; begin loop Char := Character'Input (Channel); if Char = ASCII.LF then Current_Line := Line; return Line; elsif Char /= ASCII.CR then Append (Line, Char); end if; end loop; end Get_Line; procedure Put_Line (Line : String) is CRLF : constant String := ASCII.CR & ASCII.LF; begin String'Write (Channel, Line & CRLF); end Put_Line; procedure Set_Nick (Nick : String) is begin Put_Line ("NICK " & Nick); Put_Line ("USER " & Nick & " 0 * :Byron IRC bot, https://github.com/gsmnv/Byron"); end Set_Nick; procedure Join_Channel (Chan : String) is begin Put_Line ("JOIN " & Chan); end Join_Channel; function Get_Message return Message is Msg : Message; Count : Integer := 1; begin for I in 1 .. Length (Current_Line) loop if Count > 3 then Append (Msg.Content, Element (Current_Line, I)); elsif Element (Current_Line, I) /= ' ' then if Count = 1 then Append (Msg.Sender, Element (Current_Line, I)); elsif Count = 2 then Append (Msg.Mode, Element (Current_Line, I)); elsif Count = 3 then Append (Msg.Channel, Element (Current_Line, I)); end if; else Count := Count + 1; end if; end loop; if Element (Current_Line, 1) = ':' then -- Remove ':' from Message Replace_Slice (Msg.Sender, 1, 1, ""); Replace_Slice (Msg.Content, 1, 1, ""); -- Check if private message if Element (Msg.Channel, 1) /= '#' then Msg.Channel := Get_Nick (Msg); end if; end if; return Msg; end Get_Message; procedure Put_Message (Msg : Message) is begin Put_Line (To_String (Msg.Mode & " " & Msg.Channel & " :" & Msg.Content)); end Put_Message; procedure Pong is Line : constant String := To_String (Current_Line); begin if Line (1 .. 4) = "PING" then Put_Line ("PONG " & Line (6 .. Line'Length)); else null; end if; end Pong; function Get_Nick (Msg : Message) return Unbounded_String is Nick : Unbounded_String := Msg.Sender; begin Replace_Slice (Nick, Index (Nick, "!"), Length (Nick), ""); return Nick; exception when Constraint_Error => return Nick; end Get_Nick; procedure Identify (Password : String) is begin Put_Line ("NICKSERV IDENTIFY " & Password); end Identify; end IRC;
-- C46014A.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: -- FOR PREDEFINED TYPE INTEGER, CHECK THAT -- CONSTRAINT_ERROR IS RAISED IF THE OPERAND VALUE OF A -- CONVERSION LIES OUTSIDE OF THE RANGE OF THE TARGET TYPE'S BASE -- TYPE. ALSO, CHECK THAT CONSTRAINT_ERROR IS RAISED IF THE -- OPERAND VALUE LIES OUTSIDE OF THE RANGE OF THE TARGET TYPE'S -- SUBTYPE BUT WITHIN THE RANGE OF THE BASE TYPE. -- HISTORY: -- RJW 09/08/86 CREATED ORIGINAL TEST. -- RJW 11/13/87 ADDED CODE TO PREVENT DEAD VARIABLE OPTIMIZATION. -- JET 12/30/87 ADDED MORE CODE TO PREVENT OPTIMIZATION. -- MRM 03/30/93 REMOVED NUMERIC_ERROR FOR 9X COMPATIBILITY -- JRL 12/08/96 Changed usages of System.Max_Int and System.Min_Int to -- Integer'Base'Last and Integer'Base'First in first two -- subtests. WITH REPORT; USE REPORT; PROCEDURE C46014A IS SUBTYPE SMALL IS INTEGER RANGE -100 .. 100; S1 : SMALL; TYPE INT IS RANGE -100 .. 100; T1 : INT; TYPE NEWINTEGER IS NEW INTEGER; N1 : NEWINTEGER; SUBTYPE SUBNEW IS NEWINTEGER RANGE -100 .. 100; SN : SUBNEW; I1 : INTEGER; P1 : POSITIVE; L1 : NATURAL; FUNCTION IDENT (I : INTEGER) RETURN INT IS BEGIN RETURN INT'VAL (IDENT_INT (I)); END IDENT; FUNCTION IDENT (I : NEWINTEGER) RETURN NEWINTEGER IS BEGIN RETURN NEWINTEGER'VAL (IDENT_INT (NEWINTEGER'POS (I))); END IDENT; BEGIN TEST ( "C46014A", "FOR PREDEFINED TYPE INTEGER, CHECK THAT " & "CONSTRAINT_ERROR IS RAISED IF " & "THE OPERAND VALUE OF A CONVERSION LIES " & "OUTSIDE OF THE RANGE OF THE TARGET TYPE'S " & "BASE TYPE. ALSO, CHECK THAT " & "CONSTRAINT_ERROR IS RAISED IF THE OPERAND " & "VALUE LIES OUTSIDE OF THE RANGE OF THE " & "TARGET TYPE'S SUBTYPE BUT WITHIN THE " & "RANGE OF THE BASE TYPE" ); BEGIN I1 := Integer'Base'Last + Ident_Int(1); Failed ("NO EXCEPTION RAISED FOR INTEGER'BASE'LAST + 1"); IF EQUAL (I1, I1) THEN COMMENT ("SHOULDN'T GET HERE"); END IF; EXCEPTION WHEN CONSTRAINT_ERROR => Comment ("CONSTRAINT_ERROR RAISED FOR INTEGER'BASE'LAST + 1"); WHEN OTHERS => Failed ("WRONG EXCEPTION RAISED FOR INTEGER'BASE'LAST + 1"); END; BEGIN I1 := Integer'Base'First - Ident_Int(1); Failed ("NO EXCEPTION RAISED FOR INTEGER'BASE'FIRST - 1"); IF EQUAL (I1, I1) THEN COMMENT ("SHOULDN'T GET HERE"); END IF; EXCEPTION WHEN CONSTRAINT_ERROR => Comment ("CONSTRAINT_ERROR RAISED FOR INTEGER'BASE'FIRST - 1"); WHEN OTHERS => Failed ("WRONG EXCEPTION RAISED FOR INTEGER'BASE'FIRST - 1"); END; BEGIN I1 := INTEGER (IDENT_INT (INTEGER'FIRST) - 1); FAILED ( "NO EXCEPTION RAISED FOR " & "INTEGER (IDENT_INT (INTEGER'FIRST) - 1)" ); IF EQUAL (I1, I1) THEN COMMENT ("SHOULDN'T GET HERE"); END IF; EXCEPTION WHEN CONSTRAINT_ERROR => COMMENT ( "CONSTRAINT_ERROR RAISED FOR " & "INTEGER (IDENT_INT (INTEGER'FIRST - 1)" ); WHEN OTHERS => FAILED ( "WRONG EXCEPTION RAISED FOR " & "INTEGER (IDENT_INT (INTEGER'FIRST - 1)" ); END; BEGIN N1 := NEWINTEGER (IDENT_INT (INTEGER'LAST) + 1); FAILED ( "NO EXCEPTION RAISED FOR " & "NEWINTEGER (IDENT_INT (INTEGER'LAST) + 1)" ); IF EQUAL (INTEGER (N1), INTEGER (N1)) THEN COMMENT ("SHOULDN'T GET HERE"); END IF; EXCEPTION WHEN CONSTRAINT_ERROR => COMMENT ( "CONSTRAINT_ERROR RAISED FOR " & "NEWINTEGER (IDENT_INT (INTEGER'LAST + 1)" ); WHEN OTHERS => FAILED ( "WRONG EXCEPTION RAISED FOR " & "NEWINTEGER (IDENT_INT (INTEGER'LAST + 1)" ); END; BEGIN T1 := INT (INT'BASE'FIRST - IDENT (1)); FAILED ( "NO EXCEPTION RAISED FOR " & "INT (INT'BASE'FIRST - IDENT (1))" ); IF EQUAL (INTEGER (T1), INTEGER (T1)) THEN COMMENT ("SHOULDN'T GET HERE"); END IF; EXCEPTION WHEN CONSTRAINT_ERROR => COMMENT ( "CONSTRAINT_ERROR RAISED FOR " & "INT (INT'BASE'FIRST - IDENT (1))" ); WHEN OTHERS => FAILED ( "WRONG EXCEPTION RAISED FOR " & "INT (INT'BASE'FIRST - IDENT (1))" ); END; BEGIN T1 := IDENT (-101); FAILED ( "NO EXCEPTION RAISED FOR " & "T1 := -101" ); IF EQUAL (INTEGER (T1), INTEGER (T1)) THEN COMMENT ("SHOULDN'T GET HERE"); END IF; EXCEPTION WHEN CONSTRAINT_ERROR => NULL; WHEN OTHERS => FAILED ( "WRONG EXCEPTION RAISED FOR " & "T1 := -101" ); END; BEGIN T1 := INTEGER'POS (IDENT_INT (101)); FAILED ( "NO EXCEPTION RAISED FOR " & "T1 := INTEGER'POS (IDENT_INT (101))" ); IF EQUAL (INTEGER (T1), INTEGER (T1)) THEN COMMENT ("SHOULDN'T GET HERE"); END IF; EXCEPTION WHEN CONSTRAINT_ERROR => NULL; WHEN OTHERS => FAILED ( "WRONG EXCEPTION RAISED FOR " & "T1 := INTEGER'POS (IDENT_INT (101));" ); END; BEGIN T1 := INT (IDENT (INTEGER (INT'FIRST)) - 1); FAILED ( "NO EXCEPTION RAISED FOR " & "INT (INT'FIRST - 1)" ); IF EQUAL (INTEGER (T1), INTEGER (T1)) THEN COMMENT ("SHOULDN'T GET HERE"); END IF; EXCEPTION WHEN CONSTRAINT_ERROR => NULL; WHEN OTHERS => FAILED ( "WRONG EXCEPTION RAISED FOR " & "INT (INT'FIRST - 1)" ); END; BEGIN T1 := INT (IDENT_INT (101)); FAILED ( "NO EXCEPTION RAISED FOR INT (101)" ); IF EQUAL (INTEGER (T1), INTEGER (T1)) THEN COMMENT ("SHOULDN'T GET HERE"); END IF; EXCEPTION WHEN CONSTRAINT_ERROR => NULL; WHEN OTHERS => FAILED ( "WRONG EXCEPTION RAISED FOR INT (101)" ); END; BEGIN S1 := SMALL (IDENT_INT (101)); FAILED ( "NO EXCEPTION RAISED FOR SMALL (101)" ); IF EQUAL (S1, S1) THEN COMMENT ("SHOULDN'T GET HERE"); END IF; EXCEPTION WHEN CONSTRAINT_ERROR => NULL; WHEN OTHERS => FAILED ( "WRONG EXCEPTION RAISED FOR SMALL (101)" ); END; BEGIN SN := SUBNEW (IDENT_INT (-101)); FAILED ( "NO EXCEPTION RAISED FOR SUBNEW (-101)" ); IF EQUAL (INTEGER (SN), INTEGER (SN)) THEN COMMENT ("SHOULDN'T GET HERE"); END IF; EXCEPTION WHEN CONSTRAINT_ERROR => NULL; WHEN OTHERS => FAILED ( "WRONG EXCEPTION RAISED FOR SUBNEW (-101)" ); END; BEGIN P1 := IDENT_INT (101); SN := SUBNEW (P1); FAILED ( "NO EXCEPTION RAISED FOR SUBNEW (P1)" ); IF EQUAL (INTEGER (SN), INTEGER (SN)) THEN COMMENT ("SHOULDN'T GET HERE"); END IF; EXCEPTION WHEN CONSTRAINT_ERROR => NULL; WHEN OTHERS => FAILED ( "WRONG EXCEPTION RAISED FOR SUBNEW (P1)" ); END; BEGIN SN := IDENT (0); P1 := POSITIVE (SN); FAILED ( "NO EXCEPTION RAISED FOR " & "POSITIVE (SN)" ); IF EQUAL (P1, P1) THEN COMMENT ("SHOULDN'T GET HERE"); END IF; EXCEPTION WHEN CONSTRAINT_ERROR => NULL; WHEN OTHERS => FAILED ( "WRONG EXCEPTION RAISED FOR " & "POSITIVE (SN)" ); END; BEGIN N1 := IDENT (-1); L1 := NATURAL (N1); FAILED ( "NO EXCEPTION RAISED FOR " & "NATURAL (N1)" ); IF EQUAL (L1, L1) THEN COMMENT ("SHOULDN'T GET HERE"); END IF; EXCEPTION WHEN CONSTRAINT_ERROR => NULL; WHEN OTHERS => FAILED ( "WRONG EXCEPTION RAISED FOR " & "NATURAL (N1)" ); END; RESULT; END C46014A;
-- part of OpenGLAda, (c) 2017 Felix Krause -- released under the terms of the MIT license, see the file "COPYING" with GL.Types; package GL.Enums.Getter is pragma Preelaborate; type Parameter is (Current_Color, Current_Index, Current_Normal, Current_Texture_Coords, Current_Raster_Color, Current_Raster_Index, Current_Raster_Texture_Coords, Current_Raster_Position, Current_Raster_Position_Valid, Current_Raster_Distance, Point_Smooth, Point_Size, Point_Size_Range, Point_Size_Granularity, Line_Smooth, Line_Width, Smooth_Line_Width_Range, Smooth_Line_Width_Granularity, Line_Stipple, Line_Stipple_Pattern, Line_Stipple_Repeat, List_Mode, Max_List_Nesting, List_Base, List_Index, Polygon_Mode, Polygon_Smooth, Polygon_Stipple, Edge_Flag, Cull_Face, Cull_Face_Mode, Front_Face, Lighting, Light_Model_Local_Viewer, Light_Model_Two_Side, Light_Model_Ambient, Shade_Model, Color_Material_Face, Color_Material_Parameter, Color_Material, Fog, Fog_Index, Fog_Density, Fog_Start, Fog_End, Fog_Mode, Fog_Color, Depth_Range, Depth_Test, Depth_Writemask, Depth_Clear_Value, Depth_Func, Accum_Clear_Value, Stencil_Test, Stencil_Clear_Value, Stencil_Func, Stencil_Value_Mask, Stencil_Fail, Stencil_Pass_Depth_Fail, Stencil_Pass_Depth_Pass, Stencil_Ref, Stencil_Writemask, Matrix_Mode, Normalize, Viewport, Modelview_Stack_Depth, Projection_Stack_Depth, Texture_Stack_Depth, Modelview_Matrix, Projection_Matrix, Texture_Matrix, Attrib_Stack_Depth, Client_Attrib_Stack_Depth, Alpha_Test, Alpha_Test_Func, Alpha_Test_Ref, Dither, Blend_Dst, Blend_Src, Blend, Logic_Op_Mode, Index_Logic_Op, Color_Logic_Op, Aux_Buffers, Draw_Buffer, Read_Buffer, Scissor_Box, Scissor_Test, Index_Clear_Value, Index_Writemask, Color_Clear_Value, Color_Writemask, Index_Mode, Rgba_Mode, Doublebuffer, Stereo, Render_Mode, Perspective_Correction_Hint, Point_Smooth_Hint, Line_Smooth_Hint, Polygon_Smooth_Hint, Fog_Hint, Texture_Gen_S, Texture_Gen_T, Texture_Gen_R, Texture_Gen_Q, Pixel_Map_I_To_I, Pixel_Map_S_To_S, Pixel_Map_I_To_R, Pixel_Map_I_To_G, Pixel_Map_I_To_B, Pixel_Map_I_To_A, Pixel_Map_R_To_R, Pixel_Map_G_To_G, Pixel_Map_B_To_B, Pixel_Map_A_To_A, Pixel_Map_I_To_I_Size, Pixel_Map_S_To_S_Size, Pixel_Map_I_To_R_Size, Pixel_Map_I_To_G_Size, Pixel_Map_I_To_B_Size, Pixel_Map_I_To_A_Size, Pixel_Map_R_To_R_Size, Pixel_Map_G_To_G_Size, Pixel_Map_B_To_B_Size, Pixel_Map_A_To_A_Size, Unpack_Swap_Bytes, Unpack_Lsb_First, Unpack_Row_Length, Unpack_Skip_Rows, Unpack_Skip_Pixels, Unpack_Alignment, Pack_Swap_Bytes, Pack_Lsb_First, Pack_Row_Length, Pack_Skip_Rows, Pack_Skip_Pixels, Pack_Alignment, Map_Color, Map_Stencil, Index_Shift, Index_Offset, Red_Scale, Red_Bias, Zoom_X, Zoom_Y, Green_Scale, Green_Bias, Blue_Scale, Blue_Bias, Alpha_Scale, Alpha_Bias, Depth_Scale, Depth_Bias, Max_Eval_Order, Max_Lights, Max_Clip_Planes, Max_Texture_Size, Max_Pixel_Map_Table, Max_Attrib_Stack_Depth, Max_Modelview_Stack_Depth, Max_Name_Stack_Depth, Max_Projection_Stack_Depth, Max_Texture_Stack_Depth, Max_Viewport_Dims, Max_Client_Attrib_Stack_Depth, Subpixel_Bits, Index_Bits, Red_Bits, Green_Bits, Blue_Bits, Alpha_Bits, Depth_Bits, Stencil_Bits, Accum_Red_Bits, Accum_Green_Bits, Accum_Blue_Bits, Accum_Alpha_Bits, Name_Stack_Depth, Auto_Normal, Map1_Color_4, Map1_Index, Map1_Normal, Map1_Texture_Coord_1, Map1_Texture_Coord_2, Map1_Texture_Coord_3, Map1_Texture_Coord_4, Map1_Vertex_3, Map1_Vertex_4, Map2_Color_4, Map2_Index, Map2_Normal, Map2_Texture_Coord_1, Map2_Texture_Coord_2, Map2_Texture_Coord_3, Map2_Texture_Coord_4, Map2_Vertex_3, Map2_Vertex_4, Map1_Grid_Domain, Map1_Grid_Segments, Map2_Grid_Domain, Map2_Grid_Segments, Texture_1D, Texture_2D, Feedback_Buffer_Pointer, Feedback_Buffer_Size, Feedback_Buffer_Type, Selection_Buffer_Pointer, Selection_Buffer_Size, Blend_Color, Blend_Equation_RGB, Pack_Skip_Images, Pack_Image_Height, Unpack_Skip_Images, Unpack_Image_Height, Blend_Dst_RGB, Blend_Src_RGB, Blend_Dst_Alpha, Blend_Src_Alpha, Point_Fade_Threshold_Size, Light_Model_Color_Control, Major_Version, Minor_Version, Num_Extensions, Debug_Next_Logged_Message_Length, Num_Shading_Language_Versions, Current_Fog_Coord, Current_Secondary_Color, Aliased_Line_Width_Range, Active_Texture, Stencil_Back_Func, Stencil_Back_Fail, Stencil_Back_Pass_Depth_Fail, Stencil_Back_Pass_Depth_Pass, Blend_Equation_Alpha, Query_Result, Query_Result_Available, Max_Combined_Texture_Image_Units, Stencil_Back_Ref, Stencil_Back_Value_Mask, Stencil_Back_Writemask, Max_Debug_Message_Length, Max_Debug_Logged_Messages, Debug_Logged_Messages, Max_Framebuffer_Width, Max_Framebuffer_Height, Max_Framebuffer_Layers, Max_Framebuffer_Samples); for Parameter use (Current_Color => 16#0B00#, Current_Index => 16#0B01#, Current_Normal => 16#0B02#, Current_Texture_Coords => 16#0B03#, Current_Raster_Color => 16#0B04#, Current_Raster_Index => 16#0B05#, Current_Raster_Texture_Coords => 16#0B06#, Current_Raster_Position => 16#0B07#, Current_Raster_Position_Valid => 16#0B08#, Current_Raster_Distance => 16#0B09#, Point_Smooth => 16#0B10#, Point_Size => 16#0B11#, Point_Size_Range => 16#0B12#, Point_Size_Granularity => 16#0B13#, Line_Smooth => 16#0B20#, Line_Width => 16#0B21#, Smooth_Line_Width_Range => 16#0B22#, Smooth_Line_Width_Granularity => 16#0B23#, Line_Stipple => 16#0B24#, Line_Stipple_Pattern => 16#0B25#, Line_Stipple_Repeat => 16#0B26#, List_Mode => 16#0B30#, Max_List_Nesting => 16#0B31#, List_Base => 16#0B32#, List_Index => 16#0B33#, Polygon_Mode => 16#0B40#, Polygon_Smooth => 16#0B41#, Polygon_Stipple => 16#0B42#, Edge_Flag => 16#0B43#, Cull_Face => 16#0B44#, Cull_Face_Mode => 16#0B45#, Front_Face => 16#0B46#, Lighting => 16#0B50#, Light_Model_Local_Viewer => 16#0B51#, Light_Model_Two_Side => 16#0B52#, Light_Model_Ambient => 16#0B53#, Shade_Model => 16#0B54#, Color_Material_Face => 16#0B55#, Color_Material_Parameter => 16#0B56#, Color_Material => 16#0B57#, Fog => 16#0B60#, Fog_Index => 16#0B61#, Fog_Density => 16#0B62#, Fog_Start => 16#0B63#, Fog_End => 16#0B64#, Fog_Mode => 16#0B65#, Fog_Color => 16#0B66#, Depth_Range => 16#0B70#, Depth_Test => 16#0B71#, Depth_Writemask => 16#0B72#, Depth_Clear_Value => 16#0B73#, Depth_Func => 16#0B74#, Accum_Clear_Value => 16#0B80#, Stencil_Test => 16#0B90#, Stencil_Clear_Value => 16#0B91#, Stencil_Func => 16#0B92#, Stencil_Value_Mask => 16#0B93#, Stencil_Fail => 16#0B94#, Stencil_Pass_Depth_Fail => 16#0B95#, Stencil_Pass_Depth_Pass => 16#0B96#, Stencil_Ref => 16#0B97#, Stencil_Writemask => 16#0B98#, Matrix_Mode => 16#0BA0#, Normalize => 16#0BA1#, Viewport => 16#0BA2#, Modelview_Stack_Depth => 16#0BA3#, Projection_Stack_Depth => 16#0BA4#, Texture_Stack_Depth => 16#0BA5#, Modelview_Matrix => 16#0BA6#, Projection_Matrix => 16#0BA7#, Texture_Matrix => 16#0BA8#, Attrib_Stack_Depth => 16#0BB0#, Client_Attrib_Stack_Depth => 16#0BB1#, Alpha_Test => 16#0BC0#, Alpha_Test_Func => 16#0BC1#, Alpha_Test_Ref => 16#0BC2#, Dither => 16#0BD0#, Blend_Dst => 16#0BE0#, Blend_Src => 16#0BE1#, Blend => 16#0BE2#, Logic_Op_Mode => 16#0BF0#, Index_Logic_Op => 16#0BF1#, Color_Logic_Op => 16#0BF2#, Aux_Buffers => 16#0C00#, Draw_Buffer => 16#0C01#, Read_Buffer => 16#0C02#, Scissor_Box => 16#0C10#, Scissor_Test => 16#0C11#, Index_Clear_Value => 16#0C20#, Index_Writemask => 16#0C21#, Color_Clear_Value => 16#0C22#, Color_Writemask => 16#0C23#, Index_Mode => 16#0C30#, Rgba_Mode => 16#0C31#, Doublebuffer => 16#0C32#, Stereo => 16#0C33#, Render_Mode => 16#0C40#, Perspective_Correction_Hint => 16#0C50#, Point_Smooth_Hint => 16#0C51#, Line_Smooth_Hint => 16#0C52#, Polygon_Smooth_Hint => 16#0C53#, Fog_Hint => 16#0C54#, Texture_Gen_S => 16#0C60#, Texture_Gen_T => 16#0C61#, Texture_Gen_R => 16#0C62#, Texture_Gen_Q => 16#0C63#, Pixel_Map_I_To_I => 16#0C70#, Pixel_Map_S_To_S => 16#0C71#, Pixel_Map_I_To_R => 16#0C72#, Pixel_Map_I_To_G => 16#0C73#, Pixel_Map_I_To_B => 16#0C74#, Pixel_Map_I_To_A => 16#0C75#, Pixel_Map_R_To_R => 16#0C76#, Pixel_Map_G_To_G => 16#0C77#, Pixel_Map_B_To_B => 16#0C78#, Pixel_Map_A_To_A => 16#0C79#, Pixel_Map_I_To_I_Size => 16#0CB0#, Pixel_Map_S_To_S_Size => 16#0CB1#, Pixel_Map_I_To_R_Size => 16#0CB2#, Pixel_Map_I_To_G_Size => 16#0CB3#, Pixel_Map_I_To_B_Size => 16#0CB4#, Pixel_Map_I_To_A_Size => 16#0CB5#, Pixel_Map_R_To_R_Size => 16#0CB6#, Pixel_Map_G_To_G_Size => 16#0CB7#, Pixel_Map_B_To_B_Size => 16#0CB8#, Pixel_Map_A_To_A_Size => 16#0CB9#, Unpack_Swap_Bytes => 16#0CF0#, Unpack_Lsb_First => 16#0CF1#, Unpack_Row_Length => 16#0CF2#, Unpack_Skip_Rows => 16#0CF3#, Unpack_Skip_Pixels => 16#0CF4#, Unpack_Alignment => 16#0CF5#, Pack_Swap_Bytes => 16#0D00#, Pack_Lsb_First => 16#0D01#, Pack_Row_Length => 16#0D02#, Pack_Skip_Rows => 16#0D03#, Pack_Skip_Pixels => 16#0D04#, Pack_Alignment => 16#0D05#, Map_Color => 16#0D10#, Map_Stencil => 16#0D11#, Index_Shift => 16#0D12#, Index_Offset => 16#0D13#, Red_Scale => 16#0D14#, Red_Bias => 16#0D15#, Zoom_X => 16#0D16#, Zoom_Y => 16#0D17#, Green_Scale => 16#0D18#, Green_Bias => 16#0D19#, Blue_Scale => 16#0D1A#, Blue_Bias => 16#0D1B#, Alpha_Scale => 16#0D1C#, Alpha_Bias => 16#0D1D#, Depth_Scale => 16#0D1E#, Depth_Bias => 16#0D1F#, Max_Eval_Order => 16#0D30#, Max_Lights => 16#0D31#, Max_Clip_Planes => 16#0D32#, Max_Texture_Size => 16#0D33#, Max_Pixel_Map_Table => 16#0D34#, Max_Attrib_Stack_Depth => 16#0D35#, Max_Modelview_Stack_Depth => 16#0D36#, Max_Name_Stack_Depth => 16#0D37#, Max_Projection_Stack_Depth => 16#0D38#, Max_Texture_Stack_Depth => 16#0D39#, Max_Viewport_Dims => 16#0D3A#, Max_Client_Attrib_Stack_Depth => 16#0D3B#, Subpixel_Bits => 16#0D50#, Index_Bits => 16#0D51#, Red_Bits => 16#0D52#, Green_Bits => 16#0D53#, Blue_Bits => 16#0D54#, Alpha_Bits => 16#0D55#, Depth_Bits => 16#0D56#, Stencil_Bits => 16#0D57#, Accum_Red_Bits => 16#0D58#, Accum_Green_Bits => 16#0D59#, Accum_Blue_Bits => 16#0D5A#, Accum_Alpha_Bits => 16#0D5B#, Name_Stack_Depth => 16#0D70#, Auto_Normal => 16#0D80#, Map1_Color_4 => 16#0D90#, Map1_Index => 16#0D91#, Map1_Normal => 16#0D92#, Map1_Texture_Coord_1 => 16#0D93#, Map1_Texture_Coord_2 => 16#0D94#, Map1_Texture_Coord_3 => 16#0D95#, Map1_Texture_Coord_4 => 16#0D96#, Map1_Vertex_3 => 16#0D97#, Map1_Vertex_4 => 16#0D98#, Map2_Color_4 => 16#0DB0#, Map2_Index => 16#0DB1#, Map2_Normal => 16#0DB2#, Map2_Texture_Coord_1 => 16#0DB3#, Map2_Texture_Coord_2 => 16#0DB4#, Map2_Texture_Coord_3 => 16#0DB5#, Map2_Texture_Coord_4 => 16#0DB6#, Map2_Vertex_3 => 16#0DB7#, Map2_Vertex_4 => 16#0DB8#, Map1_Grid_Domain => 16#0DD0#, Map1_Grid_Segments => 16#0DD1#, Map2_Grid_Domain => 16#0DD2#, Map2_Grid_Segments => 16#0DD3#, Texture_1D => 16#0DE0#, Texture_2D => 16#0DE1#, Feedback_Buffer_Pointer => 16#0DF0#, Feedback_Buffer_Size => 16#0DF1#, Feedback_Buffer_Type => 16#0DF2#, Selection_Buffer_Pointer => 16#0DF3#, Selection_Buffer_Size => 16#0DF4#, Blend_Color => 16#8005#, Blend_Equation_RGB => 16#8009#, Pack_Skip_Images => 16#806B#, Pack_Image_Height => 16#806C#, Unpack_Skip_Images => 16#806D#, Unpack_Image_Height => 16#806E#, Blend_Dst_RGB => 16#80C8#, Blend_Src_RGB => 16#80C9#, Blend_Dst_Alpha => 16#80CA#, Blend_Src_Alpha => 16#80CB#, Point_Fade_Threshold_Size => 16#8128#, Light_Model_Color_Control => 16#81F8#, Major_Version => 16#821B#, Minor_Version => 16#821C#, Num_Extensions => 16#821D#, Debug_Next_Logged_Message_Length => 16#8243#, Num_Shading_Language_Versions => 16#82E9#, Current_Fog_Coord => 16#8453#, Current_Secondary_Color => 16#8459#, Aliased_Line_Width_Range => 16#846E#, Active_Texture => 16#84E0#, Stencil_Back_Func => 16#8800#, Stencil_Back_Fail => 16#8801#, Stencil_Back_Pass_Depth_Fail => 16#8802#, Stencil_Back_Pass_Depth_Pass => 16#8803#, Blend_Equation_Alpha => 16#883D#, Query_Result => 16#8866#, Query_Result_Available => 16#8867#, Max_Combined_Texture_Image_Units => 16#8B4D#, Stencil_Back_Ref => 16#8CA3#, Stencil_Back_Value_Mask => 16#8CA4#, Stencil_Back_Writemask => 16#8CA5#, Max_Debug_Message_Length => 16#9143#, Max_Debug_Logged_Messages => 16#9144#, Debug_Logged_Messages => 16#9145#, Max_Framebuffer_Width => 16#9315#, Max_Framebuffer_Height => 16#9316#, Max_Framebuffer_Layers => 16#9317#, Max_Framebuffer_Samples => 16#9318#); for Parameter'Size use Low_Level.Enum'Size; type String_Parameter is (Vendor, Renderer, Version, Extensions, Shading_Language_Version); for String_Parameter use (Vendor => 16#1F00#, Renderer => 16#1F01#, Version => 16#1F02#, Extensions => 16#1F03#, Shading_Language_Version => 16#8B8C#); for String_Parameter'Size use Low_Level.Enum'Size; type Renderbuffer_Parameter is (Width, Height, Internal_Format, Red_Size, Green_Size, Blue_Size, Alpha_Size, Depth_Size, Stencil_Size); for Renderbuffer_Parameter use (Width => 16#8D42#, Height => 16#8D43#, Internal_Format => 16#8D44#, Red_Size => 16#8D50#, Green_Size => 16#8D51#, Blue_Size => 16#8D52#, Alpha_Size => 16#8D53#, Depth_Size => 16#8D54#, Stencil_Size => 16#8D55#); for Renderbuffer_Parameter'Size use Low_Level.Enum'Size; -- declared here so that Max in GL.Enums.Indexes works function Get_Max (Getter_Param : Parameter) return Types.Int; end GL.Enums.Getter;
package body afrl.impact.ImpactLineSearchTask.SPARK_Boundary with SPARK_Mode => Off is function Get_LineID (X : ImpactLineSearchTask) return Int64 renames getLineID; end afrl.impact.ImpactLineSearchTask.SPARK_Boundary;
with Interfaces.C.Extensions; with Interfaces.C.Strings; with Interfaces.C.Pointers; with a_nodes_h; package adapter_wrapper_h is function adapter_wrapper (target_file_in : in Interfaces.C.Strings.chars_ptr; gnat_home : in Interfaces.C.Strings.chars_ptr; AsisArgs : in Interfaces.C.Strings.chars_ptr; output_dir : in Interfaces.C.Strings.chars_ptr ) return a_nodes_h.Nodes_Struct; pragma Export (C, adapter_wrapper); function adapter_wrapper_with_flags (target_file_in : in Interfaces.C.Strings.chars_ptr; gnat_home : in Interfaces.C.Strings.chars_ptr; AsisArgs : in Interfaces.C.Strings.chars_ptr; output_dir : in Interfaces.C.Strings.chars_ptr; process_predefined_units : in Interfaces.C.Extensions.bool; process_implementation_units : in Interfaces.C.Extensions.bool; debug : in Interfaces.C.Extensions.bool ) return a_nodes_h.Nodes_Struct; pragma Export (C, adapter_wrapper_with_flags); private -- for debugging: Module_Name : constant String := "adapter_wrapper_h"; end adapter_wrapper_h;
private with openGL.Buffer.indices; package openGL.Primitive.indexed -- -- Provides a class for indexed openGL primitives. -- is type Item is limited new Primitive.item with private; subtype Class is Item'Class; type View is access all Item'class; type Views is array (Index_t range <>) of View; --------- -- Forge -- function new_Primitive (Kind : in facet_Kind; Indices : in openGL.Indices; line_Width : in Real := unused_line_Width) return Primitive.indexed.view; function new_Primitive (Kind : in facet_Kind; Indices : in openGL.long_Indices; line_Width : in Real := unused_line_Width) return Primitive.indexed.view; procedure define (Self : in out Item; Kind : in facet_Kind; Indices : in openGL.Indices; line_Width : in Real); procedure define (Self : in out Item; Kind : in facet_Kind; Indices : in openGL.long_Indices; line_Width : in Real); overriding procedure destroy (Self : in out Item); -------------- -- Attributes -- procedure Indices_are (Self : in out Item; Now : in Indices); procedure Indices_are (Self : in out Item; Now : in long_Indices); -------------- -- Operations -- overriding procedure render (Self : in out Item); private type Item is limited new Primitive.item with record Indices : Buffer.indices.view; end record; end openGL.Primitive.indexed;
------------------------------------------------------------------------------ -- -- -- Unicode Utilities -- -- UTF-8 Stream Decoder -- -- -- -- ------------------------------------------------------------------------ -- -- -- -- Copyright (C) 2019, ANNEXI-STRAYLINE Trans-Human Ltd. -- -- All rights reserved. -- -- -- -- Original Contributors: -- -- * Richard Wai (ANNEXI-STRAYLINE) -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions are -- -- met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in -- -- the documentation and/or other materials provided with the -- -- distribution. -- -- -- -- * Neither the name of the copyright holder nor the names of its -- -- contributors may be used to endorse or promote products derived -- -- from this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A -- -- PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -- -- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -- -- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -- -- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -- -- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -- -- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ package body Unicode.UTF8_Stream_Decoder.Codec with SPARK_Mode => On is pragma Assertion_Policy (Ignore); pragma Suppress (Index_Check); pragma Suppress (Length_Check); pragma Suppress (Overflow_Check); pragma Suppress (Range_Check); -- -- Supprting functions -- function Validate_First (Octet: Stream_Element) return Boolean is (((Octet and 2#1100_0000#) /= 2#1000_0000#) -- Not a continuation byte and then ( (Octet and 2#1000_0000#) = 0 or else (Octet and 2#1110_0000#) = 2#1100_0000# or else (Octet and 2#1111_0000#) = 2#1110_0000# or else (Octet and 2#1111_1000#) = 2#1111_0000# ) -- The leading bits must be valid Byte 1 permutations -- for 1,2,3, and 4 total bytes, respectively and then (Octet not in 16#C0# .. 16#C1# | 16#F5# .. 16#FF#)) -- Specifically prohibited in any UTF-8 stream -- as per STD63/RFC3629, Section 1 with Inline => True, Global => null; -- Returns True if and only if Octet is a valid firsy byte of a -- continuation. function Indicated_Continuation_Bytes (First_Octet: Stream_Element) return Stream_Element_Offset is (case (First_Octet and 2#1111_0000#) is when 2#0000_0000# .. 2#0111_0000# => 0, when 2#1100_0000# .. 2#1101_0000# => 1, when 2#1110_0000# => 2, when 2#1111_0000# => 3, when others => 4) -- Invalid value with Global => null, Pre => Validate_First (First_Octet), Post => Indicated_Continuation_Bytes'Result in 0 .. 3, Inline => True; -- Given a valid first byte of a UTF-8 sequence, returns the number of -- continuation bytes that are expected to follow function Validate_Continuation (Octet: Stream_Element) return Boolean is ((Octet and 2#11_000000#) = 2#10_000000#) with Global => null, Inline => True; -- Simply validates that Octet is a valid continuation byte. function Validate_Sequence (Sequence: Sequence_Array) return Boolean is (Sequence'Length in 1 .. 4 and then Sequence'First in 1 .. 4 and then Sequence'Last >= Sequence'First and then Validate_First (Sequence(Sequence'First)) and then (Indicated_Continuation_Bytes (Sequence(Sequence'First)) + 1 = Sequence'Length) and then (case Sequence'Length is when 1 => (Sequence'First in 1 .. 4 and then Sequence'Last = Sequence'First), when 2 => (Sequence'First in 1 .. 3 and then Sequence'Last = Sequence'First + 1), when 3 => (Sequence'First in 1 .. 2 and then Sequence'Last = Sequence'First + 2), when 4 => (Sequence'First = 1 and then Sequence'Last = 4), when others => False) -- The SPARK tools needed to be told this.. and then (for all Octet of Sequence(Sequence'First + 1 .. Sequence'Last) => Validate_Continuation (Octet))) with Inline => True, Global => null; -- Validates that a given sequence has a legal formation. Does not check the -- actual encoded value - that should be done with Verified_Combine procedure Verified_Combine (Sequence: in Sequence_Array; Result : out Wide_Wide_Character; Status : out Decode_Status) with Inline => True, Global => null, Pre => Validate_Sequence (Sequence), Post => (if Status = Success then (case Sequence'Length is when 1 => Wide_Wide_Character'Pos (Result) in 16#000000# .. 16#00007F#, when 2 => Wide_Wide_Character'Pos (Result) in 16#000080# .. 16#0007FF#, when 3 => Wide_Wide_Character'Pos (Result) in 16#000800# .. 16#00D7FF# | 16#00E000# .. 16#00FDCF# | 16#00FDF0# .. 16#00FFFD#, -- IETF STD63/RFC3629 Section 3: -- UTF-16 "surrogate pairs" -- (U+D800 .. U+DFFF) are prohibited -- -- Unicode Corrigendum #9 - Noncharacter -- codepoints: -- U+FDD0 .. U+FDEF -- U+nFFFE + U+nFFFF when 4 => Wide_Wide_Character'Pos (Result) in 16#010000# .. 16#01FFFD# | 16#020000# .. 16#02FFFD# | 16#030000# .. 16#03FFFD# | 16#040000# .. 16#04FFFD# | 16#050000# .. 16#05FFFD# | 16#060000# .. 16#06FFFD# | 16#070000# .. 16#07FFFD# | 16#080000# .. 16#08FFFD# | 16#090000# .. 16#09FFFD# | 16#0A0000# .. 16#0AFFFD# | 16#0B0000# .. 16#0BFFFD# | 16#0C0000# .. 16#0CFFFD# | 16#0D0000# .. 16#0DFFFD# | 16#0E0000# .. 16#0EFFFD# | 16#0F0000# .. 16#0FFFFD# | 16#100000# .. 16#10FFFD#, -- U+10000 .. U+10FFFF except for: -- Unicode Corrigendum #9 - Noncharacter -- codepoints: -- U+nFFFE + U+nFFFF when others => False) else ((Status in Overlong | Codepoint_Excursion) and Result = Unicode_Replacement_Character)); -- Combines a validated single UTF-8 sequence encoded character into -- a Wide_Wide_Character. ---------------------- -- Verified_Combine -- ---------------------- procedure Verified_Combine (Sequence: in Sequence_Array; Result : out Wide_Wide_Character; Status : out Decode_Status) is type Encoded_Codepoint is mod 2**32; Codepoint: Encoded_Codepoint; procedure Codepoint_Shift_And_Add (Continuation_Byte: in Stream_Element) with Inline => True, Global => (In_Out => Codepoint), Pre => (Validate_Continuation (Continuation_Byte) and then Codepoint <= 16#FFFF#), -- This basically means that we're not calling it -- more than 4 times. Post => (Codepoint = (Codepoint'Old * 2**6) + Encoded_Codepoint(Continuation_Byte and 2#00_111111#)); procedure Codepoint_Shift_And_Add (Continuation_Byte: in Stream_Element) is begin Codepoint := (Codepoint * 2**6) + Encoded_Codepoint (Continuation_Byte and 2#00_111111#); end Codepoint_Shift_And_Add; begin pragma Assert (Validate_Sequence(Sequence)); case Sequence'Length is when 1 => pragma Assert (Sequence'First in 1 .. 4); pragma Assert (Sequence'Last = Sequence'First); Codepoint := Encoded_Codepoint (Sequence(Sequence'First) and 2#0_1111111#); Result := Wide_Wide_Character'Val (Codepoint); Status := Success; pragma Assert (Wide_Wide_Character'Pos (Result) in 16#000000# .. 16#00007F#); return; when 2 => pragma Assert (Sequence'First in 1 .. 3); pragma Assert (Sequence'Last = Sequence'First + 1); Codepoint := Encoded_Codepoint (Sequence(Sequence'First) and 2#000_11111#); -- Overlong check -- -- If the leading byte shall not be zero or one. If it was zero or -- one, then that would mean the full value would be a 7-bit value, -- which could be encoded in a single byte. if Codepoint < 2 then Result := Unicode_Replacement_Character; Status := Overlong; return; else pragma Assert (Codepoint in 2 .. 16#7F#); Codepoint_Shift_And_Add (Sequence(Sequence'First + 1)); Result := Wide_Wide_Character'Val (Codepoint); Status := Success; pragma Assert (Wide_Wide_Character'Pos (Result) in 16#000080# .. 16#0007FF#); return; end if; when 3 => pragma Assert (Sequence'First in 1 .. 2); pragma Assert (Sequence'Last = Sequence'First + 2); Codepoint := Encoded_Codepoint (Sequence(Sequence'First) and 2#0000_1111#); declare Second_Byte: Stream_Element renames Sequence(Sequence'First + 1); Third_Byte: Stream_Element renames Sequence(Sequence'First + 2); begin -- Overlong check -- -- The leading byte may encode zero. This would be needed to -- encode any 12-bit value, since a two byte sequence can only -- encode 5 + 6 = 11 bits. -- -- This means that if the first byte encodes zero, the second -- byte must be greater than 1F, since 0 .. 1F would be a five- -- bit value meaning the total value would be 5 + 6 bits. if Codepoint = 0 and then (Second_Byte and 2#00_111111#) <= 16#1F# then Result := Unicode_Replacement_Character; Status := Overlong; return; else Codepoint_Shift_And_Add (Second_Byte); Codepoint_Shift_And_Add (Third_Byte); if Codepoint in 16#D800# .. 16#DFFF# | 16#FDD0# .. 16#FDEF# | 16#FFFE# .. 16#FFFF# then -- IETF STD63/RFC3629 Section 3: -- UTF-16 "surrogate pairs" -- (U+D800 .. U+DFFF) are prohibited -- -- Unicode Corrigendum #9 - Noncharacter -- codepoints: -- U+FDD0 .. U+FDEF -- U+nFFFE + U+nFFFF Result := Unicode_Replacement_Character; Status := Codepoint_Excursion; return; end if; Result := Wide_Wide_Character'Val (Codepoint); Status := Success; return; end if; end; when 4 => pragma Assert (Sequence'First = 1); pragma Assert (Sequence'Last = Sequence'First + 3); Codepoint := Encoded_Codepoint (Sequence(Sequence'First) and 2#00000_111#); declare Second_Byte: Stream_Element renames Sequence(Sequence'First + 1); Third_Byte: Stream_Element renames Sequence(Sequence'First + 2); Fourth_Byte: Stream_Element renames Sequence(Sequence'First + 3); begin -- Overlong check -- -- For a 3-byte sequence, the largest value that can be stored -- is 4-bits + 6 + 6 = 16 bits. For a 4-byte sequence, if the -- third and fourth bytes account for 6 + 6 = 12 bits, and we -- assume they are all 1's, and we allow the first byte to -- encode zero, we then must have more than the first 4 bits set -- in the second byte - i.e. the second byte must encode a value -- that is > 16#F# (< 16#10#). -- -- If the first byte encodes anything > 0, this forces the value -- to be at least 1 + 6 + 6 + 6 = 19 bits, which is valid. -- Excursion check -- -- However, if the first byte encodes something > 0, it must not -- encode anything larger than 16#10FFFF# (as per the Unicode -- standard). -- -- It turns-out that there are two separate cases we need to -- check for. One is if the first three bits encode anything -- larger than 2#100# (anything > 4), since this will definately -- encode a value larger than 16#10FFFF#. -- -- Alternately, if the value encoded by the first byte is -- exactly 4 (2#100#), we need to also check that the second -- byte does not encode anything larger than 2#001111# -- (anything > 16#F#). -- -- Since this check is exclusive of the overlong check -- (it only applies when the first byte is not zero), we can -- encode this into a case statement, allowing for an efficient -- jump-table to be constructed by the compiler case Codepoint is when 0 => -- Possible overlong if (Second_Byte and 2#00_111111#) < 16#10# then Result := Unicode_Replacement_Character; Status := Overlong; return; end if; when 2#001# .. 2#011# => -- This is fine null; when 2#100# => -- Possible excursion if (Second_Byte and 2#00_111111#) > 2#001111# then Result := Unicode_Replacement_Character; Status := Codepoint_Excursion; return; end if; -- Otherwise, we're ok when others => -- Definite excursion Result := Unicode_Replacement_Character; Status := Codepoint_Excursion; return; end case; Codepoint_Shift_And_Add (Second_Byte); Codepoint_Shift_And_Add (Third_Byte); Codepoint_Shift_And_Add (Fourth_Byte); -- Check Unicode Noncharacter codepoints -- U+nFFFE .. U+nFFFF if (Codepoint and 16#FFFF#) in 16#FFFE# .. 16#FFFF# then Result := Unicode_Replacement_Character; Status := Codepoint_Excursion; else Result := Wide_Wide_Character'Val (Codepoint); Status := Success; end if; return; end; when others => raise Program_Error; -- Postcondition of Indicated_Continuation_Bytes excludes this -- possibility end case; -- Unreachable pragma Assert (False); end Verified_Combine; ---------------- -- Try_Decode -- ---------------- procedure Try_Decode (Sequence : in Sequence_Array; Last : out Sequence_Index; Continuation_Bytes: out Stream_Element_Count; Result : out Wide_Wide_Character; Status : out Decode_Status) is begin Continuation_Bytes := 0; Result := Unicode_Replacement_Character; if Sequence'Length = 0 then Last := Sequence_Index'First; Status := Short_Load; return; elsif not Validate_First (Sequence(Sequence'First)) then Last := Sequence'First; Status := Bad_Sequence; return; end if; pragma Assert (Validate_First (Sequence(Sequence'First))); Continuation_Bytes := Indicated_Continuation_Bytes (Sequence(Sequence'First)); pragma Assert (Continuation_Bytes in 0 .. 3); if Sequence'Length < Continuation_Bytes + 1 then Last := Sequence'First; Status := Short_Load; return; end if; Last := Sequence'First + Continuation_Bytes; if Last > Sequence'First and then (for some Octet of Sequence (Sequence'First + 1 .. Last) => not Validate_Continuation (Octet)) then Result := Unicode_Replacement_Character; Status := Bad_Sequence; return; end if; pragma Assert (Validate_Sequence (Sequence(Sequence'First .. Last))); Verified_Combine (Sequence => Sequence(Sequence'First .. Last), Result => Result, Status => Status); pragma Assert (Status in Success | Overlong | Codepoint_Excursion); end Try_Decode; end Unicode.UTF8_Stream_Decoder.Codec;
-- The Village of Vampire by YT, このソースコードはNYSLです with Ada.Directories; with Ada.Streams.Stream_IO; with Web.Producers; with Web.RSS; with Vampire.Configurations; with Vampire.Forms.Full; with Vampire.R3.Log_Index_Page; with Vampire.R3.Village_Page; with Vampire.Villages.Load; package body Vampire.Log is use Tabula.Villages; function Load_Summary ( List : Tabula.Villages.Lists.Village_List; Id : Tabula.Villages.Village_Id) return Tabula.Villages.Lists.Village_Summary is Village : Vampire.Villages.Village_Type; begin Vampire.Villages.Load (Lists.File_Name (List, Id), Village, Info_Only => True); return Tabula.Villages.Lists.Summary (Type_Code, Village); end Load_Summary; procedure Create_Log ( List : Tabula.Villages.Lists.Village_List; Id : in Tabula.Villages.Village_Id) is Form : Forms.Full.Form_Type := Forms.Full.Create; Template : Web.Producers.Template := R3.Read ( Configurations.Template_Names (Form.Template_Set).Template_Village_File_Name .all); Village : aliased Vampire.Villages.Village_Type; begin Vampire.Villages.Load (Lists.File_Name (List, Id), Village, Info_Only => False); for Day in 0 .. Village.Today loop declare Output : Ada.Streams.Stream_IO.File_Type; begin Ada.Streams.Stream_IO.Create ( Output, Name => Lists.HTML_File_Name (List, Id, Day)); R3.Village_Page ( Ada.Streams.Stream_IO.Stream(Output), Form, Template, Current_Directory => Configurations.Villages_HTML_Directory, HTML_Directory => Configurations.Villages_HTML_Directory, Image_Directory => Configurations.Template_Names (Form.Template_Set).Image_Directory.all, Style_Sheet => Configurations.Template_Names (Form.Template_Set).Style_Sheet_File_Name.all, Background => Configurations.Template_Names (Form.Template_Set).Background_Image_File_Name .all, Relative_Role_Images => Configurations.Template_Names (Form.Template_Set) .Relative_Role_Image_File_Names.all, Cast_File_Name => Configurations.Cast_File_Name, Log => True, Village_Id => Id, Village => Village, Day => Day, User_Id => "", User_Password => ""); Ada.Streams.Stream_IO.Close(Output); end; end loop; end Create_Log; procedure Create_Index ( Summaries : in Tabula.Villages.Lists.Summary_Maps.Map; Update : in Boolean) is procedure Make_Log_Index (Summaries : in Lists.Summary_Maps.Map) is Form : Forms.Full.Form_Type := Forms.Full.Create; File : Ada.Streams.Stream_IO.File_Type := Ada.Streams.Stream_IO.Create ( Name => Configurations.Villages_Index_HTML_File_Name); begin R3.Log_Index_Page ( Ada.Streams.Stream_IO.Stream (File), Form, Configurations.Template_Names (Form.Template_Set).Template_Log_Index_File_Name .all, HTML_Directory => Configurations.Villages_HTML_Directory, Style_Sheet => Configurations.Style_Sheet_File_Name, Background => Configurations.Template_Names (Form.Template_Set).Background_Image_File_Name .all, Summaries => Summaries); Ada.Streams.Stream_IO.Close (File); end Make_Log_Index; procedure Make_RSS (Summaries : in Lists.Summary_Maps.Map) is File : Ada.Streams.Stream_IO.File_Type := Ada.Streams.Stream_IO.Create ( Name => Configurations.Villages_Index_RSS_File_Name); Stream : not null access Ada.Streams.Root_Stream_Type'Class := Ada.Streams.Stream_IO.Stream (File); begin Web.RSS.RSS_Start ( Stream, Title => "参加募集中の村 - The Village of Vampire", Description => "", Link => "../"); for I in reverse Summaries.Iterate loop declare Key : Village_Id renames Lists.Summary_Maps.Key (I); Element : Lists.Village_Summary renames Summaries.Constant_Reference (I); begin if Element.State = Prologue then Web.RSS.RSS_Item ( Stream, Title => Element.Name.Constant_Reference, Description => "", Link => "../?village=" & Key); end if; end; end loop; Web.RSS.RSS_End (Stream); Ada.Streams.Stream_IO.Close (File); end Make_RSS; begin if Update or else not Ada.Directories.Exists ( Configurations.Villages_Index_HTML_File_Name) then Make_Log_Index (Summaries); end if; if Update or else not Ada.Directories.Exists ( Configurations.Villages_Index_RSS_File_Name) then Make_RSS (Summaries); end if; end Create_Index; end Vampire.Log;
-- { dg-do compile } with Varsize3_Pkg1; use Varsize3_Pkg1; procedure Varsize3_3 is Filter : Object; begin Filter := True; end;
------------------------------------------------------------------------------ -- -- -- 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) 1992-2011, Free Software Foundation, Inc. -- -- -- -- GNARL is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- -- -- -- -- -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNARL was developed by the GNARL team at Florida State University. -- -- Extensive contributions were provided by Ada Core Technologies, Inc. -- -- -- ------------------------------------------------------------------------------ -- 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. -- See System.Interrupt_Management for core interrupt/signal interfaces -- These two packages are separated to allow System.Interrupt_Management to be -- used without requiring the whole tasking implementation to be linked and -- elaborated. with System.Tasking; with System.Tasking.Protected_Objects.Entries; with System.OS_Interface; package System.Interrupts is pragma Elaborate_Body; -- Comment needed on why this is here ??? ------------------------- -- 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 range 0 .. System.OS_Interface.Max_Interrupt; -- Avoid inheritance by Ada.Interrupts.Interrupt_ID of unwanted operations type Interrupt_ID is range 0 .. System.OS_Interface.Max_Interrupt; subtype System_Interrupt_Id is Interrupt_ID; -- This synonym is introduced so that the type is accessible through -- rtsfind, otherwise the name clashes with its homonym in Ada.Interrupts. type Parameterless_Handler is access protected procedure; ---------------------- -- General services -- ---------------------- -- Attempt to attach a Handler to an Interrupt to which an Entry is -- already bound will raise a Program_Error. function Is_Reserved (Interrupt : Interrupt_ID) return Boolean; function Is_Entry_Attached (Interrupt : Interrupt_ID) return Boolean; function Is_Handler_Attached (Interrupt : Interrupt_ID) return Boolean; function Current_Handler (Interrupt : Interrupt_ID) return Parameterless_Handler; -- Calling the following procedures with New_Handler = null and Static = -- true means that we want to modify the current handler regardless of the -- previous handler's binding status. (i.e. we do not care whether it is a -- dynamic or static handler) procedure Attach_Handler (New_Handler : Parameterless_Handler; Interrupt : Interrupt_ID; Static : Boolean := False); procedure Exchange_Handler (Old_Handler : out Parameterless_Handler; New_Handler : Parameterless_Handler; Interrupt : Interrupt_ID; Static : Boolean := False); procedure Detach_Handler (Interrupt : Interrupt_ID; Static : Boolean := False); function Reference (Interrupt : Interrupt_ID) return System.Address; -------------------------------- -- Interrupt Entries Services -- -------------------------------- -- Routines needed for Interrupt Entries procedure Bind_Interrupt_To_Entry (T : System.Tasking.Task_Id; E : System.Tasking.Task_Entry_Index; Int_Ref : System.Address); -- Bind the given interrupt to the given entry. If the interrupt is -- already bound to another entry, Program_Error will be raised. procedure Detach_Interrupt_Entries (T : System.Tasking.Task_Id); -- This procedure detaches all the Interrupt Entries bound to a task ------------------------------ -- POSIX.5 Signals Services -- ------------------------------ -- Routines needed for POSIX dot5 POSIX_Signals procedure Block_Interrupt (Interrupt : Interrupt_ID); -- Block the Interrupt on the process level procedure Unblock_Interrupt (Interrupt : Interrupt_ID); function Unblocked_By (Interrupt : Interrupt_ID) return System.Tasking.Task_Id; -- It returns the ID of the last Task which Unblocked this Interrupt. -- It returns Null_Task if no tasks have ever requested the Unblocking -- operation or the Interrupt is currently Blocked. function Is_Blocked (Interrupt : Interrupt_ID) return Boolean; -- Comment needed ??? procedure Ignore_Interrupt (Interrupt : Interrupt_ID); -- Set the sigaction for the interrupt to SIG_IGN procedure Unignore_Interrupt (Interrupt : Interrupt_ID); -- Comment needed ??? function Is_Ignored (Interrupt : Interrupt_ID) return Boolean; -- Comment needed ??? -- Note : Direct calls to sigaction, sigprocmask, thr_sigsetmask or any -- other low-level interface that changes the signal action or signal mask -- needs a careful thought. -- One may achieve the effect of system calls first making RTS blocked (by -- calling Block_Interrupt) for the signal under consideration. This will -- make all the tasks in RTS blocked for the Interrupt. ---------------------- -- Protection Types -- ---------------------- -- Routines and types needed to implement Interrupt_Handler and -- Attach_Handler. -- There are two kinds of protected objects that deal with interrupts: -- (1) Only Interrupt_Handler pragmas are used. We need to be able to tell -- if an Interrupt_Handler applies to a given procedure, so -- Register_Interrupt_Handler has to be called for all the potential -- handlers, it should be done by calling Register_Interrupt_Handler with -- the handler code address. On finalization, which can happen only has -- part of library level finalization since PO with Interrupt_Handler -- pragmas can only be declared at library level, nothing special needs to -- be done since the default handlers have been restored as part of task -- completion which is done just before global finalization. -- Dynamic_Interrupt_Protection should be used in this case. -- (2) Attach_Handler pragmas are used, and possibly Interrupt_Handler -- pragma. We need to attach the handlers to the given interrupts when the -- object is elaborated. This should be done by constructing an array of -- pairs (interrupt, handler) from the pragmas and calling Install_Handlers -- with it (types to be used are New_Handler_Item and New_Handler_Array). -- On finalization, we need to restore the handlers that were installed -- before the elaboration of the PO, so we need to store these previous -- handlers. This is also done by Install_Handlers, the room for these -- informations is provided by adding a discriminant which is the number -- of Attach_Handler pragmas and an array of this size in the protection -- type, Static_Interrupt_Protection. procedure Register_Interrupt_Handler (Handler_Addr : System.Address); -- This routine should be called by the compiler to allow the handler be -- used as an Interrupt Handler. That means call this procedure for each -- pragma Interrupt_Handler providing the address of the handler (not -- including the pointer to the actual PO, this way this routine is called -- only once for each type definition of PO). type Static_Handler_Index is range 0 .. Integer'Last; subtype Positive_Static_Handler_Index is Static_Handler_Index range 1 .. Static_Handler_Index'Last; -- Comment needed ??? type Previous_Handler_Item is record Interrupt : Interrupt_ID; Handler : Parameterless_Handler; Static : Boolean; end record; -- Contains all the information needed to restore a previous handler type Previous_Handler_Array is array (Positive_Static_Handler_Index range <>) of Previous_Handler_Item; type New_Handler_Item is record Interrupt : Interrupt_ID; Handler : Parameterless_Handler; end record; -- Contains all the information from an Attach_Handler pragma type New_Handler_Array is array (Positive_Static_Handler_Index range <>) of New_Handler_Item; -- Comment needed ??? -- Case (1) type Dynamic_Interrupt_Protection is new Tasking.Protected_Objects.Entries.Protection_Entries with null record; -- ??? Finalize is not overloaded since we currently have no -- way to detach the handlers during library level finalization. function Has_Interrupt_Or_Attach_Handler (Object : access Dynamic_Interrupt_Protection) return Boolean; -- Returns True -- Case (2) type Static_Interrupt_Protection (Num_Entries : Tasking.Protected_Objects.Protected_Entry_Index; Num_Attach_Handler : Static_Handler_Index) is new Tasking.Protected_Objects.Entries.Protection_Entries (Num_Entries) with record Previous_Handlers : Previous_Handler_Array (1 .. Num_Attach_Handler); end record; function Has_Interrupt_Or_Attach_Handler (Object : access Static_Interrupt_Protection) return Boolean; -- Returns True overriding procedure Finalize (Object : in out Static_Interrupt_Protection); -- Restore previous handlers as required by C.3.1(12) then call -- Finalize (Protection). procedure Install_Handlers (Object : access Static_Interrupt_Protection; New_Handlers : New_Handler_Array); -- Store the old handlers in Object.Previous_Handlers and install -- the new static handlers. procedure Install_Restricted_Handlers (Handlers : New_Handler_Array); -- Install the static Handlers for the given interrupts and do not store -- previously installed handlers. This procedure is used when the Ravenscar -- restrictions are in place since in that case there are only -- library-level protected handlers that will be installed at -- initialization and never be replaced. end System.Interrupts;
-- This package has been generated automatically by GNATtest. -- Do not edit any part of it, see GNATtest documentation for more details. -- begin read only with GNATtest_Generated; package Crew.Mob_Record_Test_Data.Mob_Record_Tests is type Test_Mob_Record is abstract new GNATtest_Generated.GNATtest_Standard .Crew .Mob_Record_Test_Data .Test_Mob_Record with null record; end Crew.Mob_Record_Test_Data.Mob_Record_Tests; -- end read only
-- C38002B.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 UNCONSTRAINED ARRAY TYPE OR A RECORD WITHOUT -- DEFAULT DISCRIMINANTS CAN BE USED IN AN ACCESS_TYPE_DEFINITION -- WITHOUT AN INDEX OR DISCRIMINANT CONSTRAINT. -- -- CHECK THAT (NON-STATIC) INDEX OR DISCRIMINANT CONSTRAINTS CAN -- SUBSEQUENTLY BE IMPOSED WHEN THE TYPE IS USED IN AN OBJECT -- DECLARATION, ARRAY COMPONENT DECLARATION, RECORD COMPONENT -- DECLARATION, ACCESS TYPE DECLARATION, PARAMETER DECLARATION, -- ALLOCATOR, DERIVED TYPE DEFINITION, PRIVATE TYPE, OR AS THE -- RETURN TYPE IN A FUNCTION DECLARATION. -- -- CHECK FOR GENERIC FORMAL ACCESS TYPES. -- HISTORY: -- AH 09/02/86 CREATED ORIGINAL TEST. -- DHH 08/22/88 REVISED HEADER, ADDED 'PRIVATE TYPE' TO COMMENTS -- AND CORRECTED INDENTATION. WITH REPORT; USE REPORT; PROCEDURE C38002B IS C3 : CONSTANT INTEGER := IDENT_INT(3); TYPE UNCON_ARR IS ARRAY (INTEGER RANGE <>) OF INTEGER; TYPE REC (DISC : INTEGER) IS RECORD NULL; END RECORD; TYPE P_ARR_NAME IS ACCESS UNCON_ARR; TYPE P_REC_NAME IS ACCESS REC; GENERIC TYPE ACC_REC IS ACCESS REC; TYPE ACC_ARR IS ACCESS UNCON_ARR; PACKAGE P IS OBJ : ACC_REC(C3); TYPE ARR2 IS ARRAY (1..10) OF ACC_REC(C3); TYPE REC1 IS RECORD COMP1 : ACC_REC(C3); END RECORD; TYPE REC2 IS RECORD COMP2 : ACC_ARR(1..C3); END RECORD; SUBTYPE ACC_REC_3 IS ACC_REC(C3); R : ACC_REC; FUNCTION F (PARM : ACC_REC_3) RETURN ACC_REC_3; TYPE ACC1 IS PRIVATE; TYPE ACC2 IS PRIVATE; TYPE DER1 IS PRIVATE; TYPE DER2 IS PRIVATE; PRIVATE TYPE ACC1 IS ACCESS ACC_REC(C3); TYPE ACC2 IS ACCESS ACC_ARR(1..C3); TYPE DER1 IS NEW ACC_REC(C3); TYPE DER2 IS NEW ACC_ARR(1..C3); END P; PACKAGE BODY P IS FUNCTION F (PARM : ACC_REC_3) RETURN ACC_REC_3 IS BEGIN RETURN PARM; END; END P; PACKAGE NP IS NEW P (ACC_REC => P_REC_NAME, ACC_ARR => P_ARR_NAME); USE NP; BEGIN TEST ("C38002B", "NON-STATIC CONSTRAINTS CAN BE IMPOSED " & "ON ACCESS TYPES ACCESSING PREVIOUSLY UNCONSTRAINED " & "ARRAY OR RECORD TYPES"); R := NEW REC(DISC => 3); R := F(R); R := NEW REC(DISC => 4); R := F(R); FAILED ("INCOMPATIBLE CONSTRAINT ON ACCESS VALUE ACCEPTED " & "BY GENERIC FUNCTION"); EXCEPTION WHEN CONSTRAINT_ERROR => IF R = NULL OR ELSE R.DISC /= 4 THEN FAILED (" ERROR IN EVALUATION/ASSIGNMENT OF " & "GENERIC ACCESS VALUE"); END IF; RESULT; END C38002B;
-- -- Copyright (C) 2017, AdaCore -- -- This spec has been automatically generated from M2Sxxx.svd pragma Ada_2012; pragma Style_Checks (Off); with System; -- General-purpose IO peripheral package Interfaces.SF2.GPIO is pragma Preelaborate; pragma No_Elaboration_Code_All; --------------- -- Registers -- --------------- -- Interrupt Type type CONFIG_TYPES_INT_Field is ( -- Level High Int_Level_High, -- Level Low Int_Level_Low, -- Edge Positive Int_Edge_Positive, -- Edge_Negative Int_Edge_Negative, -- Edge Both Int_Edge_Both) with Size => 3; for CONFIG_TYPES_INT_Field use (Int_Level_High => 0, Int_Level_Low => 1, Int_Edge_Positive => 2, Int_Edge_Negative => 3, Int_Edge_Both => 4); -- No description provided for this register type CONFIG_Register is record -- Output Reg Enable EN_OUT : Boolean := False; -- Input Reg Enable EN_IN : Boolean := False; -- Output Buffer Enable EN_OE_BUF : Boolean := False; -- Interrupt Enable EN_INT : Boolean := False; -- unspecified Reserved_4_4 : Interfaces.SF2.Bit := 16#0#; -- Interrupt Type TYPES_INT : CONFIG_TYPES_INT_Field := Interfaces.SF2.GPIO.Int_Level_High; -- unspecified Reserved_8_31 : Interfaces.SF2.UInt24 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for CONFIG_Register use record EN_OUT at 0 range 0 .. 0; EN_IN at 0 range 1 .. 1; EN_OE_BUF at 0 range 2 .. 2; EN_INT at 0 range 3 .. 3; Reserved_4_4 at 0 range 4 .. 4; TYPES_INT at 0 range 5 .. 7; Reserved_8_31 at 0 range 8 .. 31; end record; -- No description provided for this register type CONFIG_Registers is array (0 .. 31) of CONFIG_Register with Volatile; -- INTR_INT array type INTR_INT_Field_Array is array (0 .. 31) of Boolean with Component_Size => 1, Size => 32; -- GPIO Interrupt register type INTR_Register (As_Array : Boolean := False) is record case As_Array is when False => -- INT as a value Val : Interfaces.SF2.UInt32; when True => -- INT as an array Arr : INTR_INT_Field_Array; end case; end record with Unchecked_Union, Size => 32, Volatile_Full_Access, Bit_Order => System.Low_Order_First; for INTR_Register use record Val at 0 range 0 .. 31; Arr at 0 range 0 .. 31; end record; -- GPIN_IN array type GPIN_IN_Field_Array is array (0 .. 31) of Boolean with Component_Size => 1, Size => 32; -- GPIO input register - Read-only for input configured Ports type GPIN_Register (As_Array : Boolean := False) is record case As_Array is when False => -- IN as a value Val : Interfaces.SF2.UInt32; when True => -- IN as an array Arr : GPIN_IN_Field_Array; end case; end record with Unchecked_Union, Size => 32, Volatile_Full_Access, Bit_Order => System.Low_Order_First; for GPIN_Register use record Val at 0 range 0 .. 31; Arr at 0 range 0 .. 31; end record; -- GPOUT_OUT array type GPOUT_OUT_Field_Array is array (0 .. 31) of Boolean with Component_Size => 1, Size => 32; -- GPIO Output register - Writeable/Readable for output configured ports. -- No action required for input configured ports. type GPOUT_Register (As_Array : Boolean := False) is record case As_Array is when False => -- OUT as a value Val : Interfaces.SF2.UInt32; when True => -- OUT as an array Arr : GPOUT_OUT_Field_Array; end case; end record with Unchecked_Union, Size => 32, Volatile_Full_Access, Bit_Order => System.Low_Order_First; for GPOUT_Register use record Val at 0 range 0 .. 31; Arr at 0 range 0 .. 31; end record; ----------------- -- Peripherals -- ----------------- -- General-purpose IO peripheral type GPIO_Peripheral is record -- No description provided for this register CONFIG : aliased CONFIG_Registers; -- GPIO Interrupt register INTR : aliased INTR_Register; -- GPIO input register - Read-only for input configured Ports GPIN : aliased GPIN_Register; -- GPIO Output register - Writeable/Readable for output configured -- ports. No action required for input configured ports. GPOUT : aliased GPOUT_Register; end record with Volatile; for GPIO_Peripheral use record CONFIG at 16#0# range 0 .. 1023; INTR at 16#80# range 0 .. 31; GPIN at 16#84# range 0 .. 31; GPOUT at 16#88# range 0 .. 31; end record; -- General-purpose IO peripheral GPIO_Periph : aliased GPIO_Peripheral with Import, Address => GPIO_Base; end Interfaces.SF2.GPIO;
pragma Assertion_Policy (Check); with Ada.Strings.Fixed; package body GraphML_Writers is package S_F renames Ada.Strings.Fixed; use type S_U.Unbounded_String; function "+" (Str : String) return S_U.Unbounded_String is (S_U.To_Unbounded_String (Str)); NODE_TAG : constant String := "node"; EDGE_TAG : constant String := "edge"; NAME_TAG : constant S_U.Unbounded_String := +"name"; TYPE_TAG : constant S_U.Unbounded_String := +"type"; SUBTYPE_TAG : constant S_U.Unbounded_String := +"subtype"; function Edge_Data_Hash (Id : Edge_Data) return Ada.Containers.Hash_Type is use type Ada.Containers.Hash_Type; begin return 5 * Ada.Containers.Hash_Type (Id.Source_Id) + 3 * Ada.Containers.Hash_Type (Id.Target_Id) + S_U.Hash (Id.Edge_Ty); end Edge_Data_Hash; function Replace_All (Str : String; From : Character; To : String) return String; function Replace_All (Str : String; From : Character; To : String) return String is function Replace_Inner (Str : String; Index : Natural) return String; function Replace_Inner (Str : String; Index : Natural) return String is begin if Index = Str'First - 1 then return Str; elsif Str (Index) = From then return Replace_Inner (S_F.Replace_Slice (Str, Index, Index, To), Index - Str'First); else return Replace_Inner (Str, Index - 1); end if; end Replace_Inner; begin return Replace_Inner (Str, Str'Last); end Replace_All; function Escape (Str : String) return String; function Escape (Str : String) return String is begin return Replace_All (Replace_All (Replace_All (Replace_All (Replace_All (Str, '&', "&amp;"), '<', "&lt;"), '>', "&gt;"), '"', "&quot;"), ''', "&apos;"); end Escape; function Escape (Str : S_U.Unbounded_String) return String; function Escape (Str : S_U.Unbounded_String) return String is begin return Escape (S_U.To_String (Str)); end Escape; function Image (Ty : GraphML_Type) return String; function Image (Ty : GraphML_Type) return String is begin case Ty is when GraphML_Boolean => return "boolean"; when GraphML_Int => return "int"; when GraphML_String => return "string"; end case; end Image; procedure Write_String (Stream : Ada.Streams.Stream_IO.Stream_Access; Indent : Natural; Str : String); procedure Write_String (Stream : Ada.Streams.Stream_IO.Stream_Access; Indent : Natural; Str : String) is use S_F; begin String'Write (Stream, Indent * " "); String'Write (Stream, Str); Character'Write (Stream, ASCII.CR); Character'Write (Stream, ASCII.LF); end Write_String; procedure Write_Attribute_Keys (Stream : Ada.Streams.Stream_IO.Stream_Access; For_Tag : String; Attributes : Attribute_Definition_Sets.Map); procedure Write_Attribute_Keys (Stream : Ada.Streams.Stream_IO.Stream_Access; For_Tag : String; Attributes : Attribute_Definition_Sets.Map) is use Attribute_Definition_Sets; begin for Attribute in Attributes.Iterate loop declare Id_Attr : constant String := "id=""" & Escape (Key (Attribute)) & """"; For_Attr : constant String := "for=""" & For_Tag & """"; Attr_Name_Attr : constant String := "attr.name=""" & Escape (Key (Attribute)) & """"; Attr_Type_Attr : constant String := "attr.type=""" & Image (Element (Attribute)) & """"; begin Write_String (Stream, 1, "<key " & Id_Attr & " " & For_Attr & " " & Attr_Name_Attr & " " & Attr_Type_Attr & " />"); end; end loop; end Write_Attribute_Keys; function Create_GraphML_Writer (Filename : String; Node_Attributes : Attribute_Definition_Sets.Map := Attribute_Definition_Sets.Empty_Map; Edge_Attributes : Attribute_Definition_Sets.Map := Attribute_Definition_Sets.Empty_Map) return GraphML_File is XMLNS : constant String := "xmlns=""http://graphml.graphdrawing.org/xmlns"""; XMLNS_XSI : constant String := "xmlns:xsi=""http://www.w3.org/2001/XMLSchema-instance"""; SCHEMALOCATION : constant String := "schemaLocation=""http://graphml.graphdrawing.org/xmlns " & "http://graphml.graphdrawing.org/xmlns/1.0/graphml.xsd"""; begin return File : GraphML_File do Ada.Streams.Stream_IO.Create (File.File, Mode => Ada.Streams.Stream_IO.Out_File, Name => Filename); File.Stream := Ada.Streams.Stream_IO.Stream (File.File); File.Node_Attributes := Node_Attributes; File.Node_Attributes.Insert (NAME_TAG, GraphML_String); File.Node_Attributes.Insert (TYPE_TAG, GraphML_String); File.Node_Attributes.Insert (SUBTYPE_TAG, GraphML_String); File.Edge_Attributes := Edge_Attributes; File.Edge_Attributes.Insert (TYPE_TAG, GraphML_String); Write_String (File.Stream, 0, "<?xml version=""1.0"" encoding=""utf-8""?>"); Write_String (File.Stream, 0, "<graphml " & XMLNS & " " & XMLNS_XSI & " " & SCHEMALOCATION & " >"); Write_Attribute_Keys (File.Stream, NODE_TAG, File.Node_Attributes); Write_Attribute_Keys (File.Stream, EDGE_TAG, File.Edge_Attributes); Write_String (File.Stream, 1, "<graph edgedefault=""directed"">"); end return; end Create_GraphML_Writer; procedure Close (This : in out GraphML_File) is begin Write_String (This.Stream, 1, "</graph>"); Write_String (This.Stream, 0, "</graphml>"); Ada.Streams.Stream_IO.Close (This.File); end Close; procedure Write_Data (Stream : Ada.Streams.Stream_IO.Stream_Access; Attribute_Definitions : Attribute_Definition_Sets.Map; Attribute_Values : Attribute_Value_Sets.Map); procedure Write_Data (Stream : Ada.Streams.Stream_IO.Stream_Access; Attribute_Definitions : Attribute_Definition_Sets.Map; Attribute_Values : Attribute_Value_Sets.Map) is use Attribute_Value_Sets; begin for Attribute in Attribute_Values.Iterate loop if Attribute_Definitions.Contains (Key (Attribute)) then declare Key_Attr : constant String := "key=""" & Escape (Key (Attribute)) & """"; Value : constant String := Escape (Element (Attribute)); begin Write_String (Stream, 3, "<data " & Key_Attr & ">" & Value & "</data>"); end; end if; end loop; end Write_Data; procedure Write_Node_Internal (File : in out GraphML_File; Node_Key : String; Node_Name : String; Node_Ty : String; Node_Subty : String; Has_Node_Subty : Boolean; Node_Attributes : Attribute_Value_Sets.Map); procedure Write_Node_Internal (File : in out GraphML_File; Node_Key : String; Node_Name : String; Node_Ty : String; Node_Subty : String; Has_Node_Subty : Boolean; Node_Attributes : Attribute_Value_Sets.Map) is Key : constant S_U.Unbounded_String := +Node_Key; Id : constant Node_Id := (if File.Known_Nodes.Contains (Key) then File.Known_Nodes.Element (Key).Id else File.Next_Node_Id); Data : constant Node_Data := (Id => Id, Ty => +Node_Ty, Subty => +Node_Subty, Attributes => Node_Attributes); Id_Attr : constant String := "id=""" & S_F.Trim (Id'Image, Ada.Strings.Left) & """"; Subty : constant String := (if Has_Node_Subty then ":" & Escape (Node_Subty) else ""); Labels_Attr : constant String := "labels="":" & Escape (Node_Ty) & Subty & """"; begin if File.Known_Nodes.Contains (Key) then return; end if; File.Known_Nodes.Insert (Key, Data); File.Next_Node_Id := Id + 1; Write_String (File.Stream, 2, "<" & NODE_TAG & " " & Id_Attr & " " & Labels_Attr & ">"); declare Attributes : Attribute_Value_Sets.Map := Node_Attributes; begin Attributes.Insert (NAME_TAG, +Node_Name); Attributes.Insert (TYPE_TAG, +Node_Ty); if Has_Node_Subty then Attributes.Insert (SUBTYPE_TAG, +Node_Subty); end if; Write_Data (File.Stream, File.Node_Attributes, Attributes); end; Write_String (File.Stream, 2, "</" & NODE_TAG & ">"); end Write_Node_Internal; procedure Write_Node (This : in out GraphML_File; Node_Key : String; Node_Name : String; Node_Ty : Node_Type; Node_Attributes : Attribute_Value_Sets.Map := Attribute_Value_Sets.Empty_Map) is begin Write_Node_Internal (This, Node_Key, Node_Name, String (Node_Ty), "", False, Node_Attributes); end Write_Node; procedure Write_Node (This : in out GraphML_File; Node_Key : String; Node_Name : String; Node_Ty : Node_Type; Node_Subty : Node_Subtype; Node_Attributes : Attribute_Value_Sets.Map := Attribute_Value_Sets.Empty_Map) is NODE_SUBTY_STRING : constant String := String (Node_Subty); HAS_NODE_SUBTY : constant Boolean := NODE_SUBTY_STRING /= ""; begin Write_Node_Internal (This, Node_Key, Node_Name, String (Node_Ty), NODE_SUBTY_STRING, HAS_NODE_SUBTY, Node_Attributes); end Write_Node; procedure Write_Edge_Internal (File : in out GraphML_File; Source_Node_Key : String; Target_Node_Key : String; Edge_Ty : String; Edge_Attributes : Attribute_Value_Sets.Map); procedure Write_Edge_Internal (File : in out GraphML_File; Source_Node_Key : String; Target_Node_Key : String; Edge_Ty : String; Edge_Attributes : Attribute_Value_Sets.Map) is Source_Id : constant Node_Id := File.Known_Nodes.Element (+Source_Node_Key).Id; Target_Id : constant Node_Id := File.Known_Nodes.Element (+Target_Node_Key).Id; Element : constant Edge_Data := (Source_Id => Source_Id, Target_Id => Target_Id, Edge_Ty => +Edge_Ty, Attributes => Edge_Attributes); Source_Attr : constant String := "source=""" & S_F.Trim (Source_Id'Image, Ada.Strings.Left) & """"; Target_Attr : constant String := "target=""" & S_F.Trim (Target_Id'Image, Ada.Strings.Left) & """"; Label_Attr : constant String := "label=""" & Escape (Edge_Ty) & """"; begin if File.Known_Edges.Contains (Element) then return; end if; File.Known_Edges.Insert (Element); Write_String (File.Stream, 2, "<" & EDGE_TAG & " " & Source_Attr & " " & Target_Attr & " " & Label_Attr & ">"); declare TY : constant String := "type=" & Escape (Edge_Ty); SOURCE : constant String := "source=" & Escape (Source_Node_Key); TARGET : constant String := "target=" & Escape (Target_Node_Key); Attributes : Attribute_Value_Sets.Map := Edge_Attributes; begin Write_String (File.Stream, 3, "<desc>" & TY & " " & SOURCE & " " & TARGET & " " & TY & "</desc>"); Attributes.Insert (TYPE_TAG, +Edge_Ty); Write_Data (File.Stream, File.Edge_Attributes, Attributes); end; Write_String (File.Stream, 2, "</" & EDGE_TAG & ">"); end Write_Edge_Internal; procedure Write_Edge (This : in out GraphML_File; Source_Node_Key : String; Target_Node_Key : String; Edge_Ty : Edge_Type; Edge_Attributes : Attribute_Value_Sets.Map := Attribute_Value_Sets.Empty_Map) is begin pragma Assert (This.Known_Nodes.Contains (+Source_Node_Key), "Source_Node for " & String (Edge_Ty) & " absent: " & Source_Node_Key); pragma Assert (This.Known_Nodes.Contains (+Target_Node_Key), "Target_Node for " & String (Edge_Ty) & " absent: " & Target_Node_Key); Write_Edge_Internal (This, Source_Node_Key, Target_Node_Key, String (Edge_Ty), Edge_Attributes); end Write_Edge; end GraphML_Writers;
with float_Math.Geometry.d3.Modeller.Forge, ada.text_IO; procedure launch_basic_geometry_Demo -- -- A simple demonstration of the geometry packages. -- is package Math renames float_Math; use Math, math.Geometry, math.Geometry.d3.Modeller; procedure log (Message : in String) renames ada.text_IO.put_Line; the_Modeller : d3.Modeller.item; begin declare use float_math.Geometry.d3, float_math.Geometry.d3.Modeller.Forge; the_Model : float_math.Geometry.d3.a_Model := to_box_Model; begin log ("Box Model: " & Image (the_Model)); end; declare use float_math.Geometry.d3, float_math.Geometry.d3.Modeller.Forge; the_Model : float_math.Geometry.d3.a_Model := to_capsule_Model; begin log ("Capsule Model: " & Image (the_Model)); end; end launch_basic_geometry_Demo;
-- Copyright (c) 2020-2021 Bartek thindil Jasicki <thindil@laeran.pl> -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. with Tcl.Strings; use Tcl.Strings; with Tk.Frame; use Tk.Frame; with Tk.Menu; use Tk.Menu; with Tk.Widget; use Tk.Widget; -- ****h* Tk/TopLevel -- FUNCTION -- Provides code for manipulate Tk widget toplevel -- SOURCE package Tk.TopLevel is pragma Elaborate_Body; -- **** --## rule off REDUCEABLE_SCOPE -- ****t* TopLevel/Toplevel.Tk_Toplevel -- FUNCTION -- The Tk identifier of the toplevel -- HISTORY -- 8.6.0 - Added -- SOURCE subtype Tk_Toplevel is Tk_Widget; -- **** --## rule off TYPE_INITIAL_VALUES -- ****s* TopLevel/TopLevel.TopLevel_Options -- FUNCTION -- Data structure for all available options for the Tk toplevel which can -- be changed after creation of a widget -- OPTIONS -- Background - Normal Background color of the toplevel -- Border_Width - The width of the toplevel's border -- Height - Height of the toplevel. -- Highlight_Background - Highlight traversal region background color for -- the toplevel -- Highlight_Color - Highlight traversal rectangle color for the -- toplevel -- Highlight_Thickness - The width of highlight traversal rectangle for the -- toplevel -- Menu - Menu widget which will be used as menubar in the -- toplevel -- Pad_X - Extra space requested for the toplevel in X-direction -- Pad_Y - Extra space requested for the toplevel in Y-direction -- Relief - 3-D effect desired for the toplevel -- Width - Width of the toplevel -- HISTORY -- 8.6.0 - Added -- SOURCE type Toplevel_Options is new Frame_Options with record Menu: Tk_Menu := Null_Widget; end record; -- **** --## rule on TYPE_INITIAL_VALUES -- ****f* TopLevel/TopLevel.Configure -- FUNCTION -- Set the selected options for the selected toplevel -- PARAMETERS -- Toplevel_Widget - Tk_Toplevel which options will be set -- Options - The record with new values for the button options -- HISTORY -- 8.6.0 - Added -- EXAMPLE -- -- Set background to black for toplevel My_Dialog -- Configure(My_Dialog, (Background => To_Tcl_String("black"), others => <>)); -- SEE ALSO -- TopLevel.Get_Options -- COMMANDS -- Widget configure Options -- SOURCE overriding procedure Configure (Toplevel_Widget: Tk_Toplevel; Options: Toplevel_Options) with Pre'Class => Toplevel_Widget /= Null_Widget, Test_Case => (Name => "Test_Configure_TopLevel", Mode => Nominal); -- **** -- ****s* TopLevel/TopLevel.TopLevel_Create_Options -- FUNCTION -- Data structure for additional toplevel widget options which can be set -- only during creating a widget -- OPTIONS -- Class - The name of the class for the widget -- Color_Map - The name of the color map used by the widget. Can be -- `new` or name of the color map from another widget -- Container - If true, the widget will be used as container for another -- embedded application -- Screen - The name of the screen on which the widget will be placed -- Use_Container - Tk_Window which will be used as container for the widget -- Visual - Type of visual information for the widget -- HISTORY -- 8.6.0 - Added -- SOURCE type Toplevel_Create_Options is new Frame_Create_Options with record Menu: Tk_Menu := Null_Widget; Screen: Tcl_String := Null_Tcl_String; Use_Container: Tk_Window := Null_Window; end record; -- **** -- ****f* TopLevel/TopLevel.Create_(function) -- FUNCTION -- Create a new Tk toplevel widget with the selected pathname and options -- PARAMETERS -- Path_Name - Tk pathname for the newly created toplevel -- Options - Options for the newly created toplevel -- Interpreter - Tcl interpreter on which the toplevel will be created. Can -- be empty. Default value is the default Tcl interpreter -- RESULT -- The Tk identifier of the newly created toplevel widget or Null_Widget if -- the toplevel cannot be created -- HISTORY -- 8.6.0 - Added -- EXAMPLE -- -- Create the toplevel with pathname .mydialog and black background -- My_Dialog: constant Tk_TopLevel := Create(".mydialog", (Background => To_Tcl_String("black"), -- others => <>)); -- SEE ALSO -- TopLevel.Create_(procedure) -- COMMANDS -- toplevel Path_Name Options -- SOURCE overriding function Create (Path_Name: Tk_Path_String; Options: Toplevel_Create_Options; Interpreter: Tcl_Interpreter := Get_Interpreter) return Tk_Toplevel with Pre'Class => Path_Name'Length > 0 and Interpreter /= Null_Interpreter, Test_Case => (Name => "Test_Create_TopLevel1", Mode => Nominal); -- **** -- ****f* TopLevel/TopLevel.Create_(procedure) -- FUNCTION -- Create a new Tk toplevel widget with the selected pathname and options -- PARAMETERS -- Toplevel_Widget - Tk_Toplevel identifier which will be returned -- Path_Name - Tk pathname for the newly created toplevel -- Options - Options for the newly created toplevel -- Interpreter - Tcl interpreter on which the toplelve will be created. Can -- be empty. Default value is the default Tcl interpreter -- OUTPUT -- The Widget parameter as Tk identifier of the newly created toplevel -- widget or Null_Widget if the toplevel cannot be created -- HISTORY -- 8.6.0 - Added -- EXAMPLE -- -- Create the toplevel with pathname .mydialog -- declare -- My_Dialog: Tk_Toplevel; -- begin -- Create(My_Dialog, ".mydialog", Default_Toplevel_Create_Options); -- end; -- SEE ALSO -- TopLevel.Create_(function) -- COMMANDS -- toplevel Path_Name Options -- SOURCE overriding procedure Create (Toplevel_Widget: out Tk_Toplevel; Path_Name: Tk_Path_String; Options: Toplevel_Create_Options; Interpreter: Tcl_Interpreter := Get_Interpreter) with Pre'Class => Path_Name'Length > 0 and Interpreter /= Null_Interpreter, Test_Case => (Name => "Test_Create_TopLevel2", Mode => Nominal); -- **** -- ****f* TopLevel/TopLevel.Get_Options -- FUNCTION -- Get all values of Tk options of the selected toplevel -- PARAMETERS -- Toplevel_Widget - Tk_Toplevel which options' values will be taken -- RESULT -- TopLevel_Create_Options record with values of the selected toplevel -- options -- HISTORY -- 8.6.0 - Added -- EXAMPLE -- -- Get all values of option of toplevel with pathname .mydialog -- My_Dialog_Options: constant TopLevel_Create_Options := Get_Options(Get_Widget(".mydialog")); -- COMMANDS -- Widget configure -- SOURCE overriding function Get_Options (Toplevel_Widget: Tk_Toplevel) return Toplevel_Create_Options with Pre'Class => Toplevel_Widget /= Null_Widget, Test_Case => (Name => "Test_Get_Options_TopLevel", Mode => Nominal); -- **** -- ****d* TopLevel/TopLevel.Default_Toplevel_Create_Options -- FUNCTION -- Default options used during creating Toplevel widget -- HISTORY -- 8.6.0 - Added -- SOURCE Default_Toplevel_Create_Options: constant Toplevel_Create_Options := Toplevel_Create_Options'(others => <>); -- **** --## rule on REDUCEABLE_SCOPE end Tk.TopLevel;
package body Ada.Strings.Maps.Naked is function To_Set return Character_Set is begin return Create (Set_Data_Access (Source)); end To_Set; function To_Mapping return Character_Mapping is begin return Create (Map_Data_Access (Source)); end To_Mapping; end Ada.Strings.Maps.Naked;
-- part of AdaYaml, (c) 2017 Felix Krause -- released under the terms of the MIT license, see the file "copying.txt" with Ada.Containers.Indefinite_Hashed_Maps; with Ada.Containers.Vectors; with Yaml.Dom.Node; with Yaml.Dom.Mapping_Data; with Yaml.Dom.Sequence_Data; with Yaml.Parser.Stream; package body Yaml.Dom.Loading is use type Ada.Containers.Count_Type; package Anchor_Maps is new Ada.Containers.Indefinite_Hashed_Maps (Text.Reference, Node_Pointer, Text.Hash, Text."="); procedure Raw_Append (Container : in out Sequence_Data.Instance; New_Item : not null access Node.Instance) with Import, Convention => Ada, Link_Name => "AdaYaml__Sequence_Data__Raw_Append"; procedure Raw_Insert (Container : in out Mapping_Data.Instance; Key, Value : not null access Node.Instance) with Import, Convention => Ada, Link_Name => "AdaYaml__Mapping_Data__Raw_Insert"; function For_Document (Document : not null access Document_Instance) return Sequence_Data.Instance with Import, Convention => Ada, Link_Name => "AdaYaml__Sequence_Data__For_Document"; function For_Document (Document : not null access Document_Instance) return Mapping_Data.Instance with Import, Convention => Ada, Link_Name => "AdaYaml__Mapping_Data__For_Document"; type Level_Type is record Cur, Key : access Node.Instance; end record; package Level_Vectors is new Ada.Containers.Vectors (Positive, Level_Type); package body Stream_Loading is procedure Read_Document_Content (Target : not null access Document_Instance; Input : in out Stream.Instance) is Anchors : Anchor_Maps.Map; function Start_Node (E : Event; Is_Finished : out Boolean) return Node_Pointer is begin case E.Kind is when Scalar => Is_Finished := True; return Ret : constant Node_Pointer := new Node.Instance'(Kind => Scalar, Tag => E.Scalar_Properties.Tag, Scalar_Style => E.Scalar_Style, Content => E.Content) do if E.Scalar_Properties.Anchor.Length /= 0 then Anchors.Include (E.Scalar_Properties.Anchor, Ret); end if; end return; when Sequence_Start => Is_Finished := False; return Ret : constant Node_Pointer := new Node.Instance'(Kind => Sequence, Tag => E.Collection_Properties.Tag, Sequence_Style => E.Collection_Style, Items => For_Document (Target)) do if E.Collection_Properties.Anchor.Length /= 0 then Anchors.Include (E.Collection_Properties.Anchor, Ret); end if; end return; when Mapping_Start => Is_Finished := False; return Ret : constant Node_Pointer := new Node.Instance'(Kind => Mapping, Tag => E.Collection_Properties.Tag, Mapping_Style => E.Collection_Style, Pairs => For_Document (Target)) do if E.Collection_Properties.Anchor.Length /= 0 then Anchors.Include (E.Collection_Properties.Anchor, Ret); end if; end return; when Alias => declare Pos : constant Anchor_Maps.Cursor := Anchors.Find (E.Target); begin if Anchor_Maps.Has_Element (Pos) then Is_Finished := True; return Anchor_Maps.Element (Pos); else raise Composer_Error with "Unresolvable alias: " & E.Target.Value.Data.all; end if; end; when Annotation_Start => raise Composer_Error with "Annotations not implemented for DOM"; when others => raise Stream_Error with "Cannot start a node from event: " & E.Kind'Img; end case; end Start_Node; Is_Finished : Boolean; Level : Level_Type := (others => null); Context : Level_Vectors.Vector; begin Level.Cur := Start_Node (Stream.Next (Input), Is_Finished); loop if Is_Finished then exit when Context.Length = 0; declare Parent : Level_Type := Context.Last_Element; begin case Parent.Cur.Kind is when Sequence => Raw_Append (Parent.Cur.Items, Level.Cur); when Mapping => if Parent.Key = null then Parent.Key := Level.Cur.all'Unchecked_Access; else begin Raw_Insert (Parent.Cur.Pairs, Parent.Key, Level.Cur); exception when Constraint_Error => raise Composer_Error with "Duplicate key in mapping"; end; Parent.Key := null; end if; when Scalar => raise Program_Error with "Internal error: scalar node in DOM context"; end case; Level := Parent; Context.Delete_Last; end; end if; declare E : constant Event := Stream.Next (Input); begin case E.Kind is when Scalar | Sequence_Start | Mapping_Start | Alias | Annotation_Start => Context.Append (Level); Level := (Cur => Start_Node (E, Is_Finished), Key => null); when Mapping_End => if Level.Cur.Kind /= Mapping then raise Composer_Error with "Unexpected mapping end (expected sequence end)"; end if; if Level.Key /= null then raise Composer_Error with "Missing value for key in mapping"; end if; Is_Finished := True; when Sequence_End => if Level.Cur.Kind /= Sequence then raise Composer_Error with "Unexpected sequence end (expected mapping end)"; end if; Is_Finished := True; when Annotation_End => -- TODO raise Composer_Error with "Unexpected annotation end"; when Stream_Start | Document_Start | Document_End | Stream_End => raise Composer_Error with "Unexpected event inside document: " & E.Kind'Img; end case; end; end loop; Target.Root_Node := Level.Cur.all'Unchecked_Access; end Read_Document_Content; function Load_One (Input : in out Stream.Instance; Pool : Text.Pool.Reference := Text.Pool.With_Capacity (Text.Pool.Default_Size)) return Document_Reference is Head : Event := Stream.Next (Input); begin if Head.Kind /= Stream_Start then raise Stream_Error with "Unexpected event (expected stream start): " & Head.Kind'Img; end if; Head := Stream.Next (Input); if Head.Kind /= Document_Start then raise Stream_Error with "Unexpected event (expected document start): " & Head.Kind'Img; end if; return Ret : constant Document_Reference := (Ada.Finalization.Controlled with Data => new Document_Instance'(Refcount_Base with Root_Node => null, Pool => Pool, Implicit_Start => Head.Implicit_Start, Implicit_End => <>)) do Read_Document_Content (Ret.Data, Input); Head := Stream.Next (Input); if Head.Kind /= Document_End then raise Stream_Error with "Unexpected event (expected document end): " & Head.Kind'Img; end if; Ret.Data.Implicit_End := Head.Implicit_End; Head := Stream.Next (Input); case Head.Kind is when Stream_End => null; when Document_Start => raise Composer_Error with "Unexpected second document in stream"; when others => raise Stream_Error with "Unexpected event (expected stream end): " & Head.Kind'Img; end case; end return; end Load_One; function Load_All (Input : in out Stream.Instance; Pool : Text.Pool.Reference := Text.Pool.With_Capacity (Text.Pool.Default_Size)) return Vectors.Vector is Head : Event := Stream.Next (Input); begin if Head.Kind /= Stream_Start then raise Stream_Error with "Unexpected event (expected stream start): " & Head.Kind'Img; end if; Head := Stream.Next (Input); if Head.Kind /= Document_Start then raise Stream_Error with "Unexpected event (expected document start): " & Head.Kind'Img; end if; return Ret : Vectors.Vector do loop declare Doc : constant Document_Reference := (Document_Reference'(Ada.Finalization.Controlled with Data => new Document_Instance'(Refcount_Base with Root_Node => null, Pool => Pool, Implicit_Start => Head.Implicit_Start, Implicit_End => <>))); begin Read_Document_Content (Doc.Data, Input); Head := Stream.Next (Input); if Head.Kind /= Document_End then raise Stream_Error with "Unexpected event (expected document end): " & Head.Kind'Img; end if; Doc.Data.Implicit_End := Head.Implicit_End; Ret.Append (Doc); end; Head := Stream.Next (Input); exit when Head.Kind /= Document_Start; end loop; if Head.Kind /= Stream_End then raise Stream_Error with "Unexpected event (expected stream end): " & Head.Kind'Img; end if; end return; end Load_All; end Stream_Loading; package Parser_Loading is new Stream_Loading (Parser.Stream); function From_Source (Input : Source.Pointer) return Document_Reference is P : Yaml.Parser.Instance; begin P.Set_Input (Input); return Parser_Loading.Load_One (P, P.Pool); end From_Source; function From_Source (Input : Source.Pointer) return Vectors.Vector is P : Yaml.Parser.Instance; begin P.Set_Input (Input); return Parser_Loading.Load_All (P, P.Pool); end From_Source; function From_String (Input : String) return Document_Reference is P : Yaml.Parser.Instance; begin P.Set_Input (Input); return Parser_Loading.Load_One (P, P.Pool); end From_String; function From_String (Input : String) return Vectors.Vector is P : Yaml.Parser.Instance; begin P.Set_Input (Input); return Parser_Loading.Load_All (P, P.Pool); end From_String; end Yaml.Dom.Loading;
with Ada.Text_IO; use Ada.Text_IO; with Ada.Integer_Text_IO; use Ada.Integer_Text_IO; procedure Upg4 is type Ints is array(1..10) of Integer; type Arrs is array(1..20) of Ints; procedure Extract(Data: out Arrs) is File : File_Type; begin Open(File, In_File, "NUMMER.TXT"); for X in Data'Range loop for I in Ints'Range loop Get(File, Data(X)(I)); end loop; end loop; Close(File); end; procedure Sort(Arr: in out Ints) is procedure Swap(A,B: in out Integer) is C: Integer := A; begin A := B; B := C; end; begin for J in 2..Arr'Last loop for I in reverse J..Arr'Last loop if Arr(I) < Arr(I-1) then Swap(Arr(I), Arr(I-1)); end if; end loop; end loop; end; procedure Put(Data: in Arrs) is begin for X in Data'Range loop for I in reverse Ints'Range loop Put(Data(X)(I), 2); Put(' '); end loop; New_Line; end loop; end; Data: Arrs; begin Extract(Data); for I in Data'Range loop Sort(Data(I)); end loop; Put(Data); end;
with OpenAL.ALC_Thin; with OpenAL.List; with OpenAL.Types; package OpenAL.Context is -- -- Types -- type Device_t is private; type Context_t is private; type Context_Attributes_t is private; Invalid_Device : constant Device_t; Invalid_Context : constant Context_t; Null_Context : constant Context_t; type Format_t is (Mono_8, Stereo_8, Mono_16, Stereo_16, Unknown); subtype Request_Format_t is Format_t range Mono_8 .. Stereo_16; -- -- API -- -- proc_map : alcOpenDevice function Open_Device (Specifier : in String) return Device_t; -- proc_map : alcOpenDevice function Open_Default_Device return Device_t; procedure Set_Frequency (Attributes : in out Context_Attributes_t; Frequency : in Types.Frequency_t); procedure Set_Refresh (Attributes : in out Context_Attributes_t; Refresh : in Positive); procedure Set_Synchronous (Attributes : in out Context_Attributes_t; Synchronous : in Boolean); procedure Set_Mono_Sources (Attributes : in out Context_Attributes_t; Sources : in Natural); procedure Set_Stereo_Sources (Attributes : in out Context_Attributes_t; Sources : in Natural); -- proc_map : alcCloseDevice procedure Close_Device (Device : in out Device_t); -- proc_map : alcCreateContext function Create_Context (Device : in Device_t) return Context_t; -- proc_map : alcCreateContext function Create_Context_With_Attributes (Device : in Device_t; Attributes : in Context_Attributes_t) return Context_t; -- proc_map : alcMakeContextCurrent function Make_Context_Current (Context : in Context_t) return Boolean; -- proc_map : alcProcessContext procedure Process_Context (Context : in Context_t); -- proc_map : alcSuspendContext procedure Suspend_Context (Context : in Context_t); -- proc_map : alcDestroyContext procedure Destroy_Context (Context : in Context_t); -- proc_map : alcGetCurrentContext function Get_Current_Context return Context_t; -- proc_map : alcGetContextsDevice function Get_Context_Device (Context : in Context_t) return Device_t; -- proc_map : alcIsExtensionPresent function Is_Extension_Present (Device : in Device_t; Name : in String) return Boolean; -- -- String queries -- -- proc_map : alcGetString function Get_Default_Device_Specifier return String; -- proc_map : alcGetString function Get_Device_Specifier (Device : in Device_t) return String; -- proc_map : alcGetString function Get_Extensions (Device : in Device_t) return String; -- proc_map : alcGetString function Get_Default_Capture_Device_Specifier return String; -- proc_map : alcGetString function Get_Available_Capture_Devices return OpenAL.List.String_Vector_t; -- proc_map : alcGetString function Get_Available_Playback_Devices return OpenAL.List.String_Vector_t; -- -- Integer queries -- -- proc_map : alcGetIntegerv function Get_Major_Version (Device : in Device_t) return Natural; -- proc_map : alcGetIntegerv function Get_Minor_Version (Device : in Device_t) return Natural; -- proc_map : alcGetIntegerv function Get_Capture_Samples (Device : in Device_t) return Natural; -- proc_map : alcGetIntegerv function Get_Frequency (Device : in Device_t) return Types.Frequency_t; -- proc_map : alcGetIntegerv function Get_Refresh (Device : in Device_t) return Natural; -- proc_map : alcGetIntegerv function Get_Synchronous (Device : in Device_t) return Boolean; -- proc_map : alcGetIntegerv function Get_Mono_Sources (Device : in Device_t) return Natural; -- proc_map : alcGetIntegerv function Get_Stereo_Sources (Device : in Device_t) return Natural; -- -- Private conveniences. -- function Device_Data (Device : in Device_t) return ALC_Thin.Device_t; private type Device_t is record Device_Data : ALC_Thin.Device_t := ALC_Thin.Invalid_Device; Capture_Format : Format_t := Unknown; Capture : Boolean := False; end record; type Context_t is new ALC_Thin.Context_t; Invalid_Device : constant Device_t := (others => <>); Invalid_Context : constant Context_t := Context_t (ALC_Thin.Invalid_Context); Null_Context : constant Context_t := Invalid_Context; type Attribute_t is (Attribute_Frequency, Attribute_Refresh, Attribute_Synchronous, Attribute_Mono_Sources, Attribute_Stereo_Sources); type Attribute_Array_t is array (Attribute_t) of Types.Integer_t; type Attribute_Specified_t is array (Attribute_t) of Boolean; type Context_Attributes_t is record Values : Attribute_Array_t := (others => 0); Specified : Attribute_Specified_t := (others => False); end record; end OpenAL.Context;
-- This file is generated by SWIG. Please do *not* modify by hand. -- with box2d_c.Pointers; package box2d_c.pointer_Pointers is -- Shape_Pointer_Pointer -- type Shape_Pointer_Pointer is access all box2d_c.Pointers.Shape_Pointer; -- Object_Pointer_Pointer -- type Object_Pointer_Pointer is access all box2d_c.Pointers.Object_Pointer; -- Joint_Pointer_Pointer -- type Joint_Pointer_Pointer is access all box2d_c.Pointers.Joint_Pointer; -- Space_Pointer_Pointer -- type Space_Pointer_Pointer is access all box2d_c.Pointers.Space_Pointer; -- b2Joint_Pointer_Pointer -- type b2Joint_Pointer_Pointer is access all box2d_c.Pointers.b2Joint_Pointer; end box2d_c.pointer_Pointers;
with Ada.Unchecked_Conversion; with System; package body Crypto.SHA256 is use type C.signed_int; function Initial return Context is begin return Result : Context do if C.openssl.sha.SHA256_Init (Result.SHA'Access) = 0 then raise Use_Error; end if; end return; end Initial; procedure Update ( Context : in out SHA256.Context; Data : in Ada.Streams.Stream_Element_Array) is pragma Suppress (Index_Check); begin if C.openssl.sha.SHA256_Update ( Context.SHA'Access, C.void_const_ptr (Data (Data'First)'Address), Data'Length) = 0 then raise Use_Error; end if; end Update; procedure Update (Context : in out SHA256.Context; Data : in String) is pragma Suppress (Index_Check); begin if C.openssl.sha.SHA256_Update ( Context.SHA'Access, C.void_const_ptr (Data (Data'First)'Address), Data'Length) = 0 then raise Use_Error; end if; end Update; procedure Final (Context : in out SHA256.Context; Digest : out Fingerprint) is function To_Pointer is new Ada.Unchecked_Conversion (System.Address, C.unsigned_char_ptr); begin if C.openssl.sha.SHA256_Final ( To_Pointer (Digest (Digest'First)'Address), Context.SHA'Access) = 0 then raise Use_Error; end if; end Final; function Value (S : Message_Digest) return Fingerprint is begin return Result : Fingerprint do Value (S, Result); end return; end Value; function Image (Digest : in Fingerprint) return Message_Digest is begin return Result : Message_Digest do Image (Digest, Result); end return; end Image; end Crypto.SHA256;
with XML, ada.Strings.unbounded, ada.Text_IO; procedure launch_Tree -- -- Loads an xml file, parses it into a tree and displays the tree. -- is the_Tree : xml.Element := xml.to_XML ("./box.dae"); Depth : Natural := 0; procedure show_Element (the_Element : in xml.Element) is use ada.Strings.unbounded, ada.Text_IO; the_Children : xml.Elements := the_Element.Children; begin Depth := Depth + 1; for Each in 1 .. Depth-1 loop put (" "); end loop; put_Line (the_Element.Name); for Each in the_Children'range loop show_Element (the_Children (Each).all); end loop; Depth := Depth - 1; end show_Element; begin show_Element (the_Tree); end;
-- SipHash.Entropy -- A child package that attempts to set the key from an entropy source on the -- system. There are various different implementations of this that are selected -- at compile-time. -- Copyright (c) 2015, James Humphry - see LICENSE file for details generic package SipHash.Entropy with SPARK_Mode => On is Entropy_Unavailable : exception; -- This function indicates whether the program has been compiled with the -- possibility to set the SipHash key from system entropy. Note that even -- if this returns true it is still possible for Set_Key_From_System_Entropy -- to fail, for example if there is an IO error or the system declines to -- provide enough entropy. function System_Entropy_Source return Boolean; -- This procedure will set the SipHash key from a system entropy source, -- unless System_Entropy_Source is False or the system returns insufficient -- data, in which case it will raise No_Entropy_Available. procedure Set_Key_From_System_Entropy with Global => (Output => Initial_Hash_State); -- This procedure will set the SipHash key from a system entropy source, -- returning a boolean to indicate if it was successful. Failure can be -- caused by having no entropy source compiled into the library, or by an -- inability to retrieve sufficient data from the system. -- It would be nice to make this a function, but functions with side effects -- are not permitted by SPARK. procedure Set_Key_From_System_Entropy (Success : out Boolean) with Global => (Output => Initial_Hash_State); end SipHash.Entropy;
-- Generated at 2015-03-03 23:00:05 +0000 by Natools.Static_Hash_Maps -- from src/natools-web-tag_pages-maps.sx function Natools.Static_Maps.Web.Tag_Pages.T return Boolean; pragma Pure (Natools.Static_Maps.Web.Tag_Pages.T);
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- G N A T . S O C K E T S . T H I N -- -- -- -- B o d y -- -- -- -- Copyright (C) 2001-2005, AdaCore -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 2, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING. If not, write -- -- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, -- -- Boston, MA 02110-1301, USA. -- -- -- -- As a special exception, if other files instantiate generics from this -- -- unit, or you link this unit with other files to produce an executable, -- -- this unit does not by itself cause the resulting executable to be -- -- covered by the GNU General Public License. This exception does not -- -- however invalidate any other reasons why the executable file might be -- -- covered by the GNU Public License. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- This package provides a target dependent thin interface to the sockets -- layer for use by the GNAT.Sockets package (g-socket.ads). This package -- should not be directly with'ed by an applications program. -- This is the default version with GNAT.OS_Lib; use GNAT.OS_Lib; with GNAT.Task_Lock; with Interfaces.C; use Interfaces.C; package body GNAT.Sockets.Thin is Non_Blocking_Sockets : constant Fd_Set_Access := New_Socket_Set (No_Socket_Set); -- When this package is initialized with Process_Blocking_IO set -- to True, sockets are set in non-blocking mode to avoid blocking -- the whole process when a thread wants to perform a blocking IO -- operation. But the user can also set a socket in non-blocking -- mode by purpose. In order to make a difference between these -- two situations, we track the origin of non-blocking mode in -- Non_Blocking_Sockets. If S is in Non_Blocking_Sockets, it has -- been set in non-blocking mode by the user. Quantum : constant Duration := 0.2; -- When Thread_Blocking_IO is False, we set sockets in -- non-blocking mode and we spend a period of time Quantum between -- two attempts on a blocking operation. Thread_Blocking_IO : Boolean := True; -- Comment required for this ??? Unknown_System_Error : constant C.Strings.chars_ptr := C.Strings.New_String ("Unknown system error"); -- Comments required for following functions ??? function Syscall_Accept (S : C.int; Addr : System.Address; Addrlen : access C.int) return C.int; pragma Import (C, Syscall_Accept, "accept"); function Syscall_Connect (S : C.int; Name : System.Address; Namelen : C.int) return C.int; pragma Import (C, Syscall_Connect, "connect"); function Syscall_Ioctl (S : C.int; Req : C.int; Arg : Int_Access) return C.int; pragma Import (C, Syscall_Ioctl, "ioctl"); function Syscall_Recv (S : C.int; Msg : System.Address; Len : C.int; Flags : C.int) return C.int; pragma Import (C, Syscall_Recv, "recv"); function Syscall_Recvfrom (S : C.int; Msg : System.Address; Len : C.int; Flags : C.int; From : Sockaddr_In_Access; Fromlen : access C.int) return C.int; pragma Import (C, Syscall_Recvfrom, "recvfrom"); function Syscall_Send (S : C.int; Msg : System.Address; Len : C.int; Flags : C.int) return C.int; pragma Import (C, Syscall_Send, "send"); function Syscall_Sendto (S : C.int; Msg : System.Address; Len : C.int; Flags : C.int; To : Sockaddr_In_Access; Tolen : C.int) return C.int; pragma Import (C, Syscall_Sendto, "sendto"); function Syscall_Socket (Domain : C.int; Typ : C.int; Protocol : C.int) return C.int; pragma Import (C, Syscall_Socket, "socket"); procedure Disable_SIGPIPE (S : C.int); pragma Import (C, Disable_SIGPIPE, "__gnat_disable_sigpipe"); function Non_Blocking_Socket (S : C.int) return Boolean; procedure Set_Non_Blocking_Socket (S : C.int; V : Boolean); -------------- -- C_Accept -- -------------- function C_Accept (S : C.int; Addr : System.Address; Addrlen : access C.int) return C.int is R : C.int; Val : aliased C.int := 1; Discard : C.int; pragma Warnings (Off, Discard); begin loop R := Syscall_Accept (S, Addr, Addrlen); exit when Thread_Blocking_IO or else R /= Failure or else Non_Blocking_Socket (S) or else Errno /= Constants.EWOULDBLOCK; delay Quantum; end loop; if not Thread_Blocking_IO and then R /= Failure then -- A socket inherits the properties ot its server especially -- the FIONBIO flag. Do not use C_Ioctl as this subprogram -- tracks sockets set in non-blocking mode by user. Set_Non_Blocking_Socket (R, Non_Blocking_Socket (S)); Discard := Syscall_Ioctl (R, Constants.FIONBIO, Val'Unchecked_Access); end if; Disable_SIGPIPE (R); return R; end C_Accept; --------------- -- C_Connect -- --------------- function C_Connect (S : C.int; Name : System.Address; Namelen : C.int) return C.int is Res : C.int; begin Res := Syscall_Connect (S, Name, Namelen); if Thread_Blocking_IO or else Res /= Failure or else Non_Blocking_Socket (S) or else Errno /= Constants.EINPROGRESS then return Res; end if; declare WSet : Fd_Set_Access; Now : aliased Timeval; begin WSet := New_Socket_Set (No_Socket_Set); loop Insert_Socket_In_Set (WSet, S); Now := Immediat; Res := C_Select (S + 1, No_Fd_Set, WSet, No_Fd_Set, Now'Unchecked_Access); exit when Res > 0; if Res = Failure then Free_Socket_Set (WSet); return Res; end if; delay Quantum; end loop; Free_Socket_Set (WSet); end; Res := Syscall_Connect (S, Name, Namelen); if Res = Failure and then Errno = Constants.EISCONN then return Thin.Success; else return Res; end if; end C_Connect; ------------- -- C_Ioctl -- ------------- function C_Ioctl (S : C.int; Req : C.int; Arg : Int_Access) return C.int is begin if not Thread_Blocking_IO and then Req = Constants.FIONBIO then if Arg.all /= 0 then Set_Non_Blocking_Socket (S, True); end if; end if; return Syscall_Ioctl (S, Req, Arg); end C_Ioctl; ------------ -- C_Recv -- ------------ function C_Recv (S : C.int; Msg : System.Address; Len : C.int; Flags : C.int) return C.int is Res : C.int; begin loop Res := Syscall_Recv (S, Msg, Len, Flags); exit when Thread_Blocking_IO or else Res /= Failure or else Non_Blocking_Socket (S) or else Errno /= Constants.EWOULDBLOCK; delay Quantum; end loop; return Res; end C_Recv; ---------------- -- C_Recvfrom -- ---------------- function C_Recvfrom (S : C.int; Msg : System.Address; Len : C.int; Flags : C.int; From : Sockaddr_In_Access; Fromlen : access C.int) return C.int is Res : C.int; begin loop Res := Syscall_Recvfrom (S, Msg, Len, Flags, From, Fromlen); exit when Thread_Blocking_IO or else Res /= Failure or else Non_Blocking_Socket (S) or else Errno /= Constants.EWOULDBLOCK; delay Quantum; end loop; return Res; end C_Recvfrom; ------------ -- C_Send -- ------------ function C_Send (S : C.int; Msg : System.Address; Len : C.int; Flags : C.int) return C.int is Res : C.int; begin loop Res := Syscall_Send (S, Msg, Len, Flags); exit when Thread_Blocking_IO or else Res /= Failure or else Non_Blocking_Socket (S) or else Errno /= Constants.EWOULDBLOCK; delay Quantum; end loop; return Res; end C_Send; -------------- -- C_Sendto -- -------------- function C_Sendto (S : C.int; Msg : System.Address; Len : C.int; Flags : C.int; To : Sockaddr_In_Access; Tolen : C.int) return C.int is Res : C.int; begin loop Res := Syscall_Sendto (S, Msg, Len, Flags, To, Tolen); exit when Thread_Blocking_IO or else Res /= Failure or else Non_Blocking_Socket (S) or else Errno /= Constants.EWOULDBLOCK; delay Quantum; end loop; return Res; end C_Sendto; -------------- -- C_Socket -- -------------- function C_Socket (Domain : C.int; Typ : C.int; Protocol : C.int) return C.int is R : C.int; Val : aliased C.int := 1; Discard : C.int; pragma Unreferenced (Discard); begin R := Syscall_Socket (Domain, Typ, Protocol); if not Thread_Blocking_IO and then R /= Failure then -- Do not use C_Ioctl as this subprogram tracks sockets set -- in non-blocking mode by user. Discard := Syscall_Ioctl (R, Constants.FIONBIO, Val'Unchecked_Access); Set_Non_Blocking_Socket (R, False); end if; Disable_SIGPIPE (R); return R; end C_Socket; -------------- -- Finalize -- -------------- procedure Finalize is begin null; end Finalize; ---------------- -- Initialize -- ---------------- procedure Initialize (Process_Blocking_IO : Boolean) is begin Thread_Blocking_IO := not Process_Blocking_IO; end Initialize; ------------------------- -- Non_Blocking_Socket -- ------------------------- function Non_Blocking_Socket (S : C.int) return Boolean is R : Boolean; begin Task_Lock.Lock; R := (Is_Socket_In_Set (Non_Blocking_Sockets, S) /= 0); Task_Lock.Unlock; return R; end Non_Blocking_Socket; ----------------- -- Set_Address -- ----------------- procedure Set_Address (Sin : Sockaddr_In_Access; Address : In_Addr) is begin Sin.Sin_Addr := Address; end Set_Address; ---------------- -- Set_Family -- ---------------- procedure Set_Family (Sin : Sockaddr_In_Access; Family : C.int) is begin Sin.Sin_Family := C.unsigned_short (Family); end Set_Family; ---------------- -- Set_Length -- ---------------- procedure Set_Length (Sin : Sockaddr_In_Access; Len : C.int) is pragma Unreferenced (Sin); pragma Unreferenced (Len); begin null; end Set_Length; ----------------------------- -- Set_Non_Blocking_Socket -- ----------------------------- procedure Set_Non_Blocking_Socket (S : C.int; V : Boolean) is begin Task_Lock.Lock; if V then Insert_Socket_In_Set (Non_Blocking_Sockets, S); else Remove_Socket_From_Set (Non_Blocking_Sockets, S); end if; Task_Lock.Unlock; end Set_Non_Blocking_Socket; -------------- -- Set_Port -- -------------- procedure Set_Port (Sin : Sockaddr_In_Access; Port : C.unsigned_short) is begin Sin.Sin_Port := Port; end Set_Port; -------------------------- -- Socket_Error_Message -- -------------------------- function Socket_Error_Message (Errno : Integer) return C.Strings.chars_ptr is use type Interfaces.C.Strings.chars_ptr; C_Msg : C.Strings.chars_ptr; begin C_Msg := C_Strerror (C.int (Errno)); if C_Msg = C.Strings.Null_Ptr then return Unknown_System_Error; else return C_Msg; end if; end Socket_Error_Message; end GNAT.Sockets.Thin;
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- I N T E R F A C E S . C . S T R I N G S -- -- -- -- B o d y -- -- -- -- $Revision$ -- -- -- Copyright (C) 1992-2000 Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 2, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING. If not, write -- -- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, -- -- MA 02111-1307, USA. -- -- -- -- As a special exception, if other files instantiate generics from this -- -- unit, or you link this unit with other files to produce an executable, -- -- this unit does not by itself cause the resulting executable to be -- -- covered by the GNU General Public License. This exception does not -- -- however invalidate any other reasons why the executable file might be -- -- covered by the GNU Public License. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ with System; use System; with System.Address_To_Access_Conversions; package body Interfaces.C.Strings is package Char_Access is new Address_To_Access_Conversions (char); ----------------------- -- Local Subprograms -- ----------------------- function Peek (From : chars_ptr) return char; pragma Inline (Peek); -- Given a chars_ptr value, obtain referenced character procedure Poke (Value : char; Into : chars_ptr); pragma Inline (Poke); -- Given a chars_ptr, modify referenced Character value function "+" (Left : chars_ptr; Right : size_t) return chars_ptr; pragma Inline ("+"); -- Address arithmetic on chars_ptr value function Position_Of_Nul (Into : char_array) return size_t; -- Returns position of the first Nul in Into or Into'Last + 1 if none function C_Malloc (Size : size_t) return chars_ptr; pragma Import (C, C_Malloc, "__gnat_malloc"); procedure C_Free (Address : chars_ptr); pragma Import (C, C_Free, "__gnat_free"); --------- -- "+" -- --------- function "+" (Left : chars_ptr; Right : size_t) return chars_ptr is begin return Left + chars_ptr (Right); end "+"; ---------- -- Free -- ---------- procedure Free (Item : in out chars_ptr) is begin if Item = Null_Ptr then return; end if; C_Free (Item); Item := Null_Ptr; end Free; -------------------- -- New_Char_Array -- -------------------- function New_Char_Array (Chars : in char_array) return chars_ptr is Index : size_t; Pointer : chars_ptr; begin -- Get index of position of null. If Index > Chars'last, -- nul is absent and must be added explicitly. Index := Position_Of_Nul (Into => Chars); Pointer := C_Malloc ((Index - Chars'First + 1)); -- If nul is present, transfer string up to and including it. if Index <= Chars'Last then Update (Item => Pointer, Offset => 0, Chars => Chars (Chars'First .. Index), Check => False); else -- If original string has no nul, transfer whole string and add -- terminator explicitly. Update (Item => Pointer, Offset => 0, Chars => Chars, Check => False); Poke (nul, into => Pointer + size_t '(Chars'Length)); end if; return Pointer; end New_Char_Array; ---------------- -- New_String -- ---------------- function New_String (Str : in String) return chars_ptr is begin return New_Char_Array (To_C (Str)); end New_String; ---------- -- Peek -- ---------- function Peek (From : chars_ptr) return char is use Char_Access; begin return To_Pointer (Address (To_Address (From))).all; end Peek; ---------- -- Poke -- ---------- procedure Poke (Value : char; Into : chars_ptr) is use Char_Access; begin To_Pointer (Address (To_Address (Into))).all := Value; end Poke; --------------------- -- Position_Of_Nul -- --------------------- function Position_Of_Nul (Into : char_array) return size_t is begin for J in Into'Range loop if Into (J) = nul then return J; end if; end loop; return Into'Last + 1; end Position_Of_Nul; ------------ -- Strlen -- ------------ function Strlen (Item : in chars_ptr) return size_t is Item_Index : size_t := 0; begin if Item = Null_Ptr then raise Dereference_Error; end if; loop if Peek (Item + Item_Index) = nul then return Item_Index; end if; Item_Index := Item_Index + 1; end loop; end Strlen; ------------------ -- To_Chars_Ptr -- ------------------ function To_Chars_Ptr (Item : in char_array_access; Nul_Check : in Boolean := False) return chars_ptr is begin if Item = null then return Null_Ptr; elsif Nul_Check and then Position_Of_Nul (Into => Item.all) > Item'Last then raise Terminator_Error; else return To_Integer (Item (Item'First)'Address); end if; end To_Chars_Ptr; ------------ -- Update -- ------------ procedure Update (Item : in chars_ptr; Offset : in size_t; Chars : in char_array; Check : Boolean := True) is Index : chars_ptr := Item + Offset; begin if Check and then Offset + Chars'Length > Strlen (Item) then raise Update_Error; end if; for J in Chars'Range loop Poke (Chars (J), Into => Index); Index := Index + size_t'(1); end loop; end Update; procedure Update (Item : in chars_ptr; Offset : in size_t; Str : in String; Check : in Boolean := True) is begin Update (Item, Offset, To_C (Str), Check); end Update; ----------- -- Value -- ----------- function Value (Item : in chars_ptr) return char_array is Result : char_array (0 .. Strlen (Item)); begin if Item = Null_Ptr then raise Dereference_Error; end if; -- Note that the following loop will also copy the terminating Nul for J in Result'Range loop Result (J) := Peek (Item + J); end loop; return Result; end Value; function Value (Item : in chars_ptr; Length : in size_t) return char_array is begin if Item = Null_Ptr then raise Dereference_Error; end if; -- ACATS cxb3010 checks that Constraint_Error gets raised when Length -- is 0. Seems better to check that Length is not null before declaring -- an array with size_t bounds of 0 .. Length - 1 anyway. if Length = 0 then raise Constraint_Error; end if; declare Result : char_array (0 .. Length - 1); begin for J in Result'Range loop Result (J) := Peek (Item + J); if Result (J) = nul then return Result (0 .. J); end if; end loop; return Result; end; end Value; function Value (Item : in chars_ptr) return String is begin return To_Ada (Value (Item)); end Value; -- As per AI-00177, this is equivalent to -- To_Ada (Value (Item, Length) & nul); function Value (Item : in chars_ptr; Length : in size_t) return String is Result : char_array (0 .. Length); begin if Item = Null_Ptr then raise Dereference_Error; end if; for J in 0 .. Length - 1 loop Result (J) := Peek (Item + J); if Result (J) = nul then return To_Ada (Result (0 .. J)); end if; end loop; Result (Length) := nul; return To_Ada (Result); end Value; end Interfaces.C.Strings;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- A D A . N U M E R I C S . G E N E R I C _ C O M P L E X _ T Y P E S -- -- -- -- B o d y -- -- -- -- Copyright (C) 1992-2006, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 2, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING. If not, write -- -- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, -- -- Boston, MA 02110-1301, USA. -- -- -- -- As a special exception, if other files instantiate generics from this -- -- unit, or you link this unit with other files to produce an executable, -- -- this unit does not by itself cause the resulting executable to be -- -- covered by the GNU General Public License. This exception does not -- -- however invalidate any other reasons why the executable file might be -- -- covered by the GNU Public License. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ with Ada.Numerics.Aux; use Ada.Numerics.Aux; package body Ada.Numerics.Generic_Complex_Types is subtype R is Real'Base; Two_Pi : constant R := R (2.0) * Pi; Half_Pi : constant R := Pi / R (2.0); --------- -- "*" -- --------- function "*" (Left, Right : Complex) return Complex is X : R; Y : R; begin X := Left.Re * Right.Re - Left.Im * Right.Im; Y := Left.Re * Right.Im + Left.Im * Right.Re; -- If either component overflows, try to scale if abs (X) > R'Last then X := R'(4.0) * (R'(Left.Re / 2.0) * R'(Right.Re / 2.0) - R'(Left.Im / 2.0) * R'(Right.Im / 2.0)); end if; if abs (Y) > R'Last then Y := R'(4.0) * (R'(Left.Re / 2.0) * R'(Right.Im / 2.0) - R'(Left.Im / 2.0) * R'(Right.Re / 2.0)); end if; return (X, Y); end "*"; function "*" (Left, Right : Imaginary) return Real'Base is begin return -R (Left) * R (Right); end "*"; function "*" (Left : Complex; Right : Real'Base) return Complex is begin return Complex'(Left.Re * Right, Left.Im * Right); end "*"; function "*" (Left : Real'Base; Right : Complex) return Complex is begin return (Left * Right.Re, Left * Right.Im); end "*"; function "*" (Left : Complex; Right : Imaginary) return Complex is begin return Complex'(-(Left.Im * R (Right)), Left.Re * R (Right)); end "*"; function "*" (Left : Imaginary; Right : Complex) return Complex is begin return Complex'(-(R (Left) * Right.Im), R (Left) * Right.Re); end "*"; function "*" (Left : Imaginary; Right : Real'Base) return Imaginary is begin return Left * Imaginary (Right); end "*"; function "*" (Left : Real'Base; Right : Imaginary) return Imaginary is begin return Imaginary (Left * R (Right)); end "*"; ---------- -- "**" -- ---------- function "**" (Left : Complex; Right : Integer) return Complex is Result : Complex := (1.0, 0.0); Factor : Complex := Left; Exp : Integer := Right; begin -- We use the standard logarithmic approach, Exp gets shifted right -- testing successive low order bits and Factor is the value of the -- base raised to the next power of 2. For positive exponents we -- multiply the result by this factor, for negative exponents, we -- divide by this factor. if Exp >= 0 then -- For a positive exponent, if we get a constraint error during -- this loop, it is an overflow, and the constraint error will -- simply be passed on to the caller. while Exp /= 0 loop if Exp rem 2 /= 0 then Result := Result * Factor; end if; Factor := Factor * Factor; Exp := Exp / 2; end loop; return Result; else -- Exp < 0 then -- For the negative exponent case, a constraint error during this -- calculation happens if Factor gets too large, and the proper -- response is to return 0.0, since what we essentially have is -- 1.0 / infinity, and the closest model number will be zero. begin while Exp /= 0 loop if Exp rem 2 /= 0 then Result := Result * Factor; end if; Factor := Factor * Factor; Exp := Exp / 2; end loop; return R'(1.0) / Result; exception when Constraint_Error => return (0.0, 0.0); end; end if; end "**"; function "**" (Left : Imaginary; Right : Integer) return Complex is M : constant R := R (Left) ** Right; begin case Right mod 4 is when 0 => return (M, 0.0); when 1 => return (0.0, M); when 2 => return (-M, 0.0); when 3 => return (0.0, -M); when others => raise Program_Error; end case; end "**"; --------- -- "+" -- --------- function "+" (Right : Complex) return Complex is begin return Right; end "+"; function "+" (Left, Right : Complex) return Complex is begin return Complex'(Left.Re + Right.Re, Left.Im + Right.Im); end "+"; function "+" (Right : Imaginary) return Imaginary is begin return Right; end "+"; function "+" (Left, Right : Imaginary) return Imaginary is begin return Imaginary (R (Left) + R (Right)); end "+"; function "+" (Left : Complex; Right : Real'Base) return Complex is begin return Complex'(Left.Re + Right, Left.Im); end "+"; function "+" (Left : Real'Base; Right : Complex) return Complex is begin return Complex'(Left + Right.Re, Right.Im); end "+"; function "+" (Left : Complex; Right : Imaginary) return Complex is begin return Complex'(Left.Re, Left.Im + R (Right)); end "+"; function "+" (Left : Imaginary; Right : Complex) return Complex is begin return Complex'(Right.Re, R (Left) + Right.Im); end "+"; function "+" (Left : Imaginary; Right : Real'Base) return Complex is begin return Complex'(Right, R (Left)); end "+"; function "+" (Left : Real'Base; Right : Imaginary) return Complex is begin return Complex'(Left, R (Right)); end "+"; --------- -- "-" -- --------- function "-" (Right : Complex) return Complex is begin return (-Right.Re, -Right.Im); end "-"; function "-" (Left, Right : Complex) return Complex is begin return (Left.Re - Right.Re, Left.Im - Right.Im); end "-"; function "-" (Right : Imaginary) return Imaginary is begin return Imaginary (-R (Right)); end "-"; function "-" (Left, Right : Imaginary) return Imaginary is begin return Imaginary (R (Left) - R (Right)); end "-"; function "-" (Left : Complex; Right : Real'Base) return Complex is begin return Complex'(Left.Re - Right, Left.Im); end "-"; function "-" (Left : Real'Base; Right : Complex) return Complex is begin return Complex'(Left - Right.Re, -Right.Im); end "-"; function "-" (Left : Complex; Right : Imaginary) return Complex is begin return Complex'(Left.Re, Left.Im - R (Right)); end "-"; function "-" (Left : Imaginary; Right : Complex) return Complex is begin return Complex'(-Right.Re, R (Left) - Right.Im); end "-"; function "-" (Left : Imaginary; Right : Real'Base) return Complex is begin return Complex'(-Right, R (Left)); end "-"; function "-" (Left : Real'Base; Right : Imaginary) return Complex is begin return Complex'(Left, -R (Right)); end "-"; --------- -- "/" -- --------- function "/" (Left, Right : Complex) return Complex is a : constant R := Left.Re; b : constant R := Left.Im; c : constant R := Right.Re; d : constant R := Right.Im; begin if c = 0.0 and then d = 0.0 then raise Constraint_Error; else return Complex'(Re => ((a * c) + (b * d)) / (c ** 2 + d ** 2), Im => ((b * c) - (a * d)) / (c ** 2 + d ** 2)); end if; end "/"; function "/" (Left, Right : Imaginary) return Real'Base is begin return R (Left) / R (Right); end "/"; function "/" (Left : Complex; Right : Real'Base) return Complex is begin return Complex'(Left.Re / Right, Left.Im / Right); end "/"; function "/" (Left : Real'Base; Right : Complex) return Complex is a : constant R := Left; c : constant R := Right.Re; d : constant R := Right.Im; begin return Complex'(Re => (a * c) / (c ** 2 + d ** 2), Im => -(a * d) / (c ** 2 + d ** 2)); end "/"; function "/" (Left : Complex; Right : Imaginary) return Complex is a : constant R := Left.Re; b : constant R := Left.Im; d : constant R := R (Right); begin return (b / d, -a / d); end "/"; function "/" (Left : Imaginary; Right : Complex) return Complex is b : constant R := R (Left); c : constant R := Right.Re; d : constant R := Right.Im; begin return (Re => b * d / (c ** 2 + d ** 2), Im => b * c / (c ** 2 + d ** 2)); end "/"; function "/" (Left : Imaginary; Right : Real'Base) return Imaginary is begin return Imaginary (R (Left) / Right); end "/"; function "/" (Left : Real'Base; Right : Imaginary) return Imaginary is begin return Imaginary (-Left / R (Right)); end "/"; --------- -- "<" -- --------- function "<" (Left, Right : Imaginary) return Boolean is begin return R (Left) < R (Right); end "<"; ---------- -- "<=" -- ---------- function "<=" (Left, Right : Imaginary) return Boolean is begin return R (Left) <= R (Right); end "<="; --------- -- ">" -- --------- function ">" (Left, Right : Imaginary) return Boolean is begin return R (Left) > R (Right); end ">"; ---------- -- ">=" -- ---------- function ">=" (Left, Right : Imaginary) return Boolean is begin return R (Left) >= R (Right); end ">="; ----------- -- "abs" -- ----------- function "abs" (Right : Imaginary) return Real'Base is begin return abs R (Right); end "abs"; -------------- -- Argument -- -------------- function Argument (X : Complex) return Real'Base is a : constant R := X.Re; b : constant R := X.Im; arg : R; begin if b = 0.0 then if a >= 0.0 then return 0.0; else return R'Copy_Sign (Pi, b); end if; elsif a = 0.0 then if b >= 0.0 then return Half_Pi; else return -Half_Pi; end if; else arg := R (Atan (Double (abs (b / a)))); if a > 0.0 then if b > 0.0 then return arg; else -- b < 0.0 return -arg; end if; else -- a < 0.0 if b >= 0.0 then return Pi - arg; else -- b < 0.0 return -(Pi - arg); end if; end if; end if; exception when Constraint_Error => if b > 0.0 then return Half_Pi; else return -Half_Pi; end if; end Argument; function Argument (X : Complex; Cycle : Real'Base) return Real'Base is begin if Cycle > 0.0 then return Argument (X) * Cycle / Two_Pi; else raise Argument_Error; end if; end Argument; ---------------------------- -- Compose_From_Cartesian -- ---------------------------- function Compose_From_Cartesian (Re, Im : Real'Base) return Complex is begin return (Re, Im); end Compose_From_Cartesian; function Compose_From_Cartesian (Re : Real'Base) return Complex is begin return (Re, 0.0); end Compose_From_Cartesian; function Compose_From_Cartesian (Im : Imaginary) return Complex is begin return (0.0, R (Im)); end Compose_From_Cartesian; ------------------------ -- Compose_From_Polar -- ------------------------ function Compose_From_Polar ( Modulus, Argument : Real'Base) return Complex is begin if Modulus = 0.0 then return (0.0, 0.0); else return (Modulus * R (Cos (Double (Argument))), Modulus * R (Sin (Double (Argument)))); end if; end Compose_From_Polar; function Compose_From_Polar ( Modulus, Argument, Cycle : Real'Base) return Complex is Arg : Real'Base; begin if Modulus = 0.0 then return (0.0, 0.0); elsif Cycle > 0.0 then if Argument = 0.0 then return (Modulus, 0.0); elsif Argument = Cycle / 4.0 then return (0.0, Modulus); elsif Argument = Cycle / 2.0 then return (-Modulus, 0.0); elsif Argument = 3.0 * Cycle / R (4.0) then return (0.0, -Modulus); else Arg := Two_Pi * Argument / Cycle; return (Modulus * R (Cos (Double (Arg))), Modulus * R (Sin (Double (Arg)))); end if; else raise Argument_Error; end if; end Compose_From_Polar; --------------- -- Conjugate -- --------------- function Conjugate (X : Complex) return Complex is begin return Complex'(X.Re, -X.Im); end Conjugate; -------- -- Im -- -------- function Im (X : Complex) return Real'Base is begin return X.Im; end Im; function Im (X : Imaginary) return Real'Base is begin return R (X); end Im; ------------- -- Modulus -- ------------- function Modulus (X : Complex) return Real'Base is Re2, Im2 : R; begin begin Re2 := X.Re ** 2; -- To compute (a**2 + b**2) ** (0.5) when a**2 may be out of bounds, -- compute a * (1 + (b/a) **2) ** (0.5). On a machine where the -- squaring does not raise constraint_error but generates infinity, -- we can use an explicit comparison to determine whether to use -- the scaling expression. -- The scaling expression is computed in double format throughout -- in order to prevent inaccuracies on machines where not all -- immediate expressions are rounded, such as PowerPC. if Re2 > R'Last then raise Constraint_Error; end if; exception when Constraint_Error => return R (Double (abs (X.Re)) * Sqrt (1.0 + (Double (X.Im) / Double (X.Re)) ** 2)); end; begin Im2 := X.Im ** 2; if Im2 > R'Last then raise Constraint_Error; end if; exception when Constraint_Error => return R (Double (abs (X.Im)) * Sqrt (1.0 + (Double (X.Re) / Double (X.Im)) ** 2)); end; -- Now deal with cases of underflow. If only one of the squares -- underflows, return the modulus of the other component. If both -- squares underflow, use scaling as above. if Re2 = 0.0 then if X.Re = 0.0 then return abs (X.Im); elsif Im2 = 0.0 then if X.Im = 0.0 then return abs (X.Re); else if abs (X.Re) > abs (X.Im) then return R (Double (abs (X.Re)) * Sqrt (1.0 + (Double (X.Im) / Double (X.Re)) ** 2)); else return R (Double (abs (X.Im)) * Sqrt (1.0 + (Double (X.Re) / Double (X.Im)) ** 2)); end if; end if; else return abs (X.Im); end if; elsif Im2 = 0.0 then return abs (X.Re); -- In all other cases, the naive computation will do else return R (Sqrt (Double (Re2 + Im2))); end if; end Modulus; -------- -- Re -- -------- function Re (X : Complex) return Real'Base is begin return X.Re; end Re; ------------ -- Set_Im -- ------------ procedure Set_Im (X : in out Complex; Im : Real'Base) is begin X.Im := Im; end Set_Im; procedure Set_Im (X : out Imaginary; Im : Real'Base) is begin X := Imaginary (Im); end Set_Im; ------------ -- Set_Re -- ------------ procedure Set_Re (X : in out Complex; Re : Real'Base) is begin X.Re := Re; end Set_Re; end Ada.Numerics.Generic_Complex_Types;
with Ada.Strings.Fixed; with Ada.Integer_Text_IO; -- Copyright 2021 Melwyn Francis Carlo procedure A020 is use Ada.Strings.Fixed; use Ada.Integer_Text_IO; N_Str : array (Integer range 1 .. 500) of Character := ('1', others => '0'); Products_Array : array (Integer range 1 .. 500, Integer range 1 .. 500) of Character; Temp_Product : String (1 .. 3); Temp_Sum_Str : String (1 .. 2); Sum_Of_Digits : Integer := 0; Str_Length : Integer := 1; Temp_Sum, Temp_Len : Integer; begin for I in 2 .. 100 loop for J in reverse 1 .. Str_Length loop Temp_Sum := I * (Character'Pos (N_Str (J)) - Character'Pos ('0')); Temp_Product := "000"; if (Temp_Sum > 0) then Temp_Len := Trim (Integer'Image (Temp_Sum), Ada.Strings.Both)'Length; Temp_Product ((4 - Temp_Len) .. 3) := Trim (Integer'Image ( Temp_Sum), Ada.Strings.Both); end if; for K1 in 1 .. J loop Products_Array (J, K1) := '0'; end loop; for K2 in (J + 1) .. (J + 3) loop Products_Array (J, K2) := Temp_Product (K2 - J); end loop; for K3 in (J + 4) .. (Str_Length + 4) loop Products_Array (J, K3) := '0'; end loop; end loop; N_Str := (others => '0'); for K in reverse 2 .. (Str_Length + 3 - 1) loop Temp_Sum := 0; for J in 1 .. Str_Length loop Temp_Sum := Temp_Sum + Character'Pos (Products_Array (J, K + 1)) - Character'Pos ('0'); end loop; Temp_Sum := Temp_Sum + Character'Pos (N_Str (K)) - Character'Pos ('0'); Temp_Len := Trim (Integer'Image (Temp_Sum), Ada.Strings.Both)'Length; Temp_Sum_Str := "00"; if Temp_Len = 1 then Temp_Sum_Str (2) := Trim (Integer'Image (Temp_Sum), Ada.Strings.Both) (1); else Temp_Sum_Str := Trim (Integer'Image (Temp_Sum), Ada.Strings.Both) (1 .. 2); end if; N_Str (K) := Temp_Sum_Str (2); N_Str (K - 1) := Temp_Sum_Str (1); end loop; Str_Length := Str_Length + 2; end loop; for I in 1 .. Str_Length loop Sum_Of_Digits := Sum_Of_Digits + Character'Pos (N_Str (I)) - Character'Pos ('0'); end loop; Put (Sum_Of_Digits, Width => 0); end A020;
with Ada.Streams; with Ada.Unchecked_Conversion; package Tkmrpc.Request.Convert is subtype Stream_Range is Ada.Streams.Stream_Element_Offset range 1 .. Request_Size; subtype Stream_Type is Ada.Streams.Stream_Element_Array (Stream_Range); function To_Stream is new Ada.Unchecked_Conversion ( Source => Data_Type, Target => Stream_Type); -- Convert given request data to stream array. function From_Stream is new Ada.Unchecked_Conversion ( Source => Stream_Type, Target => Data_Type); -- Convert stream array to request data. end Tkmrpc.Request.Convert;
with SPARKNaCl; use SPARKNaCl; with SPARKNaCl.Sign; use SPARKNaCl.Sign; with SPARKNaCl.Debug; use SPARKNaCl.Debug; with Ada.Text_IO; use Ada.Text_IO; with Ada.Unchecked_Conversion; with Interfaces; use Interfaces; with GNAT.SHA256; use GNAT.SHA256; with GNAT.IO_Aux; procedure KeyGen is PK1 : Signing_PK; SK1 : Signing_SK; PK2 : Signing_PK; SK2 : Signing_SK; SK_Raw : Bytes_32; function C is new Ada.Unchecked_Conversion (Binary_Message_Digest, Bytes_32); M : constant Bytes_64 := (16#55#, others => 16#aa#); SM, M2 : Byte_Seq (0 .. 127); OK : Boolean; M2Len : I32; begin Put ("What's the password: "); declare S : constant String := GNAT.IO_Aux.Get_Line; begin SK_Raw := C (GNAT.SHA256.Digest (S)); DH ("SK_Raw is ", SK_Raw); Keypair_From_Bytes (SK_Raw, PK1, SK1); -- Modify SK_Raw and genereate SK2 and PK2 from it to get -- a different key pair SK_Raw (1) := SK_Raw (1) + 1; Keypair_From_Bytes (SK_Raw, PK2, SK2); DH ("PK1 is", Serialize (PK1)); DH ("SK1 is", Serialize (SK1)); Put_Line ("Case 1 - correct keys and message"); SPARKNaCl.Sign.Sign (SM, M, SK1); DH ("SM is ", SM); SPARKNaCl.Sign.Open (M2, OK, M2Len, SM, PK1); if OK then Put_Line ("Signature OK"); Put_Line ("M2Len is " & M2Len'Img); DH ("M2 is ", M2 (0 .. (M2Len - 1))); else Put_Line ("Signature NOT OK"); end if; Put_Line ("Case 2 - same message, but wrong public key"); SPARKNaCl.Sign.Open (M2, OK, M2Len, SM, PK2); if OK then Put_Line ("Signature OK"); Put_Line ("M2Len is " & M2Len'Img); DH ("M2 is ", M2); else Put_Line ("Signature NOT OK"); end if; Put_Line ("Case 3 - same message, correct public key, but wrong private key"); SPARKNaCl.Sign.Sign (SM, M, SK2); SPARKNaCl.Sign.Open (M2, OK, M2Len, SM, PK1); if OK then Put_Line ("Signature OK"); Put_Line ("M2Len is " & M2Len'Img); DH ("M2 is ", M2); else Put_Line ("Signature NOT OK"); end if; Put_Line ("Case 4 - correct keys, but message corrupted"); SPARKNaCl.Sign.Sign (SM, M, SK1); -- Corrupt SM data in some way SM (SM'Last) := SM (SM'Last) - 1; SPARKNaCl.Sign.Open (M2, OK, M2Len, SM, PK1); if OK then Put_Line ("Signature OK"); Put_Line ("M2Len is " & M2Len'Img); DH ("M2 is ", M2); else Put_Line ("Signature NOT OK"); end if; Put_Line ("Case 5 - correct keys, but signature corrupted"); SPARKNaCl.Sign.Sign (SM, M, SK1); -- Corrupt SM sig in some way SM (SM'First) := SM (SM'First) - 1; SPARKNaCl.Sign.Open (M2, OK, M2Len, SM, PK1); if OK then Put_Line ("Signature OK"); Put_Line ("M2Len is " & M2Len'Img); DH ("M2 is ", M2); else Put_Line ("Signature NOT OK"); end if; end; end KeyGen;
with Ada.Characters.Latin_1; with Ada.Command_Line; with Ada.Directories; with Ada.Environment_Variables; with Ada.Streams.Stream_IO; with Ada.Text_IO; with XML.Streams; procedure test_xml is Verbose : Boolean := False; procedure Put (Item : in String) is begin if Verbose then Ada.Text_IO.Put (Item); end if; end Put; procedure New_Line is begin if Verbose then Ada.Text_IO.New_Line; end if; end New_Line; use type XML.Encoding_Type; use type XML.Event_Type; use type XML.Standalone_Type; package Latin_1 renames Ada.Characters.Latin_1; function "=" (Left, Right : XML.Event) return Boolean is begin if Left.Event_Type /= Right.Event_Type then return False; else case Left.Event_Type is when XML.Element_Start | XML.Attribute | XML.Processing_Instruction | XML.Document_Type => if Left.Name.all /= Right.Name.all then return False; else case Left.Event_Type is when XML.Attribute => return Left.Value.all = Right.Value.all; when XML.Document_Type => if (Left.Public_Id /= null or else Right.Public_Id /= null) and then ( Left.Public_Id = null or else Right.Public_Id = null or else Left.Public_Id.all /= Right.Public_Id.all) then return False; end if; if (Left.System_Id /= null or else Right.System_Id /= null) and then ( Left.System_Id = null or else Right.System_Id = null or else Left.System_Id.all /= Right.System_Id.all) then return False; end if; if (Left.Subset /= null or else Right.Subset /= null) and then ( Left.Subset = null or else Right.Subset = null or else Left.Subset.all /= Right.Subset.all) then return False; end if; return True; when others => return True; end case; end if; when XML.Text | XML.CDATA | XML.Comment | XML.Whitespace | XML.Significant_Whitespace => return Left.Content.all = Right.Content.all; when others => return True; end case; end if; end "="; Test_File_Name : constant String := Ada.Directories.Compose ( Ada.Environment_Variables.Value ("TMPDIR", Default => "/tmp"), "test_xml.xml"); type Event_Constant is access constant XML.Event; The_Name_1 : aliased constant String := "root"; The_Content_1 : aliased constant String := "Hello,"; The_Name_2 : aliased constant String := "sub"; The_Name_3 : aliased constant String := "attr"; The_Value_1 : aliased constant String := "<>&" & Latin_1.HT & Latin_1.LF; The_Content_2 : aliased constant String := "XML!"; The_Content_3 : aliased constant String := " comment "; Data : constant array (Positive range <>) of not null Event_Constant := ( new XML.Event'( Event_Type => XML.Document_Type, Name => The_Name_1'Unchecked_Access, Public_Id => null, System_Id => null, Subset => null), new XML.Event'( Event_Type => XML.Element_Start, Name => The_Name_1'Unchecked_Access), new XML.Event'( Event_Type => XML.Text, Content => The_Content_1'Unchecked_Access), new XML.Event'( Event_Type => XML.Element_Start, Name => The_Name_2'Unchecked_Access), new XML.Event'( Event_Type => XML.Attribute, Name => The_Name_3'Unchecked_Access, Value => The_Value_1'Unchecked_Access), new XML.Event'( Event_Type => XML.Element_End), new XML.Event'( Event_Type => XML.Text, Content => The_Content_2'Unchecked_Access), new XML.Event'( Event_Type => XML.Element_End), new XML.Event'( Event_Type => XML.Comment, Content => The_Content_3'Unchecked_Access)); Version_1_0 : aliased constant String := "1.0"; UTF_8 : constant XML.Encoding_Type := XML.Find ("utf-8"); begin -- options for I in 1 .. Ada.Command_Line.Argument_Count loop declare A : constant String := Ada.Command_Line.Argument (I); begin if A = "--verbose" then Verbose := True; else Ada.Text_IO.Put_Line (Ada.Text_IO.Standard_Error.all, "unknown option: " & A); Ada.Command_Line.Set_Exit_Status (Ada.Command_Line.Failure); return; end if; end; end loop; -- writer declare W : XML.Writer := XML.Create (Put'Access, UTF_8); begin XML.Set_Indent (W, (1 => Latin_1.HT)); XML.Put_Document_Start (W, Version_1_0'Access, UTF_8, XML.Yes); for I in Data'Range loop XML.Put (W, Data (I).all); end loop; XML.Put_Document_End (W); XML.Finish (W); end; declare File : Ada.Streams.Stream_IO.File_Type; begin Ada.Streams.Stream_IO.Create (File, Name => Test_File_Name); declare W : XML.Writer := XML.Streams.Create (Ada.Streams.Stream_IO.Stream (File), UTF_8); begin Put ("Writing..."); XML.Put_Document_Start (W, Version_1_0'Access, UTF_8, XML.Yes); for I in Data'Range loop Put (I'Img); XML.Put (W, Data (I).all); end loop; XML.Put_Document_End (W); XML.Finish (W); Put (" ok"); New_Line; end; Ada.Streams.Stream_IO.Close (File); end; -- reader declare File : Ada.Streams.Stream_IO.File_Type; begin Ada.Streams.Stream_IO.Open (File, Ada.Streams.Stream_IO.In_File, Name => Test_File_Name); declare R : XML.Reader := XML.Streams.Create (Ada.Streams.Stream_IO.Stream (File), UTF_8); begin if XML.Version (R).all /= Version_1_0 then raise Program_Error; end if; if XML.Encoding (R) /= UTF_8 then raise Program_Error; end if; if XML.Standalone (R) /= XML.Yes then raise Program_Error; end if; Put ("Reading..."); for I in Data'Range loop Put (I'Img); declare procedure Process (Event : in XML.Event) is begin if Event /= Data (I).all then raise Program_Error; end if; end Process; begin XML.Get (R, Process'Access); end; end loop; XML.Finish (R); Put (" ok"); New_Line; end; Ada.Streams.Stream_IO.Close (File); end; -- finish Ada.Text_IO.Put_Line (Ada.Text_IO.Standard_Error.all, "ok"); end test_xml;
-- Copyright 2016-2019 NXP -- All rights reserved.SPDX-License-Identifier: BSD-3-Clause -- This spec has been automatically generated from LPC55S6x.svd pragma Restrictions (No_Elaboration_Code); pragma Ada_2012; pragma Style_Checks (Off); with HAL; with System; package NXP_SVD.USBFSH is pragma Preelaborate; --------------- -- Registers -- --------------- subtype HCREVISION_REV_Field is HAL.UInt8; -- BCD representation of the version of the HCI specification that is -- implemented by the Host Controller (HC) type HCREVISION_Register is record -- Read-only. Revision. REV : HCREVISION_REV_Field; -- unspecified Reserved_8_31 : HAL.UInt24; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for HCREVISION_Register use record REV at 0 range 0 .. 7; Reserved_8_31 at 0 range 8 .. 31; end record; subtype HCCONTROL_CBSR_Field is HAL.UInt2; subtype HCCONTROL_HCFS_Field is HAL.UInt2; -- Defines the operating modes of the HC type HCCONTROL_Register is record -- ControlBulkServiceRatio. CBSR : HCCONTROL_CBSR_Field := 16#0#; -- PeriodicListEnable. PLE : Boolean := False; -- IsochronousEnable. IE : Boolean := False; -- ControlListEnable. CLE : Boolean := False; -- BulkListEnable This bit is set to enable the processing of the Bulk -- list in the next Frame. BLE : Boolean := False; -- HostControllerFunctionalState for USB 00b: USBRESET 01b: USBRESUME -- 10b: USBOPERATIONAL 11b: USBSUSPEND A transition to USBOPERATIONAL -- from another state causes SOFgeneration to begin 1 ms later. HCFS : HCCONTROL_HCFS_Field := 16#0#; -- InterruptRouting This bit determines the routing of interrupts -- generated by events registered in HcInterruptStatus. IR : Boolean := False; -- RemoteWakeupConnected This bit indicates whether HC supports remote -- wake-up signaling. RWC : Boolean := False; -- RemoteWakeupEnable This bit is used by HCD to enable or disable the -- remote wake-up feature upon the detection of upstream resume -- signaling. RWE : Boolean := False; -- unspecified Reserved_11_31 : HAL.UInt21 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for HCCONTROL_Register use record CBSR at 0 range 0 .. 1; PLE at 0 range 2 .. 2; IE at 0 range 3 .. 3; CLE at 0 range 4 .. 4; BLE at 0 range 5 .. 5; HCFS at 0 range 6 .. 7; IR at 0 range 8 .. 8; RWC at 0 range 9 .. 9; RWE at 0 range 10 .. 10; Reserved_11_31 at 0 range 11 .. 31; end record; subtype HCCOMMANDSTATUS_SOC_Field is HAL.UInt2; -- This register is used to receive the commands from the Host Controller -- Driver (HCD) type HCCOMMANDSTATUS_Register is record -- HostControllerReset This bit is set by HCD to initiate a software -- reset of HC. HCR : Boolean := False; -- ControlListFilled This bit is used to indicate whether there are any -- TDs on the Control list. CLF : Boolean := False; -- BulkListFilled This bit is used to indicate whether there are any TDs -- on the Bulk list. BLF : Boolean := False; -- OwnershipChangeRequest This bit is set by an OS HCD to request a -- change of control of the HC. OCR : Boolean := False; -- unspecified Reserved_4_5 : HAL.UInt2 := 16#0#; -- SchedulingOverrunCount These bits are incremented on each scheduling -- overrun error. SOC : HCCOMMANDSTATUS_SOC_Field := 16#0#; -- unspecified Reserved_8_31 : HAL.UInt24 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for HCCOMMANDSTATUS_Register use record HCR at 0 range 0 .. 0; CLF at 0 range 1 .. 1; BLF at 0 range 2 .. 2; OCR at 0 range 3 .. 3; Reserved_4_5 at 0 range 4 .. 5; SOC at 0 range 6 .. 7; Reserved_8_31 at 0 range 8 .. 31; end record; subtype HCINTERRUPTSTATUS_OC_Field is HAL.UInt22; -- Indicates the status on various events that cause hardware interrupts by -- setting the appropriate bits type HCINTERRUPTSTATUS_Register is record -- SchedulingOverrun This bit is set when the USB schedule for the -- current Frame overruns and after the update of HccaFrameNumber. SO : Boolean := False; -- WritebackDoneHead This bit is set immediately after HC has written -- HcDoneHead to HccaDoneHead. WDH : Boolean := False; -- StartofFrame This bit is set by HC at each start of a frame and after -- the update of HccaFrameNumber. SF : Boolean := False; -- ResumeDetected This bit is set when HC detects that a device on the -- USB is asserting resume signaling. RD : Boolean := False; -- UnrecoverableError This bit is set when HC detects a system error not -- related to USB. UE : Boolean := False; -- FrameNumberOverflow This bit is set when the MSb of HcFmNumber (bit -- 15) changes value, from 0 to 1 or from 1 to 0, and after -- HccaFrameNumber has been updated. FNO : Boolean := False; -- RootHubStatusChange This bit is set when the content of HcRhStatus or -- the content of any of HcRhPortStatus[NumberofDownstreamPort] has -- changed. RHSC : Boolean := False; -- unspecified Reserved_7_9 : HAL.UInt3 := 16#0#; -- OwnershipChange This bit is set by HC when HCD sets the -- OwnershipChangeRequest field in HcCommandStatus. OC : HCINTERRUPTSTATUS_OC_Field := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for HCINTERRUPTSTATUS_Register use record SO at 0 range 0 .. 0; WDH at 0 range 1 .. 1; SF at 0 range 2 .. 2; RD at 0 range 3 .. 3; UE at 0 range 4 .. 4; FNO at 0 range 5 .. 5; RHSC at 0 range 6 .. 6; Reserved_7_9 at 0 range 7 .. 9; OC at 0 range 10 .. 31; end record; -- Controls the bits in the HcInterruptStatus register and indicates which -- events will generate a hardware interrupt type HCINTERRUPTENABLE_Register is record -- Scheduling Overrun interrupt. SO : Boolean := False; -- HcDoneHead Writeback interrupt. WDH : Boolean := False; -- Start of Frame interrupt. SF : Boolean := False; -- Resume Detect interrupt. RD : Boolean := False; -- Unrecoverable Error interrupt. UE : Boolean := False; -- Frame Number Overflow interrupt. FNO : Boolean := False; -- Root Hub Status Change interrupt. RHSC : Boolean := False; -- unspecified Reserved_7_29 : HAL.UInt23 := 16#0#; -- Ownership Change interrupt. OC : Boolean := False; -- Master Interrupt Enable. MIE : Boolean := False; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for HCINTERRUPTENABLE_Register use record SO at 0 range 0 .. 0; WDH at 0 range 1 .. 1; SF at 0 range 2 .. 2; RD at 0 range 3 .. 3; UE at 0 range 4 .. 4; FNO at 0 range 5 .. 5; RHSC at 0 range 6 .. 6; Reserved_7_29 at 0 range 7 .. 29; OC at 0 range 30 .. 30; MIE at 0 range 31 .. 31; end record; -- The bits in this register are used to disable corresponding bits in the -- HCInterruptStatus register and in turn disable that event leading to -- hardware interrupt type HCINTERRUPTDISABLE_Register is record -- Scheduling Overrun interrupt. SO : Boolean := False; -- HcDoneHead Writeback interrupt. WDH : Boolean := False; -- Start of Frame interrupt. SF : Boolean := False; -- Resume Detect interrupt. RD : Boolean := False; -- Unrecoverable Error interrupt. UE : Boolean := False; -- Frame Number Overflow interrupt. FNO : Boolean := False; -- Root Hub Status Change interrupt. RHSC : Boolean := False; -- unspecified Reserved_7_29 : HAL.UInt23 := 16#0#; -- Ownership Change interrupt. OC : Boolean := False; -- A 0 written to this field is ignored by HC. MIE : Boolean := False; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for HCINTERRUPTDISABLE_Register use record SO at 0 range 0 .. 0; WDH at 0 range 1 .. 1; SF at 0 range 2 .. 2; RD at 0 range 3 .. 3; UE at 0 range 4 .. 4; FNO at 0 range 5 .. 5; RHSC at 0 range 6 .. 6; Reserved_7_29 at 0 range 7 .. 29; OC at 0 range 30 .. 30; MIE at 0 range 31 .. 31; end record; subtype HCHCCA_HCCA_Field is HAL.UInt24; -- Contains the physical address of the host controller communication area type HCHCCA_Register is record -- unspecified Reserved_0_7 : HAL.UInt8 := 16#0#; -- Base address of the Host Controller Communication Area. HCCA : HCHCCA_HCCA_Field := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for HCHCCA_Register use record Reserved_0_7 at 0 range 0 .. 7; HCCA at 0 range 8 .. 31; end record; subtype HCPERIODCURRENTED_PCED_Field is HAL.UInt28; -- Contains the physical address of the current isochronous or interrupt -- endpoint descriptor type HCPERIODCURRENTED_Register is record -- unspecified Reserved_0_3 : HAL.UInt4; -- Read-only. The content of this register is updated by HC after a -- periodic ED is processed. PCED : HCPERIODCURRENTED_PCED_Field; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for HCPERIODCURRENTED_Register use record Reserved_0_3 at 0 range 0 .. 3; PCED at 0 range 4 .. 31; end record; subtype HCCONTROLHEADED_CHED_Field is HAL.UInt28; -- Contains the physical address of the first endpoint descriptor of the -- control list type HCCONTROLHEADED_Register is record -- unspecified Reserved_0_3 : HAL.UInt4 := 16#0#; -- HC traverses the Control list starting with the HcControlHeadED -- pointer. CHED : HCCONTROLHEADED_CHED_Field := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for HCCONTROLHEADED_Register use record Reserved_0_3 at 0 range 0 .. 3; CHED at 0 range 4 .. 31; end record; subtype HCCONTROLCURRENTED_CCED_Field is HAL.UInt28; -- Contains the physical address of the current endpoint descriptor of the -- control list type HCCONTROLCURRENTED_Register is record -- unspecified Reserved_0_3 : HAL.UInt4 := 16#0#; -- ControlCurrentED. CCED : HCCONTROLCURRENTED_CCED_Field := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for HCCONTROLCURRENTED_Register use record Reserved_0_3 at 0 range 0 .. 3; CCED at 0 range 4 .. 31; end record; subtype HCBULKHEADED_BHED_Field is HAL.UInt28; -- Contains the physical address of the first endpoint descriptor of the -- bulk list type HCBULKHEADED_Register is record -- unspecified Reserved_0_3 : HAL.UInt4 := 16#0#; -- BulkHeadED HC traverses the bulk list starting with the HcBulkHeadED -- pointer. BHED : HCBULKHEADED_BHED_Field := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for HCBULKHEADED_Register use record Reserved_0_3 at 0 range 0 .. 3; BHED at 0 range 4 .. 31; end record; subtype HCBULKCURRENTED_BCED_Field is HAL.UInt28; -- Contains the physical address of the current endpoint descriptor of the -- bulk list type HCBULKCURRENTED_Register is record -- unspecified Reserved_0_3 : HAL.UInt4 := 16#0#; -- BulkCurrentED This is advanced to the next ED after the HC has served -- the current one. BCED : HCBULKCURRENTED_BCED_Field := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for HCBULKCURRENTED_Register use record Reserved_0_3 at 0 range 0 .. 3; BCED at 0 range 4 .. 31; end record; subtype HCDONEHEAD_DH_Field is HAL.UInt28; -- Contains the physical address of the last transfer descriptor added to -- the 'Done' queue type HCDONEHEAD_Register is record -- unspecified Reserved_0_3 : HAL.UInt4; -- Read-only. DoneHead When a TD is completed, HC writes the content of -- HcDoneHead to the NextTD field of the TD. DH : HCDONEHEAD_DH_Field; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for HCDONEHEAD_Register use record Reserved_0_3 at 0 range 0 .. 3; DH at 0 range 4 .. 31; end record; subtype HCFMINTERVAL_FI_Field is HAL.UInt14; subtype HCFMINTERVAL_FSMPS_Field is HAL.UInt15; -- Defines the bit time interval in a frame and the full speed maximum -- packet size which would not cause an overrun type HCFMINTERVAL_Register is record -- FrameInterval This specifies the interval between two consecutive -- SOFs in bit times. FI : HCFMINTERVAL_FI_Field := 16#2EDF#; -- unspecified Reserved_14_15 : HAL.UInt2 := 16#0#; -- FSLargestDataPacket This field specifies a value which is loaded into -- the Largest Data Packet Counter at the beginning of each frame. FSMPS : HCFMINTERVAL_FSMPS_Field := 16#0#; -- FrameIntervalToggle HCD toggles this bit whenever it loads a new -- value to FrameInterval. FIT : Boolean := False; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for HCFMINTERVAL_Register use record FI at 0 range 0 .. 13; Reserved_14_15 at 0 range 14 .. 15; FSMPS at 0 range 16 .. 30; FIT at 0 range 31 .. 31; end record; subtype HCFMREMAINING_FR_Field is HAL.UInt14; -- A 14-bit counter showing the bit time remaining in the current frame type HCFMREMAINING_Register is record -- Read-only. FrameRemaining This counter is decremented at each bit -- time. FR : HCFMREMAINING_FR_Field; -- unspecified Reserved_14_30 : HAL.UInt17; -- Read-only. FrameRemainingToggle This bit is loaded from the -- FrameIntervalToggle field of HcFmInterval whenever FrameRemaining -- reaches 0. FRT : Boolean; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for HCFMREMAINING_Register use record FR at 0 range 0 .. 13; Reserved_14_30 at 0 range 14 .. 30; FRT at 0 range 31 .. 31; end record; subtype HCFMNUMBER_FN_Field is HAL.UInt16; -- Contains a 16-bit counter and provides the timing reference among events -- happening in the HC and the HCD type HCFMNUMBER_Register is record -- Read-only. FrameNumber This is incremented when HcFmRemaining is -- re-loaded. FN : HCFMNUMBER_FN_Field; -- unspecified Reserved_16_31 : HAL.UInt16; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for HCFMNUMBER_Register use record FN at 0 range 0 .. 15; Reserved_16_31 at 0 range 16 .. 31; end record; subtype HCPERIODICSTART_PS_Field is HAL.UInt14; -- Contains a programmable 14-bit value which determines the earliest time -- HC should start processing a periodic list type HCPERIODICSTART_Register is record -- PeriodicStart After a hardware reset, this field is cleared and then -- set by HCD during the HC initialization. PS : HCPERIODICSTART_PS_Field := 16#0#; -- unspecified Reserved_14_31 : HAL.UInt18 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for HCPERIODICSTART_Register use record PS at 0 range 0 .. 13; Reserved_14_31 at 0 range 14 .. 31; end record; subtype HCLSTHRESHOLD_LST_Field is HAL.UInt12; -- Contains 11-bit value which is used by the HC to determine whether to -- commit to transfer a maximum of 8-byte LS packet before EOF type HCLSTHRESHOLD_Register is record -- LSThreshold This field contains a value which is compared to the -- FrameRemaining field prior to initiating a Low Speed transaction. LST : HCLSTHRESHOLD_LST_Field := 16#628#; -- unspecified Reserved_12_31 : HAL.UInt20 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for HCLSTHRESHOLD_Register use record LST at 0 range 0 .. 11; Reserved_12_31 at 0 range 12 .. 31; end record; subtype HCRHDESCRIPTORA_NDP_Field is HAL.UInt8; subtype HCRHDESCRIPTORA_POTPGT_Field is HAL.UInt8; -- First of the two registers which describes the characteristics of the -- root hub type HCRHDESCRIPTORA_Register is record -- NumberDownstreamPorts These bits specify the number of downstream -- ports supported by the root hub. NDP : HCRHDESCRIPTORA_NDP_Field := 16#2#; -- PowerSwitchingMode This bit is used to specify how the power -- switching of the root hub ports is controlled. PSM : Boolean := True; -- NoPowerSwitching These bits are used to specify whether power -- switching is supported or port are always powered. NPS : Boolean := False; -- DeviceType This bit specifies that the root hub is not a compound -- device. DT : Boolean := False; -- OverCurrentProtectionMode This bit describes how the overcurrent -- status for the root hub ports are reported. OCPM : Boolean := True; -- NoOverCurrentProtection This bit describes how the overcurrent status -- for the root hub ports are reported. NOCP : Boolean := False; -- unspecified Reserved_13_23 : HAL.UInt11 := 16#0#; -- PowerOnToPowerGoodTime This byte specifies the duration the HCD has -- to wait before accessing a powered-on port of the root hub. POTPGT : HCRHDESCRIPTORA_POTPGT_Field := 16#FF#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for HCRHDESCRIPTORA_Register use record NDP at 0 range 0 .. 7; PSM at 0 range 8 .. 8; NPS at 0 range 9 .. 9; DT at 0 range 10 .. 10; OCPM at 0 range 11 .. 11; NOCP at 0 range 12 .. 12; Reserved_13_23 at 0 range 13 .. 23; POTPGT at 0 range 24 .. 31; end record; subtype HCRHDESCRIPTORB_DR_Field is HAL.UInt16; subtype HCRHDESCRIPTORB_PPCM_Field is HAL.UInt16; -- Second of the two registers which describes the characteristics of the -- Root Hub type HCRHDESCRIPTORB_Register is record -- DeviceRemovable Each bit is dedicated to a port of the Root Hub. DR : HCRHDESCRIPTORB_DR_Field := 16#0#; -- PortPowerControlMask Each bit indicates if a port is affected by a -- global power control command when PowerSwitchingMode is set. PPCM : HCRHDESCRIPTORB_PPCM_Field := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for HCRHDESCRIPTORB_Register use record DR at 0 range 0 .. 15; PPCM at 0 range 16 .. 31; end record; -- This register is divided into two parts type HCRHSTATUS_Register is record -- (read) LocalPowerStatus The Root Hub does not support the local power -- status feature; thus, this bit is always read as 0. LPS : Boolean := False; -- OverCurrentIndicator This bit reports overcurrent conditions when the -- global reporting is implemented. OCI : Boolean := False; -- unspecified Reserved_2_14 : HAL.UInt13 := 16#0#; -- (read) DeviceRemoteWakeupEnable This bit enables a -- ConnectStatusChange bit as a resume event, causing a USBSUSPEND to -- USBRESUME state transition and setting the ResumeDetected interrupt. DRWE : Boolean := False; -- (read) LocalPowerStatusChange The root hub does not support the local -- power status feature. LPSC : Boolean := False; -- OverCurrentIndicatorChange This bit is set by hardware when a change -- has occurred to the OCI field of this register. OCIC : Boolean := False; -- unspecified Reserved_18_30 : HAL.UInt13 := 16#0#; -- (write) ClearRemoteWakeupEnable Writing a 1 clears -- DeviceRemoveWakeupEnable. CRWE : Boolean := False; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for HCRHSTATUS_Register use record LPS at 0 range 0 .. 0; OCI at 0 range 1 .. 1; Reserved_2_14 at 0 range 2 .. 14; DRWE at 0 range 15 .. 15; LPSC at 0 range 16 .. 16; OCIC at 0 range 17 .. 17; Reserved_18_30 at 0 range 18 .. 30; CRWE at 0 range 31 .. 31; end record; -- Controls and reports the port events on a per-port basis type HCRHPORTSTATUS_Register is record -- (read) CurrentConnectStatus This bit reflects the current state of -- the downstream port. CCS : Boolean := False; -- (read) PortEnableStatus This bit indicates whether the port is -- enabled or disabled. PES : Boolean := False; -- (read) PortSuspendStatus This bit indicates the port is suspended or -- in the resume sequence. PSS : Boolean := False; -- (read) PortOverCurrentIndicator This bit is only valid when the Root -- Hub is configured in such a way that overcurrent conditions are -- reported on a per-port basis. POCI : Boolean := False; -- (read) PortResetStatus When this bit is set by a write to -- SetPortReset, port reset signaling is asserted. PRS : Boolean := False; -- unspecified Reserved_5_7 : HAL.UInt3 := 16#0#; -- (read) PortPowerStatus This bit reflects the porta's power status, -- regardless of the type of power switching implemented. PPS : Boolean := False; -- (read) LowSpeedDeviceAttached This bit indicates the speed of the -- device attached to this port. LSDA : Boolean := False; -- unspecified Reserved_10_15 : HAL.UInt6 := 16#0#; -- ConnectStatusChange This bit is set whenever a connect or disconnect -- event occurs. CSC : Boolean := False; -- PortEnableStatusChange This bit is set when hardware events cause the -- PortEnableStatus bit to be cleared. PESC : Boolean := False; -- PortSuspendStatusChange This bit is set when the full resume sequence -- is completed. PSSC : Boolean := False; -- PortOverCurrentIndicatorChange This bit is valid only if overcurrent -- conditions are reported on a per-port basis. OCIC : Boolean := False; -- PortResetStatusChange This bit is set at the end of the 10 ms port -- reset signal. PRSC : Boolean := False; -- unspecified Reserved_21_31 : HAL.UInt11 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for HCRHPORTSTATUS_Register use record CCS at 0 range 0 .. 0; PES at 0 range 1 .. 1; PSS at 0 range 2 .. 2; POCI at 0 range 3 .. 3; PRS at 0 range 4 .. 4; Reserved_5_7 at 0 range 5 .. 7; PPS at 0 range 8 .. 8; LSDA at 0 range 9 .. 9; Reserved_10_15 at 0 range 10 .. 15; CSC at 0 range 16 .. 16; PESC at 0 range 17 .. 17; PSSC at 0 range 18 .. 18; OCIC at 0 range 19 .. 19; PRSC at 0 range 20 .. 20; Reserved_21_31 at 0 range 21 .. 31; end record; -- Controls the port if it is attached to the host block or the device -- block type PORTMODE_Register is record -- Port ID pin value. ID : Boolean := False; -- unspecified Reserved_1_7 : HAL.UInt7 := 16#0#; -- Port ID pin pull-up enable. ID_EN : Boolean := False; -- unspecified Reserved_9_15 : HAL.UInt7 := 16#0#; -- 1: device 0: host. DEV_ENABLE : Boolean := False; -- unspecified Reserved_17_31 : HAL.UInt15 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for PORTMODE_Register use record ID at 0 range 0 .. 0; Reserved_1_7 at 0 range 1 .. 7; ID_EN at 0 range 8 .. 8; Reserved_9_15 at 0 range 9 .. 15; DEV_ENABLE at 0 range 16 .. 16; Reserved_17_31 at 0 range 17 .. 31; end record; ----------------- -- Peripherals -- ----------------- -- USB0 Full-speed Host controller type USBFSH_Peripheral is record -- BCD representation of the version of the HCI specification that is -- implemented by the Host Controller (HC) HCREVISION : aliased HCREVISION_Register; -- Defines the operating modes of the HC HCCONTROL : aliased HCCONTROL_Register; -- This register is used to receive the commands from the Host -- Controller Driver (HCD) HCCOMMANDSTATUS : aliased HCCOMMANDSTATUS_Register; -- Indicates the status on various events that cause hardware interrupts -- by setting the appropriate bits HCINTERRUPTSTATUS : aliased HCINTERRUPTSTATUS_Register; -- Controls the bits in the HcInterruptStatus register and indicates -- which events will generate a hardware interrupt HCINTERRUPTENABLE : aliased HCINTERRUPTENABLE_Register; -- The bits in this register are used to disable corresponding bits in -- the HCInterruptStatus register and in turn disable that event leading -- to hardware interrupt HCINTERRUPTDISABLE : aliased HCINTERRUPTDISABLE_Register; -- Contains the physical address of the host controller communication -- area HCHCCA : aliased HCHCCA_Register; -- Contains the physical address of the current isochronous or interrupt -- endpoint descriptor HCPERIODCURRENTED : aliased HCPERIODCURRENTED_Register; -- Contains the physical address of the first endpoint descriptor of the -- control list HCCONTROLHEADED : aliased HCCONTROLHEADED_Register; -- Contains the physical address of the current endpoint descriptor of -- the control list HCCONTROLCURRENTED : aliased HCCONTROLCURRENTED_Register; -- Contains the physical address of the first endpoint descriptor of the -- bulk list HCBULKHEADED : aliased HCBULKHEADED_Register; -- Contains the physical address of the current endpoint descriptor of -- the bulk list HCBULKCURRENTED : aliased HCBULKCURRENTED_Register; -- Contains the physical address of the last transfer descriptor added -- to the 'Done' queue HCDONEHEAD : aliased HCDONEHEAD_Register; -- Defines the bit time interval in a frame and the full speed maximum -- packet size which would not cause an overrun HCFMINTERVAL : aliased HCFMINTERVAL_Register; -- A 14-bit counter showing the bit time remaining in the current frame HCFMREMAINING : aliased HCFMREMAINING_Register; -- Contains a 16-bit counter and provides the timing reference among -- events happening in the HC and the HCD HCFMNUMBER : aliased HCFMNUMBER_Register; -- Contains a programmable 14-bit value which determines the earliest -- time HC should start processing a periodic list HCPERIODICSTART : aliased HCPERIODICSTART_Register; -- Contains 11-bit value which is used by the HC to determine whether to -- commit to transfer a maximum of 8-byte LS packet before EOF HCLSTHRESHOLD : aliased HCLSTHRESHOLD_Register; -- First of the two registers which describes the characteristics of the -- root hub HCRHDESCRIPTORA : aliased HCRHDESCRIPTORA_Register; -- Second of the two registers which describes the characteristics of -- the Root Hub HCRHDESCRIPTORB : aliased HCRHDESCRIPTORB_Register; -- This register is divided into two parts HCRHSTATUS : aliased HCRHSTATUS_Register; -- Controls and reports the port events on a per-port basis HCRHPORTSTATUS : aliased HCRHPORTSTATUS_Register; -- Controls the port if it is attached to the host block or the device -- block PORTMODE : aliased PORTMODE_Register; end record with Volatile; for USBFSH_Peripheral use record HCREVISION at 16#0# range 0 .. 31; HCCONTROL at 16#4# range 0 .. 31; HCCOMMANDSTATUS at 16#8# range 0 .. 31; HCINTERRUPTSTATUS at 16#C# range 0 .. 31; HCINTERRUPTENABLE at 16#10# range 0 .. 31; HCINTERRUPTDISABLE at 16#14# range 0 .. 31; HCHCCA at 16#18# range 0 .. 31; HCPERIODCURRENTED at 16#1C# range 0 .. 31; HCCONTROLHEADED at 16#20# range 0 .. 31; HCCONTROLCURRENTED at 16#24# range 0 .. 31; HCBULKHEADED at 16#28# range 0 .. 31; HCBULKCURRENTED at 16#2C# range 0 .. 31; HCDONEHEAD at 16#30# range 0 .. 31; HCFMINTERVAL at 16#34# range 0 .. 31; HCFMREMAINING at 16#38# range 0 .. 31; HCFMNUMBER at 16#3C# range 0 .. 31; HCPERIODICSTART at 16#40# range 0 .. 31; HCLSTHRESHOLD at 16#44# range 0 .. 31; HCRHDESCRIPTORA at 16#48# range 0 .. 31; HCRHDESCRIPTORB at 16#4C# range 0 .. 31; HCRHSTATUS at 16#50# range 0 .. 31; HCRHPORTSTATUS at 16#54# range 0 .. 31; PORTMODE at 16#5C# range 0 .. 31; end record; -- USB0 Full-speed Host controller USBFSH_Periph : aliased USBFSH_Peripheral with Import, Address => System'To_Address (16#400A2000#); end NXP_SVD.USBFSH;
with GNAT.Strings; use GNAT.Strings; package Loop_Optimization9 is type File_Descriptor is new Integer; procedure Create_Temp_File_Internal (FD : out File_Descriptor; Name : out String_Access); subtype Argument_List is String_List; subtype Argument_List_Access is String_List_Access; function Argument_String_To_List (Arg_String : String) return Argument_List_Access; end Loop_Optimization9;
-- -- ABench2020 Benchmark Suite -- -- Binary Search Tree Program -- -- Licensed under the MIT License. See LICENSE file in the ABench root -- directory for license information. -- -- Uncomment the line below to print the result. -- with Ada.Text_IO; use Ada.Text_IO; procedure Binary_Search_Tree is type Vector is array (Positive range<>) of Integer; type Node; type Node_Pointer is access Node; type Node is record Value : Integer; Left : Node_Pointer := null; Right : Node_Pointer := null; end record; Root_Node : Node_Pointer := null; function Insert_Node (Parent_Node : in Node_Pointer; Node_Value : in Integer) return Node_Pointer is New_Node : Node_Pointer; begin if Parent_Node = null then New_Node := new Node; New_Node.Value := Node_Value; return New_Node; elsif Node_Value < Parent_Node.Value then Parent_Node.Left := Insert_Node (Parent_Node.Left, Node_Value); elsif Node_Value > Parent_Node.Value then Parent_Node.Right := Insert_Node (Parent_Node.Right, Node_Value); end if; return Parent_Node; end; procedure Insert (Node_Value : in Integer) is Temp_Node : Node_Pointer; begin if Root_Node = null then Root_Node := new Node; Root_Node.Value := Node_Value; else Temp_Node := Insert_Node (Root_Node, Node_Value); end if; end; procedure Traverse (Current_Node : in Node_Pointer) is begin if Current_Node /= null then Traverse (Current_Node.Right); -- Uncomment the lines below to print the result. -- Put (Integer'Image (Current_Node.Value) & " "); Traverse (Current_Node.Left); end if; end; Node_Array : Vector := (3, 4, 7, 8, 9, 10, 11, 24, 25, 55, 56, 78, 90, 98, 120, 134, 152, 155, 165, 167, 168, 198, 250, 287, 298, 300, 310, 333, 338, 350, 399, 442, 475, 567); begin loop for I in Node_Array'Range loop Insert (Node_Array (I)); end loop; end loop; Traverse (Root_Node); end;
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- S Y S T E M . S E C O N D A R Y _ S T A C K -- -- -- -- B o d y -- -- -- -- Copyright (C) 1992-2021, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- -- -- -- -- -- -- -- -- 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 the HI-E version of this package with Ada.Unchecked_Conversion; package body System.Secondary_Stack is use type System.Parameters.Size_Type; function Get_Sec_Stack return SS_Stack_Ptr; pragma Import (C, Get_Sec_Stack, "__gnat_get_secondary_stack"); -- Return the pointer to the secondary stack of the current task. -- -- The package imports this function to permit flexibility in the storage -- of secondary stacks pointers to support a range of different ZFP and -- other restricted run-time scenarios without needing to recompile the -- run-time. A ZFP run-time will typically include a default implementation -- suitable for single thread applications (s-sssita.adb). However, users -- can replace this implementation by providing their own as part of their -- program (for example, if multiple threads need to be supported in a ZFP -- application). -- -- Many Ravenscar run-times also use this mechanism to provide switch -- between efficient single task and multitask implementations without -- depending on System.Soft_Links. -- -- In all cases, the binder will generate a default-sized secondary stack -- for the environment task if the secondary stack is used by the program -- being binded. -- -- To support multithreaded ZFP-based applications, the binder supports -- the creation of additional secondary stacks using the -Qnnn binder -- switch. For the user to make use of these generated stacks, all threads -- need to call SS_Init with a null-object parameter to be assigned a -- stack. It is then the responsibility of the user to store the returned -- pointer in a way that can be can retrieved via the user implementation -- of the __gnat_get_secondary_stack function. In this scenario it is -- recommended to use thread local variables. For example, if the -- Thread_Local_Storage aspect is supported on the target: -- -- pragma Warnings (Off); -- with System.Secondary_Stack; use System.Secondary_Stack; -- pragma Warnings (On); -- -- package Secondary_Stack is -- Thread_Sec_Stack : System.Secondary_Stack.SS_Stack_Ptr := null -- with Thread_Local_Storage; -- -- function Get_Sec_Stack return SS_Stack_Ptr -- with Export, Convention => C, -- External_Name => "__gnat_get_secondary_stack"; -- -- function Get_Sec_Stack return SS_Stack_Ptr is -- begin -- if Thread_Sec_Stack = null then -- SS_Init (Thread_Sec_Stack); -- end if; -- -- return Thread_Sec_Stack; -- end Get_Sec_Stack; -- end Secondary_Stack; ----------------- -- SS_Allocate -- ----------------- procedure SS_Allocate (Addr : out Address; Storage_Size : SSE.Storage_Count) is use type System.Storage_Elements.Storage_Count; Max_Align : constant SS_Ptr := SS_Ptr (Standard'Maximum_Alignment); Mem_Request : SS_Ptr; Stack : constant SS_Stack_Ptr := Get_Sec_Stack; begin -- Round up Storage_Size to the nearest multiple of the max alignment -- value for the target. This ensures efficient stack access. First -- perform a check to ensure that the rounding operation does not -- overflow SS_Ptr. if SSE.Storage_Count (SS_Ptr'Last) - Standard'Maximum_Alignment < Storage_Size then raise Storage_Error; end if; Mem_Request := ((SS_Ptr (Storage_Size) + Max_Align - 1) / Max_Align) * Max_Align; -- Check if max stack usage is increasing if Stack.Max - Stack.Top - Mem_Request < 0 then -- If so, check if the stack is exceeded, noting Stack.Top points to -- the first free byte (so the value of Stack.Top on a fully -- allocated stack will be Stack.Size + 1). The comparison is formed -- to prevent integer overflows. if Stack.Size - Stack.Top - Mem_Request < -1 then raise Storage_Error; end if; -- Record new max usage Stack.Max := Stack.Top + Mem_Request; end if; -- Set resulting address and update top of stack pointer pragma Assert (Stack.Top <= Stack.Internal_Chunk'Last); pragma Assert (Stack.Top >= Stack.Internal_Chunk'First); -- Here, there is enough memory to get the whole requested memory -- since the available memory was checked in the previous block. Addr := Stack.Internal_Chunk (Stack.Top)'Address; Stack.Top := Stack.Top + Mem_Request; end SS_Allocate; ---------------- -- SS_Get_Max -- ---------------- function SS_Get_Max return Long_Long_Integer is begin -- Stack.Max points to the first untouched byte in the stack, thus the -- maximum number of bytes that have been allocated on the stack is one -- less the value of Stack.Max. return Long_Long_Integer (Get_Sec_Stack.Max - 1); end SS_Get_Max; ------------- -- SS_Init -- ------------- procedure SS_Init (Stack : in out SS_Stack_Ptr; Size : SP.Size_Type := SP.Unspecified_Size) is use Parameters; begin -- If the size of the secondary stack for a task has been specified via -- the Secondary_Stack_Size aspect, then the compiler has allocated the -- stack at compile time and the task create call will provide a pointer -- to this stack. Otherwise, the task will be allocated a secondary -- stack from the pool of default-sized secondary stacks created by the -- binder. if Stack = null then -- Allocate a default-sized stack for the task. if Size = Unspecified_Size and then Binder_SS_Count > 0 and then Num_Of_Assigned_Stacks < Binder_SS_Count then -- The default-sized secondary stack pool is passed from the -- binder to this package as an Address since it is not possible -- to have a pointer to an array of unconstrained objects. A -- pointer to the pool is obtainable via an unchecked conversion -- to a constrained array of SS_Stacks that mirrors the one used -- by the binder. -- However, Ada understandably does not allow a local pointer to -- a stack in the pool to be stored in a pointer outside of this -- scope. While the conversion is safe in this case, since a view -- of a global object is being used, using Unchecked_Access -- would prevent users from specifying the restriction -- No_Unchecked_Access whenever the secondary stack is used. As -- a workaround, the local stack pointer is converted to a global -- pointer via System.Address. declare type Stk_Pool_Array is array (1 .. Binder_SS_Count) of aliased SS_Stack (Default_SS_Size); type Stk_Pool_Access is access Stk_Pool_Array; function To_Stack_Pool is new Ada.Unchecked_Conversion (Address, Stk_Pool_Access); pragma Warnings (Off); function To_Global_Ptr is new Ada.Unchecked_Conversion (Address, SS_Stack_Ptr); pragma Warnings (On); -- Suppress aliasing warning since the pointer we return will -- be the only access to the stack. Local_Stk_Address : System.Address; begin Num_Of_Assigned_Stacks := Num_Of_Assigned_Stacks + 1; pragma Assert (Num_Of_Assigned_Stacks >= 1); -- Num_Of_Assigned_Stacks is defined as Natural. So after, the -- Previous increment it shall be greater or equal to 1. Local_Stk_Address := To_Stack_Pool (Default_Sized_SS_Pool) (Num_Of_Assigned_Stacks)'Address; pragma Annotate (CodePeer, False_Positive, "array index check", "Num_Of_Assigned_Stacks < Binder_SS_Count."); Stack := To_Global_Ptr (Local_Stk_Address); end; -- Many run-times unconditionally bring in this package and call -- SS_Init even though the secondary stack is not used by the -- program. In this case return without assigning a stack as it will -- never be used. elsif Binder_SS_Count = 0 then return; else raise Program_Error; end if; end if; Stack.Top := 1; Stack.Max := 1; end SS_Init; ------------- -- SS_Mark -- ------------- function SS_Mark return Mark_Id is begin return Mark_Id (Get_Sec_Stack.Top); end SS_Mark; ---------------- -- SS_Release -- ---------------- procedure SS_Release (M : Mark_Id) is begin Get_Sec_Stack.Top := SS_Ptr (M); end SS_Release; end System.Secondary_Stack;
package Discr32_Pkg is type Enum is (One, Two, Three); type R (D : Enum) is record case D is when One => B : Boolean; when Two => I : Integer; when Three => F : Float; end case; end record; for R use record D at 0 range 0 .. 1; B at 1 range 0 .. 0; I at 4 range 0 .. 31 + 128; -- F at 4 range 0 .. 31; end record; subtype R1 is R (One); subtype R2 is R (Two); subtype R3 is R (Three); end Discr32_Pkg;
generic -- User's instantiation enumeration type type Enumerated is (<>); package Formatter is -- Purpose: Format variable numeric arguments -- -- F Returns the CONTENTS variant record set to the appropriate type -- to allow a common data type to be passed to either GET or PUT. -- -- Put Writes a formatted string given a variable number of data -- values and a FORMAT string. -- -- Get Returns a formatted string given a variable number of data -- values and a FORMAT string. type DP_Float is digits 15; -- Double precision float type -- Allowable data types to format type Data_Type is (Integer_Type, Float_Type, DP_Float_Type, String_Type, Character_Type, Unknown_Type); -- Abstract Data Type (ADT) specification type Contents(Class : Data_Type := Unknown_type) is private; -- Unconstrained array of data values to format type Values is array (positive range <>) of Contents; -- Specific data type to ADT conversion functions (overloaded) function F(Data : in Integer) return Contents; function F(Data : in Float) return Contents; function F(Data : in DP_Float) return Contents; function F(Data : in Character) return Contents; function F(Data : in String) return Contents; function F(Data : in Enumerated) return Contents; -- Output formatted values procedures (overloaded) procedure PutS(retStr : in out String; Format : in String; Value : in Values); function SPut(Format : in String; Value : in Values) return String; function SPut(Format : in String; Value : in Contents) return String; procedure Put(Format : In String; Value : In Values); -- Multiple data values procedure Put(Format : In String; Value : In Contents); -- Single data value procedure Put(Format : In String); -- No data values -- Output formatted values string functions (overloaded) function Get(Format : In String; Value : In Values) Return String; -- Multiple data values function Get(Format : In String; Value : In Contents) Return String; -- Single data value function Get(Format : In String) Return String; -- No data values private -- Private string type type String_Pointer is access String; type String_Record is record The_String : String_Pointer; The_Length : Natural := 0; end record; -- Abstract Data Type implementation type Contents(Class : Data_Type := Unknown_type) is record case Class is when Integer_type => Integer_value : Integer; when Float_type => Float_value : Float; when DP_Float_type => DP_Float_value : DP_float; when Character_Type => Character_Value : Character; when String_type => String_value : String_Record; when Unknown_type => null; end case; end record; end Formatter;
----------------------------------------------------------------------- -- util-beans -- Interface Definition with Getter and Setters -- Copyright (C) 2009, 2010, 2018, 2019 Stephane Carrez -- Written by Stephane Carrez (Stephane.Carrez@gmail.com) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- -- = Ada Beans = -- A [Java Bean](http://en.wikipedia.org/wiki/JavaBean) is an object that -- allows to access its properties through getters and setters. Java Beans -- rely on the use of Java introspection to discover the Java Bean object properties. -- -- An Ada Bean has some similarities with the Java Bean as it tries to expose -- an object through a set of common interfaces. Since Ada does not have introspection, -- some developer work is necessary. The Ada Bean framework consists of: -- -- * An `Object` concrete type that allows to hold any data type such -- as boolean, integer, floats, strings, dates and Ada bean objects. -- * A `Bean` interface that exposes a `Get_Value` and `Set_Value` -- operation through which the object properties can be obtained and modified. -- * A `Method_Bean` interface that exposes a set of method bindings -- that gives access to the methods provided by the Ada Bean object. -- -- The benefit of Ada beans comes when you need to get a value or invoke -- a method on an object but you don't know at compile time the object or method. -- That step being done later through some external configuration or presentation file. -- -- The Ada Bean framework is the basis for the implementation of -- Ada Server Faces and Ada EL. It allows the presentation layer to -- access information provided by Ada beans. -- -- To use the packages described here, use the following GNAT project: -- -- with "utilada_base"; -- -- @include util-beans-objects.ads -- @include util-beans-objects-datasets.ads -- @include util-beans-basic.ads package Util.Beans is pragma Preelaborate; end Util.Beans;
with Ada.Unchecked_Conversion; with Interfaces; package body C.Ops is function "and" (I1, I2: Char) return Char is begin return To_Signed(To_Unsigned(I1) and To_Unsigned(I2)); end "and"; function "and" (I1, I2: Short) return Short is begin return To_Signed(To_Unsigned(I1) and To_Unsigned(I2)); end "and"; function "and" (I1, I2: Int) return Int is begin return To_Signed(To_Unsigned(I1) and To_Unsigned(I2)); end "and"; function "and" (I1, I2: Long) return Long is begin return To_Signed(To_Unsigned(I1) and To_Unsigned(I2)); end "and"; function "or" (I1, I2: Char) return Char is begin return To_Signed(To_Unsigned(I1) or To_Unsigned(I2)); end "or"; function "or" (I1, I2: Short) return Short is begin return To_Signed(To_Unsigned(I1) or To_Unsigned(I2)); end "or"; function "or" (I1, I2: Int) return Int is begin return To_Signed(To_Unsigned(I1) or To_Unsigned(I2)); end "or"; function "or" (I1, I2: Long) return Long is begin return To_Signed(To_Unsigned(I1) or To_Unsigned(I2)); end "or"; function "xor" (I1, I2: Char) return Char is begin return To_Signed(To_Unsigned(I1) xor To_Unsigned(I2)); end "xor"; function "xor" (I1, I2: Short) return Short is begin return To_Signed(To_Unsigned(I1) xor To_Unsigned(I2)); end "xor"; function "xor" (I1, I2: Int) return Int is begin return To_Signed(To_Unsigned(I1) xor To_Unsigned(I2)); end "xor"; function "xor" (I1, I2: Long) return Long is begin return To_Signed(To_Unsigned(I1) xor To_Unsigned(I2)); end "xor"; function "not" (I1: Char) return Char is begin return To_Signed(not To_Unsigned(I1)); end "not"; function "not" (I1: Short) return Short is begin return To_Signed(not To_Unsigned(I1)); end "not"; function "not" (I1: Int) return Int is begin return To_Signed(not To_Unsigned(I1)); end "not"; function "not" (I1: Long) return Long is begin return To_Signed(not To_Unsigned(I1)); end "not"; package I renames Interfaces; -- this would have to change on a machine with 64 bit integers. function U8 is new Ada.Unchecked_Conversion (Uchar, I.Unsigned_8); function U16 is new Ada.Unchecked_Conversion (Ushort, I.Unsigned_16); function U32 is new Ada.Unchecked_Conversion (Uint, I.Unsigned_32); function U32 is new Ada.Unchecked_Conversion (Ulong, I.Unsigned_32); function UC is new Ada.Unchecked_Conversion (I.Unsigned_8, Uchar); function US is new Ada.Unchecked_Conversion (I.Unsigned_16, Ushort); function UI is new Ada.Unchecked_Conversion (I.Unsigned_32, Uint); function UL is new Ada.Unchecked_Conversion (I.Unsigned_32, Ulong); function Shift_Left (Value: Uchar; Amount: Natural) return Unsigned_Char is begin return UC(I.Shift_Left(U8(Value), Amount)); end Shift_Left; function Shift_Left (Value: Ushort; Amount: Natural) return Unsigned_Short is begin return US(I.Shift_Left(U16(Value), Amount)); end Shift_Left; function Shift_Left (Value: Uint; Amount: Natural) return Unsigned_Int is begin return UI(I.Shift_Left(U32(Value), Amount)); end Shift_Left; function Shift_Left (Value: Ulong; Amount: Natural) return Unsigned_Long is begin return UL(I.Shift_Left(U32(Value), Amount)); end Shift_Left; function Shift_Right (Value: Uchar; Amount: Natural) return Unsigned_Char is begin return UC(I.Shift_Right(U8(Value), Amount)); end Shift_Right; function Shift_Right (Value: Ushort; Amount: Natural) return Unsigned_Short is begin return US(I.Shift_Right(U16(Value), Amount)); end Shift_Right; function Shift_Right (Value: Uint; Amount: Natural) return Unsigned_Int is begin return UI(I.Shift_Right(U32(Value), Amount)); end Shift_Right; function Shift_Right (Value: Ulong; Amount: Natural) return Unsigned_Long is begin return UL(I.Shift_Right(U32(Value), Amount)); end Shift_Right; function Shift_Right_Arithmetic (Value: Uchar; Amount: Natural) return Unsigned_Char is begin return UC(I.Shift_Right_Arithmetic(U8(Value), Amount)); end Shift_Right_Arithmetic; function Shift_Right_Arithmetic (Value: Ushort; Amount: Natural) return Ushort is begin return US(I.Shift_Right_Arithmetic(U16(Value), Amount)); end Shift_Right_Arithmetic; function Shift_Right_Arithmetic (Value: Uint; Amount: Natural) return Unsigned_Int is begin return UI(I.Shift_Right_Arithmetic(U32(Value), Amount)); end Shift_Right_Arithmetic; function Shift_Right_Arithmetic (Value: Ulong; Amount: Natural) return Unsigned_Long is begin return UL(I.Shift_Right_Arithmetic(U32(Value), Amount)); end Shift_Right_Arithmetic; function Shift_Left (Value: Char; Amount: Natural) return Char is begin return To_Signed(Shift_Left(To_Unsigned(Value), Amount)); end Shift_Left; function Shift_Left (Value: Short; Amount: Natural) return Short is begin return To_Signed(Shift_Left(To_Unsigned(Value), Amount)); end Shift_Left; function Shift_Left (Value: Int; Amount: Natural) return Int is begin return To_Signed(Shift_Left(To_Unsigned(Value), Amount)); end Shift_Left; function Shift_Left (Value: Long; Amount: Natural) return Long is begin return To_Signed(Shift_Left(To_Unsigned(Value), Amount)); end Shift_Left; function Shift_Right (Value: Char; Amount: Natural) return Char is begin return To_Signed(Shift_Right(To_Unsigned(Value), Amount)); end Shift_Right; function Shift_Right (Value: Short; Amount: Natural) return Short is begin return To_Signed(Shift_Right(To_Unsigned(Value), Amount)); end Shift_Right; function Shift_Right (Value: Int; Amount: Natural) return Int is begin return To_Signed(Shift_Right(To_Unsigned(Value), Amount)); end Shift_Right; function Shift_Right (Value: Long; Amount: Natural) return Long is begin return To_Signed(Shift_Right(To_Unsigned(Value), Amount)); end Shift_Right; function Shift_Right_Arithmetic (Value: Char; Amount: Natural) return Char is begin return To_Signed(Shift_Right_Arithmetic(To_Unsigned(Value), Amount)); end Shift_Right_Arithmetic; function Shift_Right_Arithmetic (Value: Short; Amount: Natural) return Short is begin return To_Signed(Shift_Right_Arithmetic(To_Unsigned(Value), Amount)); end Shift_Right_Arithmetic; function Shift_Right_Arithmetic (Value: Int; Amount: Natural) return Int is begin return To_Signed(Shift_Right_Arithmetic(To_Unsigned(Value), Amount)); end Shift_Right_Arithmetic; function Shift_Right_Arithmetic (Value: Long; Amount: Natural) return Long is begin return To_Signed(Shift_Right_Arithmetic(To_Unsigned(Value), Amount)); end Shift_Right_Arithmetic; end C.Ops;
with Ada.Unchecked_Deallocation; with HAL; use HAL; with HAL.Filesystem; use HAL.Filesystem; with Native.Filesystem; with Virtual_File_System; use Virtual_File_System; -- Helpers for Virtual_File_System testcases package Helpers is procedure Test (Status : Status_Kind); -- Check that status is Status_Ok function Create (Root_Dir : Pathname; Create_If_Missing : Boolean := False) return Native.Filesystem.Native_FS_Driver_Ref; -- Create a native FS driver rooted at Root_Dir, in the Material_Name -- material directory. function Read_File (File : in out File_Handle'Class) return UInt8_Array; -- Read the whole content of File and return it. Raise a Program_Error if -- anything goes wrong. function Quote_Bytes (Bytes : UInt8_Array) return String; -- Return a human-readable representation of Bytes, considered as ASCII procedure Dump (FS : in out FS_Driver'Class; Dir : Pathname); -- Dump the content of the Dir directory in FS to the standard output procedure Destroy is new Ada.Unchecked_Deallocation (FS_Driver'Class, Any_FS_Driver); procedure Destroy is new Ada.Unchecked_Deallocation (Virtual_File_System.VFS'Class, Virtual_File_System.Any_VFS); end Helpers;
-- $Source: /home/CVSROOT/c2ada/c-ops.ads,v $ -- $Revision: 1.1.1.1 $ $Date: 1999/02/02 12:01:51 $ with Ada.Unchecked_Conversion; package C.Ops is subtype Uchar is C.Unsigned_Char; subtype Ushort is C.Unsigned_Short; subtype Uint is C.Unsigned_Int; subtype Ulong is C.Unsigned_Long; -- unchecked conversions between signed and unsigned types -------------- function To_Unsigned is new Ada.Unchecked_Conversion (Char, UChar); function To_Unsigned is new Ada.Unchecked_Conversion (Short, Ushort); function To_Unsigned is new Ada.Unchecked_Conversion (Int, Uint); function To_Unsigned is new Ada.Unchecked_Conversion (Long, Ulong); function To_Signed is new Ada.Unchecked_Conversion (UChar, Char); function To_Signed is new Ada.Unchecked_Conversion (UShort, Short); function To_Signed is new Ada.Unchecked_Conversion (UInt, Int); function To_Signed is new Ada.Unchecked_Conversion (ULong, Long); -- and, or, xor, not ----------------------------------------------------- function "and" (I1, I2: Uchar) return Uchar renames Interfaces.C."and"; function "and" (I1, I2: Ushort) return Ushort renames Interfaces.C."and"; function "and" (I1, I2: Uint) return Uint renames Interfaces.C."and"; function "and" (I1, I2: Ulong) return Ulong renames Interfaces.C."and"; function "and" (I1, I2: Char) return Char; pragma Inline("and"); function "and" (I1, I2: Short) return Short; pragma Inline("and"); function "and" (I1, I2: Int) return Int; pragma Inline("and"); function "and" (I1, I2: Long) return Long; pragma Inline("and"); function "or" (I1, I2: Uchar) return Uchar renames Interfaces.C."or"; function "or" (I1, I2: Ushort) return Ushort renames Interfaces.C."or"; function "or" (I1, I2: Uint) return Uint renames Interfaces.C."or"; function "or" (I1, I2: Ulong) return Ulong renames Interfaces.C."or"; function "or" (I1, I2: Char) return Char; pragma Inline("or"); function "or" (I1, I2: Short) return Short; pragma Inline("or"); function "or" (I1, I2: Int) return Int; pragma Inline("or"); function "or" (I1, I2: Long) return Long; pragma Inline("or"); function "xor" (I1, I2: Uchar) return Uchar renames Interfaces.C."xor"; function "xor" (I1, I2: Ushort) return Ushort renames Interfaces.C."xor"; function "xor" (I1, I2: Uint) return Uint renames Interfaces.C."xor"; function "xor" (I1, I2: Ulong) return Ulong renames Interfaces.C."xor"; function "xor" (I1, I2: Char) return Char; pragma Inline("xor"); function "xor" (I1, I2: Short) return Short; pragma Inline("xor"); function "xor" (I1, I2: Int) return Int; pragma Inline("xor"); function "xor" (I1, I2: Long) return Long; pragma Inline("xor"); function "not" (I1: Uchar) return Uchar renames Interfaces.C."not"; function "not" (I1: Ushort) return Ushort renames Interfaces.C."not"; function "not" (I1: Uint) return Uint renames Interfaces.C."not"; function "not" (I1: Ulong) return Ulong renames Interfaces.C."not"; function "not" (I1: Char) return Char; pragma Inline("not"); function "not" (I1: Short) return Short; pragma Inline("not"); function "not" (I1: Int) return Int; pragma Inline("not"); function "not" (I1: Long) return Long; pragma Inline("not"); -- Shift left and right --------------------------------------------------- function Shift_Left (Value: Uchar; Amount: Natural) return Uchar; pragma Inline(Shift_Left); function Shift_Left (Value: Ushort; Amount: Natural) return Ushort; pragma Inline(Shift_Left); function Shift_Left (Value: Uint; Amount: Natural) return Uint; pragma Inline(Shift_Left); function Shift_Left (Value: Ulong; Amount: Natural) return Ulong; pragma Inline(Shift_Left); function Shift_Left (Value: Char; Amount: Natural) return Char; pragma Inline(Shift_Left); function Shift_Left (Value: Short; Amount: Natural) return Short; pragma Inline(Shift_Left); function Shift_Left (Value: Int; Amount: Natural) return Int; pragma Inline(Shift_Left); function Shift_Left (Value: Long; Amount: Natural) return Long; pragma Inline(Shift_Left); function Shift_Right (Value: Uchar; Amount: Natural) return Uchar; pragma Inline(Shift_Right); function Shift_Right (Value: Ushort; Amount: Natural) return Ushort; pragma Inline(Shift_Right); function Shift_Right (Value: Uint; Amount: Natural) return Uint; pragma Inline(Shift_Right); function Shift_Right (Value: Ulong; Amount: Natural) return Ulong; pragma Inline(Shift_Right); function Shift_Right (Value: Char; Amount: Natural) return Char; pragma Inline(Shift_Right); function Shift_Right (Value: Short; Amount: Natural) return Short; pragma Inline(Shift_Right); function Shift_Right (Value: Int; Amount: Natural) return Int; pragma Inline(Shift_Right); function Shift_Right (Value: Long; Amount: Natural) return Long; pragma Inline(Shift_Right); function Shift_Right_Arithmetic (Value: Uchar; Amount: Natural) return Uchar; pragma Inline(Shift_Right_Arithmetic); function Shift_Right_Arithmetic (Value: Ushort; Amount: Natural) return Ushort; pragma Inline(Shift_Right_Arithmetic); function Shift_Right_Arithmetic (Value: Uint; Amount: Natural) return Uint; pragma Inline(Shift_Right_Arithmetic); function Shift_Right_Arithmetic (Value: Ulong; Amount: Natural) return Ulong; pragma Inline(Shift_Right_Arithmetic); function Shift_Right_Arithmetic (Value: Char; Amount: Natural) return Char; pragma Inline(Shift_Right_Arithmetic); function Shift_Right_Arithmetic (Value: Short; Amount: Natural) return Short; pragma Inline(Shift_Right_Arithmetic); function Shift_Right_Arithmetic (Value: Int; Amount: Natural) return Int; pragma Inline(Shift_Right_Arithmetic); function Shift_Right_Arithmetic (Value: Long; Amount: Natural) return Long; pragma Inline(Shift_Right_Arithmetic); end C.Ops;
------------------------------------------------------------------------------ -- -- -- Copyright (c) 2014 Vitalij Bondarenko <vibondare@gmail.com> -- -- -- ------------------------------------------------------------------------------ -- -- -- The MIT License (MIT) -- -- -- -- 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 Gtk.Dialog; use Gtk.Dialog; with Gtk.Message_Dialog; use Gtk.Message_Dialog; with Gtk.Expander; use Gtk.Expander; with Gtk.Label; use Gtk.Label; with Gtk.Box; use Gtk.Box; with Pango.Enums; package body Message_Dialogs is ------------------ -- Dialog_Error -- ------------------ function Message_Box (Box_Type : Gtk_Message_Type; Buttons : Gtk_Buttons_Type; Message : UTF8_String; Message2 : UTF8_String := ""; Detail : UTF8_String := ""; Title : UTF8_String := ""; Parent : Gtk_Window) return Gtk_Message_Dialog is MD : Gtk_Message_Dialog; Expander : Gtk_Expander; Label : Gtk_Label; begin Gtk.Message_Dialog.Gtk_New (Dialog => MD, Parent => Parent, Flags => Modal, Typ => Box_Type, Buttons => Buttons, Message => Message); Set_Title (MD, Title); if Message2 /= "" then Format_Secondary_Text (MD, Message2 & ASCII.NUL); -- ASCII.NUL added for the GtkAda 2.x error workaround end if; if Detail /= "" then Set_Markup (MD, "<b>" & Message & "</b>"); Gtk_New (Expander, -"Details"); Gtk_New (Label, Detail); Set_Line_Wrap (Label, True); Add (Expander, Label); Pack_Start (Gtk_Box (Get_Content_Area (MD)), Expander); end if; Show_All (MD); return MD; end Message_Box; ------------------------- -- Dialog_Confirmation -- ------------------------- function Dialog_Confirmation (Parent : Gtk_Window; Msg : UTF8_String; Msg_2 : UTF8_String := ""; Detail : UTF8_String := ""; Title : UTF8_String := -"Confirmation") return Boolean is MD : Gtk_Message_Dialog; R : Gtk_Response_Type; begin MD := Message_Box (Box_Type => Message_Question, Buttons => Buttons_Yes_No, Message => Msg, Message2 => Msg_2, Detail => Detail, Title => Title, Parent => Parent); R := Run (MD); Destroy (MD); if R = Gtk_Response_Yes then return True; else return False; end if; end Dialog_Confirmation; ------------------------ -- Dialog_Information -- ------------------------ procedure Dialog_Information (Parent : Gtk_Window; Msg : UTF8_String; Msg_2 : UTF8_String := ""; Detail : UTF8_String := ""; Title : UTF8_String := -"Information") is MD : Gtk_Message_Dialog; R : Gtk_Response_Type; begin MD := Message_Box (Box_Type => Message_Error, Buttons => Buttons_Ok, Message => Msg, Message2 => Msg_2, Detail => Detail, Title => Title, Parent => Parent); R := Run (MD); Destroy (MD); end Dialog_Information; ------------------ -- Dialog_Error -- ------------------ procedure Dialog_Error (Parent : Gtk_Window; Msg : UTF8_String; Msg_2 : UTF8_String := ""; Detail : UTF8_String := ""; Title : UTF8_String := -"Error") is MD : Gtk_Message_Dialog; R : Gtk_Response_Type; begin MD := Message_Box (Box_Type => Message_Error, Buttons => Buttons_Close, Message => Msg, Message2 => Msg_2, Detail => Detail, Title => Title, Parent => Parent); R := Run (MD); Destroy (MD); end Dialog_Error; -------------------- -- Dialog_Warning -- -------------------- procedure Dialog_Warning (Parent : Gtk_Window; Msg : UTF8_String; Msg_2 : UTF8_String := ""; Detail : UTF8_String := ""; Title : UTF8_String := -"Warning") is MD : Gtk_Message_Dialog; R : Gtk_Response_Type; begin MD := Message_Box (Box_Type => Message_Warning, Buttons => Buttons_Close, Message => Msg, Message2 => Msg_2, Detail => Detail, Title => Title, Parent => Parent); R := Run (MD); Destroy (MD); end Dialog_Warning; end Message_Dialogs;
-- Copyright 2017-2021 Bartek thindil Jasicki -- -- This file is part of Steam Sky. -- -- Steam Sky 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. -- -- Steam Sky 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 Steam Sky. If not, see <http://www.gnu.org/licenses/>. with ShipModules; use ShipModules; with Factions; use Factions; with Config; use Config; package body Ships.Cargo is procedure UpdateCargo (Ship: in out Ship_Record; ProtoIndex: Unbounded_String := Null_Unbounded_String; Amount: Integer; Durability: Items_Durability := Default_Item_Durability; CargoIndex, Price: Natural := 0) is ItemIndex: Inventory_Container.Extended_Index := 0; begin if ProtoIndex /= Null_Unbounded_String and CargoIndex = 0 then Find_Item_Index_Loop : for I in Ship.Cargo.Iterate loop if Ship.Cargo(I).ProtoIndex = ProtoIndex and Ship.Cargo(I).Durability = Durability then ItemIndex := Inventory_Container.To_Index(I); exit Find_Item_Index_Loop; end if; end loop Find_Item_Index_Loop; else ItemIndex := CargoIndex; end if; if ItemIndex = 0 and (ProtoIndex = Null_Unbounded_String or Amount < 0) then return; end if; if ItemIndex = 0 then Ship.Cargo.Append (New_Item => (ProtoIndex => ProtoIndex, Amount => Amount, Name => Null_Unbounded_String, Durability => Durability, Price => Price)); else declare NewAmount: constant Integer := Ship.Cargo(ItemIndex).Amount + Amount; begin if NewAmount < 1 then Ship.Cargo.Delete(Index => ItemIndex); Update_Ammo_Index_Loop : for Module of Ship.Modules loop if Module.M_Type = GUN then if Module.Ammo_Index > ItemIndex then Module.Ammo_Index := Module.Ammo_Index - 1; elsif Module.Ammo_Index = ItemIndex then Module.Ammo_Index := 0; end if; end if; end loop Update_Ammo_Index_Loop; else Ship.Cargo(ItemIndex).Amount := NewAmount; Ship.Cargo(ItemIndex).Price := Price; end if; end; end if; end UpdateCargo; function FreeCargo (Amount: Integer; Ship: Ship_Record := Player_Ship) return Integer is FreeCargo: Integer := 0; begin Count_Cargo_Size_Loop : for Module of Ship.Modules loop if Module.M_Type = CARGO_ROOM and Module.Durability > 0 then FreeCargo := FreeCargo + Modules_List(Module.Proto_Index).MaxValue; end if; end loop Count_Cargo_Size_Loop; Count_Cargo_Weight_Loop : for Item of Ship.Cargo loop FreeCargo := FreeCargo - (Items_List(Item.ProtoIndex).Weight * Item.Amount); end loop Count_Cargo_Weight_Loop; FreeCargo := FreeCargo + Amount; return FreeCargo; end FreeCargo; function GetItemAmount(ItemType: Unbounded_String) return Natural is Amount: Natural := 0; begin Get_Item_Amount_Loop : for Item of Player_Ship.Cargo loop if Items_List(Item.ProtoIndex).IType = ItemType then Amount := Amount + Item.Amount; end if; end loop Get_Item_Amount_Loop; return Amount; end GetItemAmount; function GetItemsAmount(IType: String) return Natural is ItemsAmount: Natural; begin if IType = "Drinks" then Get_Drinks_Amount_Loop : for Member of Player_Ship.Crew loop if Factions_List(Member.Faction).DrinksTypes.Length = 0 then ItemsAmount := Game_Settings.Low_Drinks + 1; else ItemsAmount := 0; Get_Selected_Drinks_Amount_Loop : for DrinkType of Factions_List(Member.Faction).DrinksTypes loop ItemsAmount := ItemsAmount + GetItemAmount(DrinkType); end loop Get_Selected_Drinks_Amount_Loop; exit Get_Drinks_Amount_Loop when ItemsAmount < Game_Settings.Low_Drinks; end if; end loop Get_Drinks_Amount_Loop; else Get_Items_Amount_Loop : for Member of Player_Ship.Crew loop if Factions_List(Member.Faction).FoodTypes.Length = 0 then ItemsAmount := Game_Settings.Low_Food + 1; else ItemsAmount := 0; Get_Food_Amount_Loop : for FoodType of Factions_List(Member.Faction).FoodTypes loop ItemsAmount := ItemsAmount + GetItemAmount(FoodType); end loop Get_Food_Amount_Loop; exit Get_Items_Amount_Loop when ItemsAmount < Game_Settings.Low_Food; end if; end loop Get_Items_Amount_Loop; end if; return ItemsAmount; end GetItemsAmount; end Ships.Cargo;
-- Mail Baby API -- This is an API defintion for accesssing the Mail.Baby mail service. -- -- The version of the OpenAPI document: 1.0.0 -- Contact: detain@interserver.net -- -- NOTE: This package is auto generated by OpenAPI-Generator 6.0.0-SNAPSHOT. -- https://openapi-generator.tech -- Do not edit the class manually. package body .Models is pragma Style_Checks ("-mr"); pragma Warnings (Off, "*use clause for package*"); use Swagger.Streams; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in SendMailAdvFrom_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("email", Value.Email); Into.Write_Entity ("name", Value.Name); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in SendMailAdvFrom_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out SendMailAdvFrom_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "email", Value.Email); Swagger.Streams.Deserialize (Object, "name", Value.Name); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out SendMailAdvFrom_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : SendMailAdvFrom_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in MailLog_Type) is begin Into.Start_Entity (Name); Into.Write_Long_Entity ("id", Value.Id); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in MailLog_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out MailLog_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "id", Value.Id); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out MailLog_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : MailLog_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in GenericResponse_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("status", Value.Status); Into.Write_Entity ("text", Value.Text); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in GenericResponse_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out GenericResponse_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "status", Value.Status); Swagger.Streams.Deserialize (Object, "text", Value.Text); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out GenericResponse_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : GenericResponse_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ErrorResponse_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("code", Value.Code); Into.Write_Entity ("message", Value.Message); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ErrorResponse_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ErrorResponse_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "code", Value.Code); Swagger.Streams.Deserialize (Object, "message", Value.Message); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ErrorResponse_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ErrorResponse_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in MailOrder_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("id", Value.Id); Into.Write_Entity ("status", Value.Status); Into.Write_Entity ("username", Value.Username); Into.Write_Entity ("password", Value.Password); Into.Write_Entity ("comment", Value.Comment); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in MailOrder_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out MailOrder_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "id", Value.Id); Swagger.Streams.Deserialize (Object, "status", Value.Status); Swagger.Streams.Deserialize (Object, "username", Value.Username); Swagger.Streams.Deserialize (Object, "password", Value.Password); Swagger.Streams.Deserialize (Object, "comment", Value.Comment); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out MailOrder_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : MailOrder_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in MailContact_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("email", Value.Email); Into.Write_Entity ("name", Value.Name); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in MailContact_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out MailContact_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "email", Value.Email); Swagger.Streams.Deserialize (Object, "name", Value.Name); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out MailContact_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : MailContact_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in SendMail_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("to", Value.To); Into.Write_Entity ("from", Value.From); Into.Write_Entity ("subject", Value.Subject); Into.Write_Entity ("body", Value.P_Body); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in SendMail_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out SendMail_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "to", Value.To); Swagger.Streams.Deserialize (Object, "from", Value.From); Swagger.Streams.Deserialize (Object, "subject", Value.Subject); Swagger.Streams.Deserialize (Object, "body", Value.P_Body); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out SendMail_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : SendMail_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in InlineResponse401_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("code", Value.Code); Into.Write_Entity ("message", Value.Message); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in InlineResponse401_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out InlineResponse401_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "code", Value.Code); Swagger.Streams.Deserialize (Object, "message", Value.Message); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out InlineResponse401_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : InlineResponse401_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in MailAttachment_Type) is begin Into.Start_Entity (Name); Serialize (Into, "data", Value.Data); Into.Write_Entity ("filename", Value.Filename); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in MailAttachment_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out MailAttachment_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "data", Value.Data); Swagger.Streams.Deserialize (Object, "filename", Value.Filename); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out MailAttachment_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : MailAttachment_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in SendMailAdv_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("subject", Value.Subject); Into.Write_Entity ("body", Value.P_Body); Serialize (Into, "from", Value.From); Serialize (Into, "to", Value.To); Into.Write_Long_Entity ("id", Value.Id); Serialize (Into, "replyto", Value.Replyto); Serialize (Into, "cc", Value.Cc); Serialize (Into, "bcc", Value.Bcc); Serialize (Into, "attachments", Value.Attachments); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in SendMailAdv_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out SendMailAdv_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "subject", Value.Subject); Swagger.Streams.Deserialize (Object, "body", Value.P_Body); Deserialize (Object, "from", Value.From); Deserialize (Object, "to", Value.To); Swagger.Streams.Deserialize (Object, "id", Value.Id); Deserialize (Object, "replyto", Value.Replyto); Deserialize (Object, "cc", Value.Cc); Deserialize (Object, "bcc", Value.Bcc); Deserialize (Object, "attachments", Value.Attachments); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out SendMailAdv_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : SendMailAdv_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; end .Models;
----------------------------------------------------------------------- -- awa-counters-beans -- Counter bean definition -- Copyright (C) 2015, 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 Ada.Strings.Unbounded; with ADO.Objects; with ADO.Schemas; with ADO.Queries; with Util.Beans.Objects; with Util.Beans.Basic; with AWA.Counters.Modules; with AWA.Counters.Models; -- == Counter Bean == -- The <b>Counter_Bean</b> allows to represent a counter associated with some database -- entity and allows its control by the <awa:counter> component. -- package AWA.Counters.Beans is type Counter_Bean (Of_Type : ADO.Objects.Object_Key_Type; Of_Class : ADO.Schemas.Class_Mapping_Access) is new Util.Beans.Basic.Readonly_Bean with record Counter : Counter_Index_Type; Value : Integer := -1; Object : ADO.Objects.Object_Key (Of_Type, Of_Class); end record; type Counter_Bean_Access is access all Counter_Bean'Class; -- Get the value identified by the name. overriding function Get_Value (From : in Counter_Bean; Name : in String) return Util.Beans.Objects.Object; type Counter_Stat_Bean is new AWA.Counters.Models.Stat_List_Bean with record Module : AWA.Counters.Modules.Counter_Module_Access; Stats : aliased AWA.Counters.Models.Stat_Info_List_Bean; Stats_Bean : AWA.Counters.Models.Stat_Info_List_Bean_Access; end record; type Counter_Stat_Bean_Access is access all Counter_Stat_Bean'Class; -- Get the query definition to collect the counter statistics. function Get_Query (From : in Counter_Stat_Bean) return ADO.Queries.Query_Definition_Access; overriding function Get_Value (List : in Counter_Stat_Bean; Name : in String) return Util.Beans.Objects.Object; -- Set the value identified by the name. overriding procedure Set_Value (From : in out Counter_Stat_Bean; Name : in String; Value : in Util.Beans.Objects.Object); -- Load the statistics information. overriding procedure Load (List : in out Counter_Stat_Bean; Outcome : in out Ada.Strings.Unbounded.Unbounded_String); -- Create the Blog_Stat_Bean bean instance. function Create_Counter_Stat_Bean (Module : in AWA.Counters.Modules.Counter_Module_Access) return Util.Beans.Basic.Readonly_Bean_Access; end AWA.Counters.Beans;
with Glib, glib.Error, gtk.Builder, gtk.Handlers, gtk.Text_Buffer, gtk.Text_Iter, gtk.Enums, ada.Characters.latin_1; package body aIDE.Editor.of_comment is use Gtk.Builder, Gtk.Text_Buffer, Gtk.Text_Iter, Glib, Glib.Error; function on_comment_text_View_leave (the_Entry : access Gtk_Text_View_Record'Class; the_Operation : in AdaM.Comment.view) return Boolean is use Gtk.Text_Iter; Start : Gtk_Text_Iter; the_End : Gtk_Text_Iter; Continue : Boolean; the_Lines : AdaM.text_Lines; begin the_Entry.Get_Buffer.get_start_Iter (Start); the_End := Start; Forward_Line (the_End, Continue); if Start = the_End then return False; end if; loop declare use AdaM; the_Text : constant String := the_Entry.Get_Buffer.Get_Text (Start, the_End); begin if the_Text (the_Text'Last) = ada.Characters.Latin_1.LF then the_Lines.append (+the_Text (the_Text'First .. the_Text'Last - 1)); -- Drop Line Feed. else the_Lines.append (+the_Text); end if; end; exit when not Continue; Start := the_End; the_End := Start; Forward_Line (the_End, Continue); end loop; the_Operation.Lines_are (the_Lines); return False; end on_comment_text_View_leave; procedure on_rid_Button_clicked (the_Button : access Gtk_Button_Record'Class; the_comment_Editor : in aIDE.Editor.of_comment.view) is pragma Unreferenced (the_comment_Editor); begin the_Button.get_Parent.get_Parent.get_Parent.destroy; end on_rid_Button_clicked; package text_View_return_Callbacks is new Gtk.Handlers.User_Return_Callback (Gtk_Text_View_Record, Boolean, AdaM.Comment.view); package Button_Callbacks is new Gtk.Handlers.User_Callback (Gtk_Button_Record, aIDE.Editor.of_Comment.view); package body Forge is function to_comment_Editor (the_Comment : in AdaM.Comment.view) return View is Self : constant Editor.of_Comment.view := new Editor.of_Comment.item; the_Builder : Gtk_Builder; Error : aliased GError; Result : Guint; pragma Unreferenced (Result); begin Self.Comment := the_Comment; Gtk_New (the_Builder); Result := the_Builder.Add_From_File ("glade/editor/comment_editor.glade", Error'Access); if Error /= null then raise Program_Error with "Error: adam.Editor.of_comment ~ " & Get_Message (Error); end if; Self.Top := gtk_Frame (the_Builder.get_Object ("Top")); Self.comment_text_View := gtk_Text_View (the_Builder.get_Object ("comment_text_View")); Self.comment_text_View.Override_Background_Color (State => Gtk.Enums.Gtk_State_Flag_Normal, Color => (0.85, 0.92, 0.98, 1.0)); Self.parameters_Alignment := gtk_Alignment (the_Builder.get_Object ("parameters_Alignment")); Self.rid_Button := gtk_Button (the_Builder.get_Object ("rid_Button")); Text_View_return_Callbacks.Connect (Self.comment_text_View, "focus-out-event", on_comment_text_View_leave'Access, the_Comment); Button_Callbacks.Connect (Self.rid_Button, "clicked", on_rid_Button_clicked'Access, Self); declare use AdaM; Buffer : constant Gtk_Text_Buffer := Self.comment_text_View.Get_Buffer; Iter : Gtk_Text_Iter; begin Buffer.Get_Start_Iter (Iter); for i in 1 .. Natural (the_Comment.Lines.Length) loop if i /= Natural (the_Comment.Lines.Length) then Buffer.Insert (Iter, +Self.Comment.Lines.Element (i) & Ada.Characters.Latin_1.LF); else Buffer.Insert (Iter, +Self.Comment.Lines.Element (i)); end if; end loop; end; return Self; end to_comment_Editor; end Forge; overriding function top_Widget (Self : in Item) return gtk.Widget.Gtk_Widget is begin return gtk.Widget.Gtk_Widget (Self.Top); end top_Widget; end aIDE.Editor.of_comment;
package STM32F4.PWM is type Timer is (TIM2, TIM3, TIM4, TIM5); type Timer_Config is record Prescaler : Half_Word; Period : Float; end record; type Channel is (CH1, CH2, CH3, CH4); type Channel_State is (Enabled, Disabled); -- Intput not supported yet type PWM_Mode is (Output); type Channel_Config is record Mode : PWM_Mode; end record; subtype Duty_Percentage is Natural range 1 .. 100; subtype Duty_Time is Float; procedure Config_Timer (Tim : Timer; Conf : Timer_Config); procedure Config_Channel (Tim : Timer; Ch : Channel; Conf : Channel_Config); procedure Set_Channel_State (Tim : Timer; Ch : Channel; State : Channel_State); procedure Set_Duty_Percentage (Tim : Timer; Ch : Channel; Percent : Duty_Percentage); procedure Set_Duty_Time (Tim : Timer; Ch : Channel; Time : Duty_Time); end STM32F4.PWM;
-- C34018A.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 CALLS OF DERIVED SUBPROGRAMS CHECK CONSTRAINTS OF THE -- PARENT SUBPROGRAM, NOT THE CONSTRAINTS OF THE DERIVED SUBTYPE. -- JBG 11/15/85 -- JRK 2/12/86 CORRECTED ERROR: RESOLVED AMBIGUOUS CALL G(41) TO -- TYPE NEW_INT. -- EDS 7/16/98 AVOID OPTIMIZATION WITH REPORT; USE REPORT; PROCEDURE C34018A IS PACKAGE P IS TYPE INT IS RANGE 1..100; SUBTYPE INT_50 IS INT RANGE 1..50; SUBTYPE INT_51 IS INT RANGE 51..100; FUNCTION "+" (L, R : INT) RETURN INT; FUNCTION G (X : INT_50) RETURN INT_51; TYPE STR IS ARRAY (1..10) OF CHARACTER; FUNCTION F (X : STR) RETURN STR; END P; USE P; TYPE NEW_STR IS NEW P.STR; TYPE NEW_INT IS NEW P.INT RANGE 51..90; PACKAGE BODY P IS FUNCTION "+" (L, R : INT) RETURN INT IS BEGIN RETURN INT(INTEGER(L) + INTEGER(R)); END "+"; FUNCTION G (X : INT_50) RETURN INT_51 IS BEGIN RETURN X + 10; END G; FUNCTION F (X : STR) RETURN STR IS BEGIN RETURN X; END F; END P; BEGIN TEST ("C34018A", "CHECK CONSTRAINTS PROCESSED CORRECTLY FOR " & "CALLS OF DERIVED SUBPROGRAMS"); DECLARE Y : NEW_STR := F("1234567890"); -- UNAMBIGUOUS. BEGIN IF Y /= "1234567890" THEN FAILED ("DERIVED F"); END IF; END; DECLARE A : INT := 51; B : NEW_INT := NEW_INT(IDENT_INT(90)); BEGIN BEGIN A := A + 0; FAILED ("NO EXCEPTION - A + 0 = " & INT'IMAGE(A) ); --Use A EXCEPTION WHEN CONSTRAINT_ERROR => NULL; WHEN OTHERS => FAILED ("UNEXPECTED EXCEPTION - 1"); END; BEGIN IF B + 2 /= 92 THEN -- 92 IN INT. FAILED ("WRONG RESULT - B + 2"); END IF; EXCEPTION WHEN CONSTRAINT_ERROR => FAILED ("WRONG CONSTRAINT FOR DERIVED ""+"""); WHEN OTHERS => FAILED ("UNEXPECTED EXCEPTION - 2"); END; BEGIN IF B + 14 > 90 THEN -- 104 NOT IN INT. FAILED ("NO EXCEPTION RAISED FOR DERIVED ""+"""); END IF; EXCEPTION WHEN CONSTRAINT_ERROR => NULL; WHEN OTHERS => FAILED ("UNEXPECTED EXCEPTION - 3"); END; BEGIN IF G(B) > 90 THEN -- 90 NOT IN INT_50. FAILED ("NO EXCEPTION RAISED FOR DERIVED G"); END IF; EXCEPTION WHEN CONSTRAINT_ERROR => NULL; WHEN OTHERS => FAILED ("UNEXPECTED EXCEPTION - 4"); END; BEGIN IF C34018A.G(41) /= 51 THEN -- 41 CONVERTED TO -- NEW_INT'BASE. -- 41 IN INT_50. -- 51 IN INT_51. FAILED ("WRONG RESULT - G(41)"); END IF; EXCEPTION WHEN CONSTRAINT_ERROR => FAILED ("C_E RAISED FOR LITERAL ARGUMENT"); WHEN OTHERS => FAILED ("UNEXPECTED EXCEPTION - 5"); END; END; RESULT; END C34018A;
with Ada.Text_IO; use Ada.Text_IO; with Ada.Characters.Latin_1; with Ada.Unchecked_Deallocation; with Device; use Device; with Memory.Container; use Memory.Container; with Memory.Split; use Memory.Split; with Memory.Transform; use Memory.Transform; package body Memory is next_id : Natural := 0; function Done(mem : Memory_Type) return Boolean is begin return True; end Done; procedure Reset(mem : in out Memory_Type; context : in Natural) is begin mem.time := 0; end Reset; procedure Idle(mem : in out Memory_Type; cycles : in Time_Type) is begin Advance(mem, cycles); end Idle; function Get_Time(mem : Memory_Type) return Time_Type is begin return mem.time; end Get_Time; procedure Show_Stats(mem : in out Memory_Type) is begin Put_Line("Time:" & Time_Type'Image(mem.time) & " cycles"); Put_Line("Cost:" & Cost_Type'Image(Get_Cost(Memory_Type'Class(mem)))); Show_Access_Stats(Memory_Type'Class(mem)); end Show_Stats; procedure Advance(mem : in out Memory_Type'Class; cycles : in Time_Type) is begin mem.time := mem.time + cycles; end Advance; function Get_Path_Length(mem : Memory_Type) return Natural is begin return 0; end Get_Path_Length; -- Determine the max path length for a memory subsystem. function Get_Max_Length(mem : access Memory_Type'Class; result : Natural := 0) return Natural is begin if mem = null then return result; elsif mem.all in Split_Type'Class then declare sp : constant Split_Pointer := Split_Pointer(mem); b0 : constant Memory_Pointer := Get_Bank(sp.all, 0); s0 : constant Natural := Get_Max_Length(b0, result); b1 : constant Memory_Pointer := Get_Bank(sp.all, 1); s1 : constant Natural := Get_Max_Length(b1, result); bm : constant Natural := Natural'Max(s0, s1); begin return Natural'Max(bm, Get_Path_Length(mem.all)); end; elsif mem.all in Transform_Type'Class then declare tp : constant Transform_Pointer := Transform_Pointer(mem); bp : constant Memory_Pointer := Get_Bank(tp.all); bs : constant Natural := Get_Max_Length(bp, result); begin return Natural'Max(bs, Get_Path_Length(mem.all)); end; elsif mem.all in Container_Type'Class then declare cp : constant Container_Pointer := Container_Pointer(mem); np : constant Memory_Pointer := Get_Memory(cp.all); a : constant Natural := Get_Max_Length(np, result); begin return Natural'Max(a, Get_Path_Length(mem.all)); end; else return Natural'Max(result, Get_Path_Length(mem.all)); end if; end Get_Max_Length; procedure Deallocate is new Ada.Unchecked_Deallocation(Memory_Type'Class, Memory_Pointer); procedure Destroy(mem : in out Memory_Pointer) is begin Deallocate(mem); end Destroy; function Get_Time(mem : access Memory_Type'Class) return Time_Type is begin return Get_Time(mem.all); end Get_Time; function Get_Writes(mem : access Memory_Type'Class) return Long_Integer is begin return Get_Writes(mem.all); end Get_Writes; function Get_Zero(mem : access Memory_Type'Class) return Natural is begin return 0; end Get_Zero; function Get_ID(mem : Memory_Type'Class) return Natural is begin return mem.id; end Get_ID; procedure Initialize(mem : in out Memory_Type) is begin mem.id := next_id; next_id := next_id + 1; end Initialize; procedure Adjust(mem : in out Memory_Type) is begin mem.id := next_id; next_id := next_id + 1; end Adjust; function Get_Port(mem : Memory_Type'Class) return Port_Type is result : Port_Type; begin result.id := Get_ID(mem); result.word_size := Get_Word_Size(mem); result.addr_bits := Get_Address_Bits; return result; end Get_Port; procedure Line(dest : in out Unbounded_String; str : in String := "") is begin Append(dest, str); Append(dest, Ada.Characters.Latin_1.LF); end Line; procedure Signal(sigs : in out Unbounded_String; name : in String; width : in String) is rstr : constant String := width & " downto 0"; begin Line(sigs, " signal " & name & " : std_logic_vector(" & rstr & ");"); end Signal; procedure Signal(sigs : in out Unbounded_String; name : in String) is begin Line(sigs, " signal " & name & " : std_logic;"); end Signal; procedure Declare_Signals(sigs : in out Unbounded_String; name : in String; word_bits : in Positive) is begin Signal(sigs, name & "_addr", "ADDR_WIDTH - 1"); Signal(sigs, name & "_din", To_String(word_bits - 1)); Signal(sigs, name & "_dout", To_String(word_bits - 1)); Signal(sigs, name & "_re"); Signal(sigs, name & "_we"); Signal(sigs, name & "_mask", To_String(word_bits / 8 - 1)); Signal(sigs, name & "_ready"); end Declare_Signals; function To_String(a : Address_Type) return String is str : constant String := Address_Type'Image(a); begin if str(str'First) = ' ' then return str(str'First + 1 .. str'Last); else return str; end if; end To_String; function To_String(t : Time_Type) return String is str : constant String := Time_Type'Image(t); begin if str(str'First) = ' ' then return str(str'First + 1 .. str'Last); else return str; end if; end To_String; end Memory;
-- -- Copyright (C) 2015-2016 secunet Security Networks AG -- -- This program is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- the Free Software Foundation; either version 2 of the License, or -- (at your option) any later version. -- -- This program is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- GNU General Public License for more details. -- with HW.Time; with HW.GFX.DP_Defs; use type HW.Word8; use type HW.GFX.DP_Defs.Aux_Message_Command; package body HW.GFX.DP_Aux_Ch is DP_AUX_I2C_WRITE : constant := 16#0#; DP_AUX_I2C_READ : constant := 16#1#; DP_AUX_I2C_WR_STATUS_REQ : constant := 16#2#; DP_AUX_I2C_MOT : constant := 16#4#; DP_AUX_NATIVE_WRITE : constant := 16#8#; DP_AUX_NATIVE_READ : constant := 16#9#; procedure Fill_Aux_Request (Request : out DP_Defs.Aux_Request; Command : in DP_Defs.Aux_Message_Command; Address : in DP_Defs.Aux_Message_Address; Length : in DP_Defs.Aux_Payload_Length) is begin Request := (0 => Shift_Left (Word8 (Command), 4) or Word8 (Shift_Right (Word32 (Address), 16)), 1 => Word8 (Shift_Right (Word32 (Address), 8) and 16#ff#), 2 => Word8 (Shift_Right (Word32 (Address), 0) and 16#ff#), 3 => Word8 (Length) - 1, others => 0); -- Don't care end Fill_Aux_Request; function Is_Empty (Request : DP_Defs.Aux_Request) return Boolean is begin return Request (3) = 16#ff#; end Is_Empty; function Is_Aux_Ack (Response : DP_Defs.Aux_Response) return Boolean with Depends => (Is_Aux_Ack'Result => Response) is begin return (Response (0) and 16#30#) = 16#00#; end Is_Aux_Ack; function Is_Aux_Defer (Response : DP_Defs.Aux_Response) return Boolean is begin return (Response (0) and 16#30#) = 16#20#; end Is_Aux_Defer; function Is_I2C_Ack (Response : DP_Defs.Aux_Response) return Boolean with Depends => (Is_I2C_Ack'Result => Response) is begin return (Response (0) and 16#c0#) = 16#00#; end Is_I2C_Ack; function Is_I2C_Defer (Response : DP_Defs.Aux_Response) return Boolean is begin return (Response (0) and 16#c0#) = 16#80#; end Is_I2C_Defer; ---------------------------------------------------------------------------- procedure Do_Aux_Request (Port : in T; Request : in DP_Defs.Aux_Request; Request_Length : in DP_Defs.Aux_Request_Length; Response : out DP_Defs.Aux_Response; Response_Length : out DP_Defs.Aux_Response_Length; Success : out Boolean) is begin for Try in Positive range 1 .. 32 loop Aux_Request (Port => Port, Request => Request, Request_Length => Request_Length, Response => Response, Response_Length => Response_Length, Success => Success); exit when not (Success and Is_Aux_Defer (Response)); Time.U_Delay (500); end loop; Success := Success and then Is_Aux_Ack (Response); end Do_Aux_Request; ---------------------------------------------------------------------------- procedure Aux_Read (Port : in T; Address : in DP_Defs.Aux_Message_Address; Length : in out DP_Defs.Aux_Payload_Length; Data : out DP_Defs.Aux_Payload; Success : out Boolean) is Request : DP_Defs.Aux_Request; Response : DP_Defs.Aux_Response; Response_Length : DP_Defs.Aux_Response_Length; begin Data := (others => 0); -- Initialize Fill_Aux_Request (Request => Request, Command => DP_AUX_NATIVE_READ, Address => Address, Length => Length); Do_Aux_Request (Port => Port, Request => Request, Request_Length => 4, Response => Response, Response_Length => Response_Length, Success => Success); Success := Success and then Response_Length > 1; if Success then pragma Assert (Response_Length > 1); Length := Response_Length - 1; Data (0 .. Length - 1) := Response (1 .. Length); end if; end Aux_Read; procedure Aux_Write (Port : in T; Address : in DP_Defs.Aux_Message_Address; Length : in DP_Defs.Aux_Payload_Length; Data : in DP_Defs.Aux_Payload; Success : out Boolean) is Request : DP_Defs.Aux_Request; Ignored_Response : DP_Defs.Aux_Response; Ignored_Response_Length : DP_Defs.Aux_Response_Length; begin Fill_Aux_Request (Request => Request, Command => DP_AUX_NATIVE_WRITE, Address => Address, Length => Length); Request (4 .. Length + 4 - 1) := Data (0 .. Length - 1); pragma Warnings (GNATprove, Off, "unused assignment to ""Ignored_Response*""", Reason => "No response expected here"); Do_Aux_Request (Port => Port, Request => Request, Request_Length => 4 + Length, Response => Ignored_Response, Response_Length => Ignored_Response_Length, Success => Success); end Aux_Write; ---------------------------------------------------------------------------- procedure I2C_Out_Packet (Port : in T; Command : in DP_Defs.Aux_Message_Command; Address : in DP_Defs.Aux_Message_Address; Length : in DP_Defs.Aux_Payload_Length; Data : in DP_Defs.Aux_Payload; Success : out Boolean) is Request : DP_Defs.Aux_Request; Response : DP_Defs.Aux_Response; Ignored_Response_Length : DP_Defs.Aux_Response_Length; begin Fill_Aux_Request (Request => Request, Command => Command, Address => Address, Length => Length); Request (4 .. Length + 4 - 1) := Data (0 .. Length - 1); for Try in Positive range 1 .. 7 loop pragma Warnings (GNATprove, Off, "unused assignment to ""Ignored_Response_Length""", Reason => "No response expected here"); Do_Aux_Request (Port => Port, Request => Request, Request_Length => (if Is_Empty (Request) then 3 else 4 + Length), Response => Response, Response_Length => Ignored_Response_Length, Success => Success); exit when not (Success and Is_I2C_Defer (Response)); -- Command was already AUX-acked. Thus, only query for -- new status from now on until we get I2C-acked too. Fill_Aux_Request (Request => Request, Command => (Command and DP_AUX_I2C_MOT) or DP_AUX_I2C_WR_STATUS_REQ, Address => Address, Length => 0); Time.U_Delay (500); end loop; Success := Success and then Is_I2C_Ack (Response); end I2C_Out_Packet; procedure I2C_In_Packet (Port : in T; Command : in DP_Defs.Aux_Message_Command; Address : in DP_Defs.Aux_Message_Address; Length : in DP_Defs.Aux_Payload_Length; Response : out DP_Defs.Aux_Response; Response_Length : out DP_Defs.Aux_Response_Length; Success : out Boolean) is Request : DP_Defs.Aux_Request; begin Fill_Aux_Request (Request => Request, Command => Command, Address => Address, Length => Length); for Try in Positive range 1 .. 7 loop Do_Aux_Request (Port => Port, Request => Request, Request_Length => (if Is_Empty (Request) then 3 else 4), Response => Response, Response_Length => Response_Length, Success => Success); exit when not (Success and Is_I2C_Defer (Response)); Time.U_Delay (500); end loop; Success := Success and then Is_I2C_Ack (Response); end I2C_In_Packet; procedure I2C_Empty_Packet (Port : in T; Command : in DP_Defs.Aux_Message_Command; Address : in DP_Defs.Aux_Message_Address; Success : out Boolean) is Ignored_Response : DP_Defs.Aux_Response; Ignored_Response_Length : DP_Defs.Aux_Response_Length; begin pragma Warnings (GNATprove, Off, "unused assignment to ""Ignored_Response*""", Reason => "No response expected here"); I2C_In_Packet (Port => Port, Command => Command, Address => Address, Length => 0, Response => Ignored_Response, Response_Length => Ignored_Response_Length, Success => Success); end I2C_Empty_Packet; ---------------------------------------------------------------------------- procedure Do_I2C_Write (Port : in T; Address : in I2C.Transfer_Address; Length : in DP_Defs.Aux_Payload_Length; Data : in DP_Defs.Aux_Payload; Success : out Boolean) is Ignored_Success : Boolean; begin -- I2C address "start" packet I2C_Empty_Packet (Port => Port, Command => DP_AUX_I2C_WRITE or DP_AUX_I2C_MOT, Address => DP_Defs.Aux_Message_Address (Address), Success => Success); if Success then I2C_Out_Packet (Port => Port, Command => DP_AUX_I2C_WRITE or DP_AUX_I2C_MOT, Address => DP_Defs.Aux_Message_Address (Address), Length => Length, Data => Data, Success => Success); pragma Warnings (GNATprove, Off, "unused assignment to ""Ignored_Success""", Reason => "Doesn't matter as long as the transfer itself succeeds"); -- I2C address "stop" packet I2C_Empty_Packet (Port => Port, Command => DP_AUX_I2C_WRITE, Address => DP_Defs.Aux_Message_Address (Address), Success => Ignored_Success); end if; end Do_I2C_Write; procedure Do_I2C_Read (Port : in T; Address : in I2C.Transfer_Address; Length : in out I2C.Transfer_Length; Data : in out I2C.Transfer_Data; Success : out Boolean) is Xfered : Natural := 0; Chunk : DP_Defs.Aux_Payload_Length := DP_Defs.Aux_Payload_Length'Last; Tries : Natural := 0; Max_Tries : constant := 4; Response : DP_Defs.Aux_Response; Response_Length : DP_Defs.Aux_Response_Length; Ignored_Success : Boolean; begin -- I2C address "start" packet I2C_Empty_Packet (Port => Port, Command => DP_AUX_I2C_READ or DP_AUX_I2C_MOT, Address => DP_Defs.Aux_Message_Address (Address), Success => Success); while Success and then (Xfered < Length and Tries < Max_Tries) loop I2C_In_Packet (Port => Port, Command => DP_AUX_I2C_READ or DP_AUX_I2C_MOT, Address => DP_Defs.Aux_Message_Address (Address), Length => Natural'Min (Chunk, Length - Xfered), Response => Response, Response_Length => Response_Length, Success => Success); if Success and then Response_Length >= 2 then Chunk := Natural'Min (Response_Length - 1, Length - Xfered); Data (Xfered .. Xfered + Chunk - 1) := Response (1 .. Chunk); Xfered := Xfered + Chunk; Tries := 0; else Tries := Tries + 1; end if; pragma Loop_Invariant (Xfered <= Length); end loop; if Success then pragma Warnings (GNATprove, Off, "unused assignment to ""Ignored_Success""", Reason => "Doesn't matter as long as the transfer itself succeeds"); -- I2C address "stop" packet I2C_Empty_Packet (Port => Port, Command => DP_AUX_I2C_READ, Address => DP_Defs.Aux_Message_Address (Address), Success => Ignored_Success); end if; Success := Success and then Tries < Max_Tries; Length := Xfered; end Do_I2C_Read; ---------------------------------------------------------------------------- procedure I2C_Read (Port : in T; Address : in I2C.Transfer_Address; Length : in out I2C.Transfer_Length; Data : out I2C.Transfer_Data; Success : out Boolean) is Index_Payload : DP_Defs.Aux_Payload; begin Data := (others => 16#00#); Index_Payload := (others => 16#00#); -- send index 0 Do_I2C_Write (Port, Address, 1, Index_Payload, Success); if Success then Do_I2C_Read (Port, Address, Length, Data, Success); end if; end I2C_Read; end HW.GFX.DP_Aux_Ch;
with Support; use Support; with Support.Clock; use Support.Clock; with Support.CmdLine; use Support.CmdLine; with Support.Strings; use Support.Strings; with ADMBase.Data_IO; use ADMBase.Data_IO; with ADMBase.Text_IO; use ADMBase.Text_IO; with ADMBase.Runge; use ADMBase.Runge; with ADMBase.Time_Derivs; use ADMBase.Time_Derivs; with Ada.Exceptions; with System.Multiprocessors; package body ADMBase.Evolve is procedure evolve_data is looping : Boolean; task type SlaveTask is entry resume; entry pause; entry release; entry set_params (slave_params : SlaveParams); end SlaveTask; task body SlaveTask is params : SlaveParams; begin -- collect parameters for this task ------------------------ accept set_params (slave_params : SlaveParams) do params := slave_params; end; loop select -- start the runge kutta -------------------------------- accept resume; beg_runge_kutta (params); accept pause; -- 1st step of runge-kutta ------------------------------ accept resume; set_time_derivatives_intr (params); accept pause; accept resume; set_time_derivatives_bndry_fb (params); accept pause; accept resume; set_time_derivatives_bndry_ew (params); accept pause; accept resume; set_time_derivatives_bndry_ns (params); accept pause; accept resume; rk_step (1.0 / 2.0, 1.0 / 6.0, params); accept pause; -- 2nd step of runge-kutta ------------------------------ accept resume; set_time_derivatives_intr (params); accept pause; accept resume; set_time_derivatives_bndry_fb (params); accept pause; accept resume; set_time_derivatives_bndry_ew (params); accept pause; accept resume; set_time_derivatives_bndry_ns (params); accept pause; accept resume; rk_step (1.0 / 2.0, 1.0 / 3.0, params); accept pause; -- 3rd step of runge-kutta ------------------------------ accept resume; set_time_derivatives_intr (params); accept pause; accept resume; set_time_derivatives_bndry_fb (params); accept pause; accept resume; set_time_derivatives_bndry_ew (params); accept pause; accept resume; set_time_derivatives_bndry_ns (params); accept pause; accept resume; rk_step (1.0, 1.0 / 3.0, params); accept pause; -- 4th step of runge-kutta ------------------------------ accept resume; set_time_derivatives_intr (params); accept pause; accept resume; set_time_derivatives_bndry_fb (params); accept pause; accept resume; set_time_derivatives_bndry_ew (params); accept pause; accept resume; set_time_derivatives_bndry_ns (params); accept pause; accept resume; rk_step (0.0, 1.0 / 6.0, params); accept pause; -- finish the runge kutta ------------------------------- accept resume; end_runge_kutta (params); accept pause; or -- time to release the tasks? --------------------------- accept release; exit; or terminate; -- a safeguard, just to ensure tasks don't hang end select; end loop; exception when whoops : others => Put_Line ("> Exception raised in task body"); Put_Line (Ada.Exceptions.Exception_Information (whoops)); report_elapsed_cpu (grid_point_num, num_loop); halt (1); end SlaveTask; num_cpus : Integer := Integer (System.Multiprocessors.Number_Of_CPUs); num_slaves : Integer := read_command_arg ('N',num_cpus); slave_tasks : array (1..num_slaves) of SlaveTask; slave_params : array (1..num_slaves) of SlaveParams; procedure prepare_slaves is n_point : constant Integer := grid_point_num; n_intr : constant Integer := interior_num; n_bndry : constant Integer := boundary_num; n_north : constant Integer := north_bndry_num; n_south : constant Integer := south_bndry_num; n_east : constant Integer := east_bndry_num; n_west : constant Integer := west_bndry_num; n_front : constant Integer := front_bndry_num; n_back : constant Integer := back_bndry_num; begin case num_slaves is when 1 | 2 | 4 | 8 | 16 => null; when others => Put_Line ("> Error: range error in num_slaves, should be 1,2,4,8 or 16"); Put_Line ("> num_slaves = " & str(num_slaves,0)); halt (1); end case; -- here we sub-divide the list of cells across the tasks. -- it is *essential* that the every cell appears in *exactly* one sub-list. -- if a cell appears in more than one sub-list then it will be processed by more -- than one task. doing so wastes time, but far more worrying is that such multiple -- processing may cause data to be overwritten! for i in slave_params'range loop slave_params (i)(1) := i; end loop; slave_params (1)( 2) := 1; slave_params (1)( 4) := 1; slave_params (1)( 6) := 1; slave_params (1)( 8) := 1; slave_params (1)(10) := 1; slave_params (1)(12) := 1; slave_params (1)(14) := 1; slave_params (1)(16) := 1; slave_params (1)(18) := 1; for i in 2 .. num_slaves loop slave_params (i-1)( 3) := (i-1)*n_point/num_slaves; slave_params (i)(2) := 1 + slave_params (i-1)(3); slave_params (i-1)( 5) := (i-1)*n_intr/num_slaves; slave_params (i)(4) := 1 + slave_params (i-1)(5); slave_params (i-1)( 7) := (i-1)*n_bndry/num_slaves; slave_params (i)(6) := 1 + slave_params (i-1)(7); slave_params (i-1)( 9) := (i-1)*n_north/num_slaves; slave_params (i)(8) := 1 + slave_params (i-1)(9); slave_params (i-1)(11) := (i-1)*n_south/num_slaves; slave_params (i)(10) := 1 + slave_params (i-1)(11); slave_params (i-1)(13) := (i-1)*n_east/num_slaves; slave_params (i)(12) := 1 + slave_params (i-1)(13); slave_params (i-1)(15) := (i-1)*n_west/num_slaves; slave_params (i)(14) := 1 + slave_params (i-1)(15); slave_params (i-1)(17) := (i-1)*n_front/num_slaves; slave_params (i)(16) := 1 + slave_params (i-1)(17); slave_params (i-1)(19) := (i-1)*n_back/num_slaves; slave_params (i)(18) := 1 + slave_params (i-1)(19); end loop; slave_params (num_slaves)( 3) := n_point; slave_params (num_slaves)( 5) := n_intr; slave_params (num_slaves)( 7) := n_bndry; slave_params (num_slaves)( 9) := n_north; slave_params (num_slaves)(11) := n_south; slave_params (num_slaves)(13) := n_east; slave_params (num_slaves)(15) := n_west; slave_params (num_slaves)(17) := n_front; slave_params (num_slaves)(19) := n_back; for i in 1..num_slaves loop slave_tasks(i).set_params (slave_params(i)); end loop; -- use this to verify the slave params are set correctly -- for i in slave_params'Range loop -- put ("Slave "&str(i,2)&" params: "); -- for j in slave_params(i)'Range loop -- put (str(slave_params(i)(j),7)&' '); -- end loop; -- new_line; -- end loop; -- halt; end prepare_slaves; procedure release_slaves is begin for i in slave_tasks'Range loop slave_tasks(i).release; end loop; end release_slaves; procedure advance_slaves is begin for i in slave_tasks'Range loop slave_tasks(i).resume; end loop; for i in slave_tasks'Range loop slave_tasks(i).pause; end loop; end advance_slaves; procedure runge_kutta_step is begin advance_slaves; -- set interior time derivatives advance_slaves; -- set boundary time derivatives on front & back faces advance_slaves; -- set boundary time derivatives on east & west faces advance_slaves; -- set boundary time derivatives on north & south faces -- use this to show that all d/dt are correct -- for the Kasner initial data, all d/dt should be equal across all grid points -- note the changes that arise if the order in which the boundaries are set is changed -- note: use this test on a small grid, e.g., 5x5x5 -- declare -- i,j,k : Integer; -- begin -- for a in 1..grid_point_num loop -- i := grid_point_list (a).i; -- j := grid_point_list (a).j; -- k := grid_point_list (a).k; -- put_line (str(i)&' '&str(j)&' '&str(k)&' '& -- str(ADMBase.dot_gab(i,j,k)(1))&' '& -- str(ADMBase.dot_gab(i,j,k)(4))&' '& -- str(ADMBase.dot_gab(i,j,k)(6))); -- end loop; -- halt; -- end; advance_slaves; -- Runge-Kutta step end runge_kutta_step; procedure evolve_one_step is begin -- 4th order RK --- advance_slaves; -- prepare for a new Runge-Kutta step runge_kutta_step; -- the four Runge-Kutta steps runge_kutta_step; runge_kutta_step; runge_kutta_step; advance_slaves; -- complete the Runge-Kutta step end evolve_one_step; begin prepare_slaves; num_loop := 0; looping := (num_loop < max_loop); print_time := the_time + print_time_step; set_time_step; set_time_step_min; set_finite_diff_factors; set_time_derivatives; create_text_io_lists; write_summary_header; write_results; write_summary; write_history; reset_elapsed_cpu; loop evolve_one_step; num_loop := num_loop + 1; looping := (num_loop < max_loop) and (the_time < end_time - 0.5*time_step); if (print_cycle > 0 and then (num_loop rem print_cycle) = 0) or (abs (the_time-print_time) < 0.5*time_step) or (the_time > print_time) or (not looping) then write_results; write_summary; write_history; print_time := print_time + print_time_step; set_time_step; if time_step < time_step_min then raise Constraint_error with "time step too small"; end if; if print_time_step < time_step then raise Constraint_Error with "print time step < time step"; end if; end if; exit when not looping; end loop; release_slaves; write_summary_trailer; report_elapsed_cpu (grid_point_num, num_loop); exception when whoops : others => Put_Line ("> Exception raised in evolve_data"); Put_Line (Ada.Exceptions.Exception_Information (whoops)); report_elapsed_cpu (grid_point_num, num_loop); halt (1); end evolve_data; end ADMBase.Evolve;
-- Copyright 2015 Steven Stewart-Gallus -- -- 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 Interfaces.C.Strings; with System; with Libc.Locale.GNU; with Libc.Sys.Types; package Libc.Time.GNU with Spark_Mode => Off is pragma Preelaborate; TIME_UTC : constant := 1; subtype clockid_t is int; type timer_t is new System.Address; type timeval is record tv_sec : aliased time_t; tv_usec : aliased long; end record; pragma Convention (C_Pass_By_Copy, timeval); type timespec is record tv_sec : aliased time_t; -- /usr/include/time.h:122 tv_nsec : aliased long; -- /usr/include/time.h:123 end record; pragma Convention (C_Pass_By_Copy, timespec); -- /usr/include/time.h:120 type itimerspec is record it_interval : aliased timespec; -- /usr/include/time.h:163 it_value : aliased timespec; -- /usr/include/time.h:164 end record; pragma Convention (C_Pass_By_Copy, itimerspec); -- /usr/include/time.h:161 -- skipped empty struct sigevent function strptime (s : Interfaces.C.Strings.chars_ptr; fmt : Interfaces.C.Strings.chars_ptr; tp : access tm) return Interfaces.C.Strings.chars_ptr; -- /usr/include/time.h:213 pragma Import (C, strptime, "strptime"); function strftime_l (s : Interfaces.C.Strings.chars_ptr; maxsize : size_t; format : Interfaces.C.Strings.chars_ptr; tp : access constant tm; loc : Libc.Locale.GNU.locale_t) return size_t; -- /usr/include/time.h:223 pragma Import (C, strftime_l, "strftime_l"); function strptime_l (s : Interfaces.C.Strings.chars_ptr; fmt : Interfaces.C.Strings.chars_ptr; tp : access tm; loc : Libc.Locale.GNU.locale_t) return Interfaces.C.Strings.chars_ptr; -- /usr/include/time.h:230 pragma Import (C, strptime_l, "strptime_l"); function gmtime_r (timer : access time_t; tp : access tm) return access tm; -- /usr/include/time.h:249 pragma Import (C, gmtime_r, "gmtime_r"); function localtime_r (timer : access time_t; tp : access tm) return access tm; -- /usr/include/time.h:254 pragma Import (C, localtime_r, "localtime_r"); function asctime_r (tp : access constant tm; buf : Interfaces.C.Strings.chars_ptr) return Interfaces.C.Strings.chars_ptr; -- /usr/include/time.h:272 pragma Import (C, asctime_r, "asctime_r"); function ctime_r (timer : access time_t; buf : Interfaces.C.Strings.chars_ptr) return Interfaces.C.Strings.chars_ptr; -- /usr/include/time.h:276 pragma Import (C, ctime_r, "ctime_r"); tzname : aliased array (0 .. 1) of Interfaces.C.Strings.chars_ptr; -- /usr/include/time.h:289 pragma Import (C, tzname, "tzname"); procedure tzset; -- /usr/include/time.h:293 pragma Import (C, tzset, "tzset"); daylight : aliased int; -- /usr/include/time.h:297 pragma Import (C, daylight, "daylight"); timezone : aliased long; -- /usr/include/time.h:298 pragma Import (C, timezone, "timezone"); function stime (c_when : access time_t) return int; -- /usr/include/time.h:304 pragma Import (C, stime, "stime"); function timegm (tp : access tm) return time_t; -- /usr/include/time.h:319 pragma Import (C, timegm, "timegm"); function timelocal (tp : access tm) return time_t; -- /usr/include/time.h:322 pragma Import (C, timelocal, "timelocal"); function dysize (year : int) return int; -- /usr/include/time.h:325 pragma Import (C, dysize, "dysize"); function nanosleep (requested_time : access constant timespec; remaining : access timespec) return int; -- /usr/include/time.h:334 pragma Import (C, nanosleep, "nanosleep"); function clock_getres (clock_id : clockid_t; res : access timespec) return int; -- /usr/include/time.h:339 pragma Import (C, clock_getres, "clock_getres"); function clock_gettime (clock_id : clockid_t; tp : access timespec) return int; -- /usr/include/time.h:342 pragma Import (C, clock_gettime, "clock_gettime"); function clock_settime (clock_id : clockid_t; tp : access constant timespec) return int; -- /usr/include/time.h:345 pragma Import (C, clock_settime, "clock_settime"); function clock_nanosleep (clock_id : clockid_t; flags : int; req : access constant timespec; c_rem : access timespec) return int; -- /usr/include/time.h:353 pragma Import (C, clock_nanosleep, "clock_nanosleep"); function clock_getcpuclockid (pid : Libc.Sys.Types.pid_t; clock_id : access clockid_t) return int; -- /usr/include/time.h:358 pragma Import (C, clock_getcpuclockid, "clock_getcpuclockid"); function timer_create (clock_id : clockid_t; evp : System.Address; timerid : System.Address) return int; -- /usr/include/time.h:363 pragma Import (C, timer_create, "timer_create"); function timer_delete (timerid : timer_t) return int; -- /usr/include/time.h:368 pragma Import (C, timer_delete, "timer_delete"); function timer_settime (timerid : timer_t; flags : int; value : access constant itimerspec; ovalue : access itimerspec) return int; -- /usr/include/time.h:371 pragma Import (C, timer_settime, "timer_settime"); function timer_gettime (timerid : timer_t; value : access itimerspec) return int; -- /usr/include/time.h:376 pragma Import (C, timer_gettime, "timer_gettime"); function timer_getoverrun (timerid : timer_t) return int; -- /usr/include/time.h:380 pragma Import (C, timer_getoverrun, "timer_getoverrun"); function timespec_get (ts : access timespec; base : int) return int; -- /usr/include/time.h:386 pragma Import (C, timespec_get, "timespec_get"); getdate_err : aliased int; -- /usr/include/time.h:403 pragma Import (C, getdate_err, "getdate_err"); function getdate (string : Interfaces.C.Strings.chars_ptr) return access tm; -- /usr/include/time.h:412 pragma Import (C, getdate, "getdate"); function getdate_r (string : Interfaces.C.Strings.chars_ptr; resbufp : access tm) return int; -- /usr/include/time.h:426 pragma Import (C, getdate_r, "getdate_r"); end Libc.Time.GNU;
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- G N A T . D I R E C T O R Y _ O P E R A T I O N S -- -- -- -- S p e c -- -- -- -- $Revision$ -- -- -- Copyright (C) 1998-2001 Ada Core Technologies, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 2, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING. If not, write -- -- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, -- -- MA 02111-1307, USA. -- -- -- -- As a special exception, if other files instantiate generics from this -- -- unit, or you link this unit with other files to produce an executable, -- -- this unit does not by itself cause the resulting executable to be -- -- covered by the GNU General Public License. This exception does not -- -- however invalidate any other reasons why the executable file might be -- -- covered by the GNU Public License. -- -- -- -- GNAT is maintained by Ada Core Technologies Inc (http://www.gnat.com). -- -- -- ------------------------------------------------------------------------------ -- Directory operations -- This package provides routines for manipulating directories. A directory -- can be treated as a file, using open and close routines, and a scanning -- routine is provided for iterating through the entries in a directory. -- See also child package GNAT.Directory_Operations.Iteration with Ada.Strings.Maps; package GNAT.Directory_Operations is subtype Dir_Name_Str is String; -- A subtype used in this package to represent string values that are -- directory names. A directory name is a prefix for files that appear -- with in the directory. This means that for UNIX systems, the string -- includes a final '/', and for DOS-like systems, it includes a final -- '\' character. It can also include drive letters if the operating -- system provides for this. The final '/' or '\' in a Dir_Name_Str is -- optional when passed as a procedure or function in parameter. type Dir_Type is limited private; -- A value used to reference a directory. Conceptually this value includes -- the identity of the directory, and a sequential position within it. Null_Dir : constant Dir_Type; -- Represent the value for an uninitialized or closed directory Directory_Error : exception; -- Exception raised if the directory cannot be opened, read, closed, -- created or if it is not possible to change the current execution -- environment directory. Dir_Separator : constant Character; -- Running system default directory separator -------------------------------- -- Basic Directory operations -- -------------------------------- procedure Change_Dir (Dir_Name : Dir_Name_Str); -- Changes the working directory of the current execution environment -- to the directory named by Dir_Name. Raises Directory_Error if Dir_Name -- does not exist. procedure Make_Dir (Dir_Name : Dir_Name_Str); -- Create a new directory named Dir_Name. Raises Directory_Error if -- Dir_Name cannot be created. procedure Remove_Dir (Dir_Name : Dir_Name_Str); -- Remove the directory named Dir_Name. Raises Directory_Error if Dir_Name -- cannot be removed. function Get_Current_Dir return Dir_Name_Str; -- Returns the current working directory for the execution environment. procedure Get_Current_Dir (Dir : out Dir_Name_Str; Last : out Natural); -- Returns the current working directory for the execution environment -- The name is returned in Dir_Name. Last is the index in Dir_Name such -- that Dir_Name (Last) is the last character written. If Dir_Name is -- too small for the directory name, the name will be truncated before -- being copied to Dir_Name. ------------------------- -- Pathname Operations -- ------------------------- subtype Path_Name is String; -- All routines using Path_Name handle both styles (UNIX and DOS) of -- directory separators (either slash or back slash). function Dir_Name (Path : Path_Name) return Dir_Name_Str; -- Returns directory name for Path. This is similar to the UNIX dirname -- command. Everything after the last directory separator is removed. If -- there is no directory separator the current working directory is -- returned. function Base_Name (Path : Path_Name; Suffix : String := "") return String; -- Any directory prefix is removed. If Suffix is non-empty and is a -- suffix of Path, it is removed. This is equivalent to the UNIX basename -- command. The following rule is always true: -- -- 'Path' and 'Dir_Name (Path) & Directory_Separator & Base_Name (Path)' -- represent the same file. -- -- This function is not case-sensitive on systems that have a non -- case-sensitive file system like Windows, OS/2 and VMS. function File_Extension (Path : Path_Name) return String; -- Return the file extension. This is the string after the last dot -- character in File_Name (Path). It returns the empty string if no -- extension is found. The returned value does contains the file -- extension separator (dot character). function File_Name (Path : Path_Name) return String; -- Returns the file name and the file extension if present. It removes all -- path information. This is equivalent to Base_Name with default Extension -- value. type Path_Style is (UNIX, DOS, System_Default); function Normalize_Pathname (Path : Path_Name; Style : Path_Style := System_Default) return Path_Name; -- Removes all double directory separator and converts all '\' to '/' if -- Style is UNIX and converts all '/' to '\' if Style is set to DOS. This -- function will help to provide a consistent naming scheme running for -- different environments. If style is set to System_Default the routine -- will use the default directory separator on the running environment. function Expand_Path (Path : Path_Name) return Path_Name; -- Returns Path with environment variables (string preceded by a dollar -- sign) replaced by the current environment variable value. For example, -- $HOME/mydir will be replaced by /home/joe/mydir if $HOME environment -- variable is set to /home/joe. The variable can be surrounded by the -- characters '{' and '}' (curly bracket) if needed as in ${HOME}/mydir. -- If an environment variable does not exists the variable will be replaced -- by the empty string. Two dollar signs are replaced by a single dollar -- sign. Note that a variable must start with a letter. If there is no -- closing curly bracket for an opening one there is no translation done, -- so for example ${VAR/toto is returned as ${VAR/toto. --------------- -- Iterators -- --------------- procedure Open (Dir : out Dir_Type; Dir_Name : Dir_Name_Str); -- Opens the directory named by Dir_Name and returns a Dir_Type value -- that refers to this directory, and is positioned at the first entry. -- Raises Directory_Error if Dir_Name cannot be accessed. In that case -- Dir will be set to Null_Dir. procedure Close (Dir : in out Dir_Type); -- Closes the directory stream refered to by Dir. After calling Close -- Is_Open will return False. Dir will be set to Null_Dir. -- Raises Directory_Error if Dir has not be opened (Dir = Null_Dir). function Is_Open (Dir : Dir_Type) return Boolean; -- Returns True if Dir is open, or False otherwise. procedure Read (Dir : in out Dir_Type; Str : out String; Last : out Natural); -- Reads the next entry from the directory and sets Str to the name -- of that entry. Last is the index in Str such that Str (Last) is the -- last character written. Last is 0 when there are no more files in the -- directory. If Str is too small for the file name, the file name will -- be truncated before being copied to Str. The list of files returned -- includes directories in systems providing a hierarchical directory -- structure, including . (the current directory) and .. (the parent -- directory) in systems providing these entries. The directory is -- returned in target-OS form. Raises Directory_Error if Dir has not -- be opened (Dir = Null_Dir). function Read_Is_Thread_Safe return Boolean; -- Indicates if procedure Read is thread safe. On systems where the -- target system supports this functionality, Read is thread safe, -- and this function returns True (e.g. this will be the case on any -- UNIX or UNIX-like system providing a correct implementation of the -- function readdir_r). If the system cannot provide a thread safe -- implementation of Read, then this function returns False. private type Dir_Type_Value; type Dir_Type is access Dir_Type_Value; Null_Dir : constant Dir_Type := null; pragma Import (C, Dir_Separator, "__gnat_dir_separator"); Dir_Seps : constant Ada.Strings.Maps.Character_Set := Ada.Strings.Maps.To_Set ("/\"); -- UNIX and DOS style directory separators. end GNAT.Directory_Operations;
with pincon; with utility; package body IO is type M_State is (Fwd, Rev, Stop); procedure Control_Motor (S : in M_State) is begin case S is when Fwd => -- Drive forward pincon.Write (pincon.Pin_3, True); pincon.Write (pincon.Pin_5, False); pincon.Write (pincon.Pin_6, False); pincon.Write (pincon.Pin_9, True); when Rev => -- Drive Rev pincon.Write (pincon.Pin_3, False); pincon.Write (pincon.Pin_5, True); pincon.Write (pincon.Pin_6, True); pincon.Write (pincon.Pin_9, False); when Stop => -- stop the motor pincon.Write (pincon.Pin_3, False); pincon.Write (pincon.Pin_5, False); pincon.Write (pincon.Pin_6, False); pincon.Write (pincon.Pin_9, False); end case; end Control_Motor; end IO;
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- B I N D E R R -- -- -- -- S p e c -- -- -- -- Copyright (C) 1992-2020, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING3. If not, go to -- -- http://www.gnu.org/licenses for a complete copy of the license. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- This package contains the routines to output error messages for the binder -- and also the routines for handling fatal error conditions in the binder. with Namet; use Namet; with Types; use Types; package Binderr is Errors_Detected : Nat; -- Number of errors detected so far Warnings_Detected : Nat; -- Number of warnings detected Info_Prefix_Suppress : Boolean := False; -- If set to True, the normal "info: " header before messages generated -- by Error_Msg_Info will be omitted. --------------------------------------------------------- -- Error Message Text and Message Insertion Characters -- --------------------------------------------------------- -- Error message text strings are composed of letters, digits and the -- special characters space, comma, period, colon and semicolon, -- apostrophe and parentheses. Special insertion characters can also -- appear which cause the error message circuit to modify the given -- string as follows: -- Insertion character { (Left brace: insert file name from Names table) -- The character { is replaced by the text for the file name specified -- by the File_Name_Type value stored in Error_Msg_File_1. The name is -- always enclosed in quotes. A second { may appear in a single message -- in which case it is similarly replaced by the name which is -- specified by the File_Name_Type value stored in Error_Msg_File_2. -- Insertion character $ (Dollar: insert unit name from Names table) -- The character $ is replaced by the text for the unit name specified -- by the Name_Id value stored in Error_Msg_Unit_1. The name is always -- enclosed in quotes. A second $ may appear in a single message in -- which case it is similarly replaced by the name which is specified -- by the Name_Id value stored in Error_Msg_Unit_2. -- Insertion character # (Pound: insert non-negative number in decimal) -- The character # is replaced by the contents of Error_Msg_Nat_1 -- converted into an unsigned decimal string. A second # may appear -- in a single message, in which case it is similarly replaced by -- the value stored in Error_Msg_Nat_2. -- Insertion character ? (Question mark: warning message) -- The character ?, which must be the first character in the message -- string, signals a warning message instead of an error message. ----------------------------------------------------- -- Global Values Used for Error Message Insertions -- ----------------------------------------------------- -- The following global variables are essentially additional parameters -- passed to the error message routine for insertion sequences described -- above. The reason these are passed globally is that the insertion -- mechanism is essentially an untyped one in which the appropriate -- variables are set depending on the specific insertion characters used. Error_Msg_Name_1 : Name_Id; -- Name_Id value for % insertion characters in message Error_Msg_File_1 : File_Name_Type; Error_Msg_File_2 : File_Name_Type; -- Name_Id values for { insertion characters in message Error_Msg_Unit_1 : Unit_Name_Type; Error_Msg_Unit_2 : Unit_Name_Type; -- Name_Id values for $ insertion characters in message Error_Msg_Nat_1 : Nat; Error_Msg_Nat_2 : Nat; -- Integer values for # insertion characters in message ------------------------------ -- Error Output Subprograms -- ------------------------------ procedure Error_Msg (Msg : String); -- Output specified error message to standard error or standard output -- as governed by the brief and verbose switches, and update error -- counts appropriately. procedure Error_Msg_Info (Msg : String); -- Output information line. Indentical in effect to Error_Msg, except -- that the prefix is info: instead of error: and the error count is -- not incremented. The prefix may be suppressed by setting the global -- variable Info_Prefix_Suppress to True. procedure Error_Msg_Output (Msg : String; Info : Boolean); -- Output given message, with insertions, to current message output file. -- The second argument is True for an info message, false for a normal -- warning or error message. Normally this is not called directly, but -- rather only by Error_Msg or Error_Msg_Info. It is called directly -- when the caller must control whether the output goes to stderr or -- stdout (Error_Msg_Output always goes to the current output file). procedure Finalize_Binderr; -- Finalize error output for one file procedure Initialize_Binderr; -- Initialize error output for one file end Binderr;
-- -- Copyright (c) 2007-2009 Tero Koskinen <tero.koskinen@iki.fi> -- -- 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. -- with Ada.Finalization; with Ahven; with Ahven.Listeners; with Ahven.SList; with Ahven.AStrings; pragma Elaborate_All (Ahven); pragma Elaborate_All (Ahven.SList); package Ahven.Framework is Three_Hours : constant := 10800.0; subtype Test_Duration is Duration range 0.0 .. Three_Hours; type Test_Count_Type is new Natural; -- Type for the test count. This effectively -- limits the amount tests to whatever Natural is. -- -- Although, in practice when adding tests the limit -- is not checked. type Test is abstract new Ada.Finalization.Controlled with null record; -- A type, which provides the base for Test_Case and -- Test_Suite types. type Test_Class_Access is access all Test'Class; procedure Set_Up (T : in out Test); -- Set_Up is called before executing the test procedure. -- -- By default, the procedure does nothing, but derived -- types can overwrite this method and add their own -- customisations. -- -- One should not call this explicitly by herself. -- The framework calls it when necessary. procedure Tear_Down (T : in out Test); -- Tear_Down is called after the test procedure is executed. -- -- By default, the procedure does nothing, but derived -- types can overwrite this method and add their own -- customisations. -- -- One should not call this explicitly by herself. -- The framework calls it when necessary. function Get_Name (T : Test) return String is abstract; -- Return the name of the test. -- -- Types derived from the Test type are required to overwrite -- this procedure. procedure Run (T : in out Test; Listener : in out Listeners.Result_Listener'Class); -- Run the test and place the test result to Result. -- -- Calls Run (T, Listener, Timeout) with Timeout value 0.0. procedure Run (T : in out Test; Listener : in out Listeners.Result_Listener'Class; Timeout : Test_Duration) is abstract; -- Run the test and place the test result to Result. -- Timeout specifies the maximum runtime for a single test. -- -- Types derived from the Test type are required to overwrite -- this procedure. procedure Run (T : in out Test; Test_Name : String; Listener : in out Listeners.Result_Listener'Class); -- Run the test and place the test result to Result. -- -- Calls Run (T, Test_Name, Listener, Timeout) with Timeout value 0.0. procedure Run (T : in out Test; Test_Name : String; Listener : in out Listeners.Result_Listener'Class; Timeout : Test_Duration) is abstract; -- Run the test with given name and place the test result to Result. -- Timeout specifies the maximum runtime for a single test. -- Notice: If multiple tests have same name this might call all of -- them. -- -- Types derived from the Test type are required to overwrite -- this procedure. function Test_Count (T : Test) return Test_Count_Type is abstract; -- Return the amount of tests (test routines) which will be executed when -- the Run (T) procedure is called. function Test_Count (T : Test; Test_Name : String) return Test_Count_Type is abstract; -- Return the amount of tests (test routines) which will be executed when -- the Run (T, Test_Name) procedure is called. procedure Execute (T : in out Test'Class; Listener : in out Listeners.Result_Listener'Class; Timeout : Test_Duration); -- Call Test class' Run method and place the test outcome to Result. -- The procedure calls Start_Test of every listener before calling -- the Run procedure and End_Test after calling the Run procedure. -- -- This procedure is meant to be called from Runner package(s). -- There should be no need for other to use this. procedure Execute (T : in out Test'Class; Test_Name : String; Listener : in out Listeners.Result_Listener'Class; Timeout : Test_Duration); -- Same as Execute above, but call the Run procedure which -- takes Test_Name parameter. type Test_Case is abstract new Test with private; -- The base type for other test cases. function Get_Name (T : Test_Case) return String; -- Return the name of the test case. procedure Run (T : in out Test_Case; Listener : in out Listeners.Result_Listener'Class; Timeout : Test_Duration); -- Run Test_Case's test routines. procedure Run (T : in out Test_Case; Test_Name : String; Listener : in out Listeners.Result_Listener'Class; Timeout : Test_Duration); -- Run Test_Case's test routine which matches to the Name. function Test_Count (T : Test_Case) return Test_Count_Type; -- Implementation of Test_Count (T : Test). function Test_Count (T : Test_Case; Test_Name : String) return Test_Count_Type; -- Implementation of Test_Count (T : Test, Test_Name : String). procedure Finalize (T : in out Test_Case); -- Finalize procedure of the Test_Case. procedure Set_Name (T : in out Test_Case; Name : String); -- Set Test_Case's name. -- -- If longer than 160 characters, the name is truncated -- to 160 characters. type Object_Test_Routine_Access is access procedure (T : in out Test_Case'Class); -- A pointer to a test routine which takes Test_Case'Class object -- as an argument. -- -- For this kind of test routines, the framework will -- call Set_Up and Tear_Down routines before and after -- test routine execution. type Simple_Test_Routine_Access is access procedure; -- A pointer to a test routine which does not take arguments. procedure Add_Test_Routine (T : in out Test_Case'Class; Routine : Object_Test_Routine_Access; Name : String); -- Register a test routine to the Test_Case object. -- -- The routine must have signature -- "procedure R (T : in out Test_Case'Class)". procedure Add_Test_Routine (T : in out Test_Case'Class; Routine : Simple_Test_Routine_Access; Name : String); -- Register a simple test routine to the Test_Case. -- -- The routine must have signature -- "procedure R". type Test_Suite is new Test with private; -- A collection of Tests. -- -- You can either fill a Test_Suite object with Test_Case objects -- or nest multiple Test_Suite objects. You can even mix -- Test_Case and Test_Suite objects, if necessary. type Test_Suite_Access is access all Test_Suite; function Create_Suite (Suite_Name : String) return Test_Suite_Access; -- Create a new Test_Suite. -- Caller must free the returned Test_Suite using Release_Suite. function Create_Suite (Suite_Name : String) return Test_Suite; -- Create a new Test_Suite. The suite and its children are -- released automatically. procedure Add_Test (Suite : in out Test_Suite; T : Test_Class_Access); -- Add a Test to the suite. The suite frees the Test automatically -- when it is no longer needed. procedure Add_Test (Suite : in out Test_Suite; T : Test_Suite_Access); -- Add a Test suite to the suite. The suite frees the Test automatically -- when it is no longer needed. -- -- This is a helper function, which internally calls -- Add_Test (Suite : in out Test_Suite; T : Test_Class_Access). procedure Add_Static_Test (Suite : in out Test_Suite; T : Test'Class); -- Add a Test to the suite. This procedure is meant for statically -- allocated Test_Case objects. -- -- Please note, that a copy of the Test'Class object is saved to -- the suite. Original test object is not modified and changes -- made to it after adding the test are not propagated to -- the added object. function Get_Name (T : Test_Suite) return String; -- Return the name of Test_Suite. procedure Run (T : in out Test_Suite; Listener : in out Listeners.Result_Listener'Class; Timeout : Test_Duration); -- Run Test_Suite's Test_Cases. procedure Run (T : in out Test_Suite; Test_Name : String; Listener : in out Listeners.Result_Listener'Class; Timeout : Test_Duration); -- Run test suite's child which matches to the given name. function Test_Count (T : Test_Suite) return Test_Count_Type; -- Implementation of Test_Count (T : Test). function Test_Count (T : Test_Suite; Test_Name : String) return Test_Count_Type; -- Implementation of Test_Count (T : Test, Test_Name : String). procedure Adjust (T : in out Test_Suite); -- Adjust procedure of Test_Suite. -- Handles the copying of the structure properly procedure Finalize (T : in out Test_Suite); -- Finalize procedure of Test_Suite. Frees all added Tests. procedure Release_Suite (T : Test_Suite_Access); -- Release the memory of Test_Suite. -- All added tests are released automatically. private type Command_Object_Enum is (SIMPLE, OBJECT); type Test_Command (Command_Kind : Command_Object_Enum := SIMPLE) is record Name : AStrings.Bounded_String; case Command_Kind is when SIMPLE => Simple_Routine : Simple_Test_Routine_Access; when OBJECT => Object_Routine : Object_Test_Routine_Access; end case; end record; -- Name attribute tells the name of the test routine. procedure Run (Command : Test_Command; T : in out Test_Case'Class); -- Run the specified command. -- Calls Set_Up and Tear_Down if necessary. package Test_Command_List is new Ahven.SList (Element_Type => Test_Command); type Test_Case is abstract new Test with record Routines : Test_Command_List.List := Test_Command_List.Empty_List; Name : AStrings.Bounded_String := AStrings.Null_Bounded_String; end record; -- Our test case type. It holds a list of test routines -- (test command objects) and the name of the test case. procedure Run_Command (Command : Test_Command; Info : Listeners.Context; Timeout : Test_Duration; Listener : in out Listeners.Result_Listener'Class; T : in out Test_Case'Class); -- Handle dispatching to the right Run (Command : Test_Command) -- procedure and record test routine result to the Result object. -- -- Timeout parameter defines the longest time the test is allowed -- to run. Value 0.0 means infinite time. type Test_Class_Wrapper is record Ptr : Test_Class_Access; end record; package Test_List is new Ahven.SList (Element_Type => Test_Class_Wrapper); package Indefinite_Test_List is type List is new Ada.Finalization.Controlled with private; Empty_List : constant List; procedure Append (Target : in out List; Node_Data : Test'Class); -- Append an element at the end of the list. procedure Clear (Target : in out List); -- Remove all elements from the list. generic with procedure Action (T : in out Test'Class) is <>; procedure For_Each (Target : List); -- A generic procedure for walk through every item -- in the list and call Action procedure for them. private type Node; type Node_Access is access Node; procedure Remove (Ptr : Node_Access); -- A procedure to release memory pointed by Ptr. type Node is record Next : Node_Access := null; Data : Test_Class_Access := null; end record; type List is new Ada.Finalization.Controlled with record First : Node_Access := null; Last : Node_Access := null; end record; procedure Initialize (Target : in out List); procedure Finalize (Target : in out List); procedure Adjust (Target : in out List); Empty_List : constant List := (Ada.Finalization.Controlled with First => null, Last => null); end Indefinite_Test_List; type Test_Suite is new Test with record Suite_Name : AStrings.Bounded_String := AStrings.Null_Bounded_String; Test_Cases : Test_List.List := Test_List.Empty_List; Static_Test_Cases : Indefinite_Test_List.List := Indefinite_Test_List.Empty_List; end record; -- A suite type which holds a list of test cases and the name -- of the suite. end Ahven.Framework;
package A_Stack with SPARK_Mode is Stack_Size : constant := 100; subtype Item is Integer range 0 .. 20; subtype Stack_Pointer is Natural range 0 .. Stack_Size; subtype Index is Stack_Pointer range 1 .. Stack_Size; type Vector is array (Index) of Item; Sp : Stack_Pointer := 0; Vec : Vector := (others => 0); function Is_Empty return Boolean with Global => Sp; function Is_Full return Boolean with Global => Sp; function Top return Item with Global => (Sp, Vec); procedure Push (It : in Item) with Global => (In_Out => (Sp, Vec)); procedure Pop (It : out Item) with Global => (Input => Vec, In_Out => Sp); end A_Stack;
-- Institution: Technische Universitaet Muenchen -- Department: Realtime Computer Systems (RCS) -- Project: StratoX -- Module: Types -- -- Authors: Emanuel Regnath (emanuel.regnath@tum.de) -- Martin Becker (becker@rcs.ei.tum.de) with Interfaces; use Interfaces; with Generic_Types; use Generic_Types; pragma Elaborate_All(Generic_Types); -- @summary: Common used type definitions and functions package Types with SPARK_Mode is function Limit_Unsigned16 is new Saturate_Mod (Unsigned_16); function Sat_Cast_Natural is new Saturated_Cast_Int (Natural); function Sat_Cast_Int is new Saturated_Cast_Int (Integer); function Sat_Cast_Int8 is new Saturated_Cast_Int (Integer_8); function Sat_Cast_U16 is new Saturated_Cast_Mod (Unsigned_16); end Types;
package body Ada.Containers.Linked_Lists is procedure Reverse_Iterate ( Last : Node_Access; Process : not null access procedure (Position : not null Node_Access)) is Position : Node_Access := Last; begin while Position /= null loop Process (Position); Position := Previous (Position); end loop; end Reverse_Iterate; function Reverse_Find ( Last : Node_Access; Params : System.Address; Equivalent : not null access function ( Right : not null Node_Access; Params : System.Address) return Boolean) return Node_Access is I : Node_Access := Last; begin while I /= null loop if Equivalent (I, Params) then return I; end if; I := Previous (I); end loop; return null; end Reverse_Find; function Equivalent ( Left_Last, Right_Last : Node_Access; Equivalent : not null access function ( Left, Right : not null Node_Access) return Boolean) return Boolean is I : Node_Access := Left_Last; J : Node_Access := Right_Last; begin while I /= null and then J /= null loop if not Equivalent (I, J) then return False; end if; I := Previous (I); J := Previous (J); end loop; return I = null and then J = null; end Equivalent; procedure Free ( First : in out Node_Access; Last : in out Node_Access; Length : in out Count_Type; Free : not null access procedure (Object : in out Node_Access)) is Position : Node_Access := Last; begin while Position /= null loop declare Prev : constant Node_Access := Previous (Position); begin Free (Position); Length := Length - 1; Position := Prev; end; end loop; First := null; Last := null; end Free; procedure Copy ( Target_First : out Node_Access; Target_Last : out Node_Access; Length : out Count_Type; Source_Last : Node_Access; Copy : not null access procedure ( Target : out Node_Access; Source : not null Node_Access)) is I : Node_Access := Source_Last; New_Node : Node_Access; begin Target_First := null; Target_Last := null; Length := 0; while I /= null loop Copy (New_Node, I); Insert ( First => Target_First, Last => Target_Last, Length => Length, Before => Target_First, New_Item => New_Node); I := Previous (I); end loop; end Copy; procedure Reverse_Elements ( Target_First : in out Node_Access; Target_Last : in out Node_Access; Length : in out Count_Type) is Source_First : Node_Access := Target_First; Source_Last : Node_Access := Target_Last; Source_Length : Count_Type := Length; Position : Node_Access; begin Target_First := null; Target_Last := null; Length := 0; while Source_Last /= null loop Position := Source_Last; Remove (Source_First, Source_Last, Source_Length, Position, null); Insert (Target_First, Target_Last, Length, null, Position); end loop; end Reverse_Elements; function Is_Sorted ( Last : Node_Access; LT : not null access function ( Left, Right : not null Node_Access) return Boolean) return Boolean is I : Node_Access := Last; begin if I = null then return True; else loop declare Prev : constant Node_Access := Previous (I); begin exit when Prev = null; if LT (I, Prev) then return False; end if; I := Prev; end; end loop; return True; end if; end Is_Sorted; procedure Merge ( Target_First : in out Node_Access; Target_Last : in out Node_Access; Length : in out Count_Type; Source_First : in out Node_Access; Source_Last : in out Node_Access; Source_Length : in out Count_Type; LT : not null access function ( Left, Right : not null Node_Access) return Boolean) is Left_First : Node_Access := Target_First; Left_Last : Node_Access := Target_Last; Left_Length : Count_Type := Length; I : Node_Access := Left_Last; J : Node_Access := Source_Last; begin Target_First := null; Target_Last := null; Length := 0; while I /= null and then J /= null loop if LT (J, I) then declare Prev : constant Node_Access := Previous (I); begin Remove (Left_First, Left_Last, Left_Length, I, null); Insert (Target_First, Target_Last, Length, Target_First, I); I := Prev; end; else declare Prev : constant Node_Access := Previous (J); begin Remove (Source_First, Source_Last, Source_Length, J, null); Insert (Target_First, Target_Last, Length, Target_First, J); J := Prev; end; end if; end loop; while I /= null loop declare Prev : constant Node_Access := Previous (I); begin Remove (Left_First, Left_Last, Left_Length, I, null); Insert (Target_First, Target_Last, Length, Target_First, I); I := Prev; end; end loop; while J /= null loop declare Prev : constant Node_Access := Previous (J); begin Remove (Source_First, Source_Last, Source_Length, J, null); Insert (Target_First, Target_Last, Length, Target_First, J); J := Prev; end; end loop; end Merge; procedure Merge_Sort ( Target_First : in out Node_Access; Target_Last : in out Node_Access; Length : in out Count_Type; LT : not null access function ( Left, Right : not null Node_Access) return Boolean) is begin if Length >= 2 then declare Left_First : Node_Access; Left_Last : Node_Access; Left_Length : Count_Type; Right_First : Node_Access := Target_First; Right_Last : Node_Access := Target_Last; Right_Length : Count_Type := Length; begin Split ( Left_First, Left_Last, Left_Length, Right_First, Right_Last, Right_Length, Length / 2); Merge_Sort ( Left_First, Left_Last, Left_Length, LT => LT); Merge_Sort ( Right_First, Right_Last, Right_Length, LT => LT); Merge ( Left_First, Left_Last, Left_Length, Right_First, Right_Last, Right_Length, LT => LT); Target_First := Left_First; Target_Last := Left_Last; Length := Left_Length; end; end if; end Merge_Sort; end Ada.Containers.Linked_Lists;
------------------------------------------------------------------------------ -- -- -- Copyright (C) 2018-2021, AdaCore -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions are -- -- met: -- -- 1. Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- 2. Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in -- -- the documentation and/or other materials provided with the -- -- distribution. -- -- 3. Neither the name of the copyright holder nor the names of its -- -- contributors may be used to endorse or promote products derived -- -- from this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -- -- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -- -- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -- -- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -- -- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -- -- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ with Ada.Text_IO; with System.Storage_Elements; use System.Storage_Elements; with USB.Device.Control; with USB.Logging.Device; package body USB.Device is procedure Put_Line (Str : String); procedure Put_Line (Str : String) is begin if Verbose then Ada.Text_IO.Put_Line (Str); end if; end Put_Line; ---------------------- -- Stall_Control_EP -- ---------------------- procedure Stall_Control_EP (This : in out USB_Device_Stack) is begin This.UDC.EP_Stall ((0, EP_In)); This.UDC.EP_Stall ((0, EP_Out)); This.Ctrl.State := Idle; end Stall_Control_EP; ---------------- -- Get_String -- ---------------- function Get_String (This : in out USB_Device_Stack; Index : String_Id) return Setup_Request_Answer is begin if Index = 0 then This.Ctrl.RX_Buf (1) := 4; -- bLength This.Ctrl.RX_Buf (2) := 3; -- bDescriptorType (String) -- LANG_EN_US This.Ctrl.RX_Buf (3) := ASCII.HT'Enum_Rep; -- 0x04 This.Ctrl.RX_Buf (4) := ASCII.EOT'Enum_Rep; -- 0x09 This.Ctrl.Buf := This.Ctrl.RX_Buf'Address; This.Ctrl.Len := Storage_Offset (This.Ctrl.RX_Buf (1)); return Handled; end if; if Index not in 1 .. This.Last_String_Id then return Not_Supported; end if; declare Info : String_Info renames This.String_Indexes (Index); Len : constant Natural := Info.To - Info.From + 1; Dst : String (1 .. Len) with Address => This.Ctrl.RX_Buf (3)'Address; begin This.Ctrl.RX_Buf (1) := UInt8 (Len + 2); -- bLength This.Ctrl.RX_Buf (2) := 3; -- bDescriptorType (String) Dst := This.String_Buffer (Info.From .. Info.To); end; This.Ctrl.Buf := This.Ctrl.RX_Buf'Address; This.Ctrl.Len := Storage_Offset (This.Ctrl.RX_Buf (1)); return Handled; end Get_String; -------------------- -- Get_Descriptor -- -------------------- function Get_Descriptor (This : in out USB_Device_Stack; Req : Setup_Data) return Setup_Request_Answer is Index : constant UInt8 := UInt8 (Req.Value and 16#FF#); Desc_Type : constant UInt8 := UInt8 (Shift_Right (Req.Value, 8) and 16#FF#); begin case Desc_Type is when 1 => -- DT_DEVICE Put_Line ("DT_DEVICE"); This.Build_Device_Descriptor; return Handled; when 2 => -- DT_CONFIGURATION Put_Line ("DT_CONFIGURATION"); This.Build_Config_Descriptor; return Handled; when 3 => -- DT_STRING Put_Line ("DT_STRING"); return Get_String (This, String_Id (Index)); when 6 => -- DT_QUALIFIER Put_Line ("DT_QUALIFIER"); This.Build_Device_Qualifier; return Handled; when others => raise Program_Error with "Descriptor not implemented " & Desc_Type'Img; return Not_Supported; end case; end Get_Descriptor; ----------------- -- Set_Address -- ----------------- function Set_Address (This : in out USB_Device_Stack; Req : Setup_Data) return Setup_Request_Answer is begin This.Dev_Addr := UInt7 (Req.Value and 16#7F#); if Verbose then Put_Line ("Set Address: " & This.Dev_Addr'Img); end if; if This.UDC.Early_Address then if Verbose then Put_Line ("Set early Address: " & This.Dev_Addr'Img); end if; -- The DWC OTG USB requires the address to be set at this point... This.UDC.Set_Address (This.Dev_Addr); end if; -- Reply with Zero-Length-Packet This.Ctrl.Buf := System.Null_Address; This.Ctrl.Len := 0; return Handled; end Set_Address; ----------------------- -- Set_Configuration -- ----------------------- function Set_Configuration (This : in out USB_Device_Stack; Req : Setup_Data) return Setup_Request_Answer is Answer : Setup_Request_Answer := Handled; begin for Class of This.Classes loop exit when Class.Ptr = null; Answer := Class.Ptr.Configure (This.UDC.all, Req.Value); exit when Answer /= Handled; end loop; This.Dev_State := Configured; return Answer; end Set_Configuration; ----------------- -- Initialized -- ----------------- function Initialized (This : USB_Device_Stack) return Boolean is (This.Is_Init); -------------------- -- Register_Class -- -------------------- function Register_Class (This : in out USB_Device_Stack; Class : not null Any_USB_Device_Class) return Boolean is begin for Class_I of This.Classes loop if Class_I.Ptr = null then Class_I.Ptr := Class; return True; end if; end loop; return False; end Register_Class; ---------------------- -- Request_Endpoint -- ---------------------- function Request_Endpoint (This : in out USB_Device_Stack; Typ : EP_Type; EP : out EP_Id) return Boolean is begin if This.Initializing = null then return False; end if; for Id in EP_Id range 1 .. EP_Id'Last loop if This.UDC.Valid_EP_Id (Id) -- Check if the EP exists on the UDC and then This.Endpoints (Id).Assigned_To = null -- Check if not already used then EP := Id; This.Endpoints (Id).Assigned_To := This.Initializing; return True; end if; end loop; return False; end Request_Endpoint; -------------------- -- Request_Buffer -- -------------------- function Request_Buffer (This : in out USB_Device_Stack; EP : EP_Addr; Len : UInt11) return System.Address is begin if This.UDC /= null then return This.UDC.Request_Buffer (EP, Len); else return System.Null_Address; end if; end Request_Buffer; --------------------- -- Register_String -- --------------------- function Register_String (This : in out USB_Device_Stack; Str : USB_String) return String_Id is begin if Str'Length = 0 or else This.Last_String_Id = Max_Strings or else (Max_Total_String_Chars - This.Last_String_Index) < Str'Length then return Invalid_String_Id; end if; This.Last_String_Id := This.Last_String_Id + 1; declare From : constant Natural := This.Last_String_Index + 1; To : constant Natural := This.Last_String_Index + Str'Length; Dst : USB_String (1 .. Str'Length) with Address => This.String_Buffer (From)'Address; begin Dst := Str; This.String_Indexes (This.Last_String_Id).From := From; This.String_Indexes (This.Last_String_Id).To := To; This.Last_String_Index := To; end; This.Last_String_Index := This.Last_String_Index + 1; return This.Last_String_Id; end Register_String; --------------- -- Initalize -- --------------- function Initialize (This : in out USB_Device_Stack; Controller : not null Any_USB_Device_Controller; Manufacturer : USB_String; Product : USB_String; Serial_Number : USB_String; Max_Packet_Size : UInt8) return Init_Result is Number_Of_Interfaces : Interface_Id; Unused : Natural; Iface_Id : Interface_Id := 0; Result : Init_Result; begin This.UDC := Controller; for Class of This.Classes loop exit when Class.Ptr = null; Class.Ptr.Get_Class_Info (Number_Of_Interfaces => Number_Of_Interfaces, Config_Descriptor_Length => Unused); -- Mark which class we are initializing This.Initializing := Class.Ptr; -- Initialize the class Result := Class.Ptr.Initialize (This, Iface_Id); if Result /= Ok then return Result; end if; -- Record the range of interface for this class: Class.First_Iface := Iface_Id; Class.Last_Iface := Iface_Id + Number_Of_Interfaces - 1; -- Move interface index for the next class Iface_Id := Iface_Id + Number_Of_Interfaces; end loop; This.Initializing := null; -- Register mendatory strings This.Manufacturer_Str := This.Register_String (Manufacturer); This.Product_Str := This.Register_String (Product); This.Serial_Str := This.Register_String (Serial_Number); This.Max_Packet_Size := Max_Packet_Size; This.Is_Init := True; return Ok; end Initialize; ----------- -- Start -- ----------- procedure Start (This : in out USB_Device_Stack) is begin This.UDC.Initialize; -- This should actually init This.UDC.Start; end Start; ----------- -- Reset -- ----------- procedure Reset (This : in out USB_Device_Stack) is begin This.UDC.EP_Setup ((0, EP_In), USB.Control, UInt16 (This.Max_Packet_Size)); This.UDC.EP_Setup ((0, EP_Out), USB.Control, UInt16 (This.Max_Packet_Size)); This.UDC.Set_Address (0); This.UDC.EP_Ready_For_Data (0, This.Ctrl.RX_Buf'Address, 8, True); This.Ctrl.State := Idle; This.UDC.Reset; end Reset; ----------------------- -- Transfer_Complete -- ----------------------- procedure Transfer_Complete (This : in out USB_Device_Stack; EP : EP_Addr; CNT : UInt11) is Assigned_To : Any_USB_Device_Class renames This.Endpoints (EP.Num).Assigned_To; begin if EP = (0, EP_In) then USB.Device.Control.Control_In (This); elsif EP = (0, EP_Out) then USB.Device.Control.Control_Out (This, CNT); elsif Assigned_To /= null then Assigned_To.Transfer_Complete (This.UDC.all, EP, CNT); end if; end Transfer_Complete; ----------------------------- -- Build_Device_Descriptor -- ----------------------------- procedure Build_Device_Descriptor (This : in out USB_Device_Stack) is Desc : Device_Descriptor with Address => This.Ctrl.RX_Buf'Address; begin Desc := (bLength => Desc'Size / 8, bDescriptorType => 1, -- DT_DEVICE bcdUSB => 16#0110#, bDeviceClass => 0, bDeviceSubClass => 0, bDeviceProtocol => 0, bMaxPacketSize0 => This.Max_Packet_Size, idVendor => 16#6666#, idProduct => 16#4242#, bcdDevice => 16#0121#, -- String IDs iManufacturer => This.Manufacturer_Str, iProduct => This.Product_Str, iSerialNumber => This.Serial_Str, bNumConfigurations => 1); This.Ctrl.Buf := This.Ctrl.RX_Buf'Address; This.Ctrl.Len := Desc'Size / 8; end Build_Device_Descriptor; ---------------------------- -- Build_Device_Qualifier -- ---------------------------- procedure Build_Device_Qualifier (This : in out USB_Device_Stack) is Desc : Device_Qualifier with Address => This.Ctrl.RX_Buf'Address; begin Desc := (bLength => Desc'Size / 8, bDescriptorType => 6, -- DT_QUALIFIER bcdUSB => 16#0200#, bDeviceClass => 0, bDeviceSubClass => 0, bDeviceProtocol => 0, bMaxPacketSize0 => This.Max_Packet_Size, bNumConfigurations => 1, bReserved => 0); This.Ctrl.Buf := This.Ctrl.RX_Buf'Address; This.Ctrl.Len := Desc'Size / 8; end Build_Device_Qualifier; ----------------------------- -- Build_Config_Descriptor -- ----------------------------- procedure Build_Config_Descriptor (This : in out USB_Device_Stack) is Total_Length : Natural; Len : Natural; First : constant Natural := This.Ctrl.RX_Buf'First; Number_Of_Interfaces : Interface_Id := 0; Total_Number_Of_Interfaces : Interface_Id := 0; begin Total_Length := 9; -- Size of configuration descriptor for Class of This.Classes loop exit when Class.Ptr = null; Class.Ptr.Get_Class_Info (Number_Of_Interfaces, Config_Descriptor_Length => Len); if Total_Length + Len > This.Ctrl.RX_Buf'Length then raise Program_Error with "Not enought space in control buffer" & " for configuration descriptor"; end if; declare From : constant Natural := First + Total_Length; To : constant Natural := From + Len - 1; begin Class.Ptr.Fill_Config_Descriptor (This.Ctrl.RX_Buf (From .. To)); end; Total_Length := Total_Length + Len; Total_Number_Of_Interfaces := Total_Number_Of_Interfaces + Number_Of_Interfaces; end loop; -- Now that we know the total length of the configuration we can write -- the configuration descriptor. declare Len_Low : constant UInt8 := UInt8 (UInt32 (Total_Length) and 16#FF#); Len_High : constant UInt8 := UInt8 (Shift_Right (UInt32 (Total_Length) and 16#FF00#, 8)); USB_DESC_TYPE_CONFIGURATION : constant := 2; USB_CFG_MAX_BUS_POWER : constant := 100; begin This.Ctrl.RX_Buf (First .. First + 9 - 1) := ( -- USB configuration descriptor 9, -- sizeof(usbDescrConfig): length of descriptor in bytes USB_DESC_TYPE_CONFIGURATION, -- descriptor type Len_Low, Len_High, -- total length of data returned UInt8 (Total_Number_Of_Interfaces), -- Ifaces in this configuration 1, -- index of this configuration 0, -- configuration name string index Shift_Left (1, 7), -- attributes USB_CFG_MAX_BUS_POWER / 2 -- max USB current in 2mA units */); ); end; This.Ctrl.Buf := This.Ctrl.RX_Buf'Address; This.Ctrl.Len := Storage_Offset (Total_Length); end Build_Config_Descriptor; ---------- -- Poll -- ---------- procedure Poll (This : in out USB_Device_Stack) is begin loop declare Evt : constant UDC_Event := This.UDC.Poll; begin if Logs_Enabled and then Evt.Kind /= None then USB.Logging.Device.Log (Evt); end if; case Evt.Kind is when Reset => Put_Line ("Poll: Reset"); Reset (This); when Setup_Request => Put_Line ("Poll: Setup_Request"); This.Ctrl.Req := Evt.Req; USB.Device.Control.Setup (This, Evt.Req_EP); when Transfer_Complete => Put_Line ("Poll: Transfer_Complete"); This.Transfer_Complete (Evt.EP, Evt.BCNT); when None => Put_Line ("Poll: None"); return; end case; end; end loop; end Poll; ---------------- -- Controller -- ---------------- function Controller (This : USB_Device_Stack) return not null Any_USB_Device_Controller is (This.UDC); end USB.Device;
------------------------------------------------------------------------------ -- -- -- GNU ADA RUN-TIME LIBRARY (GNARL) COMPONENTS -- -- -- -- S Y S T E M . T A S K I N G . D E B U G -- -- -- -- B o d y -- -- -- -- $Revision$ -- -- -- Copyright (C) 1997-2001 Free Software Foundation, Inc. -- -- -- -- GNARL is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 2, or (at your option) any later ver- -- -- sion. GNARL is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNARL; see file COPYING. If not, write -- -- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, -- -- MA 02111-1307, USA. -- -- -- -- As a special exception, if other files instantiate generics from this -- -- unit, or you link this unit with other files to produce an executable, -- -- this unit does not by itself cause the resulting executable to be -- -- covered by the GNU General Public License. This exception does not -- -- however invalidate any other reasons why the executable file might be -- -- covered by the GNU Public License. -- -- -- -- GNARL was developed by the GNARL team at Florida State University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- This package encapsulates all direct interfaces to task debugging services -- that are needed by gdb with gnat mode (1.13 and higher) -- Note : This file *must* be compiled with debugging information -- Do not add any dependency to GNARL packages since this package is used -- in both normal and resticted (ravenscar) environments. with System.Task_Info, System.Task_Primitives.Operations, Unchecked_Conversion; package body System.Tasking.Debug is use Interfaces.C; package STPO renames System.Task_Primitives.Operations; type Integer_Address is mod 2 ** Standard'Address_Size; type Integer_Address_Ptr is access all Integer_Address; function "+" is new Unchecked_Conversion (System.Address, Integer_Address_Ptr); function "+" is new Unchecked_Conversion (Task_ID, Integer_Address); Hex_Address_Width : constant := (Standard'Address_Size / 4); Zero_Pos : constant := Character'Pos ('0'); Hex_Digits : constant array (0 .. Integer_Address'(15)) of Character := "0123456789abcdef"; subtype Buf_Range is Integer range 1 .. 80; type Buf_Array is array (Buf_Range) of aliased Character; type Buffer is record Next : Buf_Range := Buf_Range'First; Chars : Buf_Array := (Buf_Range => ' '); end record; type Buffer_Ptr is access all Buffer; type Trace_Flag_Set is array (Character) of Boolean; Trace_On : Trace_Flag_Set := ('A' .. 'Z' => False, others => True); ----------------------- -- Local Subprograms -- ----------------------- procedure Put (T : ST.Task_ID; Width : Integer; Buffer : Buffer_Ptr); -- Put TCB pointer T, (coded in hexadecimal) into Buffer -- right-justified in Width characters. procedure Put (N : Integer_Address; Width : Integer; Buffer : Buffer_Ptr); -- Put N (coded in decimal) into Buf right-justified in Width -- characters starting at Buf (Next). procedure Put (S : String; Width : Integer; Buffer : Buffer_Ptr); -- Put string S into Buf left-justified in Width characters -- starting with space in Buf (Next), truncated as necessary. procedure Put (C : Character; Buffer : Buffer_Ptr); -- Put character C into Buf, left-justified, starting at Buf (Next) procedure Space (Buffer : Buffer_Ptr); -- Increment Next, resulting in a space procedure Space (N : Integer; Buffer : Buffer_Ptr); -- Increment Next by N, resulting in N spaces procedure Clear (Buffer : Buffer_Ptr); -- Clear Buf and reset Next to 1 procedure Write_Buf (Buffer : Buffer_Ptr); -- Write contents of Buf (1 .. Next) to standard output ----------- -- Clear -- ----------- procedure Clear (Buffer : Buffer_Ptr) is Next : Buf_Range renames Buffer.Next; Buf : Buf_Array renames Buffer.Chars; begin Buf := (Buf_Range => ' '); Next := 1; end Clear; ----------- -- Image -- ----------- function Image (T : ST.Task_ID) return String is Buf : aliased Buffer; Result : String (1 .. Hex_Address_Width + 21); use type System.Task_Info.Task_Image_Type; begin Clear (Buf'Unchecked_Access); Put (T, Hex_Address_Width, Buf'Unchecked_Access); Put (':', Buf'Unchecked_Access); Put (Integer_Address (T.Serial_Number), 4, Buf'Unchecked_Access); Space (Buf'Unchecked_Access); if T.Common.Task_Image = null then Put ("", 15, Buf'Unchecked_Access); else Put (T.Common.Task_Image.all, 15, Buf'Unchecked_Access); end if; for J in Result'Range loop Result (J) := Buf.Chars (J); end loop; return Result; end Image; ---------------- -- List_Tasks -- ---------------- procedure List_Tasks is C : ST.Task_ID; begin Print_Task_Info_Header; C := All_Tasks_List; while C /= null loop Print_Task_Info (C); C := C.Common.All_Tasks_Link; end loop; end List_Tasks; ----------------------- -- Print_Accept_Info -- ----------------------- procedure Print_Accept_Info (T : ST.Task_ID) is Buf : aliased Buffer; begin if T.Open_Accepts = null then return; end if; Clear (Buf'Unchecked_Access); Space (10, Buf'Unchecked_Access); Put ("accepting:", 11, Buf'Unchecked_Access); for J in T.Open_Accepts.all'Range loop Put (Integer_Address (T.Open_Accepts (J).S), 3, Buf'Unchecked_Access); end loop; Write_Buf (Buf'Unchecked_Access); end Print_Accept_Info; ------------------------ -- Print_Current_Task -- ------------------------ procedure Print_Current_Task is begin Print_Task_Info (STPO.Self); end Print_Current_Task; --------------------- -- Print_Task_Info -- --------------------- procedure Print_Task_Info (T : ST.Task_ID) is Entry_Call : Entry_Call_Link; Buf : aliased Buffer; use type System.Task_Info.Task_Image_Type; begin Clear (Buf'Unchecked_Access); Put (T, Hex_Address_Width, Buf'Unchecked_Access); Put (':', Buf'Unchecked_Access); Put (' ', Buf'Unchecked_Access); Put (':', Buf'Unchecked_Access); if T = null then Put (" null task", 10, Buf'Unchecked_Access); Write_Buf (Buf'Unchecked_Access); return; end if; Put (Integer_Address (T.Serial_Number), 4, Buf'Unchecked_Access); Space (Buf'Unchecked_Access); if T.Common.Task_Image = null then Put ("", 15, Buf'Unchecked_Access); else Put (T.Common.Task_Image.all, 15, Buf'Unchecked_Access); end if; Space (Buf'Unchecked_Access); Put (Task_States'Image (T.Common.State), 10, Buf'Unchecked_Access); Space (Buf'Unchecked_Access); if T.Callable then Put ('C', Buf'Unchecked_Access); else Space (Buf'Unchecked_Access); end if; if T.Open_Accepts /= null then Put ('A', Buf'Unchecked_Access); else Space (Buf'Unchecked_Access); end if; if T.Common.Call /= null then Put ('C', Buf'Unchecked_Access); else Space (Buf'Unchecked_Access); end if; if T.Terminate_Alternative then Put ('T', Buf'Unchecked_Access); else Space (Buf'Unchecked_Access); end if; if T.Aborting then Put ('A', Buf'Unchecked_Access); else Space (Buf'Unchecked_Access); end if; if T.Deferral_Level = 0 then Space (3, Buf'Unchecked_Access); else Put ('D', Buf'Unchecked_Access); if T.Deferral_Level < 0 then Put ("<0", 2, Buf'Unchecked_Access); elsif T.Deferral_Level > 1 then Put (Integer_Address (T.Deferral_Level), 2, Buf'Unchecked_Access); else Space (2, Buf'Unchecked_Access); end if; end if; Space (Buf'Unchecked_Access); Put (Integer_Address (T.Master_of_Task), 1, Buf'Unchecked_Access); Space (Buf'Unchecked_Access); Put (Integer_Address (T.Master_Within), 1, Buf'Unchecked_Access); Put (',', Buf'Unchecked_Access); Space (Buf'Unchecked_Access); Put (Integer_Address (T.Awake_Count), 1, Buf'Unchecked_Access); Space (Buf'Unchecked_Access); Put (Integer_Address (T.Alive_Count), 1, Buf'Unchecked_Access); Put (',', Buf'Unchecked_Access); Space (Buf'Unchecked_Access); Put (Integer_Address (T.ATC_Nesting_Level), 1, Buf'Unchecked_Access); Space (Buf'Unchecked_Access); Put (Integer_Address (T.Pending_ATC_Level), 1, Buf'Unchecked_Access); Put (',', Buf'Unchecked_Access); Space (Buf'Unchecked_Access); Put (Integer_Address (T.Common.Wait_Count), 1, Buf'Unchecked_Access); Put (',', Buf'Unchecked_Access); Space (Buf'Unchecked_Access); Put (Integer_Address (T.User_State), 1, Buf'Unchecked_Access); Write_Buf (Buf'Unchecked_Access); if T.Common.Call /= null then Entry_Call := T.Common.Call; Clear (Buf'Unchecked_Access); Space (10, Buf'Unchecked_Access); Put ("serving:", 8, Buf'Unchecked_Access); while Entry_Call /= null loop Put (Integer_Address (Entry_Call.Self.Serial_Number), 5, Buf'Unchecked_Access); Entry_Call := Entry_Call.Acceptor_Prev_Call; end loop; Write_Buf (Buf'Unchecked_Access); end if; Print_Accept_Info (T); end Print_Task_Info; ---------------------------- -- Print_Task_Info_Header -- ---------------------------- procedure Print_Task_Info_Header is Buf : aliased Buffer; begin Clear (Buf'Unchecked_Access); Put ("TASK_ID", Hex_Address_Width, Buf'Unchecked_Access); Put (':', Buf'Unchecked_Access); Put ('F', Buf'Unchecked_Access); Put (':', Buf'Unchecked_Access); Put ("SERIAL_NUMBER", 4, Buf'Unchecked_Access); Space (Buf'Unchecked_Access); Put (" NAME", 15, Buf'Unchecked_Access); Put (" STATE", 10, Buf'Unchecked_Access); Space (11, Buf'Unchecked_Access); Put ("MAST", 5, Buf'Unchecked_Access); Put ("AWAK", 5, Buf'Unchecked_Access); Put ("ATC", 5, Buf'Unchecked_Access); Put ("WT", 3, Buf'Unchecked_Access); Put ("DBG", 3, Buf'Unchecked_Access); Write_Buf (Buf'Unchecked_Access); end Print_Task_Info_Header; --------- -- Put -- --------- procedure Put (T : ST.Task_ID; Width : Integer; Buffer : Buffer_Ptr) is J : Integer; X : Integer_Address := +T; Next : Buf_Range renames Buffer.Next; Buf : Buf_Array renames Buffer.Chars; First : constant Integer := Next; Wdth : Integer := Width; begin if Wdth > Buf'Last - Next then Wdth := Buf'Last - Next; end if; J := Next + (Wdth - 1); if X = 0 then Buf (J) := '0'; else while X > 0 loop Buf (J) := Hex_Digits (X rem 16); J := J - 1; X := X / 16; -- Check for overflow if J < First and then X > 0 then Buf (J + 1) := '*'; exit; end if; end loop; end if; Next := Next + Wdth; end Put; procedure Put (N : Integer_Address; Width : Integer; Buffer : Buffer_Ptr) is J : Integer; X : Integer_Address := N; Next : Buf_Range renames Buffer.Next; Buf : Buf_Array renames Buffer.Chars; First : constant Integer := Next; Wdth : Integer := Width; begin if Wdth > Buf'Last - Next then Wdth := Buf'Last - Next; end if; J := Next + (Wdth - 1); if N = 0 then Buf (J) := '0'; else while X > 0 loop Buf (J) := Hex_Digits (X rem 10); J := J - 1; X := X / 10; -- Check for overflow if J < First and then X > 0 then Buf (J + 1) := '*'; exit; end if; end loop; end if; Next := Next + Wdth; end Put; procedure Put (S : String; Width : Integer; Buffer : Buffer_Ptr) is Next : Buf_Range renames Buffer.Next; Buf : Buf_Array renames Buffer.Chars; Bound : constant Integer := Integer'Min (Next + Width, Buf'Last); J : Integer := Next; begin for K in S'Range loop -- Check overflow if J >= Bound then Buf (J - 1) := '*'; exit; end if; Buf (J) := S (K); J := J + 1; end loop; Next := Bound; end Put; procedure Put (C : Character; Buffer : Buffer_Ptr) is Next : Buf_Range renames Buffer.Next; Buf : Buf_Array renames Buffer.Chars; begin if Next >= Buf'Last then Buf (Next) := '*'; else Buf (Next) := C; Next := Next + 1; end if; end Put; ---------------------- -- Resume_All_Tasks -- ---------------------- procedure Resume_All_Tasks (Thread_Self : OS_Interface.Thread_Id) is C : ST.Task_ID; R : Boolean; begin STPO.Lock_All_Tasks_List; C := All_Tasks_List; while C /= null loop R := STPO.Resume_Task (C, Thread_Self); C := C.Common.All_Tasks_Link; end loop; STPO.Unlock_All_Tasks_List; end Resume_All_Tasks; ---------- -- Self -- ---------- function Self return Task_ID is begin return STPO.Self; end Self; --------------- -- Set_Trace -- --------------- procedure Set_Trace (Flag : Character; Value : Boolean := True) is begin Trace_On (Flag) := Value; end Set_Trace; -------------------- -- Set_User_State -- -------------------- procedure Set_User_State (Value : Integer) is begin STPO.Self.User_State := Value; end Set_User_State; ----------- -- Space -- ----------- procedure Space (Buffer : Buffer_Ptr) is Next : Buf_Range renames Buffer.Next; Buf : Buf_Array renames Buffer.Chars; begin if Next >= Buf'Last then Buf (Next) := '*'; else Next := Next + 1; end if; end Space; procedure Space (N : Integer; Buffer : Buffer_Ptr) is Next : Buf_Range renames Buffer.Next; Buf : Buf_Array renames Buffer.Chars; begin if Next + N > Buf'Last then Buf (Next) := '*'; else Next := Next + N; end if; end Space; ----------------------- -- Suspend_All_Tasks -- ----------------------- procedure Suspend_All_Tasks (Thread_Self : OS_Interface.Thread_Id) is C : ST.Task_ID; R : Boolean; begin STPO.Lock_All_Tasks_List; C := All_Tasks_List; while C /= null loop R := STPO.Suspend_Task (C, Thread_Self); C := C.Common.All_Tasks_Link; end loop; STPO.Unlock_All_Tasks_List; end Suspend_All_Tasks; ------------------------ -- Task_Creation_Hook -- ------------------------ procedure Task_Creation_Hook (Thread : OS_Interface.Thread_Id) is pragma Inspection_Point (Thread); -- gdb needs to access the thread parameter in order to implement -- the multitask mode under VxWorks. begin null; end Task_Creation_Hook; --------------------------- -- Task_Termination_Hook -- --------------------------- procedure Task_Termination_Hook is begin null; end Task_Termination_Hook; ----------- -- Trace -- ----------- procedure Trace (Self_ID : ST.Task_ID; Msg : String; Other_ID : ST.Task_ID; Flag : Character) is Buf : aliased Buffer; use type System.Task_Info.Task_Image_Type; begin if Trace_On (Flag) then Clear (Buf'Unchecked_Access); Put (Self_ID, Hex_Address_Width, Buf'Unchecked_Access); Put (':', Buf'Unchecked_Access); Put (Flag, Buf'Unchecked_Access); Put (':', Buf'Unchecked_Access); Put (Integer_Address (Self_ID.Serial_Number), 4, Buf'Unchecked_Access); Space (Buf'Unchecked_Access); if Self_ID.Common.Task_Image = null then Put ("", 15, Buf'Unchecked_Access); else Put (Self_ID.Common.Task_Image.all, 15, Buf'Unchecked_Access); end if; Space (Buf'Unchecked_Access); if Other_ID /= null then Put (Integer_Address (Other_ID.Serial_Number), 4, Buf'Unchecked_Access); Space (Buf'Unchecked_Access); end if; Put (Msg, Buf.Chars'Last - Buf.Next + 1, Buf'Unchecked_Access); Write_Buf (Buf'Unchecked_Access); end if; end Trace; procedure Trace (Self_ID : ST.Task_ID; Msg : String; Flag : Character) is begin Trace (Self_ID, Msg, null, Flag); end Trace; procedure Trace (Msg : String; Flag : Character) is Self_ID : constant ST.Task_ID := STPO.Self; begin Trace (Self_ID, Msg, null, Flag); end Trace; procedure Trace (Msg : String; Other_ID : ST.Task_ID; Flag : Character) is Self_ID : constant ST.Task_ID := STPO.Self; begin Trace (Self_ID, Msg, null, Flag); end Trace; --------------- -- Write_Buf -- --------------- procedure Write_Buf (Buffer : Buffer_Ptr) is Next : Buf_Range renames Buffer.Next; Buf : Buf_Array renames Buffer.Chars; procedure put_char (C : Integer); pragma Import (C, put_char, "put_char"); begin for J in 1 .. Next - 1 loop put_char (Character'Pos (Buf (J))); end loop; put_char (Character'Pos (ASCII.LF)); end Write_Buf; end System.Tasking.Debug;
-- Generated by utildgen.c from system includes with Interfaces.C; package Util.Systems.Types is subtype dev_t is Interfaces.C.unsigned; subtype ino_t is Interfaces.C.unsigned_short; subtype off_t is Long_Long_Integer; subtype uid_t is Interfaces.C.unsigned_short; subtype gid_t is Interfaces.C.unsigned_short; subtype nlink_t is Interfaces.C.unsigned_short; subtype mode_t is Interfaces.C.unsigned_short; S_IFMT : constant mode_t := 8#00170000#; S_IFDIR : constant mode_t := 8#00040000#; S_IFCHR : constant mode_t := 8#00020000#; S_IFBLK : constant mode_t := 8#00030000#; S_IFREG : constant mode_t := 8#00100000#; S_IFIFO : constant mode_t := 8#00010000#; S_IFLNK : constant mode_t := 8#00000000#; S_IFSOCK : constant mode_t := 8#00000000#; S_ISUID : constant mode_t := 8#00000000#; S_ISGID : constant mode_t := 8#00000000#; S_IREAD : constant mode_t := 8#00000400#; S_IWRITE : constant mode_t := 8#00000200#; S_IEXEC : constant mode_t := 8#00000100#; -- The windows HANDLE is defined as a void* in the C API. subtype HANDLE is Interfaces.C.ptrdiff_t; subtype File_Type is HANDLE; subtype Time_Type is Long_Long_Integer; type Timespec is record tv_sec : Time_Type; end record; pragma Convention (C_Pass_By_Copy, Timespec); type Seek_Mode is (SEEK_SET, SEEK_CUR, SEEK_END); for Seek_Mode use (SEEK_SET => 0, SEEK_CUR => 1, SEEK_END => 2); type Stat_Type is record st_dev : dev_t; st_ino : ino_t; st_mode : mode_t; st_nlink : nlink_t; st_uid : uid_t; st_gid : gid_t; st_rdev : dev_t; st_size : off_t; st_atime : Time_Type; st_mtime : Time_Type; st_ctime : Time_Type; end record; pragma Convention (C_Pass_By_Copy, Stat_Type); end Util.Systems.Types;
package P is ... -- Declarations placed here are publicly visible private ... -- These declarations are visible only to the children of P end P;
--------------------------------------------------------------------------- -- package body Golub_SVD, Singular Value Decomposition -- Copyright (C) 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. --------------------------------------------------------------------------- with Hypot; with Ada.numerics.generic_elementary_functions; package body Golub_SVD is package Hypo is new Hypot (Real); use Hypo; package math is new Ada.numerics.generic_elementary_functions (Real); use Math; Half : constant Real := +0.5; Zero : constant Real := +0.0; One : constant Real := +1.0; Two : constant Real := +2.0; -- Convenient for cases in which package is instantiated with -- extended precision floating point: just make sure a "+" operator -- exists that translates the numbers into abstract type Real. type Int64 is range -2**63+1 .. 2**63-1; ---------------------------------------- -- Arg_1_Is_Negligible_Respect_Arg_2 -- ---------------------------------------- function Arg_1_Is_Negligible_Respect_Arg_2 (x, y : Real) return Boolean is Abs_x : constant Real := Abs x; Abs_y : constant Real := Abs y; Eps_Factor : constant Real := Real'Epsilon * Two**(-2); -- 6 and 7 fail -- Stnd setting for Eps_Factor is: Real'Epsilon * Two**(-2). -1 is gd. -- Convergence failure at 2.0**(-6): random_anti_sym, and compan_0. -- -- Usually Real'Epsilon = 2**(-50) if Real is 15 digits, but -- 2**(-53) is closer to the actual working precision of IEEE 754. -- So using 2.0**(-3) here for 15 digit arith would be like linpack's -- original threshold policy. -- 2.0**(-1) might be best. -- Min_Exp : constant Integer := Real'Machine_Emin; Min_Allowed_Real : constant Real := Two**(Min_Exp - Min_Exp/4); begin if Abs_x = Zero then return True; elsif Abs_x < Min_Allowed_Real and then Abs_x <= Abs_y then -- policy D return True; elsif Abs_x <= Abs_y*Eps_Factor then --Abs_x is negligible in comparison to Abs_y return True; else return False; end if; end Arg_1_Is_Negligible_Respect_Arg_2; ---------------------- -- Rotation_Factors -- ---------------------- -- sn = a / sqrt(a**2 + b**2) -- cs = b / sqrt(a**2 + b**2) -- -- let t = smaller / larger -- -- let u = 1/sqrt(1+t*t) and w = sqrt(t*t/(1+t*t)) with -- -- use (1 - 1/sqrt(1+t*t)) * (1 + 1/sqrt(1+t*t)) = t*t / (1 + t*t) -- -- 1/sqrt(1+t*t) - 1 = - t*t/(sqrt(1+t*t) + 1+t*t) -- = -(t/(sqrt(1+t*t))*(t/(1 + Sqrt(1+t*t))) -- = - Abs (w) * Abs (t)/(1+ sqrt(1+t*t)) -- = u_lo -- -- u_hi = 1 => u_lo + u_hi = 1/sqrt(1+t*t) = u = Abs (cs) if a<b -- -- hypot = sqrt(a**2 + b**2) -- hypot = |a| * sqrt(1+t*t) = |a| * (1 + t*t/(1+sqrt(1+t*t)) = hi + lo if t<1 -- -- hypot := Abs_a * sq; -- hypot := Abs_a + Abs_b * (Abs (t) / (sq + One)); -- hypot := Abs_a + Abs_b * (Abs_b / (Abs_a * (sq + One))); -- hypot := Abs_a + Abs_b * (Abs_b / (hypot + Abs_a)); -- iterate -- procedure Rotation_Factors (a, b : in Real; sn_lo, sn_hi : out Real; -- a / Sqrt(a*a + b*b) cs_lo, cs_hi : out Real; -- b / Sqrt(a*a + b*b) hypot : out Real; cs_hi_is_one : out Boolean) is Abs_a, Abs_b : Real; --min_arg_over_hypot, max_arg_over_hypot_minus_1 : Real; Emin : constant Integer := Real'Machine_Emin; Min_Allowed_Real : constant Real := Two**(Emin - Emin / 32); begin if (not a'Valid) or else (not b'Valid) then raise Constraint_Error with "a, b invalid in Rotation_Factors"; end if; Abs_a := Abs a; Abs_b := Abs b; sn_lo := Zero; sn_hi := Zero; cs_lo := Zero; cs_hi := One; hypot := Abs_b; cs_hi_is_one := True; -- default: no rotation if Abs_a >= Abs_b then if Abs_a > Min_Allowed_Real then --if Abs_a > Zero then cs_hi_is_one := False; hypot := Hypotenuse (Abs_b, Abs_a); --Get_Hypotenuse (Abs_b, Abs_a, hypot, min_arg_over_hypot, max_arg_over_hypot_minus_1); cs_hi := Zero; cs_lo := b / hypot; --cs_lo := Real'Copy_Sign (min_arg_over_hypot, b); sn_hi := One; sn_lo := - cs_lo * (b / (hypot + Abs_a)); --sn_lo := - |b|**2 / (hypot * (hypot + |a|)) = |a| / hypot - 1; --sn_lo := max_arg_over_hypot_minus_1; if a < Zero then sn_hi := -sn_hi; sn_lo := -sn_lo; end if; end if; else -- Abs_a < Abs_b if Abs_b > Min_Allowed_Real then --if Abs_b > Zero then cs_hi_is_one := True; hypot := Hypotenuse (Abs_b, Abs_a); --Get_Hypotenuse (Abs_b, Abs_a, hypot, min_arg_over_hypot, max_arg_over_hypot_minus_1); sn_hi := Zero; sn_lo := a / hypot; --sn_lo := Real'Copy_Sign (min_arg_over_hypot, a); cs_hi := One; cs_lo := - sn_lo * (a / (hypot + Abs_b)); --cs_lo := - |a|**2 / (hypot * (hypot + max)) = |b| / hypot - 1; --cs_lo := max_arg_over_hypot_minus_1; if b < Zero then cs_lo := -cs_lo; cs_hi := -cs_hi; end if; end if; end if; end Rotation_Factors; procedure Householder_Bidiagonalize (A : in out A_Matrix; -- m x n U : out U_matrix; -- m x m V : out V_matrix; -- n x n E, S : out Singular_Vector; -- 1 x n Bidiag_Final_Col : out Col_Index; Final_Row : in Row_Index; Starting_Col : in Col_Index; -- Starting_Row is set to Starting_Col Final_Col : in Col_Index; Matrix_U_Desired : in Boolean := True; Matrix_V_Desired : in Boolean := True) is Min_Exp : constant Integer := Real'Machine_Emin; Min_Allowed_Pivot : constant Real := Two**(Min_Exp - Min_Exp/8); Min_Allowed_Real_tr : constant Real := Two**(Min_Exp - Min_Exp/32); Min_Allowed_Denom : constant Real := Two**(Min_Exp - Min_Exp/32); Starting_Row : constant Row_Index := Row_Index (Integer (Starting_Col)); Work : array (Starting_Row .. Final_Row) of Real; Working_Final_Col : Col_Index; t, t_Scaler, A_val, E_val, U_val, V_val : Real; Scaling_Factor : Real; nct, nrt : Col_Index; procedure Get_Scale_Factor_of_Col ( Scale_Factor : out Real; Inverse_Scale_Factor : out Real; Desired_Col : in Col_Index; Start_of_Row : in Row_Index) is Max_A : Real := Zero; Max_Exp : Integer; Min_Real : constant Real := Two ** (Min_Exp + 4); begin for r in Start_of_Row .. Final_Row loop if Abs A(r, Desired_Col) > Max_A then Max_A := Abs A(r, Desired_Col); end if; end loop; Max_Exp := Real'Exponent (Max_A + Min_Real); Scale_Factor := Two ** (-Max_Exp); Inverse_Scale_Factor := One / Scale_Factor; end Get_Scale_Factor_of_Col; procedure Get_Scale_Factor_of_Row ( Scale_Factor : out Real; Inverse_Scale_Factor : out Real; Desired_Row : in Singular_Vector; Start_Col : in Col_Index) is Max_A : Real := Zero; Max_Exp : Integer; Min_Real : constant Real := Two ** (Min_Exp + 4); begin for c in Start_Col .. Final_Col loop if Abs Desired_Row(c) > Max_A then Max_A := Abs Desired_Row(c); end if; end loop; Max_Exp := Real'Exponent (Max_A + Min_Real); Scale_Factor := Two ** (-Max_Exp); Inverse_Scale_Factor := One / Scale_Factor; end Get_Scale_Factor_of_Row; Scale_Factor, Inverse_Scale_Factor, Sum, tmp : Real; begin -- If these mats are undesirable, don't fill up memory with Zero's: if Matrix_U_Desired then U := (others => (others => Zero)); end if; if Matrix_V_Desired then V := (others => (others => Zero)); end if; E := (others => Zero); S := (others => Zero); -- Can use Min to do the calculation only because Starting_Row = Starting_Col: nct := Col_Index (Int64'Min (Int64 (Final_Row-1), Int64 (Final_Col))); nrt := Col_Index (Int64'Min (Int64 (Final_Row), Int64 (Final_Col-2))); Working_Final_Col := Col_Index'Max (nct, nrt); -- No_Rows = m, No_Cols = n (Bidiagonal_Order == mn) -- m = n-3, Working_Final_Col = n-3 Bidiagonal_Order = n-2 -- m = n-2, Working_Final_Col = n-2 Bidiagonal_Order = n-1 -- m = n-1, Working_Final_Col = n-2 Bidiagonal_Order = n-0 -- m = n-0, Working_Final_Col = n-1 Bidiagonal_Order = n-0 -- m = n+1, Working_Final_Col = n+0 Bidiagonal_Order = n+0 -- m = n+2, Working_Final_Col = n+0 Bidiagonal_Order = n+0 -- -- so notice that Working_Final_Col is truncated by m=No_Rows. Bidiag_Final_Col := Col_Index(Int64'Min(Int64 (Final_Row+1),Int64 (Final_Col))); -- The final bidiagonal matrix has order mn = (Bidiag_Final_Col - Starting_Col + 1). -- Reduce A to bidiagonal form, storing the diagonal elements -- in S and the super-diagonal elements in E. Householder: declare Pivot_Row : Row_Index; U_Pivot_Col : U_Col_Index; begin for Pivot_Col in Starting_Col .. Working_Final_Col loop Pivot_Row := Row_Index (Pivot_Col); -- No of Rows >= No of Cols, and row 1st = col 1st U_Pivot_Col := U_Col_Index (Pivot_Col); -- Compute the transformation for the L-th column and -- place the L-th diagonal in S(L). if Pivot_Col <= nct then Get_Scale_Factor_of_Col (Scale_Factor, Inverse_Scale_Factor, Pivot_Col, Pivot_Row); Sum := Zero; for r in Pivot_Row .. Final_Row loop tmp := A(r, Pivot_Col) * Scale_Factor; -- scale so max A is near 1 Sum := Sum + tmp * tmp; end loop; S(Pivot_Col) := Inverse_Scale_Factor * Sqrt (Sum); if Abs S(Pivot_Col) > Min_Allowed_Pivot then if A(Pivot_Row, Pivot_Col) < Zero then S(Pivot_Col) := -S(Pivot_Col); end if; Scaling_Factor := One / S(Pivot_Col); for r in Pivot_Row .. Final_Row loop A(r, Pivot_Col) := A(r, Pivot_Col) * Scaling_Factor; end loop; A(Pivot_Row, Pivot_Col) := One + A(Pivot_Row, Pivot_Col); end if; S(Pivot_Col) := -S(Pivot_Col); end if; -- Apply the transformation. if Pivot_Col <= nct and then Abs (S(Pivot_Col)) > Min_Allowed_Real_tr then A_val := A(Pivot_Row, Pivot_Col); t_scaler := One / (A_val + Real'Copy_Sign (Min_Allowed_Denom, A_val)); declare t, t2 : Real; begin t := Zero; if Pivot_Col < Final_Col then for r in Pivot_Row .. Final_Row loop t := t + A(r, Pivot_Col) * A(r, Pivot_Col+1); end loop; t := -t * t_scaler; for c in Pivot_Col+1 .. Final_Col-1 loop t2 := Zero; for r in Pivot_Row .. Final_Row loop A(r, c) := A(r, c) + t * A(r, Pivot_Col); t2 := t2 + A(r, c+1) * A(r, Pivot_Col); end loop; t := -t2 * t_scaler; end loop; for r in Pivot_Row .. Final_Row loop A(r, Final_Col) := A(r, Final_Col) + t * A(r, Pivot_Col); end loop; end if; end; end if; -- Place the L-th row of A into E for the -- subsequent calculation of the row transformation. for c in Pivot_Col+1 .. Final_Col loop E(c) := A(Pivot_Row, c); end loop; -- Place the transformation in U for subsequent back multiplication. if Matrix_U_Desired and Pivot_Col <= nct then for r in Pivot_Row .. Final_Row loop U(r, U_Pivot_Col) := A(r, Pivot_Col); end loop; end if; -- Compute the L-th row transformation and place the -- L-th superdiagonal in E(L). if Pivot_Col <= nrt then E(Pivot_Col) := Zero; Get_Scale_Factor_of_Row (Scale_Factor, Inverse_Scale_Factor, E, Pivot_Col); Sum := Zero; for c in Pivot_Col+1 .. Final_Col loop tmp := E(c) * Scale_Factor; --so largest E is near 1 Sum := Sum + tmp * tmp; end loop; E(Pivot_Col) := Inverse_Scale_Factor * Sqrt (Sum); if Abs E(Pivot_Col) > Min_Allowed_Pivot then if E(Pivot_Col+1) < Zero then E(Pivot_Col) := -E(Pivot_Col); -- so has same sign now as E(Pivot_Col+1) end if; Scaling_Factor := One / E(Pivot_Col); for c in Pivot_Col+1 .. Final_Col loop E(c) := E(c) * Scaling_Factor; end loop; E(Pivot_Col+1) := One + E(Pivot_Col+1); end if; E(Pivot_Col) := -E(Pivot_Col); -- Apply the transformation. if Pivot_Row < Final_Row and then Abs E(Pivot_Col) > Min_Allowed_Real_tr then E_val := E(Pivot_Col+1); t_scaler := One / (E_val + Real'Copy_Sign (Min_Allowed_Denom, E_val)); for r in Pivot_Row+1 .. Final_Row loop Work(r) := Zero; end loop; for c in Pivot_Col+1 .. Final_Col loop for r in Pivot_Row+1 .. Final_Row loop Work(r) := Work(r) + E(c) * A(r, c); end loop; end loop; for c in Pivot_Col+1 .. Final_Col loop t := -E(c) * t_scaler; for r in Pivot_Row+1 .. Final_Row loop A(r, c) := A(r, c) + t * Work(r); end loop; end loop; end if; -- Place the transformation in V for subsequent back multiplication. if Matrix_V_Desired then for r in Pivot_Col+1 .. Final_Col loop -- V is n x n = Col_Index x Col_Index V(r, Pivot_Col) := E(r); end loop; end if; end if; end loop; -- Pivot_Col end Householder; -- Set up the bidiag matrix with col range: Starting_Col .. Bidiag_Final_Col: if nct < Final_Col then S(nct+1) := A(Row_Index (nct+1), nct+1); end if; if Int64 (Bidiag_Final_Col) > Int64 (Final_Row) then S(Bidiag_Final_Col) := Zero; end if; if nrt+1 < Bidiag_Final_Col then E(nrt+1) := A(Row_Index (nrt+1), Bidiag_Final_Col); end if; E(Bidiag_Final_Col) := Zero; -- If so desired, generate U. if Matrix_U_Desired then -- U is Row_Index x U_Col_Index Make_Matrix_U: declare U_Pivot_Row : Row_Index; U_Pivot_Col : U_Col_Index; begin -- (nct+1) <= U_Col_Index'Last = Row_Index'Last. Always true for r in Starting_Row .. Final_Row loop for c in U_Col_Index (nct+1) .. U_Col_Index'Last loop U(r, c) := Zero; end loop; end loop; for j in U_Col_Index (nct+1) .. U_Col_Index'Last loop U(Row_Index(j), j) := One; end loop; for Pivot_Col in reverse Starting_Col .. nct loop -- nct < Final_Row U_Pivot_Row := Row_Index (Pivot_Col); U_Pivot_Col := U_Col_Index (Pivot_Col); if Abs S(Pivot_Col) > Zero then U_val := U(U_Pivot_Row, U_Pivot_Col); t_Scaler := One / (U_val + Real'Copy_Sign(Min_Allowed_Denom, U_val)); for c in U_Pivot_Col+1 .. U_Col_Index'Last loop t := Zero; for r in U_Pivot_Row .. Final_Row loop t := t + U(r, c) * U(r, U_Pivot_Col); end loop; t := -t * t_Scaler; for r in U_Pivot_Row .. Final_Row loop U(r, c) := U(r, c) + t * U(r, U_Pivot_Col); end loop; end loop; -- in c for r in U_Pivot_Row .. Final_Row loop U(r, U_Pivot_Col) := -U(r, U_Pivot_Col); end loop; U(U_Pivot_Row, U_Pivot_Col) := One + U(U_Pivot_Row, U_Pivot_Col); for r in Starting_Row .. U_Pivot_Row-1 loop U(r, U_Pivot_Col) := Zero; end loop; else for r in Starting_Row .. Final_Row loop U(r, U_Pivot_Col) := Zero; end loop; U(U_Pivot_Row, U_Pivot_Col) := One; end if; -- Abs S(Pivot_Col) > Zero end loop; -- in Pivot_Col end Make_Matrix_U; end if; -- Matrix_U_Desired -- If so required, generate V. if Matrix_V_Desired then -- V is defined on Col_Index x Col_Index for Pivot_Col in reverse Starting_Col .. Final_Col loop if Pivot_Col <= nrt and Abs E(Pivot_Col) > Zero then V_val := V(Pivot_Col+1, Pivot_Col); t_Scaler := One / (V_val + Real'Copy_Sign (Min_Allowed_Denom, V_val)); for c in Pivot_Col+1 .. Final_Col loop t := Zero; for r in Pivot_Col+1 .. Final_Col loop t := t + V(r, c) * V(r, Pivot_Col); end loop; t := -t * t_Scaler; for r in Pivot_Col+1 .. Final_Col loop V(r, c) := V(r, c) + t * V(r, Pivot_Col); end loop; end loop; end if; for r in Starting_Col .. Final_Col loop V(r, Pivot_Col) := Zero; end loop; V(Pivot_Col, Pivot_Col) := One; end loop; -- in Pivot_Col end if; -- V desired end Householder_Bidiagonalize; -------------------------- -- QR_For_Singular_Vals -- -------------------------- -- Translated from the LINPACK SVD. procedure QR_For_Singular_Vals (E, S : in out Singular_Vector; U : in out U_Matrix; V : in out V_Matrix; Id_of_1st_S_Val : in out Col_Index; Starting_Col : in Col_Index; Final_Col : in Col_Index; Starting_Row : in Row_Index; Final_Row : in Row_Index; Matrix_U_Desired : in Boolean; Matrix_V_Desired : in Boolean) is No_of_Iterations : Integer := 0; mn : Col_Index := Final_Col; -- mn will be decremented to Starting_Col l : Col_Index'base := mn - 1; ls : Col_Index'base := mn; kase : Integer; g, f : Real; Test, tmp : Real; Max_measured_Iterations : Integer := 0; Min_Exp : constant Integer := Real'Machine_Emin; Min_Allowed_Real : constant Real := 2.0**(Min_Exp + Min_Exp/32); begin QR_Iteration: loop if No_of_Iterations > Max_measured_Iterations then Max_measured_Iterations := No_of_Iterations; end if; if No_of_Iterations > Max_Allowed_No_of_Iterations then -- We failed to converge while working on Col = mn. The correct -- Singular vals are in S(mn+1), S(mn+2), ... if mn = Final_Col then raise SVD_Convergence_Error; -- First attempt failed to converge. else Id_of_1st_S_Val := mn+1; end if; return; end if; -- This section of the program inspects for -- negligible elements in the S and E arrays. -- -- On completion the variables KASE and L are set as follows: -- -- KASE := 1 if S(MN) and E(L-1) are negligible and L < MN; -- KASE := 2 if S(L) is negligible and L < MN; -- KASE := 3 if E(L-1) is negligible, L < MN, and; -- S(L), ..., S(MN) are not negligible (QR step). -- KASE := 4 if E(MN-1) is negligible (convergence).; -- initialize l: for ll in Starting_Col .. mn loop l := mn - ll + Starting_Col - 1; if ll = mn then exit; -- l = Starting_Col-1 persists below end if; if Arg_1_Is_Negligible_Respect_Arg_2 (Abs E(l), Abs S(l) + Abs S(l+1)) then E(l) := Zero; exit; end if; end loop; if l = mn - 1 then kase := 4; else for lls in l+1 .. mn+1 loop ls := mn - lls + l + 1; if ls = l then exit; end if; Test := Zero; if ls /= mn then Test := Test + Abs E(ls); end if; if ls /= l + 1 then Test := Test + Abs E(ls-1); end if; if Arg_1_Is_Negligible_Respect_Arg_2 (Abs S(ls), Test) then S(ls) := Zero; exit; end if; end loop; if ls = l then kase := 3; elsif ls = mn then kase := 1; else kase := 2; l := ls; end if; end if; l := l + 1; if kase = 1 then Deflate_Negligible_S_Vals: declare sn_lo, sn_hi, cs_lo, cs_hi, hypot : Real; v0, v1 : Real; cs_hi_is_one : Boolean; begin f := E(mn-1); E(mn-1) := Zero; for k in reverse l .. mn-1 loop -- hypot := Sqrt(f*f + S(k)*S(k)); -- sn := f / Sqrt(f*f + S(k)*S(k)); -- cs := S(k) / Sqrt(f*f + S(k)*S(k)); Rotation_Factors (f, S(k), sn_lo, sn_hi, cs_lo, cs_hi, hypot, cs_hi_is_one); S(k) := hypot; if k /= l then f := -sn_hi * E(k-1) - sn_lo * E(k-1); E(k-1) := cs_hi * E(k-1) + cs_lo * E(k-1); end if; if Matrix_V_Desired then if cs_hi_is_one then -- cs_hi = +/-1, sn_hi = 0 for r in Starting_Col .. Final_Col loop v0 := V(r, k); v1 := V(r, mn); V(r, k) := cs_hi*v0 + ( cs_lo*v0 + sn_lo*v1); V(r, mn) := cs_hi*v1 + (-sn_lo*v0 + cs_lo*v1); end loop; else -- cs_hi = 0, |sn_hi| = 1 for r in Starting_Col .. Final_Col loop v0 := V(r, k); v1 := V(r, mn); V(r, k) := sn_hi*v1 + ( cs_lo*v0 + sn_lo*v1); V(r, mn) := -sn_hi*v0 + (-sn_lo*v0 + cs_lo*v1); end loop; end if; end if; end loop; end Deflate_Negligible_S_Vals; elsif kase = 2 then Split_at_Negligible_S_of_l: declare sn_lo, sn_hi, cs_lo, cs_hi, hypot : Real; u0, u1 : Real; cs_hi_is_one : Boolean; begin f := E(l-1); E(l-1) := Zero; for k in l .. mn loop -- hypot := Sqrt(f*f + S(k)*S(k)); -- sn := f / Sqrt(f*f + S(k)*S(k)); -- cs := S(k) / Sqrt(f*f + S(k)*S(k)); Rotation_Factors (f, S(k), sn_lo, sn_hi, cs_lo, cs_hi, hypot, cs_hi_is_one); S(k) := hypot; f := -sn_lo * E(k) - sn_hi * E(k); E(k) := cs_lo * E(k) + cs_hi * E(k); if Matrix_U_Desired then declare kc : constant Row_Index := Row_Index(k); lc : constant Row_Index := Row_Index(l-1); begin if cs_hi_is_one then -- cs_hi = +/-1, sn_hi = 0 for r in Starting_Row .. Final_Row loop -- rotate cols k, l-1 in U u0 := U(r, kc); u1 := U(r, lc); U(r, kc) := cs_hi*u0 + ( cs_lo*u0 + sn_lo*u1); U(r, lc) := cs_hi*u1 + (-sn_lo*u0 + cs_lo*u1); end loop; else -- cs_hi = 0, |sn_hi| = 1 for r in Starting_Row .. Final_Row loop -- rotate cols k, l-1 in U u0 := U(r, kc); u1 := U(r, lc); U(r, kc) := sn_hi*u1 + ( cs_lo*u0 + sn_lo*u1); U(r, lc) := -sn_hi*u0 + (-sn_lo*u0 + cs_lo*u1); end loop; end if; end; end if; end loop; end Split_at_Negligible_S_of_l; -- Case 3, Perform one QR step. elsif kase = 3 then Get_Shift: declare sm, smm1, emm1, Scale, sl, el, Beta, b, Hyp, Shift : Real; begin Scale := Real'Max (Abs S(mn), Real'Max (Abs S(mn-1), Real'Max (Abs E(mn-1), Real'Max (Abs S(l), Abs E(l))))); Scale := (Scale + Min_Allowed_Real); -- Scale >= 0 Scale := Two ** (-Real'Exponent (Scale)); sl := S(l) * Scale; el := E(l) * Scale; sm := S(mn) * Scale; smm1 := S(mn-1) * Scale; emm1 := E(mn-1) * Scale; Beta := ((smm1 + sm) * (smm1 - sm) + emm1*emm1) * Half; b := sm * emm1; Shift := Zero; if Abs Beta > Zero or Abs b > Zero then Hyp := Hypo.Hypotenuse (Beta, b); if Beta < Zero then Hyp := -Hyp; end if; Shift := b * (b / (Beta + Hyp)); end if; --Eig_1 := smm1**2 + emm1**2 + Shift; --Eig_2 := sm**2 - Shift; -- e(mn) = negligable --f := sl**2 - Eig_2; f := (sl + sm) * (sl - sm) + Shift; g := sl * el; end Get_Shift; Chase_Zeros: declare sn_lo, sn_hi, cs_lo, cs_hi, hypot : Real; v0, v1, u0, u1, tmp : Real; cs_hi_is_one : Boolean; begin for k in l .. mn-1 loop -- sn := g / sqrt (g*g + f*f) = g / hypot -- cs := f / sqrt (g*g + f*f) = f / hypot Rotation_Factors (g, f, sn_lo, sn_hi, cs_lo, cs_hi, hypot, cs_hi_is_one); if k /= l then E(k-1) := hypot; end if; tmp := (cs_lo*S(k) + sn_lo*E(k)); f := tmp + cs_hi*S(k) + sn_hi*E(k); tmp := (cs_lo*E(k) - sn_lo*S(k)); E(k) := tmp + cs_hi*E(k) - sn_hi*S(k); g := sn_lo * S(k+1) + sn_hi * S(k+1); S(k+1) := cs_lo * S(k+1) + cs_hi * S(k+1); if Matrix_V_Desired then if cs_hi_is_one then -- cs_hi = (+/-)1, sn_hi = 0 for r in Starting_Col .. Final_Col loop v0 := V(r, k); v1 := V(r, k+1); V(r, k) := cs_hi*v0 + ( cs_lo*v0 + sn_lo*v1); V(r, k+1) := cs_hi*v1 + (-sn_lo*v0 + cs_lo*v1); end loop; else -- cs_hi = 0, sn_hi = (+/-)1 for r in Starting_Col .. Final_Col loop v0 := V(r, k); v1 := V(r, k+1); V(r, k) := sn_hi*v1 + ( cs_lo*v0 + sn_lo*v1); V(r, k+1) := -sn_hi*v0 + (-sn_lo*v0 + cs_lo*v1); end loop; end if; end if; Rotation_Factors (g, f, sn_lo, sn_hi, cs_lo, cs_hi, hypot, cs_hi_is_one); S(k) := hypot; tmp := cs_lo*E(k) + sn_lo*S(k+1); f := tmp + cs_hi*E(k) + sn_hi*S(k+1); tmp := -sn_lo*E(k) + cs_lo*S(k+1); S(k+1) := tmp -sn_hi*E(k) + cs_hi*S(k+1); g := sn_lo * E(k+1) + sn_hi * E(k+1); E(k+1) := cs_lo * E(k+1) + cs_hi * E(k+1); if Matrix_U_Desired and Row_Index (k) < Row_Index'Last then declare k0 : constant Row_Index := Row_Index(k); k1 : constant Row_Index := Row_Index(k+1); begin if cs_hi_is_one then -- |cs_hi| = (+/-)1, sn_hi = 0 for r in Starting_Row .. Final_Row loop u0 := U(r, k0); u1 := U(r, k1); U(r, k0) := cs_hi*u0 + ( cs_lo*u0 + sn_lo*u1); U(r, k1) := cs_hi*u1 + (-sn_lo*u0 + cs_lo*u1); end loop; else -- cs_hi = 0, |sn_hi| = 1 for r in Starting_Row .. Final_Row loop u0 := U(r, k0); u1 := U(r, k1); U(r, k0) := sn_hi*u1 + ( cs_lo*u0 + sn_lo*u1); U(r, k1) := -sn_hi*u0 + (-sn_lo*u0 + cs_lo*u1); end loop; end if; end; end if; end loop; -- k in l .. mn-1 E(mn-1) := f; No_of_Iterations := No_of_Iterations + 1; end Chase_Zeros; -- Completed 1 QR step. -- Case 4, Convergence: elsif kase = 4 then -- Make the singular value nonnegative. if S(l) < Zero then S(l) := -S(l); if Matrix_V_Desired then for r in Starting_Col .. Final_Col loop V(r,l) := -V(r,l); end loop; end if; end if; -- Order singular values largest 1st to smallest last in array S: Sort_Singular_Vals: loop if l = Final_Col then exit Sort_Singular_Vals; end if; if S(l+1) <= S(l) then exit Sort_Singular_Vals; end if; tmp := S(l); S(l) := S(l+1); S(l+1) := tmp; if Matrix_V_Desired and l < Final_Col then for r in Starting_Col .. Final_Col loop tmp := V(r, l); V(r, l) := V(r, l+1); V(r, l+1) := tmp; end loop; end if; if Matrix_U_Desired and Row_Index (l) < Row_Index'Last then declare l0 : constant Row_Index := Row_Index(l); l1 : constant Row_Index := Row_Index(l+1); begin for r in Starting_Row .. Final_Row loop tmp := U(r, l0); U(r, l0) := U(r, l1); U(r, l1) := tmp; end loop; end; end if; l := l + 1; end loop Sort_Singular_Vals; No_of_Iterations := 0; if mn = Starting_Col then exit QR_Iteration; else mn := mn - 1; end if; end if; -- kase 1 through 4 end loop QR_Iteration; -- while mn > Starting_Col end QR_For_Singular_Vals; -------------------- -- SVD_Decompose -- -------------------- procedure SVD_Decompose (A : in out A_Matrix; -- m x n U : out U_matrix; -- m x m V : out V_matrix; -- n x n S : out Singular_Vector; Id_of_1st_S_Val : out Col_Index; Starting_Col : in Col_Index; -- Starting_Row is set to Starting_Col Final_Col : in Col_Index; Final_Row : in Row_Index; Matrix_U_Desired : in Boolean := True; Matrix_V_Desired : in Boolean := True) is Starting_Row : constant Row_Index := Row_Index (Starting_Col); E : Singular_Vector; Bidiag_Final_Col : Col_Index; begin -- Init out parameters: Id_of_1st_S_Val := Starting_Col; -- modified only if convergence fails. -- If U and V are undesirable, then don't fill up memory with Zero's. -- Sometimes that frees up memory. if Matrix_U_Desired then U := (others => (others => Zero)); for r in Row_Index loop U(r, r) := One; end loop; end if; if Matrix_V_Desired then V := (others => (others => Zero)); for c in Col_Index loop V(c, c) := One; end loop; end if; E := (others => Zero); S := (others => Zero); if Int64 (Row_Index'Last) - Int64 (Row_Index'First) < 1 then raise Constraint_Error with "Matrix too small"; end if; if Int64 (Col_Index'Last) - Int64 (Col_Index'First) < 1 then raise Constraint_Error with "Matrix too small"; end if; -- Must have Starting_Col = Starting_Row. Just to make things less error -- prone, let's require the same of the Matrix Index types: if Int64 (Col_Index'First) /= Int64 (Row_Index'First) then raise Constraint_Error with "Must have Col_Index'First = Row_Index'First"; end if; -- Can SVD square matrices only, or matrices with more Rows than Columns: if Int64 (Final_Row) < Int64 (Final_Col) then raise Constraint_Error with "Can't have Final_Row < Final_Col"; end if; -- Can SVD matrices with 3 or more Columns: if Int64 (Final_Col) < Int64 (Starting_Col) + 2 then raise Constraint_Error with "Can't have Final_Col < Starting_Col + 2"; end if; -- Reduce A to bidiagonal form, storing the diagonal elements -- in S and the super-diagonal elements in E. Householder_Bidiagonalize (A, -- A becomes the B in A = U * B * V' U, V, -- out params E, S, -- out params Bidiag_Final_Col, Final_Row, Starting_Col, Final_Col, Matrix_U_Desired, Matrix_V_Desired); -- Iterate for the singular values. QR_For_Singular_Vals (E, S, U, V, Id_of_1st_S_Val, Starting_Col, Bidiag_Final_Col, Starting_Row, Final_Row, Matrix_U_Desired, Matrix_V_Desired); end SVD_Decompose; end Golub_SVD;
generic type Signed_Int_Type is range <>; package Fmt.Generic_Signed_Int_Argument is function To_Argument (X : Signed_Int_Type) return Argument_Type'Class with Inline; function "&" (Args : Arguments; X : Signed_Int_Type) return Arguments with Inline; private type Digit_Style is (DS_Lowercase, DS_Uppercase); subtype Number_Base is Positive range 2 .. 36; type Signed_Int_Argument_Type is new Argument_Type with record Value : Signed_Int_Type; Width : Natural := 0; Align : Text_Align := 'R'; Fill : Character := ' '; Base : Number_Base := 10; Style : Digit_Style := DS_Lowercase; end record; overriding procedure Parse (Self : in out Signed_Int_Argument_Type; Edit : String); overriding function Get_Length (Self : in out Signed_Int_Argument_Type) return Natural; overriding procedure Put ( Self : in out Signed_Int_Argument_Type; Edit : String; To : in out String); end Fmt.Generic_Signed_Int_Argument;