CombinedText
stringlengths
4
3.42M
------------------------------------------------------------------------------ -- -- -- Ada binding for OpenGL/WebGL -- -- -- -- Examples Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2018, Vadim Godunko <vgodunko@gmail.com> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ with League.Strings; with WebAPI.HTML.Globals; with WebAPI.HTML.Canvas_Elements; with OpenGL.Contexts; with OpenGL.Textures; with Pyramid.Programs; procedure Pyramid.Driver is use type OpenGL.GLfloat; Points : constant Pyramid.Programs.Vertex_Data_Array := (((0.0, 0.5, 0.0), (0.5, 1.0)), ((0.5, -0.5, 0.0), (1.0, 0.0)), ((-0.5, -0.5, 0.0), (0.0, 0.0))); -- Img : constant array (1 .. 9, 1 .. 3) of OpenGL.GLubyte := -- ((255, 0, 0), (127, 0, 0), (0, 0, 127), -- (127, 255, 0), (0, 127, 0), (0, 0, 127), -- (32, 0, 255), (0, 0, 127), (0,0, 127)); Unit : constant OpenGL.Texture_Unit := 0; Context : OpenGL.Contexts.OpenGL_Context; Buffer : Pyramid.Programs.Vertex_Data_Buffers.OpenGL_Buffer (OpenGL.Vertex); Program : Pyramid.Programs.Pyramid_Program; Texture : OpenGL.Textures.OpenGL_Texture (OpenGL.Texture_2D); begin Context.Create (WebAPI.HTML.Canvas_Elements.HTML_Canvas_Element_Access (WebAPI.HTML.Globals.Window.Get_Document.Get_Element_By_Id (League.Strings.To_Universal_String ("canvas")))); Context.Make_Current; Context.Functions.Enable (OpenGL.GL_DEPTH_TEST); Buffer.Create; Buffer.Bind; Buffer.Allocate (Points); Texture.Create; Texture.Bind (Unit); -- Texture.Set_Image_2D -- (0, OpenGL.GL_RGB, 3, 3, OpenGL.GL_UNSIGNED_BYTE, Img'Address); Texture.Set_Parameter (OpenGL.GL_TEXTURE_MIN_FILTER, OpenGL.GL_LINEAR); Texture.Set_Parameter (OpenGL.GL_TEXTURE_MAG_FILTER, OpenGL.GL_LINEAR); Program.Initialize; Program.Bind; Program.Set_Vertex_Data_Buffer (Buffer); Program.Set_Texture_Unit (Unit); declare use type OpenGL.GLbitfield; Clear_Flag : OpenGL.Clear_Buffer_Mask := OpenGL.GL_DEPTH_BUFFER_BIT + OpenGL.GL_COLOR_BUFFER_BIT; begin Context.Functions.Clear (Clear_Flag); Context.Functions.Draw_Arrays (OpenGL.GL_TRIANGLES, 0, Points'Length); end; end Pyramid.Driver;
------------------------------------------------------------------------------ -- Copyright (C) 2020 by Heisenbug Ltd. (gh+spat@heisenbug.eu) -- -- This work is free. You can redistribute it and/or modify it under the -- terms of the Do What The Fuck You Want To Public License, Version 2, -- as published by Sam Hocevar. See the LICENSE file for more details. ------------------------------------------------------------------------------ pragma License (Unrestricted); ------------------------------------------------------------------------------ -- -- SPARK Proof Analysis Tool -- -- S.P.A.T. - Object representing an entity (name) with a file location based -- on a source line and column. -- ------------------------------------------------------------------------------ with SPAT.Entity_Line; with SPAT.Field_Names; with SPAT.Preconditions; package SPAT.Entity_Location is use all type GNATCOLL.JSON.JSON_Value_Type; --------------------------------------------------------------------------- -- Has_Required_Fields --------------------------------------------------------------------------- function Has_Required_Fields (Object : in JSON_Value) return Boolean is (Preconditions.Ensure_Field (Object => Object, Field => Field_Names.File, Kind => JSON_String_Type) and Preconditions.Ensure_Field (Object => Object, Field => Field_Names.Line, Kind => JSON_Int_Type)); type T is new Entity_Line.T with private; --------------------------------------------------------------------------- -- Create --------------------------------------------------------------------------- overriding function Create (Object : in JSON_Value) return T with Pre => Has_Required_Fields (Object => Object); --------------------------------------------------------------------------- -- "<" --------------------------------------------------------------------------- not overriding function "<" (Left : in T; Right : in T) return Boolean; --------------------------------------------------------------------------- -- Image --------------------------------------------------------------------------- overriding function Image (This : in T) return String; --------------------------------------------------------------------------- -- Source_Column --------------------------------------------------------------------------- not overriding function Source_Column (This : in T) return Natural; private type T is new Entity_Line.T with record Column : Natural; end record; --------------------------------------------------------------------------- -- Source_Column --------------------------------------------------------------------------- not overriding function Source_Column (This : in T) return Natural is (This.Column); end SPAT.Entity_Location;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- S Y S T E M . E X P _ M O D -- -- -- -- B o d y -- -- -- -- Copyright (C) 1992-2020, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ package body System.Exp_Mod is use System.Unsigned_Types; ----------------- -- Exp_Modular -- ----------------- function Exp_Modular (Left : Unsigned; Modulus : Unsigned; Right : Natural) return Unsigned is Result : Unsigned := 1; Factor : Unsigned := Left; Exp : Natural := Right; function Mult (X, Y : Unsigned) return Unsigned is (Unsigned (Long_Long_Unsigned (X) * Long_Long_Unsigned (Y) mod Long_Long_Unsigned (Modulus))); -- Modular multiplication. Note that we can't take advantage of the -- compiler's circuit, because the modulus is not known statically. 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. -- Note: it is not worth special casing the cases of base values -1,0,+1 -- since the expander does this when the base is a literal, and other -- cases will be extremely rare. if Exp /= 0 then loop if Exp rem 2 /= 0 then Result := Mult (Result, Factor); end if; Exp := Exp / 2; exit when Exp = 0; Factor := Mult (Factor, Factor); end loop; end if; return Result; end Exp_Modular; end System.Exp_Mod;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- S Y S T E M . P A C K _ 5 2 -- -- -- -- B o d y -- -- -- -- Copyright (C) 1992-2020, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ with System.Storage_Elements; with System.Unsigned_Types; package body System.Pack_52 is subtype Bit_Order is System.Bit_Order; Reverse_Bit_Order : constant Bit_Order := Bit_Order'Val (1 - Bit_Order'Pos (System.Default_Bit_Order)); subtype Ofs is System.Storage_Elements.Storage_Offset; subtype Uns is System.Unsigned_Types.Unsigned; subtype N07 is System.Unsigned_Types.Unsigned range 0 .. 7; use type System.Storage_Elements.Storage_Offset; use type System.Unsigned_Types.Unsigned; type Cluster is record E0, E1, E2, E3, E4, E5, E6, E7 : Bits_52; end record; for Cluster use record E0 at 0 range 0 * Bits .. 0 * Bits + Bits - 1; E1 at 0 range 1 * Bits .. 1 * Bits + Bits - 1; E2 at 0 range 2 * Bits .. 2 * Bits + Bits - 1; E3 at 0 range 3 * Bits .. 3 * Bits + Bits - 1; E4 at 0 range 4 * Bits .. 4 * Bits + Bits - 1; E5 at 0 range 5 * Bits .. 5 * Bits + Bits - 1; E6 at 0 range 6 * Bits .. 6 * Bits + Bits - 1; E7 at 0 range 7 * Bits .. 7 * Bits + Bits - 1; end record; for Cluster'Size use Bits * 8; for Cluster'Alignment use Integer'Min (Standard'Maximum_Alignment, 1 + 1 * Boolean'Pos (Bits mod 2 = 0) + 2 * Boolean'Pos (Bits mod 4 = 0)); -- Use maximum possible alignment, given the bit field size, since this -- will result in the most efficient code possible for the field. type Cluster_Ref is access Cluster; type Rev_Cluster is new Cluster with Bit_Order => Reverse_Bit_Order, Scalar_Storage_Order => Reverse_Bit_Order; type Rev_Cluster_Ref is access Rev_Cluster; -- The following declarations are for the case where the address -- passed to GetU_52 or SetU_52 is not guaranteed to be aligned. -- These routines are used when the packed array is itself a -- component of a packed record, and therefore may not be aligned. type ClusterU is new Cluster; for ClusterU'Alignment use 1; type ClusterU_Ref is access ClusterU; type Rev_ClusterU is new ClusterU with Bit_Order => Reverse_Bit_Order, Scalar_Storage_Order => Reverse_Bit_Order; type Rev_ClusterU_Ref is access Rev_ClusterU; ------------ -- Get_52 -- ------------ function Get_52 (Arr : System.Address; N : Natural; Rev_SSO : Boolean) return Bits_52 is A : constant System.Address := Arr + Bits * Ofs (Uns (N) / 8); C : Cluster_Ref with Address => A'Address, Import; RC : Rev_Cluster_Ref with Address => A'Address, Import; begin if Rev_SSO then case N07 (Uns (N) mod 8) is when 0 => return RC.E0; when 1 => return RC.E1; when 2 => return RC.E2; when 3 => return RC.E3; when 4 => return RC.E4; when 5 => return RC.E5; when 6 => return RC.E6; when 7 => return RC.E7; end case; else case N07 (Uns (N) mod 8) is when 0 => return C.E0; when 1 => return C.E1; when 2 => return C.E2; when 3 => return C.E3; when 4 => return C.E4; when 5 => return C.E5; when 6 => return C.E6; when 7 => return C.E7; end case; end if; end Get_52; ------------- -- GetU_52 -- ------------- function GetU_52 (Arr : System.Address; N : Natural; Rev_SSO : Boolean) return Bits_52 is A : constant System.Address := Arr + Bits * Ofs (Uns (N) / 8); C : ClusterU_Ref with Address => A'Address, Import; RC : Rev_ClusterU_Ref with Address => A'Address, Import; begin if Rev_SSO then case N07 (Uns (N) mod 8) is when 0 => return RC.E0; when 1 => return RC.E1; when 2 => return RC.E2; when 3 => return RC.E3; when 4 => return RC.E4; when 5 => return RC.E5; when 6 => return RC.E6; when 7 => return RC.E7; end case; else case N07 (Uns (N) mod 8) is when 0 => return C.E0; when 1 => return C.E1; when 2 => return C.E2; when 3 => return C.E3; when 4 => return C.E4; when 5 => return C.E5; when 6 => return C.E6; when 7 => return C.E7; end case; end if; end GetU_52; ------------ -- Set_52 -- ------------ procedure Set_52 (Arr : System.Address; N : Natural; E : Bits_52; Rev_SSO : Boolean) is A : constant System.Address := Arr + Bits * Ofs (Uns (N) / 8); C : Cluster_Ref with Address => A'Address, Import; RC : Rev_Cluster_Ref with Address => A'Address, Import; begin if Rev_SSO then case N07 (Uns (N) mod 8) is when 0 => RC.E0 := E; when 1 => RC.E1 := E; when 2 => RC.E2 := E; when 3 => RC.E3 := E; when 4 => RC.E4 := E; when 5 => RC.E5 := E; when 6 => RC.E6 := E; when 7 => RC.E7 := E; end case; else case N07 (Uns (N) mod 8) is when 0 => C.E0 := E; when 1 => C.E1 := E; when 2 => C.E2 := E; when 3 => C.E3 := E; when 4 => C.E4 := E; when 5 => C.E5 := E; when 6 => C.E6 := E; when 7 => C.E7 := E; end case; end if; end Set_52; ------------- -- SetU_52 -- ------------- procedure SetU_52 (Arr : System.Address; N : Natural; E : Bits_52; Rev_SSO : Boolean) is A : constant System.Address := Arr + Bits * Ofs (Uns (N) / 8); C : ClusterU_Ref with Address => A'Address, Import; RC : Rev_ClusterU_Ref with Address => A'Address, Import; begin if Rev_SSO then case N07 (Uns (N) mod 8) is when 0 => RC.E0 := E; when 1 => RC.E1 := E; when 2 => RC.E2 := E; when 3 => RC.E3 := E; when 4 => RC.E4 := E; when 5 => RC.E5 := E; when 6 => RC.E6 := E; when 7 => RC.E7 := E; end case; else case N07 (Uns (N) mod 8) is when 0 => C.E0 := E; when 1 => C.E1 := E; when 2 => C.E2 := E; when 3 => C.E3 := E; when 4 => C.E4 := E; when 5 => C.E5 := E; when 6 => C.E6 := E; when 7 => C.E7 := E; end case; end if; end SetU_52; end System.Pack_52;
-- C95087B.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 ASSIGNMENTS TO ENTRY FORMAL PARAMETERS OF UNCONSTRAINED -- RECORD, PRIVATE, AND LIMITED PRIVATE TYPES WITHOUT DEFAULT -- CONSTRAINTS RAISE CONSTRAINT_ERROR IF AN ATTEMPT IS MADE TO CHANGE -- THE CONSTRAINT OF THE ACTUAL PARAMETER. -- SUBTESTS ARE: -- (A) RECORD TYPE. -- (B) PRIVATE TYPE. -- (C) LIMITED PRIVATE TYPE. -- RJW 1/10/86 WITH REPORT; USE REPORT; PROCEDURE C95087B IS BEGIN TEST ( "C95087B", "CHECK ASSIGNMENT TO ENTRY FORMAL PARAMETERS " & "OF UNCONSTRAINED TYPE (WITH NO DEFAULT)" ); -------------------------------------------------- DECLARE -- (A) PACKAGE PKG IS TYPE RECTYPE (CONSTRAINT : INTEGER) IS RECORD INTFIELD : INTEGER; STRFIELD : STRING (1..CONSTRAINT); END RECORD; TASK T IS ENTRY E (REC9 : OUT RECTYPE; REC6 : IN OUT RECTYPE); END T; END PKG; REC9 : PKG.RECTYPE(IDENT_INT(9)) := (IDENT_INT(9), 9, "123456789"); REC6 : PKG.RECTYPE(IDENT_INT(6)) := (IDENT_INT(6), 5, "AEIOUY"); PACKAGE BODY PKG IS TASK BODY T IS REC4 : CONSTANT RECTYPE(IDENT_INT(4)) := (IDENT_INT(4), 4, "OOPS"); BEGIN ACCEPT E (REC9 : OUT RECTYPE; REC6 : IN OUT RECTYPE) DO BEGIN -- (A.1) REC9 := REC6; FAILED ("CONSTRAINT_ERROR NOT RAISED " & "- A.1"); EXCEPTION WHEN CONSTRAINT_ERROR => NULL; WHEN OTHERS => FAILED ("WRONG EXCEPTION RAISED " & "- A.1"); END; -- (A.1) BEGIN -- (A.2) REC6 := REC4; FAILED ("CONSTRAINT_ERROR NOT RAISED " & "- A.2"); EXCEPTION WHEN CONSTRAINT_ERROR => NULL; WHEN OTHERS => FAILED ("WRONG EXCEPTION RAISED " & "- A.2"); END; -- (A.2) REC9 := (IDENT_INT(9), 9, "987654321"); END E; END T; END PKG; BEGIN -- (A) PKG.T.E (REC9, REC6); IF REC9.STRFIELD /= IDENT_STR("987654321") THEN FAILED ("ASSIGNMENT TO REC9 FAILED - (A)"); END IF; END; -- (A) -------------------------------------------------- DECLARE -- (B) PACKAGE PKG IS TYPE RECTYPE (CONSTRAINT : INTEGER) IS PRIVATE; TASK T IS ENTRY E (REC9 : OUT RECTYPE; REC6 : IN OUT RECTYPE); END T; PRIVATE TYPE RECTYPE (CONSTRAINT : INTEGER) IS RECORD INTFIELD : INTEGER; STRFIELD : STRING (1..CONSTRAINT); END RECORD; END PKG; REC9 : PKG.RECTYPE(9); REC6 : PKG.RECTYPE(6); PACKAGE BODY PKG IS TASK BODY T IS REC4 : CONSTANT RECTYPE(4) := (4, 4, "OOPS"); BEGIN ACCEPT E (REC9 : OUT RECTYPE; REC6 : IN OUT RECTYPE) DO BEGIN -- (B.1) REC9 := REC6; FAILED ("CONSTRAINT_ERROR NOT RAISED " & "- B.1"); EXCEPTION WHEN CONSTRAINT_ERROR => NULL; WHEN OTHERS => FAILED ("WRONG EXCEPTION RAISED " & "- B.1"); END; -- (B.1) BEGIN -- (B.2) REC6 := REC4; FAILED ("CONSTRAINT_ERROR NOT RAISED " & "- B.2"); EXCEPTION WHEN CONSTRAINT_ERROR => NULL; WHEN OTHERS => FAILED ("WRONG EXCEPTION RAISED " & "- B.2"); END; -- (B.2) END E; END T; BEGIN REC9 := (9, 9, "123456789"); REC6 := (6, 5, "AEIOUY"); END PKG; BEGIN -- (B) PKG.T.E (REC9, REC6); END; -- (B) -------------------------------------------------- DECLARE -- (C) PACKAGE PKG IS TYPE RECTYPE (CONSTRAINT : INTEGER) IS LIMITED PRIVATE; TASK T IS ENTRY E (REC9 : OUT RECTYPE; REC6 : IN OUT RECTYPE); END T; PRIVATE TYPE RECTYPE (CONSTRAINT : INTEGER) IS RECORD INTFIELD : INTEGER; STRFIELD : STRING (1..CONSTRAINT); END RECORD; END PKG; REC6 : PKG.RECTYPE(IDENT_INT(6)); REC9 : PKG.RECTYPE(IDENT_INT(9)); PACKAGE BODY PKG IS TASK BODY T IS REC4 : CONSTANT RECTYPE(4) := (4, 4, "OOPS"); BEGIN ACCEPT E (REC9 : OUT RECTYPE; REC6 : IN OUT RECTYPE) DO BEGIN -- (C.1) REC9 := REC6; FAILED ("CONSTRAINT_ERROR NOT RAISED " & "- C.1"); EXCEPTION WHEN CONSTRAINT_ERROR => NULL; WHEN OTHERS => FAILED ("WRONG EXCEPTION RAISED " & "- C.1"); END; -- (C.1) BEGIN -- (C.2) REC6 := REC4; FAILED ("CONSTRAINT_ERROR NOT RAISED " & "- C.2"); EXCEPTION WHEN CONSTRAINT_ERROR => NULL; WHEN OTHERS => FAILED ("WRONG EXCEPTION RAISED " & "- C.2"); END; -- (C.2) END E; END T; BEGIN REC6 := (6, 5, "AEIOUY"); REC9 := (9, 9, "123456789"); END PKG; BEGIN -- (C) PKG.T.E (REC9, REC6); END; -- (C) -------------------------------------------------- RESULT; END C95087B;
-- SPDX-License-Identifier: Apache-2.0 -- -- Copyright (c) 2021 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 Orka.SIMD.SSE.Singles; package Orka.SIMD.SSE4_1.Singles.Compare is pragma Pure; use SIMD.SSE.Singles; function Is_Equal (Left, Right : m128) return Boolean; end Orka.SIMD.SSE4_1.Singles.Compare;
------------------------------------------------------------------------------ -- Copyright (c) 2006-2013, Maxim Reznik -- All rights reserved. -- -- Redistribution and use in source and binary forms, with or without -- modification, are permitted provided that the following conditions are met: -- -- * Redistributions of source code must retain the above copyright notice, -- this list of conditions and the following disclaimer. -- * Redistributions in binary form must reproduce the above copyright -- notice, this list of conditions and the following disclaimer in the -- documentation and/or other materials provided with the distribution. -- * Neither the name of the Maxim Reznik, IE nor the names of its -- contributors may be used to endorse or promote products derived from -- this software without specific prior written permission. -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -- AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -- ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE -- LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -- CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -- SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -- INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -- CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -- ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -- POSSIBILITY OF SUCH DAMAGE. ------------------------------------------------------------------------------ package Asis.Gela.Elements.Defs.Types is ----------------------- -- Derived_Type_Node -- ----------------------- type Derived_Type_Node is new Type_Definition_Node with private; type Derived_Type_Ptr is access all Derived_Type_Node; for Derived_Type_Ptr'Storage_Pool use Lists.Pool; function New_Derived_Type_Node (The_Context : ASIS.Context) return Derived_Type_Ptr; function Corresponding_Parent_Subtype (Element : Derived_Type_Node) return Asis.Declaration; procedure Set_Corresponding_Parent_Subtype (Element : in out Derived_Type_Node; Value : in Asis.Declaration); function Corresponding_Root_Type (Element : Derived_Type_Node) return Asis.Declaration; procedure Set_Corresponding_Root_Type (Element : in out Derived_Type_Node; Value : in Asis.Declaration); function Implicit_Inherited_Declarations (Element : Derived_Type_Node; Include_Pragmas : in Boolean := False) return Asis.Element_List; procedure Add_To_Implicit_Inherited_Declarations (Element : in out Derived_Type_Node; Item : in Asis.Element); function Implicit_Inherited_Subprograms (Element : Derived_Type_Node; Include_Pragmas : in Boolean := False) return Asis.Element_List; procedure Add_To_Implicit_Inherited_Subprograms (Element : in out Derived_Type_Node; Item : in Asis.Element); function Corresponding_Type_Structure (Element : Derived_Type_Node) return Asis.Declaration; procedure Set_Corresponding_Type_Structure (Element : in out Derived_Type_Node; Value : in Asis.Declaration); function Trait_Kind (Element : Derived_Type_Node) return Asis.Trait_Kinds; procedure Set_Trait_Kind (Element : in out Derived_Type_Node; Value : in Asis.Trait_Kinds); function Parent_Subtype_Indication (Element : Derived_Type_Node) return Asis.Subtype_Indication; procedure Set_Parent_Subtype_Indication (Element : in out Derived_Type_Node; Value : in Asis.Subtype_Indication); function Has_Limited (Element : Derived_Type_Node) return Boolean; procedure Set_Has_Limited (Element : in out Derived_Type_Node; Value : in Boolean); function Has_Abstract (Element : Derived_Type_Node) return Boolean; procedure Set_Has_Abstract (Element : in out Derived_Type_Node; Value : in Boolean); function Type_Definition_Kind (Element : Derived_Type_Node) return Asis.Type_Kinds; function Children (Element : access Derived_Type_Node) return Traverse_List; function Clone (Element : Derived_Type_Node; Parent : Asis.Element) return Asis.Element; procedure Copy (Source : in Asis.Element; Target : access Derived_Type_Node; Cloner : in Cloner_Class; Parent : in Asis.Element); ----------------------------------- -- Derived_Record_Extension_Node -- ----------------------------------- type Derived_Record_Extension_Node is new Derived_Type_Node with private; type Derived_Record_Extension_Ptr is access all Derived_Record_Extension_Node; for Derived_Record_Extension_Ptr'Storage_Pool use Lists.Pool; function New_Derived_Record_Extension_Node (The_Context : ASIS.Context) return Derived_Record_Extension_Ptr; function Progenitor_List (Element : Derived_Record_Extension_Node; Include_Pragmas : in Boolean := False) return Asis.Element_List; procedure Set_Progenitor_List (Element : in out Derived_Record_Extension_Node; Value : in Asis.Element); function Progenitor_List_List (Element : Derived_Record_Extension_Node) return Asis.Element; function Get_Record_Definition (Element : Derived_Record_Extension_Node) return Asis.Definition; procedure Set_Record_Definition (Element : in out Derived_Record_Extension_Node; Value : in Asis.Definition); function Type_Definition_Kind (Element : Derived_Record_Extension_Node) return Asis.Type_Kinds; function Children (Element : access Derived_Record_Extension_Node) return Traverse_List; function Clone (Element : Derived_Record_Extension_Node; Parent : Asis.Element) return Asis.Element; procedure Copy (Source : in Asis.Element; Target : access Derived_Record_Extension_Node; Cloner : in Cloner_Class; Parent : in Asis.Element); --------------------------- -- Enumeration_Type_Node -- --------------------------- type Enumeration_Type_Node is new Type_Definition_Node with private; type Enumeration_Type_Ptr is access all Enumeration_Type_Node; for Enumeration_Type_Ptr'Storage_Pool use Lists.Pool; function New_Enumeration_Type_Node (The_Context : ASIS.Context) return Enumeration_Type_Ptr; function Enumeration_Literal_Declarations (Element : Enumeration_Type_Node; Include_Pragmas : in Boolean := False) return Asis.Element_List; procedure Set_Enumeration_Literal_Declarations (Element : in out Enumeration_Type_Node; Value : in Asis.Element); function Enumeration_Literal_Declarations_List (Element : Enumeration_Type_Node) return Asis.Element; function Type_Definition_Kind (Element : Enumeration_Type_Node) return Asis.Type_Kinds; function Children (Element : access Enumeration_Type_Node) return Traverse_List; function Clone (Element : Enumeration_Type_Node; Parent : Asis.Element) return Asis.Element; procedure Copy (Source : in Asis.Element; Target : access Enumeration_Type_Node; Cloner : in Cloner_Class; Parent : in Asis.Element); ------------------------------ -- Signed_Integer_Type_Node -- ------------------------------ type Signed_Integer_Type_Node is new Type_Definition_Node with private; type Signed_Integer_Type_Ptr is access all Signed_Integer_Type_Node; for Signed_Integer_Type_Ptr'Storage_Pool use Lists.Pool; function New_Signed_Integer_Type_Node (The_Context : ASIS.Context) return Signed_Integer_Type_Ptr; function Integer_Constraint (Element : Signed_Integer_Type_Node) return Asis.Range_Constraint; procedure Set_Integer_Constraint (Element : in out Signed_Integer_Type_Node; Value : in Asis.Range_Constraint); function Type_Definition_Kind (Element : Signed_Integer_Type_Node) return Asis.Type_Kinds; function Children (Element : access Signed_Integer_Type_Node) return Traverse_List; function Clone (Element : Signed_Integer_Type_Node; Parent : Asis.Element) return Asis.Element; procedure Copy (Source : in Asis.Element; Target : access Signed_Integer_Type_Node; Cloner : in Cloner_Class; Parent : in Asis.Element); ----------------------- -- Modular_Type_Node -- ----------------------- type Modular_Type_Node is new Type_Definition_Node with private; type Modular_Type_Ptr is access all Modular_Type_Node; for Modular_Type_Ptr'Storage_Pool use Lists.Pool; function New_Modular_Type_Node (The_Context : ASIS.Context) return Modular_Type_Ptr; function Mod_Static_Expression (Element : Modular_Type_Node) return Asis.Expression; procedure Set_Mod_Static_Expression (Element : in out Modular_Type_Node; Value : in Asis.Expression); function Type_Definition_Kind (Element : Modular_Type_Node) return Asis.Type_Kinds; function Children (Element : access Modular_Type_Node) return Traverse_List; function Clone (Element : Modular_Type_Node; Parent : Asis.Element) return Asis.Element; procedure Copy (Source : in Asis.Element; Target : access Modular_Type_Node; Cloner : in Cloner_Class; Parent : in Asis.Element); -------------------- -- Root_Type_Node -- -------------------- type Root_Type_Node is new Type_Definition_Node with private; type Root_Type_Ptr is access all Root_Type_Node; for Root_Type_Ptr'Storage_Pool use Lists.Pool; function New_Root_Type_Node (The_Context : ASIS.Context) return Root_Type_Ptr; function Root_Type_Kind (Element : Root_Type_Node) return Asis.Root_Type_Kinds; procedure Set_Root_Type_Kind (Element : in out Root_Type_Node; Value : in Asis.Root_Type_Kinds); function Type_Definition_Kind (Element : Root_Type_Node) return Asis.Type_Kinds; function Clone (Element : Root_Type_Node; Parent : Asis.Element) return Asis.Element; ------------------------- -- Floating_Point_Node -- ------------------------- type Floating_Point_Node is new Type_Definition_Node with private; type Floating_Point_Ptr is access all Floating_Point_Node; for Floating_Point_Ptr'Storage_Pool use Lists.Pool; function New_Floating_Point_Node (The_Context : ASIS.Context) return Floating_Point_Ptr; function Digits_Expression (Element : Floating_Point_Node) return Asis.Expression; procedure Set_Digits_Expression (Element : in out Floating_Point_Node; Value : in Asis.Expression); function Real_Range_Constraint (Element : Floating_Point_Node) return Asis.Range_Constraint; procedure Set_Real_Range_Constraint (Element : in out Floating_Point_Node; Value : in Asis.Range_Constraint); function Type_Definition_Kind (Element : Floating_Point_Node) return Asis.Type_Kinds; function Children (Element : access Floating_Point_Node) return Traverse_List; function Clone (Element : Floating_Point_Node; Parent : Asis.Element) return Asis.Element; procedure Copy (Source : in Asis.Element; Target : access Floating_Point_Node; Cloner : in Cloner_Class; Parent : in Asis.Element); ------------------------------- -- Ordinary_Fixed_Point_Node -- ------------------------------- type Ordinary_Fixed_Point_Node is new Type_Definition_Node with private; type Ordinary_Fixed_Point_Ptr is access all Ordinary_Fixed_Point_Node; for Ordinary_Fixed_Point_Ptr'Storage_Pool use Lists.Pool; function New_Ordinary_Fixed_Point_Node (The_Context : ASIS.Context) return Ordinary_Fixed_Point_Ptr; function Delta_Expression (Element : Ordinary_Fixed_Point_Node) return Asis.Expression; procedure Set_Delta_Expression (Element : in out Ordinary_Fixed_Point_Node; Value : in Asis.Expression); function Real_Range_Constraint (Element : Ordinary_Fixed_Point_Node) return Asis.Range_Constraint; procedure Set_Real_Range_Constraint (Element : in out Ordinary_Fixed_Point_Node; Value : in Asis.Range_Constraint); function Type_Definition_Kind (Element : Ordinary_Fixed_Point_Node) return Asis.Type_Kinds; function Children (Element : access Ordinary_Fixed_Point_Node) return Traverse_List; function Clone (Element : Ordinary_Fixed_Point_Node; Parent : Asis.Element) return Asis.Element; procedure Copy (Source : in Asis.Element; Target : access Ordinary_Fixed_Point_Node; Cloner : in Cloner_Class; Parent : in Asis.Element); ------------------------------ -- Decimal_Fixed_Point_Node -- ------------------------------ type Decimal_Fixed_Point_Node is new Ordinary_Fixed_Point_Node with private; type Decimal_Fixed_Point_Ptr is access all Decimal_Fixed_Point_Node; for Decimal_Fixed_Point_Ptr'Storage_Pool use Lists.Pool; function New_Decimal_Fixed_Point_Node (The_Context : ASIS.Context) return Decimal_Fixed_Point_Ptr; function Digits_Expression (Element : Decimal_Fixed_Point_Node) return Asis.Expression; procedure Set_Digits_Expression (Element : in out Decimal_Fixed_Point_Node; Value : in Asis.Expression); function Type_Definition_Kind (Element : Decimal_Fixed_Point_Node) return Asis.Type_Kinds; function Children (Element : access Decimal_Fixed_Point_Node) return Traverse_List; function Clone (Element : Decimal_Fixed_Point_Node; Parent : Asis.Element) return Asis.Element; procedure Copy (Source : in Asis.Element; Target : access Decimal_Fixed_Point_Node; Cloner : in Cloner_Class; Parent : in Asis.Element); ------------------------------ -- Unconstrained_Array_Node -- ------------------------------ type Unconstrained_Array_Node is new Type_Definition_Node with private; type Unconstrained_Array_Ptr is access all Unconstrained_Array_Node; for Unconstrained_Array_Ptr'Storage_Pool use Lists.Pool; function New_Unconstrained_Array_Node (The_Context : ASIS.Context) return Unconstrained_Array_Ptr; function Index_Subtype_Definitions (Element : Unconstrained_Array_Node; Include_Pragmas : in Boolean := False) return Asis.Element_List; procedure Set_Index_Subtype_Definitions (Element : in out Unconstrained_Array_Node; Value : in Asis.Element); function Index_Subtype_Definitions_List (Element : Unconstrained_Array_Node) return Asis.Element; function Array_Component_Definition (Element : Unconstrained_Array_Node) return Asis.Component_Definition; procedure Set_Array_Component_Definition (Element : in out Unconstrained_Array_Node; Value : in Asis.Component_Definition); function Type_Definition_Kind (Element : Unconstrained_Array_Node) return Asis.Type_Kinds; function Children (Element : access Unconstrained_Array_Node) return Traverse_List; function Clone (Element : Unconstrained_Array_Node; Parent : Asis.Element) return Asis.Element; procedure Copy (Source : in Asis.Element; Target : access Unconstrained_Array_Node; Cloner : in Cloner_Class; Parent : in Asis.Element); ---------------------------- -- Constrained_Array_Node -- ---------------------------- type Constrained_Array_Node is new Type_Definition_Node with private; type Constrained_Array_Ptr is access all Constrained_Array_Node; for Constrained_Array_Ptr'Storage_Pool use Lists.Pool; function New_Constrained_Array_Node (The_Context : ASIS.Context) return Constrained_Array_Ptr; function Discrete_Subtype_Definitions (Element : Constrained_Array_Node; Include_Pragmas : in Boolean := False) return Asis.Element_List; procedure Set_Discrete_Subtype_Definitions (Element : in out Constrained_Array_Node; Value : in Asis.Element); function Discrete_Subtype_Definitions_List (Element : Constrained_Array_Node) return Asis.Element; function Array_Component_Definition (Element : Constrained_Array_Node) return Asis.Component_Definition; procedure Set_Array_Component_Definition (Element : in out Constrained_Array_Node; Value : in Asis.Component_Definition); function Type_Definition_Kind (Element : Constrained_Array_Node) return Asis.Type_Kinds; function Children (Element : access Constrained_Array_Node) return Traverse_List; function Clone (Element : Constrained_Array_Node; Parent : Asis.Element) return Asis.Element; procedure Copy (Source : in Asis.Element; Target : access Constrained_Array_Node; Cloner : in Cloner_Class; Parent : in Asis.Element); ---------------------- -- Record_Type_Node -- ---------------------- type Record_Type_Node is new Type_Definition_Node with private; type Record_Type_Ptr is access all Record_Type_Node; for Record_Type_Ptr'Storage_Pool use Lists.Pool; function New_Record_Type_Node (The_Context : ASIS.Context) return Record_Type_Ptr; function Trait_Kind (Element : Record_Type_Node) return Asis.Trait_Kinds; procedure Set_Trait_Kind (Element : in out Record_Type_Node; Value : in Asis.Trait_Kinds); function Get_Record_Definition (Element : Record_Type_Node) return Asis.Definition; procedure Set_Record_Definition (Element : in out Record_Type_Node; Value : in Asis.Definition); function Has_Limited (Element : Record_Type_Node) return Boolean; procedure Set_Has_Limited (Element : in out Record_Type_Node; Value : in Boolean); function Type_Definition_Kind (Element : Record_Type_Node) return Asis.Type_Kinds; function Children (Element : access Record_Type_Node) return Traverse_List; function Clone (Element : Record_Type_Node; Parent : Asis.Element) return Asis.Element; procedure Copy (Source : in Asis.Element; Target : access Record_Type_Node; Cloner : in Cloner_Class; Parent : in Asis.Element); ----------------------------- -- Tagged_Record_Type_Node -- ----------------------------- type Tagged_Record_Type_Node is new Record_Type_Node with private; type Tagged_Record_Type_Ptr is access all Tagged_Record_Type_Node; for Tagged_Record_Type_Ptr'Storage_Pool use Lists.Pool; function New_Tagged_Record_Type_Node (The_Context : ASIS.Context) return Tagged_Record_Type_Ptr; function Has_Abstract (Element : Tagged_Record_Type_Node) return Boolean; procedure Set_Has_Abstract (Element : in out Tagged_Record_Type_Node; Value : in Boolean); function Has_Tagged (Element : Tagged_Record_Type_Node) return Boolean; procedure Set_Has_Tagged (Element : in out Tagged_Record_Type_Node; Value : in Boolean); function Type_Definition_Kind (Element : Tagged_Record_Type_Node) return Asis.Type_Kinds; function Clone (Element : Tagged_Record_Type_Node; Parent : Asis.Element) return Asis.Element; procedure Copy (Source : in Asis.Element; Target : access Tagged_Record_Type_Node; Cloner : in Cloner_Class; Parent : in Asis.Element); ------------------------- -- Interface_Type_Node -- ------------------------- type Interface_Type_Node is new Type_Definition_Node with private; type Interface_Type_Ptr is access all Interface_Type_Node; for Interface_Type_Ptr'Storage_Pool use Lists.Pool; function New_Interface_Type_Node (The_Context : ASIS.Context) return Interface_Type_Ptr; function Interface_Kind (Element : Interface_Type_Node) return Asis.Interface_Kinds; procedure Set_Interface_Kind (Element : in out Interface_Type_Node; Value : in Asis.Interface_Kinds); function Has_Limited (Element : Interface_Type_Node) return Boolean; procedure Set_Has_Limited (Element : in out Interface_Type_Node; Value : in Boolean); function Has_Synchronized (Element : Interface_Type_Node) return Boolean; procedure Set_Has_Synchronized (Element : in out Interface_Type_Node; Value : in Boolean); function Has_Protected (Element : Interface_Type_Node) return Boolean; procedure Set_Has_Protected (Element : in out Interface_Type_Node; Value : in Boolean); function Has_Task (Element : Interface_Type_Node) return Boolean; procedure Set_Has_Task (Element : in out Interface_Type_Node; Value : in Boolean); function Progenitor_List (Element : Interface_Type_Node; Include_Pragmas : in Boolean := False) return Asis.Element_List; procedure Set_Progenitor_List (Element : in out Interface_Type_Node; Value : in Asis.Element); function Progenitor_List_List (Element : Interface_Type_Node) return Asis.Element; function Implicit_Inherited_Subprograms (Element : Interface_Type_Node; Include_Pragmas : in Boolean := False) return Asis.Element_List; procedure Add_To_Implicit_Inherited_Subprograms (Element : in out Interface_Type_Node; Item : in Asis.Element); function Type_Definition_Kind (Element : Interface_Type_Node) return Asis.Type_Kinds; function Children (Element : access Interface_Type_Node) return Traverse_List; function Clone (Element : Interface_Type_Node; Parent : Asis.Element) return Asis.Element; procedure Copy (Source : in Asis.Element; Target : access Interface_Type_Node; Cloner : in Cloner_Class; Parent : in Asis.Element); ---------------------- -- Access_Type_Node -- ---------------------- type Access_Type_Node is new Type_Definition_Node with private; type Access_Type_Ptr is access all Access_Type_Node; for Access_Type_Ptr'Storage_Pool use Lists.Pool; function New_Access_Type_Node (The_Context : ASIS.Context) return Access_Type_Ptr; function Access_Type_Kind (Element : Access_Type_Node) return Asis.Access_Type_Kinds; procedure Set_Access_Type_Kind (Element : in out Access_Type_Node; Value : in Asis.Access_Type_Kinds); function Get_Access_To_Object_Definition (Element : Access_Type_Node) return Asis.Subtype_Indication; procedure Set_Access_To_Object_Definition (Element : in out Access_Type_Node; Value : in Asis.Subtype_Indication); function Access_To_Subprogram_Parameter_Profile (Element : Access_Type_Node; Include_Pragmas : in Boolean := False) return Asis.Element_List; procedure Set_Access_To_Subprogram_Parameter_Profile (Element : in out Access_Type_Node; Value : in Asis.Element); function Access_To_Subprogram_Parameter_Profile_List (Element : Access_Type_Node) return Asis.Element; function Access_To_Function_Result_Subtype (Element : Access_Type_Node) return Asis.Definition; procedure Set_Access_To_Function_Result_Subtype (Element : in out Access_Type_Node; Value : in Asis.Definition); function Has_Null_Exclusion (Element : Access_Type_Node) return Boolean; procedure Set_Has_Null_Exclusion (Element : in out Access_Type_Node; Value : in Boolean); function Type_Definition_Kind (Element : Access_Type_Node) return Asis.Type_Kinds; function Children (Element : access Access_Type_Node) return Traverse_List; function Clone (Element : Access_Type_Node; Parent : Asis.Element) return Asis.Element; procedure Copy (Source : in Asis.Element; Target : access Access_Type_Node; Cloner : in Cloner_Class; Parent : in Asis.Element); private type Derived_Type_Node is new Type_Definition_Node with record Corresponding_Parent_Subtype : aliased Asis.Declaration; Corresponding_Root_Type : aliased Asis.Declaration; Implicit_Inherited_Declarations : aliased Secondary_Declaration_Lists.List_Node; Implicit_Inherited_Subprograms : aliased Secondary_Declaration_Lists.List_Node; Corresponding_Type_Structure : aliased Asis.Declaration; Trait_Kind : aliased Asis.Trait_Kinds := An_Ordinary_Trait; Parent_Subtype_Indication : aliased Asis.Subtype_Indication; Has_Limited : aliased Boolean := False; Has_Abstract : aliased Boolean := False; end record; type Derived_Record_Extension_Node is new Derived_Type_Node with record Progenitor_List : aliased Primary_Expression_Lists.List; Record_Definition : aliased Asis.Definition; end record; type Enumeration_Type_Node is new Type_Definition_Node with record Enumeration_Literal_Declarations : aliased Primary_Declaration_Lists.List; end record; type Signed_Integer_Type_Node is new Type_Definition_Node with record Integer_Constraint : aliased Asis.Range_Constraint; end record; type Modular_Type_Node is new Type_Definition_Node with record Mod_Static_Expression : aliased Asis.Expression; end record; type Root_Type_Node is new Type_Definition_Node with record Root_Type_Kind : aliased Asis.Root_Type_Kinds := Not_A_Root_Type_Definition; end record; type Floating_Point_Node is new Type_Definition_Node with record Digits_Expression : aliased Asis.Expression; Real_Range_Constraint : aliased Asis.Range_Constraint; end record; type Ordinary_Fixed_Point_Node is new Type_Definition_Node with record Delta_Expression : aliased Asis.Expression; Real_Range_Constraint : aliased Asis.Range_Constraint; end record; type Decimal_Fixed_Point_Node is new Ordinary_Fixed_Point_Node with record Digits_Expression : aliased Asis.Expression; end record; type Unconstrained_Array_Node is new Type_Definition_Node with record Index_Subtype_Definitions : aliased Primary_Identifier_Lists.List; Array_Component_Definition : aliased Asis.Component_Definition; end record; type Constrained_Array_Node is new Type_Definition_Node with record Discrete_Subtype_Definitions : aliased Primary_Definition_Lists.List; Array_Component_Definition : aliased Asis.Component_Definition; end record; type Record_Type_Node is new Type_Definition_Node with record Trait_Kind : aliased Asis.Trait_Kinds := An_Ordinary_Trait; Record_Definition : aliased Asis.Definition; Has_Limited : aliased Boolean := False; end record; type Tagged_Record_Type_Node is new Record_Type_Node with record Has_Abstract : aliased Boolean := False; Has_Tagged : aliased Boolean := False; end record; type Interface_Type_Node is new Type_Definition_Node with record Interface_Kind : aliased Asis.Interface_Kinds := Not_An_Interface; Has_Limited : aliased Boolean := False; Has_Synchronized : aliased Boolean := False; Has_Protected : aliased Boolean := False; Has_Task : aliased Boolean := False; Progenitor_List : aliased Primary_Expression_Lists.List; Implicit_Inherited_Subprograms : aliased Secondary_Declaration_Lists.List_Node; end record; type Access_Type_Node is new Type_Definition_Node with record Access_Type_Kind : aliased Asis.Access_Type_Kinds := A_Pool_Specific_Access_To_Variable; Access_To_Object_Definition : aliased Asis.Subtype_Indication; Access_To_Subprogram_Parameter_Profile : aliased Primary_Parameter_Lists.List; Access_To_Function_Result_Subtype : aliased Asis.Definition; Has_Null_Exclusion : aliased Boolean := False; end record; end Asis.Gela.Elements.Defs.Types;
----------------------------------------------------------------------- -- awa-converters-dates -- Date Converters -- Copyright (C) 2012, 2013, 2014 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.Calendar; with Ada.Exceptions; with Ada.Strings.Unbounded; with Util.Locales; with Util.Dates.Formats; with Util.Properties.Bundles; with Util.Beans.Objects.Time; with ASF.Locales; with ASF.Utils; with ASF.Applications.Main; package body AWA.Converters.Dates is ONE_HOUR : constant Duration := 3600.0; ONE_DAY : constant Duration := 24 * ONE_HOUR; -- ------------------------------ -- Convert the object value into a string. The object value is associated -- with the specified component. -- If the string cannot be converted, the Invalid_Conversion exception should be raised. -- ------------------------------ overriding function To_String (Convert : in Relative_Date_Converter; Context : in ASF.Contexts.Faces.Faces_Context'Class; Component : in ASF.Components.Base.UIComponent'Class; Value : in Util.Beans.Objects.Object) return String is Bundle : ASF.Locales.Bundle; Locale : constant Util.Locales.Locale := Context.Get_Locale; begin begin ASF.Applications.Main.Load_Bundle (Context.Get_Application.all, Name => "dates", Locale => Util.Locales.To_String (Locale), Bundle => Bundle); exception when E : Util.Properties.Bundles.NO_BUNDLE => Component.Log_Error ("Cannot localize dates: {0}", Ada.Exceptions.Exception_Message (E)); end; -- Convert the value as a date here so that we can raise an Invalid_Conversion exception. declare use Ada.Calendar; Date : constant Ada.Calendar.Time := Util.Beans.Objects.Time.To_Time (Value); Now : constant Ada.Calendar.Time := Ada.Calendar.Clock; Dt : constant Duration := Now - Date; Values : ASF.Utils.Object_Array (1 .. 1); Result : Ada.Strings.Unbounded.Unbounded_String; begin if Dt < 60.0 then return Bundle.Get ("date_moment_ago"); elsif Dt < 120.0 then return Bundle.Get ("date_minute_ago"); elsif Dt < ONE_HOUR then Values (1) := Util.Beans.Objects.To_Object (Natural (Dt / 60.0)); ASF.Utils.Formats.Format (Bundle.Get ("date_minutes_ago"), Values, Result); elsif Dt < 2 * ONE_HOUR then Values (1) := Util.Beans.Objects.To_Object (Natural (Dt / 60.0)); ASF.Utils.Formats.Format (Bundle.Get ("date_hour_ago"), Values, Result); elsif Dt < ONE_DAY then Values (1) := Util.Beans.Objects.To_Object (Natural (Dt / ONE_HOUR)); ASF.Utils.Formats.Format (Bundle.Get ("date_hours_ago"), Values, Result); elsif Dt < 2 * ONE_DAY then Values (1) := Util.Beans.Objects.To_Object (Natural (Dt / ONE_HOUR)); ASF.Utils.Formats.Format (Bundle.Get ("date_day_ago"), Values, Result); elsif Dt < 7 * ONE_DAY then Values (1) := Util.Beans.Objects.To_Object (Natural (Dt / ONE_DAY)); ASF.Utils.Formats.Format (Bundle.Get ("date_days_ago"), Values, Result); else declare use ASF.Converters.Dates; Pattern : constant String := Date_Converter'Class (Convert).Get_Pattern (Context, Bundle, Component); begin return Util.Dates.Formats.Format (Pattern, Date, Bundle); end; end if; return Ada.Strings.Unbounded.To_String (Result); end; exception when E : others => raise ASF.Converters.Invalid_Conversion with Ada.Exceptions.Exception_Message (E); end To_String; end AWA.Converters.Dates;
-- Copyright 2008 Free Software Foundation, Inc. -- -- This program is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- the Free Software Foundation; either version 3 of the License, or -- (at your option) any later version. -- -- This program is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- GNU General Public License for more details. -- -- You should have received a copy of the GNU General Public License -- along with this program. If not, see <http://www.gnu.org/licenses/>. package body Pck is procedure Do_Nothing (A : System.Address) is begin null; end Do_Nothing; end Pck;
------------------------------------------------------------------------------ -- G E L A A S I S -- -- ASIS implementation for Gela project, a portable Ada compiler -- -- http://gela.ada-ru.org -- -- - - - - - - - - - - - - - - - -- -- Read copyright and license at the end of this file -- ------------------------------------------------------------------------------ -- $Revision: 209 $ $Date: 2013-11-30 21:03:24 +0200 (Сб., 30 нояб. 2013) $: with Asis.Gela.Units; use Asis.Gela.Units; with Asis.Gela.Lists; with Asis.Gela.Library; with Asis.Gela.Contexts; with Asis.Gela.Normalizer; with Asis.Gela.Element_Utils; package body Asis.Gela.Unit_Utils is --------------- -- Add_Child -- --------------- procedure Add_Child (The_Unit : Compilation_Unit; The_Child : Compilation_Unit) is Parent : Any_Compilation_Unit_Node renames Any_Compilation_Unit_Node (The_Unit.all); Child : Any_Compilation_Unit_Node renames Any_Compilation_Unit_Node (The_Child.all); begin Add_To_Corresponding_Children (Parent, The_Child); Set_Corresponding_Parent_Declaration (Child, The_Unit); end Add_Child; ---------------- -- Add_Pragma -- ---------------- procedure Add_Pragma (The_Unit : Asis.Element; The_Pragma : Asis.Element; To_Clause : Boolean := False) is use Lists.Primary_Clause_Lists; Unit : Any_Compilation_Unit_Node renames Any_Compilation_Unit_Node (The_Unit.all); Clauses : List := List (Context_Clause_Elements_List (Unit)); begin Normalizer.Normalize_Pragma (The_Pragma, Asis.Compilation_Unit (The_Unit)); if To_Clause then if Clauses = null then Clauses := new List_Node; Set_Context_Clause_Elements (Unit, Asis.Element (Clauses)); end if; Add (Clauses.all, The_Pragma); else Add_To_Compilation_Pragmas (Unit, The_Pragma); end if; end Add_Pragma; ----------------- -- Add_Subunit -- ----------------- procedure Add_Subunit (The_Unit : Compilation_Unit; The_Subunit : Compilation_Unit) is Parent : Any_Compilation_Unit_Node renames Any_Compilation_Unit_Node (The_Unit.all); Subunit : Any_Compilation_Unit_Node renames Any_Compilation_Unit_Node (The_Subunit.all); begin Add_To_Subunits (Parent, The_Subunit); Set_Corresponding_Subunit_Parent_Body (Subunit, The_Unit); end Add_Subunit; ----------------- -- Compilation -- ----------------- function Compilation (The_Unit : Compilation_Unit) return Compilations.Compilation is Unit : Any_Compilation_Unit_Node renames Any_Compilation_Unit_Node (The_Unit.all); begin return Compilation (Unit); end Compilation; ------------------------------ -- Is_Compilation_Unit_Body -- ------------------------------ function Is_Compilation_Unit_Body (The_Unit : Asis.Compilation_Unit) return Boolean is Kind : constant Unit_Kinds := Unit_Kind (The_Unit.all); begin return Kind in A_Procedure_Body .. A_Protected_Body_Subunit; end Is_Compilation_Unit_Body; ----------------------------- -- Is_Configuration_Pragma -- ----------------------------- function Is_Configuration_Pragma (Kind : Pragma_Kinds) return Boolean is List : constant array (Positive range <>) of Pragma_Kinds := (An_Assertion_Policy_Pragma, A_Detect_Blocking_Pragma, A_Discard_Names_Pragma, A_Locking_Policy_Pragma, A_Normalize_Scalars_Pragma, A_Partition_Elaboration_Policy_Pragma, A_Priority_Specific_Dispatching_Pragma, A_Profile_Pragma, A_Queuing_Policy_Pragma, A_Restrictions_Pragma, A_Reviewable_Pragma, A_Suppress_Pragma, A_Task_Dispatching_Policy_Pragma, An_Unsuppress_Pragma); begin for I in List'Range loop if List (I) = Kind then return True; end if; end loop; return False; end Is_Configuration_Pragma; ---------------------------- -- Is_Program_Unit_Pragma -- ---------------------------- function Is_Program_Unit_Pragma (Kind : Pragma_Kinds) return Boolean is List : constant array (Positive range <>) of Pragma_Kinds := (An_All_Calls_Remote_Pragma, A_Convention_Pragma, An_Elaborate_Body_Pragma, An_Export_Pragma, An_Import_Pragma, An_Inline_Pragma, A_Preelaborate_Pragma, A_Pure_Pragma, A_Remote_Call_Interface_Pragma, A_Remote_Types_Pragma, A_Shared_Passive_Pragma, An_Unknown_Pragma); begin for I in List'Range loop if List (I) = Kind then return True; end if; end loop; return False; end Is_Program_Unit_Pragma; --------------------------- -- Make_Nonexistent_Unit -- --------------------------- function Make_Nonexistent_Unit (The_Context : Context; Full_Unit_Name : Program_Text; Unit_Kind : Unit_Kinds) return Compilation_Unit is Result : constant Any_Compilation_Unit_Ptr := new Any_Compilation_Unit_Node; begin Set_Unit_Kind (Result.all, Unit_Kind); Set_Unit_Class (Result.all, Not_A_Class); Set_Unit_Origin (Result.all, Not_An_Origin); Set_Enclosing_Context (Result.all, The_Context); Set_Corresponding_Declaration (Result.all, Compilation_Unit (Result)); Set_Corresponding_Body (Result.all, Compilation_Unit (Result)); Set_Unit_Full_Name (Result.all, Full_Unit_Name); return Compilation_Unit (Result); end Make_Nonexistent_Unit; ---------------------------- -- Make_Limited_View_Unit -- ---------------------------- function Make_Limited_View_Unit (The_Context : Context; Declaration : Compilation_Unit) return Compilation_Unit is Name : constant Wide_String := Unit_Full_Name (Declaration.all); Result : constant Any_Compilation_Unit_Ptr := new Any_Compilation_Unit_Node; begin Set_Unit_Kind (Result.all, An_Unknown_Unit); Set_Unit_Class (Result.all, Unit_Class (Declaration.all)); Set_Unit_Origin (Result.all, An_Implementation_Unit); Set_Enclosing_Context (Result.all, The_Context); Set_Corresponding_Declaration (Result.all, Declaration); Set_Unit_Full_Name (Result.all, Name); Set_Unique_Name (Compilation_Unit (Result)); return Compilation_Unit (Result); end Make_Limited_View_Unit; --------------------------- -- Remove_Context_Clause -- --------------------------- procedure Remove_Context_Clause (The_Unit : Compilation_Unit; Element : Asis.Element) is use Asis.Gela.Lists; Unit : Any_Compilation_Unit_Node renames Any_Compilation_Unit_Node (The_Unit.all); Items : constant Asis.Element := Context_Clause_Elements_List (Unit); List : Primary_Clause_Lists.List := Primary_Clause_Lists.List (Items); begin Primary_Clause_Lists.Remove (List.all, Element); end Remove_Context_Clause; -------------- -- Set_Body -- -------------- procedure Set_Body (The_Unit : Compilation_Unit; The_Body : Compilation_Unit) is Decl : Any_Compilation_Unit_Node renames Any_Compilation_Unit_Node (The_Unit.all); Impl : Any_Compilation_Unit_Node renames Any_Compilation_Unit_Node (The_Body.all); begin Set_Corresponding_Body (Decl, The_Body); Set_Corresponding_Declaration (Impl, The_Unit); end Set_Body; ----------------------------- -- Set_Can_Be_Main_Program -- ----------------------------- procedure Set_Can_Be_Main_Program (Unit : Compilation_Unit) is The_Unit : Any_Compilation_Unit_Node renames Any_Compilation_Unit_Node (Unit.all); begin if Unit_Kind (Unit.all) = A_Procedure_Body and then Parameter_Profile (Unit_Declaration (Unit.all).all)'Length = 0 then Set_Can_Be_Main_Program (The_Unit, True); else Set_Can_Be_Main_Program (The_Unit, False); end if; end Set_Can_Be_Main_Program; --------------------- -- Set_Compilation -- --------------------- procedure Set_Compilation (The_Unit : Compilation_Unit; Compilation : Compilations.Compilation) is Unit : Any_Compilation_Unit_Node renames Any_Compilation_Unit_Node (The_Unit.all); begin Set_Compilation (Unit, Compilation); end Set_Compilation; ------------------------------------------ -- Set_Compilation_Command_Line_Options -- ------------------------------------------ procedure Set_Compilation_Command_Line_Options (Unit : Compilation_Unit) is begin null; end Set_Compilation_Command_Line_Options; -------------------------- -- Set_Is_Body_Required -- -------------------------- procedure Set_Is_Body_Required (Unit : Compilation_Unit) is The_Unit : Any_Compilation_Unit_Node renames Any_Compilation_Unit_Node (Unit.all); begin if Unit_Kind (Unit.all) = A_Package or Unit_Kind (Unit.all) = A_Generic_Package then Set_Is_Body_Required (The_Unit, True); else Set_Is_Body_Required (The_Unit, False); end if; end Set_Is_Body_Required; --------------------- -- Set_Object_Form -- --------------------- procedure Set_Object_Form (Unit : Compilation_Unit) is begin null; end Set_Object_Form; --------------------- -- Set_Object_Name -- --------------------- procedure Set_Object_Name (Unit : Compilation_Unit) is The_Unit : Any_Compilation_Unit_Node renames Any_Compilation_Unit_Node (Unit.all); begin Set_Object_Name (The_Unit, Text_Name (Unit.all) & ".o"); end Set_Object_Name; ----------------------- -- Set_Separate_Name -- ----------------------- procedure Set_Separate_Name (Unit : Compilation_Unit) is The_Unit : Any_Compilation_Unit_Node renames Any_Compilation_Unit_Node (Unit.all); Name : constant Asis.Program_Text := Element_Utils.Compound_Name_Image (Separate_Name (The_Unit)); begin Set_Separate_Name_Image (The_Unit, Name); end Set_Separate_Name; ------------------- -- Set_Text_Form -- ------------------- procedure Set_Text_Form (Unit : Compilation_Unit) is begin null; end Set_Text_Form; ------------------- -- Set_Text_Name -- ------------------- procedure Set_Text_Name (Unit : Compilation_Unit) is The_Unit : Any_Compilation_Unit_Node renames Any_Compilation_Unit_Node (Unit.all); Ctx : constant Asis.Context := Enclosing_Context (Unit.all); begin Set_Text_Name (The_Unit, Current_File (Ctx.all)); end Set_Text_Name; --------------------- -- Set_Unique_Name -- --------------------- procedure Set_Unique_Name (Unit : Compilation_Unit) is The_Unit : Any_Compilation_Unit_Node renames Any_Compilation_Unit_Node (Unit.all); Name : constant Wide_String := Unit_Full_Name (Unit.all) & "/" & Unit_Kinds'Wide_Image (Unit_Kind (Unit.all)); begin Set_Unique_Name (The_Unit, Name); end Set_Unique_Name; -------------------- -- Set_Unit_Class -- -------------------- procedure Set_Unit_Class (Unit : in Compilation_Unit; Is_Private : in Boolean) is The_Unit : Any_Compilation_Unit_Node renames Any_Compilation_Unit_Node (Unit.all); Is_Subunit : constant Boolean := Unit_Kind (Unit.all) in A_Subunit; Is_Body : constant Boolean := Unit_Kind (Unit.all) in A_Library_Unit_Body; Is_Subprogram : constant Boolean := Unit_Kind (Unit.all) in A_Subprogram_Body; Full_Name : constant Wide_String := Unit_Full_Name (Unit.all); Has_Decl : constant Boolean := Library.Has_Declaration (Full_Name); Result : Asis.Unit_Classes; begin if Is_Subunit then Result := A_Separate_Body; elsif Is_Private then Result := A_Private_Declaration; else if Is_Body then if Is_Subprogram and not Has_Decl then Result := A_Public_Declaration_And_Body; else Result := A_Public_Body; end if; else Result := A_Public_Declaration; end if; end if; Set_Unit_Class (The_Unit, Result); end Set_Unit_Class; ------------------------ -- Set_Unit_Full_Name -- ------------------------ procedure Set_Unit_Full_Name (Unit : Compilation_Unit) is The_Unit : Any_Compilation_Unit_Node renames Any_Compilation_Unit_Node (Unit.all); Decl : constant Asis.Element := Unit_Declaration (Unit.all); Name : constant Asis.Element := Names (Decl.all) (1); Image : constant Wide_String := Element_Utils.Compound_Name_Image (Name); Is_Subunit : constant Boolean := Unit_Kind (Unit.all) in A_Subunit; begin if Is_Subunit then Set_Unit_Full_Name (The_Unit, Separate_Name_Image (The_Unit) & "." & Image); else Set_Unit_Full_Name (The_Unit, Image); end if; end Set_Unit_Full_Name; ------------------- -- Set_Unit_Kind -- ------------------- procedure Set_Unit_Kind (Unit : Compilation_Unit) is The_Unit : Any_Compilation_Unit_Node renames Any_Compilation_Unit_Node (Unit.all); Is_Subunit : constant Boolean := Assigned (Separate_Name (The_Unit)); Decl_Kind : constant Declaration_Kinds := Declaration_Kind (Unit_Declaration (The_Unit).all); Ordinary_Kinds : constant array (Declaration_Kinds) of Unit_Kinds := (A_Function_Body_Declaration => A_Function_Body, A_Function_Declaration => A_Function, A_Function_Instantiation => A_Function_Instance, A_Generic_Function_Declaration => A_Generic_Function, A_Generic_Package_Declaration => A_Generic_Package, A_Generic_Procedure_Declaration => A_Generic_Procedure, A_Package_Body_Declaration => A_Package_Body, A_Package_Declaration => A_Package, A_Package_Instantiation => A_Package_Instance, A_Procedure_Body_Declaration => A_Procedure_Body, A_Procedure_Declaration => A_Procedure, A_Procedure_Instantiation => A_Procedure_Instance, A_Package_Renaming_Declaration => A_Package_Renaming, A_Procedure_Renaming_Declaration => A_Procedure_Renaming, A_Function_Renaming_Declaration => A_Function_Renaming, A_Generic_Package_Renaming_Declaration => A_Generic_Package_Renaming, A_Generic_Procedure_Renaming_Declaration => A_Generic_Procedure_Renaming, A_Generic_Function_Renaming_Declaration => A_Generic_Function_Renaming, others => Not_A_Unit); Subunit_Kinds : constant array (Declaration_Kinds) of Unit_Kinds := (A_Function_Body_Declaration => A_Function_Body_Subunit, A_Package_Body_Declaration => A_Package_Body_Subunit, A_Procedure_Body_Declaration => A_Procedure_Body_Subunit, A_Task_Body_Declaration => A_Task_Body_Subunit, A_Protected_Body_Declaration => A_Protected_Body_Subunit, others => Not_A_Unit); begin if Is_Subunit then Set_Unit_Kind (The_Unit, Subunit_Kinds (Decl_Kind)); else Set_Unit_Kind (The_Unit, Ordinary_Kinds (Decl_Kind)); end if; end Set_Unit_Kind; --------------------- -- Set_Unit_Origin -- --------------------- procedure Set_Unit_Origin (Unit : Compilation_Unit) is The_Unit : Any_Compilation_Unit_Node renames Any_Compilation_Unit_Node (Unit.all); begin if Library.Is_Predefined_Unit (Text_Name (The_Unit)) then Set_Unit_Origin (The_Unit, A_Predefined_Unit); else Set_Unit_Origin (The_Unit, An_Application_Unit); end if; end Set_Unit_Origin; -------------------------- -- Set_Unit_Declaration -- -------------------------- procedure Set_Unit_Declaration (Unit : Compilation_Unit; Declaration : Asis.Element) is The_Unit : Any_Compilation_Unit_Node renames Any_Compilation_Unit_Node (Unit.all); begin Set_Unit_Declaration (The_Unit, Declaration); end Set_Unit_Declaration; end Asis.Gela.Unit_Utils; ------------------------------------------------------------------------------ -- Copyright (c) 2006-2013, Maxim Reznik -- All rights reserved. -- -- Redistribution and use in source and binary forms, with or without -- modification, are permitted provided that the following conditions are met: -- -- * Redistributions of source code must retain the above copyright notice, -- this list of conditions and the following disclaimer. -- * Redistributions in binary form must reproduce the above copyright -- notice, this list of conditions and the following disclaimer in the -- documentation and/or other materials provided with the distribution. -- * Neither the name of the Maxim Reznik, IE nor the names of its -- contributors may be used to endorse or promote products derived from -- this software without specific prior written permission. -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -- AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -- ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE -- LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -- CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -- SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -- INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -- CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -- ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -- POSSIBILITY OF SUCH DAMAGE. ------------------------------------------------------------------------------
package Eu_Projects.Event_Names is Begin_Name : constant Dotted_Identifier := To_Bounded_String ("begin"); End_Name : constant Dotted_Identifier := To_Bounded_String ("end"); Duration_Name : constant Dotted_Identifier := To_Bounded_String ("duration"); Event_Time_Name : constant Dotted_Identifier := To_Bounded_String ("when"); Default_Time : constant String := "default"; end Eu_Projects.Event_Names;
-- This file is generated by SWIG. Please do *not* modify by hand. -- with Interfaces.C; package bullet_c.Pointers is -- Shape_Pointer -- type Shape_Pointer is access all bullet_c.Shape; -- Shape_Pointers -- type Shape_Pointers is array (Interfaces.C .size_t range <>) of aliased bullet_c.Pointers.Shape_Pointer; -- Object_Pointer -- type Object_Pointer is access all bullet_c.Object; -- Object_Pointers -- type Object_Pointers is array (Interfaces.C .size_t range <>) of aliased bullet_c.Pointers.Object_Pointer; -- Joint_Pointer -- type Joint_Pointer is access all bullet_c.Joint; -- Joint_Pointers -- type Joint_Pointers is array (Interfaces.C .size_t range <>) of aliased bullet_c.Pointers.Joint_Pointer; -- Space_Pointer -- type Space_Pointer is access all bullet_c.Space; -- Space_Pointers -- type Space_Pointers is array (Interfaces.C .size_t range <>) of aliased bullet_c.Pointers.Space_Pointer; end bullet_c.Pointers;
-- Abstract : -- -- Common utilities for Gen_Emacs_Wisi_*_Parse -- -- Copyright (C) 2018 - 2019 Free Software Foundation, Inc. -- -- This program is free software; you can redistribute it and/or -- modify it under terms of the GNU General Public License as -- published by the Free Software Foundation; either version 3, or (at -- your option) any later version. This program is distributed in the -- hope that it will be useful, but WITHOUT ANY WARRANTY; without even -- the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR -- PURPOSE. See the GNU General Public License for more details. You -- should have received a copy of the GNU General Public License -- distributed with this program; see file COPYING. If not, write to -- the Free Software Foundation, 51 Franklin Street, Suite 500, Boston, -- MA 02110-1335, USA. pragma License (GPL); with Ada.Strings.Unbounded; with System; with Wisi; with WisiToken.Parse.LR.Parser; package Emacs_Wisi_Common_Parse is Protocol_Version : constant String := "4"; -- Protocol_Version defines the data sent between elisp and the -- background process, except for the language-specific parameters, -- which are defined by the Language_Protocol_Version parameter to -- Parse_Stream, below. -- -- This value must match wisi-process-parse.el -- wisi-process-parse-protocol-version. -- -- See wisi-process-parse.el functions, and this package body, for -- the implementation of the protocol. -- -- Only changes once per wisi release. Increment as soon as required, -- record new version in NEWS-wisi.text. Prompt : constant String := ";;> "; Protocol_Error : exception; Finish : exception; procedure Usage (Name : in String); procedure Read_Input (A : System.Address; N : Integer); function Get_Command_Length return Integer; function Get_String (Source : in String; Last : in out Integer) return String; function Get_Integer (Source : in String; Last : in out Integer) return Integer; type Process_Start_Params is record Recover_Log_File_Name : Ada.Strings.Unbounded.Unbounded_String; -- log enabled if non-empty. end record; function Get_Process_Start_Params return Process_Start_Params; -- Get from Ada.Command_Line. Handles --help by outputing help, -- raising Finish. procedure Process_Stream (Name : in String; Language_Protocol_Version : in String; Partial_Parse_Active : in out Boolean; Params : in Process_Start_Params; Parser : in out WisiToken.Parse.LR.Parser.Parser; Parse_Data : in out Wisi.Parse_Data_Type'Class; Descriptor : in WisiToken.Descriptor); ---------- -- Parse command type Parse_Params is record Post_Parse_Action : Wisi.Post_Parse_Action_Type; Source_File_Name : Ada.Strings.Unbounded.Unbounded_String; Begin_Byte_Pos : Integer; -- Source file byte position of first char sent; start parse here. End_Byte_Pos : Integer; -- Byte position of last char sent. Goal_Byte_Pos : Integer; -- Byte position of end of desired parse region; terminate parse at -- or after here. Begin_Char_Pos : WisiToken.Buffer_Pos; -- Char position of first char sent. Begin_Line : WisiToken.Line_Number_Type; End_Line : WisiToken.Line_Number_Type; -- Line number of line containing Begin_Byte_Pos, End_Byte_Pos Begin_Indent : Integer; -- Indentation of Line_Begin Partial_Parse_Active : Boolean; Debug_Mode : Boolean; Parse_Verbosity : Integer; McKenzie_Verbosity : Integer; Action_Verbosity : Integer; McKenzie_Disable : Integer; Task_Count : Integer; Check_Limit : Integer; Enqueue_Limit : Integer; Max_Parallel : Integer; Byte_Count : Integer; -- Count of bytes of source file sent. end record; function Get_Parse_Params (Command_Line : in String; Last : in out Integer) return Parse_Params; ---------- -- Refactor command type Refactor_Params is record Refactor_Action : Positive; -- Language-specific Source_File_Name : Ada.Strings.Unbounded.Unbounded_String; Parse_Region : WisiToken.Buffer_Region; -- Source file byte region to parse. Edit_Begin : WisiToken.Buffer_Pos; -- Source file byte position at start of expression to refactor. Parse_Begin_Char_Pos : WisiToken.Buffer_Pos; -- Char position of first char sent. Parse_Begin_Line : WisiToken.Line_Number_Type; Parse_End_Line : WisiToken.Line_Number_Type; -- Line numbers of lines containing Parse_Begin_Byte_Pos, Parse_End_Byte_Pos Debug_Mode : Boolean; Parse_Verbosity : Integer; Action_Verbosity : Integer; Max_Parallel : Integer; Byte_Count : Integer; -- Count of bytes of source file sent. end record; function Get_Refactor_Params (Command_Line : in String; Last : in out Integer) return Refactor_Params; end Emacs_Wisi_Common_Parse;
with any_Math.any_Algebra.any_linear; generic with package linear_Algebra_2D is new any_Math.any_Algebra.any_linear; package any_Math.any_Geometry.any_d2 -- -- Provides a namespace and core types for 2D geometry. -- is pragma Pure; --------- -- Sites -- -- Cartesian -- subtype Site is Vector_2; -- 2D cartesian coordinates. type Sites is array (Positive range <>) of Site; function Distance (From, To : Site) return Real; -- Polar -- type polar_Site is -- 2D polar coordinates. record Angle : Radians; Extent : Real; end record; function to_Polar (Self : in Site) return polar_Site; function to_Site (Self : in polar_Site) return Site; function Angle (Self : in Site) return Radians; function Extent (Self : in Site) return Real; --------- -- Lines -- type Line is private; function to_Line (Anchor : in Site; Angle : in Radians) return Line; function to_Line (Site_1, Site_2 : in Site) return Line; function X_of (Self : in Line; Y : in Real) return Real; function Y_of (Self : in Line; X : in Real) return Real; function Gradient (Self : in Line) return Real; ---------- -- Bounds -- type bounding_Box is record Lower, Upper : Site; end record; null_Bounds : constant bounding_Box; function to_bounding_Box (Self : Sites) return bounding_Box; function "or" (Left : in bounding_Box; Right : in Site) return bounding_Box; -- -- Returns the bounds expanded to include the vector. function "or" (Left : in bounding_Box; Right : in bounding_Box) return bounding_Box; -- -- Returns the bounds expanded to include both Left and Right. function "+" (Left : in bounding_Box; Right : in Vector_2) return bounding_Box; -- -- Returns the bounds translated by the vector. function Extent (Self : in bounding_Box; Dimension : in Index) return Real; function Image (Self : in bounding_Box) return String; ---------- -- Circles -- type Circle is record Radius : Real; end record; function Area (Self : Circle) return Real; function Perimeter (Self : Circle) return Real; ----------- -- Polygons -- type Polygon (Vertex_Count : Positive) is record Vertices : Sites (1 .. Vertex_Count); end record; function Area (Self : in Polygon) return Real; -- Polygon must be convex. function Perimeter (Self : in Polygon) return Real; function Angle (Self : in Polygon; at_Vertex : in Positive) return Radians; function is_Triangle (Self : in Polygon) return Boolean; function is_Convex (Self : in Polygon) return Boolean; function is_Clockwise (Self : in Polygon) return Boolean; function Centroid (Self : in Polygon) return Site; procedure center (Self : in out Polygon); function prior_Vertex (Self : in Polygon; to_Vertex : in Positive) return Site; function next_Vertex (Self : in Polygon; to_Vertex : in Positive) return Site; function Image (Self : in Polygon) return String; ------------ -- Triangles -- type Triangle is record Vertices : Sites (1 .. 3); end record; function Area (Self : in Triangle) return Real; function Perimeter (Self : in Triangle) return Real; function Angle (Self : in Triangle; at_Vertex : in Positive) return Radians; function prior_Vertex (Self : in Triangle; to_Vertex : in Positive) return Site; function next_Vertex (Self : in Triangle; to_Vertex : in Positive) return Site; Degenerate, Colinear : exception; private type Line_Format is (anchored_Gradient, two_Points); type Line (Kind : Line_Format := Line_Format'First) is record case Kind is when anchored_Gradient => Anchor : Site; Gradient : Real; when two_Points => Sites : any_d2.Sites (1 .. 2); end case; end record; null_Bounds : constant bounding_Box := (lower => (Real'Last, Real'Last), upper => (Real'First, Real'First)); end any_Math.any_Geometry.any_d2;
-- RUN: %llvmgcc -c %s package Init_Size is type T (B : Boolean := False) is record case B is when False => I : Integer; when True => J : Long_Long_Integer; -- Bigger than I end case; end record; A_T : constant T := (False, 0); end;
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Ada Modeling Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2012, Vadim Godunko <vgodunko@gmail.com> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ -- This file is generated, don't edit it. ------------------------------------------------------------------------------ with AMF.Elements; with AMF.Internals.Helpers; with AMF.Internals.Tables.Utp_Attributes; with AMF.UML.Namespaces; with AMF.UML.Properties; with AMF.UML.Value_Specifications; with AMF.Visitors.Utp_Iterators; with AMF.Visitors.Utp_Visitors; with League.Strings.Internals; package body AMF.Internals.Utp_Coding_Rules is ---------------------------------- -- Get_Base_Value_Specification -- ---------------------------------- overriding function Get_Base_Value_Specification (Self : not null access constant Utp_Coding_Rule_Proxy) return AMF.UML.Value_Specifications.UML_Value_Specification_Access is begin return AMF.UML.Value_Specifications.UML_Value_Specification_Access (AMF.Internals.Helpers.To_Element (AMF.Internals.Tables.Utp_Attributes.Internal_Get_Base_Value_Specification (Self.Element))); end Get_Base_Value_Specification; ---------------------------------- -- Set_Base_Value_Specification -- ---------------------------------- overriding procedure Set_Base_Value_Specification (Self : not null access Utp_Coding_Rule_Proxy; To : AMF.UML.Value_Specifications.UML_Value_Specification_Access) is begin AMF.Internals.Tables.Utp_Attributes.Internal_Set_Base_Value_Specification (Self.Element, AMF.Internals.Helpers.To_Element (AMF.Elements.Element_Access (To))); end Set_Base_Value_Specification; ------------------------ -- Get_Base_Namespace -- ------------------------ overriding function Get_Base_Namespace (Self : not null access constant Utp_Coding_Rule_Proxy) return AMF.UML.Namespaces.UML_Namespace_Access is begin return AMF.UML.Namespaces.UML_Namespace_Access (AMF.Internals.Helpers.To_Element (AMF.Internals.Tables.Utp_Attributes.Internal_Get_Base_Namespace (Self.Element))); end Get_Base_Namespace; ------------------------ -- Set_Base_Namespace -- ------------------------ overriding procedure Set_Base_Namespace (Self : not null access Utp_Coding_Rule_Proxy; To : AMF.UML.Namespaces.UML_Namespace_Access) is begin AMF.Internals.Tables.Utp_Attributes.Internal_Set_Base_Namespace (Self.Element, AMF.Internals.Helpers.To_Element (AMF.Elements.Element_Access (To))); end Set_Base_Namespace; ----------------------- -- Get_Base_Property -- ----------------------- overriding function Get_Base_Property (Self : not null access constant Utp_Coding_Rule_Proxy) return AMF.UML.Properties.UML_Property_Access is begin return AMF.UML.Properties.UML_Property_Access (AMF.Internals.Helpers.To_Element (AMF.Internals.Tables.Utp_Attributes.Internal_Get_Base_Property (Self.Element))); end Get_Base_Property; ----------------------- -- Set_Base_Property -- ----------------------- overriding procedure Set_Base_Property (Self : not null access Utp_Coding_Rule_Proxy; To : AMF.UML.Properties.UML_Property_Access) is begin AMF.Internals.Tables.Utp_Attributes.Internal_Set_Base_Property (Self.Element, AMF.Internals.Helpers.To_Element (AMF.Elements.Element_Access (To))); end Set_Base_Property; ---------------- -- Get_Coding -- ---------------- overriding function Get_Coding (Self : not null access constant Utp_Coding_Rule_Proxy) return League.Strings.Universal_String is begin null; return League.Strings.Internals.Create (AMF.Internals.Tables.Utp_Attributes.Internal_Get_Coding (Self.Element)); end Get_Coding; ---------------- -- Set_Coding -- ---------------- overriding procedure Set_Coding (Self : not null access Utp_Coding_Rule_Proxy; To : League.Strings.Universal_String) is begin AMF.Internals.Tables.Utp_Attributes.Internal_Set_Coding (Self.Element, League.Strings.Internals.Internal (To)); end Set_Coding; ------------------- -- Enter_Element -- ------------------- overriding procedure Enter_Element (Self : not null access constant Utp_Coding_Rule_Proxy; Visitor : in out AMF.Visitors.Abstract_Visitor'Class; Control : in out AMF.Visitors.Traverse_Control) is begin if Visitor in AMF.Visitors.Utp_Visitors.Utp_Visitor'Class then AMF.Visitors.Utp_Visitors.Utp_Visitor'Class (Visitor).Enter_Coding_Rule (AMF.Utp.Coding_Rules.Utp_Coding_Rule_Access (Self), Control); end if; end Enter_Element; ------------------- -- Leave_Element -- ------------------- overriding procedure Leave_Element (Self : not null access constant Utp_Coding_Rule_Proxy; Visitor : in out AMF.Visitors.Abstract_Visitor'Class; Control : in out AMF.Visitors.Traverse_Control) is begin if Visitor in AMF.Visitors.Utp_Visitors.Utp_Visitor'Class then AMF.Visitors.Utp_Visitors.Utp_Visitor'Class (Visitor).Leave_Coding_Rule (AMF.Utp.Coding_Rules.Utp_Coding_Rule_Access (Self), Control); end if; end Leave_Element; ------------------- -- Visit_Element -- ------------------- overriding procedure Visit_Element (Self : not null access constant Utp_Coding_Rule_Proxy; Iterator : in out AMF.Visitors.Abstract_Iterator'Class; Visitor : in out AMF.Visitors.Abstract_Visitor'Class; Control : in out AMF.Visitors.Traverse_Control) is begin if Iterator in AMF.Visitors.Utp_Iterators.Utp_Iterator'Class then AMF.Visitors.Utp_Iterators.Utp_Iterator'Class (Iterator).Visit_Coding_Rule (Visitor, AMF.Utp.Coding_Rules.Utp_Coding_Rule_Access (Self), Control); end if; end Visit_Element; end AMF.Internals.Utp_Coding_Rules;
<?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>cmdAggregator</name> <ret_bitwidth>0</ret_bitwidth> <ports class_id="2" tracking_level="0" version="0"> <count>3</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>rdCmdIn_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>rdCmdIn.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>40</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>wrCmdIn_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>wrCmdIn.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>40</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>aggregateMemCmd_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_SRL</coreName> </Obj> <bitwidth>21</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>18</count> <item_version>0</item_version> <item class_id="9" tracking_level="1" version="0" object_id="_4"> <Value> <Obj> <type>0</type> <id>8</id> <name>tmp</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>tmp</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>33</item> <item>34</item> <item>36</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="_5"> <Value> <Obj> <type>0</type> <id>9</id> <name></name> <fileName>sources/otherModules/dramModel/dramModel.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>80</lineNumber> <contextFuncName>cmdAggregator</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/otherModules/dramModel/dramModel.cpp</first> <second>cmdAggregator</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>37</item> <item>38</item> <item>39</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="_6"> <Value> <Obj> <type>0</type> <id>11</id> <name>tmp_3</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>tmp</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>62</item> <item>63</item> <item>64</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="_7"> <Value> <Obj> <type>0</type> <id>12</id> <name></name> <fileName>sources/otherModules/dramModel/dramModel.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>85</lineNumber> <contextFuncName>cmdAggregator</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/otherModules/dramModel/dramModel.cpp</first> <second>cmdAggregator</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>65</item> <item>66</item> <item>67</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="_8"> <Value> <Obj> <type>0</type> <id>14</id> <name>tmp_2</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>tmp.2</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>40</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>68</item> <item>69</item> <item>159</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="_9"> <Value> <Obj> <type>0</type> <id>15</id> <name>tempExtCtrlWord_addr_1</name> <fileName>sources/otherModules/dramModel/dramModel.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>87</lineNumber> <contextFuncName>cmdAggregator</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/otherModules/dramModel/dramModel.cpp</first> <second>cmdAggregator</second> </first> <second>87</second> </item> </second> </item> </inlineStackInfo> <originalName>tempExtCtrlWord.address.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>12</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>70</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="_10"> <Value> <Obj> <type>0</type> <id>16</id> <name>tempExtCtrlWord_coun_1</name> <fileName>sources/otherModules/dramModel/dramModel.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>87</lineNumber> <contextFuncName>cmdAggregator</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/otherModules/dramModel/dramModel.cpp</first> <second>cmdAggregator</second> </first> <second>87</second> </item> </second> </item> </inlineStackInfo> <originalName>tempExtCtrlWord.count.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>71</item> <item>72</item> <item>73</item> <item>74</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="_11"> <Value> <Obj> <type>0</type> <id>17</id> <name>tmp_3_1</name> <fileName>sources/otherModules/dramModel/dramModel.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>88</lineNumber> <contextFuncName>cmdAggregator</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/otherModules/dramModel/dramModel.cpp</first> <second>cmdAggregator</second> </first> <second>88</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.3</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>21</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>75</item> <item>77</item> <item>78</item> <item>79</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="_12"> <Value> <Obj> <type>0</type> <id>18</id> <name></name> <fileName>sources/otherModules/dramModel/dramModel.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>88</lineNumber> <contextFuncName>cmdAggregator</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/otherModules/dramModel/dramModel.cpp</first> <second>cmdAggregator</second> </first> <second>88</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>80</item> <item>81</item> <item>82</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="_13"> <Value> <Obj> <type>0</type> <id>19</id> <name></name> <fileName>sources/otherModules/dramModel/dramModel.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>89</lineNumber> <contextFuncName>cmdAggregator</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/otherModules/dramModel/dramModel.cpp</first> <second>cmdAggregator</second> </first> <second>89</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>83</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="_14"> <Value> <Obj> <type>0</type> <id>21</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>84</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="_15"> <Value> <Obj> <type>0</type> <id>23</id> <name>tmp19</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>tmp19</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>40</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>41</item> <item>42</item> <item>158</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="_16"> <Value> <Obj> <type>0</type> <id>24</id> <name>tempExtCtrlWord_addr</name> <fileName>sources/otherModules/dramModel/dramModel.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>82</lineNumber> <contextFuncName>cmdAggregator</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/otherModules/dramModel/dramModel.cpp</first> <second>cmdAggregator</second> </first> <second>82</second> </item> </second> </item> </inlineStackInfo> <originalName>tempExtCtrlWord.address.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>12</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>43</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="_17"> <Value> <Obj> <type>0</type> <id>25</id> <name>tempExtCtrlWord_coun</name> <fileName>sources/otherModules/dramModel/dramModel.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>82</lineNumber> <contextFuncName>cmdAggregator</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/otherModules/dramModel/dramModel.cpp</first> <second>cmdAggregator</second> </first> <second>82</second> </item> </second> </item> </inlineStackInfo> <originalName>tempExtCtrlWord.count.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>45</item> <item>46</item> <item>48</item> <item>50</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="_18"> <Value> <Obj> <type>0</type> <id>26</id> <name>tmp_1</name> <fileName>sources/otherModules/dramModel/dramModel.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>83</lineNumber> <contextFuncName>cmdAggregator</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/otherModules/dramModel/dramModel.cpp</first> <second>cmdAggregator</second> </first> <second>83</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.1</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>21</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>52</item> <item>54</item> <item>55</item> <item>56</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="_19"> <Value> <Obj> <type>0</type> <id>27</id> <name></name> <fileName>sources/otherModules/dramModel/dramModel.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>83</lineNumber> <contextFuncName>cmdAggregator</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/otherModules/dramModel/dramModel.cpp</first> <second>cmdAggregator</second> </first> <second>83</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>58</item> <item>59</item> <item>60</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="_20"> <Value> <Obj> <type>0</type> <id>28</id> <name></name> <fileName>sources/otherModules/dramModel/dramModel.cpp</fileName> <fileDirectory>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</fileDirectory> <lineNumber>84</lineNumber> <contextFuncName>cmdAggregator</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/otherModules/dramModel/dramModel.cpp</first> <second>cmdAggregator</second> </first> <second>84</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>61</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="_21"> <Value> <Obj> <type>0</type> <id>30</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <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>5</count> <item_version>0</item_version> <item class_id="16" tracking_level="1" version="0" object_id="_22"> <Value> <Obj> <type>2</type> <id>35</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="_23"> <Value> <Obj> <type>2</type> <id>47</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>32</content> </item> <item class_id_reference="16" object_id="_24"> <Value> <Obj> <type>2</type> <id>49</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>39</content> </item> <item class_id_reference="16" object_id="_25"> <Value> <Obj> <type>2</type> <id>53</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="_26"> <Value> <Obj> <type>2</type> <id>76</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> </consts> <blocks class_id="17" tracking_level="0" version="0"> <count>6</count> <item_version>0</item_version> <item class_id="18" tracking_level="1" version="0" object_id="_27"> <Obj> <type>3</type> <id>10</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>2</count> <item_version>0</item_version> <item>8</item> <item>9</item> </node_objs> </item> <item class_id_reference="18" object_id="_28"> <Obj> <type>3</type> <id>13</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>11</item> <item>12</item> </node_objs> </item> <item class_id_reference="18" object_id="_29"> <Obj> <type>3</type> <id>20</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>6</count> <item_version>0</item_version> <item>14</item> <item>15</item> <item>16</item> <item>17</item> <item>18</item> <item>19</item> </node_objs> </item> <item class_id_reference="18" object_id="_30"> <Obj> <type>3</type> <id>22</id> <name>._crit_edge.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>21</item> </node_objs> </item> <item class_id_reference="18" object_id="_31"> <Obj> <type>3</type> <id>29</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>6</count> <item_version>0</item_version> <item>23</item> <item>24</item> <item>25</item> <item>26</item> <item>27</item> <item>28</item> </node_objs> </item> <item class_id_reference="18" object_id="_32"> <Obj> <type>3</type> <id>31</id> <name>cmdAggregator.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>30</item> </node_objs> </item> </blocks> <edges class_id="19" tracking_level="0" version="0"> <count>42</count> <item_version>0</item_version> <item class_id="20" tracking_level="1" version="0" object_id="_33"> <id>34</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>8</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_34"> <id>36</id> <edge_type>1</edge_type> <source_obj>35</source_obj> <sink_obj>8</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_35"> <id>37</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>9</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_36"> <id>38</id> <edge_type>2</edge_type> <source_obj>13</source_obj> <sink_obj>9</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_37"> <id>39</id> <edge_type>2</edge_type> <source_obj>29</source_obj> <sink_obj>9</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_38"> <id>42</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>23</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_39"> <id>43</id> <edge_type>1</edge_type> <source_obj>23</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_40"> <id>46</id> <edge_type>1</edge_type> <source_obj>23</source_obj> <sink_obj>25</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_41"> <id>48</id> <edge_type>1</edge_type> <source_obj>47</source_obj> <sink_obj>25</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_42"> <id>50</id> <edge_type>1</edge_type> <source_obj>49</source_obj> <sink_obj>25</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_43"> <id>54</id> <edge_type>1</edge_type> <source_obj>53</source_obj> <sink_obj>26</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_44"> <id>55</id> <edge_type>1</edge_type> <source_obj>25</source_obj> <sink_obj>26</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_45"> <id>56</id> <edge_type>1</edge_type> <source_obj>24</source_obj> <sink_obj>26</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_46"> <id>59</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_47"> <id>60</id> <edge_type>1</edge_type> <source_obj>26</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_48"> <id>61</id> <edge_type>2</edge_type> <source_obj>31</source_obj> <sink_obj>28</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_49"> <id>63</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>11</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_50"> <id>64</id> <edge_type>1</edge_type> <source_obj>35</source_obj> <sink_obj>11</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_51"> <id>65</id> <edge_type>1</edge_type> <source_obj>11</source_obj> <sink_obj>12</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_52"> <id>66</id> <edge_type>2</edge_type> <source_obj>22</source_obj> <sink_obj>12</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_53"> <id>67</id> <edge_type>2</edge_type> <source_obj>20</source_obj> <sink_obj>12</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_54"> <id>69</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>14</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_55"> <id>70</id> <edge_type>1</edge_type> <source_obj>14</source_obj> <sink_obj>15</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_56"> <id>72</id> <edge_type>1</edge_type> <source_obj>14</source_obj> <sink_obj>16</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_57"> <id>73</id> <edge_type>1</edge_type> <source_obj>47</source_obj> <sink_obj>16</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_58"> <id>74</id> <edge_type>1</edge_type> <source_obj>49</source_obj> <sink_obj>16</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_59"> <id>77</id> <edge_type>1</edge_type> <source_obj>76</source_obj> <sink_obj>17</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_60"> <id>78</id> <edge_type>1</edge_type> <source_obj>16</source_obj> <sink_obj>17</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_61"> <id>79</id> <edge_type>1</edge_type> <source_obj>15</source_obj> <sink_obj>17</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_62"> <id>81</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>18</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_63"> <id>82</id> <edge_type>1</edge_type> <source_obj>17</source_obj> <sink_obj>18</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_64"> <id>83</id> <edge_type>2</edge_type> <source_obj>22</source_obj> <sink_obj>19</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_65"> <id>84</id> <edge_type>2</edge_type> <source_obj>31</source_obj> <sink_obj>21</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_66"> <id>151</id> <edge_type>2</edge_type> <source_obj>10</source_obj> <sink_obj>29</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_67"> <id>152</id> <edge_type>2</edge_type> <source_obj>10</source_obj> <sink_obj>13</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_68"> <id>153</id> <edge_type>2</edge_type> <source_obj>13</source_obj> <sink_obj>20</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_69"> <id>154</id> <edge_type>2</edge_type> <source_obj>13</source_obj> <sink_obj>22</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_70"> <id>155</id> <edge_type>2</edge_type> <source_obj>20</source_obj> <sink_obj>22</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_71"> <id>156</id> <edge_type>2</edge_type> <source_obj>22</source_obj> <sink_obj>31</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_72"> <id>157</id> <edge_type>2</edge_type> <source_obj>29</source_obj> <sink_obj>31</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_73"> <id>158</id> <edge_type>4</edge_type> <source_obj>8</source_obj> <sink_obj>23</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_74"> <id>159</id> <edge_type>4</edge_type> <source_obj>11</source_obj> <sink_obj>14</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="_75"> <mId>1</mId> <mTag>cmdAggregator</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>6</count> <item_version>0</item_version> <item>10</item> <item>13</item> <item>20</item> <item>22</item> <item>29</item> <item>31</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="_76"> <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="_77"> <id>1</id> <operations class_id="27" tracking_level="0" version="0"> <count>10</count> <item_version>0</item_version> <item class_id="28" tracking_level="1" version="0" object_id="_78"> <id>8</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_79"> <id>9</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_80"> <id>11</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_81"> <id>12</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_82"> <id>14</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_83"> <id>15</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_84"> <id>16</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_85"> <id>23</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_86"> <id>24</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_87"> <id>25</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_88"> <id>2</id> <operations> <count>12</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_89"> <id>4</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_90"> <id>5</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_91"> <id>6</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_92"> <id>7</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_93"> <id>17</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_94"> <id>18</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_95"> <id>19</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_96"> <id>21</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_97"> <id>26</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_98"> <id>27</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_99"> <id>28</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_100"> <id>30</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="_101"> <inState>1</inState> <outState>2</outState> <condition class_id="31" tracking_level="0" version="0"> <id>20</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>18</count> <item_version>0</item_version> <item class_id="36" tracking_level="0" version="0"> <first>8</first> <second class_id="37" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>9</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>11</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>12</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>14</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>15</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>16</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>17</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>18</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>19</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>21</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>23</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>24</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>25</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>26</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>27</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>28</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>30</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>6</count> <item_version>0</item_version> <item class_id="39" tracking_level="0" version="0"> <first>10</first> <second class_id="40" tracking_level="0" version="0"> <first>0</first> <second>1</second> </second> </item> <item> <first>13</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>20</first> <second> <first>0</first> <second>1</second> </second> </item> <item> <first>22</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>29</first> <second> <first>0</first> <second>1</second> </second> </item> <item> <first>31</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="_102"> <region_name>cmdAggregator</region_name> <basic_blocks> <count>6</count> <item_version>0</item_version> <item>10</item> <item>13</item> <item>20</item> <item>22</item> <item>29</item> <item>31</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>11</count> <item_version>0</item_version> <item class_id="44" tracking_level="0" version="0"> <first>44</first> <second> <count>1</count> <item_version>0</item_version> <item>8</item> </second> </item> <item> <first>52</first> <second> <count>1</count> <item_version>0</item_version> <item>11</item> </second> </item> <item> <first>60</first> <second> <count>1</count> <item_version>0</item_version> <item>14</item> </second> </item> <item> <first>66</first> <second> <count>1</count> <item_version>0</item_version> <item>23</item> </second> </item> <item> <first>72</first> <second> <count>2</count> <item_version>0</item_version> <item>18</item> <item>27</item> </second> </item> <item> <first>79</first> <second> <count>1</count> <item_version>0</item_version> <item>15</item> </second> </item> <item> <first>83</first> <second> <count>1</count> <item_version>0</item_version> <item>16</item> </second> </item> <item> <first>93</first> <second> <count>1</count> <item_version>0</item_version> <item>24</item> </second> </item> <item> <first>97</first> <second> <count>1</count> <item_version>0</item_version> <item>25</item> </second> </item> <item> <first>107</first> <second> <count>1</count> <item_version>0</item_version> <item>17</item> </second> </item> <item> <first>116</first> <second> <count>1</count> <item_version>0</item_version> <item>26</item> </second> </item> </dp_fu_nodes> <dp_fu_nodes_expression class_id="46" tracking_level="0" version="0"> <count>6</count> <item_version>0</item_version> <item class_id="47" tracking_level="0" version="0"> <first>tempExtCtrlWord_addr_1_fu_79</first> <second> <count>1</count> <item_version>0</item_version> <item>15</item> </second> </item> <item> <first>tempExtCtrlWord_addr_fu_93</first> <second> <count>1</count> <item_version>0</item_version> <item>24</item> </second> </item> <item> <first>tempExtCtrlWord_coun_1_fu_83</first> <second> <count>1</count> <item_version>0</item_version> <item>16</item> </second> </item> <item> <first>tempExtCtrlWord_coun_fu_97</first> <second> <count>1</count> <item_version>0</item_version> <item>25</item> </second> </item> <item> <first>tmp_1_fu_116</first> <second> <count>1</count> <item_version>0</item_version> <item>26</item> </second> </item> <item> <first>tmp_3_1_fu_107</first> <second> <count>1</count> <item_version>0</item_version> <item>17</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>5</count> <item_version>0</item_version> <item> <first>grp_write_fu_72</first> <second> <count>2</count> <item_version>0</item_version> <item>18</item> <item>27</item> </second> </item> <item> <first>tmp19_read_fu_66</first> <second> <count>1</count> <item_version>0</item_version> <item>23</item> </second> </item> <item> <first>tmp_2_read_fu_60</first> <second> <count>1</count> <item_version>0</item_version> <item>14</item> </second> </item> <item> <first>tmp_3_nbreadreq_fu_52</first> <second> <count>1</count> <item_version>0</item_version> <item>11</item> </second> </item> <item> <first>tmp_nbreadreq_fu_44</first> <second> <count>1</count> <item_version>0</item_version> <item>8</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>6</count> <item_version>0</item_version> <item> <first>125</first> <second> <count>1</count> <item_version>0</item_version> <item>8</item> </second> </item> <item> <first>129</first> <second> <count>1</count> <item_version>0</item_version> <item>11</item> </second> </item> <item> <first>133</first> <second> <count>1</count> <item_version>0</item_version> <item>15</item> </second> </item> <item> <first>138</first> <second> <count>1</count> <item_version>0</item_version> <item>16</item> </second> </item> <item> <first>143</first> <second> <count>1</count> <item_version>0</item_version> <item>24</item> </second> </item> <item> <first>148</first> <second> <count>1</count> <item_version>0</item_version> <item>25</item> </second> </item> </dp_reg_nodes> <dp_regname_nodes> <count>6</count> <item_version>0</item_version> <item> <first>tempExtCtrlWord_addr_1_reg_133</first> <second> <count>1</count> <item_version>0</item_version> <item>15</item> </second> </item> <item> <first>tempExtCtrlWord_addr_reg_143</first> <second> <count>1</count> <item_version>0</item_version> <item>24</item> </second> </item> <item> <first>tempExtCtrlWord_coun_1_reg_138</first> <second> <count>1</count> <item_version>0</item_version> <item>16</item> </second> </item> <item> <first>tempExtCtrlWord_coun_reg_148</first> <second> <count>1</count> <item_version>0</item_version> <item>25</item> </second> </item> <item> <first>tmp_3_reg_129</first> <second> <count>1</count> <item_version>0</item_version> <item>11</item> </second> </item> <item> <first>tmp_reg_125</first> <second> <count>1</count> <item_version>0</item_version> <item>8</item> </second> </item> </dp_regname_nodes> <dp_reg_phi> <count>0</count> <item_version>0</item_version> </dp_reg_phi> <dp_regname_phi> <count>0</count> <item_version>0</item_version> </dp_regname_phi> <dp_port_io_nodes class_id="49" tracking_level="0" version="0"> <count>3</count> <item_version>0</item_version> <item class_id="50" tracking_level="0" version="0"> <first>aggregateMemCmd_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>27</item> <item>18</item> </second> </item> </second> </item> <item> <first>rdCmdIn_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>11</item> </second> </item> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>14</item> </second> </item> </second> </item> <item> <first>wrCmdIn_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>8</item> </second> </item> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>23</item> </second> </item> </second> </item> </dp_port_io_nodes> <port2core class_id="51" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="52" tracking_level="0" version="0"> <first>3</first> <second>FIFO_SRL</second> </item> </port2core> <node2core> <count>0</count> <item_version>0</item_version> </node2core> </syndb> </boost_serialization>
with Ada.Unchecked_Conversion; package Tkmrpc.Request.Ike.Cc_Reset.Convert is function To_Request is new Ada.Unchecked_Conversion ( Source => Cc_Reset.Request_Type, Target => Request.Data_Type); function From_Request is new Ada.Unchecked_Conversion ( Source => Request.Data_Type, Target => Cc_Reset.Request_Type); end Tkmrpc.Request.Ike.Cc_Reset.Convert;
with NRF52_DK.Time; with HAL; use HAL; with NRF52_DK.IOs; package body sensor_behind is --Declaration of the PinIDs and type of the variables TrigPin : NRF52_DK.IOs.Pin_Id := 12; EchoPin : NRF52_DK.IOs.Pin_Id := 11; CurrentTime : NRF52_DK.Time.Time_Ms; Duration_Result : Duration; Pulse : Boolean; function HCSR04_Behind_Distance return Float is begin CurrentTime := NRF52_DK.Time.Clock; --Making sure the TrigPin is clear so we set it on false for 2 microseconds. NRF52_DK.IOs.Set(TrigPin, False); NRF52_DK.Time.Delay_Ms(Uint64(CurrentTime / 1000) + UInt64 (2 / 1000)); CurrentTime := NRF52_DK.Time.Clock; --To generate the ultra sound wave we have to set the TrigPin on high/true state for 10 microseconds. NRF52_DK.IOs.Set(TrigPin, True); NRF52_DK.Time.Delay_Ms (Uint64(CurrentTime / 1000) +UInt64 (10 / 1000)); NRF52_DK.IOs.Set(TrigPin, False); --We need to make sure there isn't any interrupts between these parts Pulse := NRF52_DK.IOs.Set(EchoPin); --Returns duration when EchoPin is HIGH. if NRF52_DK.IOs.Set(EchoPin) = True then CurrentTime := NRF52_DK.Time.Clock; --Supposed to return make the result into a duration but due to --NRF52_DK packages not having a function for that and Ada.Real_time not working, we couldn't make the code function properly. Duration_Result := Ada.Real_Time.To_Duration(NRF52_DK.Time.Clock - CurrentTime); return (Float(Duration_Result) / 58.0) * 1000000.0; --In order to get the distance we will divide the Duration_Result with 58 --and then multiply it with 1000000 which turns the microseconds into seconds. end if; return -1.0; end HCSR04_Behind_Distance; --Source: https://github.com/gamegine/HCSR04-ultrasonic-sensor-lib/blob/master/src/HCSR04.cpp end sensor_behind;
-- This file is generated by SWIG. Please do not modify by hand. -- with Interfaces; with Interfaces.C; with Interfaces.C.Pointers; package xcb.xcb_grab_pointer_reply_t is -- Item -- type Item is record response_type : aliased Interfaces.Unsigned_8; status : aliased Interfaces.Unsigned_8; sequence : aliased Interfaces.Unsigned_16; length : aliased Interfaces.Unsigned_32; end record; -- Item_Array -- type Item_Array is array (Interfaces.C.size_t range <>) of aliased xcb.xcb_grab_pointer_reply_t .Item; -- Pointer -- package C_Pointers is new Interfaces.C.Pointers (Index => Interfaces.C.size_t, Element => xcb.xcb_grab_pointer_reply_t.Item, Element_Array => xcb.xcb_grab_pointer_reply_t.Item_Array, Default_Terminator => (others => <>)); subtype Pointer is C_Pointers.Pointer; -- Pointer_Array -- type Pointer_Array is array (Interfaces.C.size_t range <>) of aliased xcb.xcb_grab_pointer_reply_t .Pointer; -- Pointer_Pointer -- package C_Pointer_Pointers is new Interfaces.C.Pointers (Index => Interfaces.C.size_t, Element => xcb.xcb_grab_pointer_reply_t.Pointer, Element_Array => xcb.xcb_grab_pointer_reply_t.Pointer_Array, Default_Terminator => null); subtype Pointer_Pointer is C_Pointer_Pointers.Pointer; end xcb.xcb_grab_pointer_reply_t;
------------------------------------------------------------------------------ -- -- -- GNAT ncurses Binding Samples -- -- -- -- Sample.Keyboard_Handler -- -- -- -- B O D Y -- -- -- ------------------------------------------------------------------------------ -- Copyright (c) 1998 Free Software Foundation, Inc. -- -- -- -- Permission is hereby granted, free of charge, to any person obtaining a -- -- copy of this software and associated documentation files (the -- -- "Software"), to deal in the Software without restriction, including -- -- without limitation the rights to use, copy, modify, merge, publish, -- -- distribute, distribute with modifications, sublicense, and/or sell -- -- copies of the Software, and to permit persons to whom the Software is -- -- furnished to do so, subject to the following conditions: -- -- -- -- The above copyright notice and this permission notice shall be included -- -- in all copies or substantial portions of the Software. -- -- -- -- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -- -- OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -- -- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -- -- IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -- -- DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -- -- OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR -- -- THE USE OR OTHER DEALINGS IN THE SOFTWARE. -- -- -- -- Except as contained in this notice, the name(s) of the above copyright -- -- holders shall not be used in advertising or otherwise to promote the -- -- sale, use or other dealings in this Software without prior written -- -- authorization. -- ------------------------------------------------------------------------------ -- Author: Juergen Pfeifer <Juergen.Pfeifer@T-Online.de> 1996 -- Version Control -- $Revision: 1.5 $ -- Binding Version 00.93 ------------------------------------------------------------------------------ with Ada.Strings; use Ada.Strings; with Ada.Strings.Fixed; use Ada.Strings.Fixed; with Ada.Strings.Maps.Constants; use Ada.Strings.Maps.Constants; with Ada.Characters.Latin_1; use Ada.Characters.Latin_1; with Ada.Characters.Handling; use Ada.Characters.Handling; with Terminal_Interface.Curses.Panels; use Terminal_Interface.Curses.Panels; with Terminal_Interface.Curses.Forms; use Terminal_Interface.Curses.Forms; with Terminal_Interface.Curses.Forms.Field_Types.Enumeration; use Terminal_Interface.Curses.Forms.Field_Types.Enumeration; with Sample.Header_Handler; use Sample.Header_Handler; with Sample.Form_Demo.Aux; use Sample.Form_Demo.Aux; with Sample.Manifest; use Sample.Manifest; with Sample.Form_Demo.Handler; -- This package contains a centralized keyboard handler used throughout -- this example. The handler establishes a timeout mechanism that provides -- periodical updates of the common header lines used in this example. -- package body Sample.Keyboard_Handler is In_Command : Boolean := False; function Get_Key (Win : Window := Standard_Window) return Real_Key_Code is K : Real_Key_Code; function Command return Real_Key_Code; function Command return Real_Key_Code is function My_Driver (F : Form; C : Key_Code; P : Panel) return Boolean; package Fh is new Sample.Form_Demo.Handler (My_Driver); type Label_Array is array (Label_Number) of String (1 .. 8); Labels : Label_Array; FA : Field_Array_Access := new Field_Array' (Make (0, 0, "Command:"), Make (Top => 0, Left => 9, Width => Columns - 11), Null_Field); K : Real_Key_Code := Key_None; N : Natural := 0; function My_Driver (F : Form; C : Key_Code; P : Panel) return Boolean is Ch : Character; begin if C in User_Key_Code'Range and then C = QUIT then if Driver (F, F_Validate_Field) = Form_Ok then K := Key_None; return True; end if; elsif C in Normal_Key_Code'Range then Ch := Character'Val (C); if (Ch = LF or else Ch = CR) then if Driver (F, F_Validate_Field) = Form_Ok then declare Buffer : String (1 .. Positive (Columns - 11)); Cmdc : String (1 .. 8); begin Get_Buffer (Fld => FA (2), Str => Buffer); Trim (Buffer, Left); if Buffer (1) /= ' ' then Cmdc := To_Upper (Buffer (Cmdc'Range)); for I in Labels'Range loop if Cmdc = Labels (I) then K := Function_Key_Code (Function_Key_Number (I)); exit; end if; end loop; end if; return True; end; end if; end if; end if; return False; end My_Driver; begin In_Command := True; for I in Label_Number'Range loop Get_Soft_Label_Key (I, Labels (I)); Trim (Labels (I), Left); Translate (Labels (I), Upper_Case_Map); if Labels (I) (1) /= ' ' then N := N + 1; end if; end loop; if N > 0 then -- some labels were really set declare Enum_Info : Enumeration_Info (N); Enum_Field : Enumeration_Field; J : Positive := Enum_Info.Names'First; Frm : Form := Create (FA); begin for I in Label_Number'Range loop if Labels (I) (1) /= ' ' then Enum_Info.Names (J) := new String'(Labels (I)); J := J + 1; end if; end loop; Enum_Field := Create (Enum_Info, True); Set_Field_Type (FA (2), Enum_Field); Set_Background (FA (2), Normal_Video); Fh.Drive_Me (Frm, Lines - 3, 0); Delete (Frm); Update_Panels; Update_Screen; end; end if; Free (FA, True); In_Command := False; return K; end Command; begin Set_Timeout_Mode (Win, Delayed, 30000); loop K := Get_Keystroke (Win); if K = Key_None then -- a timeout occured Update_Header_Window; elsif K = 3 and then not In_Command then -- CTRL-C K := Command; exit when K /= Key_None; else exit; end if; end loop; return K; end Get_Key; procedure Init_Keyboard_Handler is begin null; end Init_Keyboard_Handler; end Sample.Keyboard_Handler;
-- ___ _ ___ _ _ -- -- / __| |/ (_) | | Common SKilL implementation -- -- \__ \ ' <| | | |__ file partitioning info -- -- |___/_|\_\_|_|____| by: Timm Felden -- -- -- pragma Ada_2012; with Ada.Containers.Vectors; with Skill.Types; with Skill.Containers.Vectors; with Ada.Unchecked_Deallocation; with Ada.Unchecked_Conversion; -- documentation can be found in java common package body Skill.Internal.Parts is function To_Simple (This : access Chunk_T'Class) return Simple_Chunk_X is type P is access all Chunk_T'Class; function Cast is new Ada.Unchecked_Conversion (P, Simple_Chunk_X); begin return Cast (This); end To_Simple; function To_Bulk (This : access Chunk_T'Class) return Bulk_Chunk_X is type P is access all Chunk_T'Class; function Cast is new Ada.Unchecked_Conversion (P, Bulk_Chunk_X); begin return Cast (This); end To_Bulk; procedure Free (This : access Simple_Chunk) is type T is access all Simple_Chunk; procedure Delete is new Ada.Unchecked_Deallocation (Simple_Chunk, T); D : T := T (This); begin Delete (D); end Free; procedure Free (This : access Bulk_Chunk) is type T is access all Bulk_Chunk; procedure Delete is new Ada.Unchecked_Deallocation (Bulk_Chunk, T); D : T := T (This); begin Delete (D); end Free; end Skill.Internal.Parts;
M:tests S:Ltests.aligned_alloc$size$1$26({2}SI:U),B,1,-4 S:Ltests.aligned_alloc$alignment$1$26({2}SI:U),B,1,1 T:Ftests$SI_UU32[({0}S:S$u32$0$0({4}SL:U),Z,0,0)({0}S:S$s32$0$0({4}SL:S),Z,0,0)({0}S:S$uu16$0$0({4}DA2d,STSI_UU16:S),Z,0,0)({0}S:S$u16$0$0({4}DA2d,SI:U),Z,0,0)({0}S:S$s16$0$0({4}DA2d,SI:S),Z,0,0)({0}S:S$u8$0$0({4}DA4d,SC:U),Z,0,0)({0}S:S$s8$0$0({4}DA4d,SC:S),Z,0,0)] T:Ftests$SI_UU16[({0}S:S$u16$0$0({2}SI:U),Z,0,0)({0}S:S$s16$0$0({2}SI:S),Z,0,0)({0}S:S$u8$0$0({2}DA2d,SC:U),Z,0,0)({0}S:S$s8$0$0({2}DA2d,SC:S),Z,0,0)] T:Ftests$u2f_hid_nonce[({0}S:S$nonce$0$0({8}DA8d,SC:U),Z,0,0)] T:Ftests$config_msg[({0}S:S$cmd$0$0({1}SC:U),Z,0,0)({1}S:S$buf$0$0({63}DA63d,SC:U),Z,0,0)] T:Ftests$SI_GEN_PTR[({0}S:S$u8$0$0({3}DA3d,SC:U),Z,0,0)({0}S:S$gptr$0$0({3}ST__00000000:S),Z,0,0)] T:Ftests$__00000000[({0}S:S$memtype$0$0({1}SC:U),Z,0,0)({1}S:S$address$0$0({2}STSI_UU16:S),Z,0,0)] T:Ftests$__00000010[({0}S:S$bits$0$0({1}ST__00000011:S),Z,0,0)({0}S:S$c$0$0({1}SC:U),Z,0,0)] T:Ftests$__00000001[({0}S:S$bmRequestType$0$0({1}ST__00000002:S),Z,0,0)({1}S:S$bRequest$0$0({1}SC:U),Z,0,0)({2}S:S$wValue$0$0({2}SI:U),Z,0,0)({4}S:S$wIndex$0$0({2}SI:U),Z,0,0)({6}S:S$wLength$0$0({2}SI:U),Z,0,0)] T:Ftests$__00000011[({0}S:S$callback$0$0({1}SB0$1:U),Z,0,0)({0}S:S$outPacketPending$0$0({1}SB1$1:U),Z,0,0)({0}S:S$inPacketPending$0$0({1}SB2$1:U),Z,0,0)({0}S:S$waitForRead$0$0({1}SB3$1:U),Z,0,0)] T:Ftests$__00000002[({0}S:S$Recipient$0$0({1}SB0$5:U),Z,0,0)({0}S:S$Type$0$0({1}SB5$2:U),Z,0,0)({0}S:S$Direction$0$0({1}SB7$1:U),Z,0,0)] T:Ftests$__00000012[({0}S:S$configurationValue$0$0({1}SC:U),Z,0,0)({1}S:S$numberOfStrings$0$0({1}SC:U),Z,0,0)({2}S:S$state$0$0({1}SC:U),Z,0,0)({3}S:S$savedState$0$0({1}SC:U),Z,0,0)({4}S:S$setup$0$0({8}ST__00000001:S),Z,0,0)({12}S:S$ep0String$0$0({1}ST__00000013:S),Z,0,0)({13}S:S$ep0$0$0({7}ST__00000009:S),Z,0,0)({20}S:S$ep1in$0$0({7}ST__00000009:S),Z,0,0)({27}S:S$ep1out$0$0({7}ST__00000009:S),Z,0,0)({34}S:S$deviceDescriptor$0$0({3}DG,ST__00000004:S),Z,0,0)({37}S:S$configDescriptor$0$0({3}DG,ST__00000005:S),Z,0,0)({40}S:S$stringDescriptors$0$0({3}DG,DG,DG,SC:U),Z,0,0)] T:Ftests$__00000003[({0}S:S$setup$0$0({8}ST__00000001:S),Z,0,0)({0}S:S$c$0$0({8}DA8d,SC:U),Z,0,0)({0}S:S$i$0$0({8}DA4d,SI:U),Z,0,0)] T:Ftests$__00000013[({0}S:S$encoding$0$0({1}ST__00000014:S),Z,0,0)({0}S:S$c$0$0({1}SC:U),Z,0,0)] T:Ftests$__00000004[({0}S:S$bLength$0$0({1}SC:U),Z,0,0)({1}S:S$bDescriptorType$0$0({1}SC:U),Z,0,0)({2}S:S$bcdUSB$0$0({2}SI:U),Z,0,0)({4}S:S$bDeviceClass$0$0({1}SC:U),Z,0,0)({5}S:S$bDeviceSubClass$0$0({1}SC:U),Z,0,0)({6}S:S$bDeviceProtocol$0$0({1}SC:U),Z,0,0)({7}S:S$bMaxPacketSize0$0$0({1}SC:U),Z,0,0)({8}S:S$idVendor$0$0({2}SI:U),Z,0,0)({10}S:S$idProduct$0$0({2}SI:U),Z,0,0)({12}S:S$bcdDevice$0$0({2}SI:U),Z,0,0)({14}S:S$iManufacturer$0$0({1}SC:U),Z,0,0)({15}S:S$iProduct$0$0({1}SC:U),Z,0,0)({16}S:S$iSerialNumber$0$0({1}SC:U),Z,0,0)({17}S:S$bNumConfigurations$0$0({1}SC:U),Z,0,0)] T:Ftests$__00000014[({0}S:S$type$0$0({1}SB0$7:U),Z,0,0)({0}S:S$init$0$0({1}SB7$1:U),Z,0,0)] T:Ftests$__00000005[({0}S:S$bLength$0$0({1}SC:U),Z,0,0)({1}S:S$bDescriptorType$0$0({1}SC:U),Z,0,0)({2}S:S$wTotalLength$0$0({2}SI:U),Z,0,0)({4}S:S$bNumInterfaces$0$0({1}SC:U),Z,0,0)({5}S:S$bConfigurationValue$0$0({1}SC:U),Z,0,0)({6}S:S$iConfiguration$0$0({1}SC:U),Z,0,0)({7}S:S$bmAttributes$0$0({1}SC:U),Z,0,0)({8}S:S$bMaxPower$0$0({1}SC:U),Z,0,0)] T:Ftests$__00000015[({0}S:S$init$0$0({60}ST__00000016:S),Z,0,0)({0}S:S$cont$0$0({60}ST__00000017:S),Z,0,0)] T:Ftests$__00000006[({0}S:S$bLength$0$0({1}SC:U),Z,0,0)({1}S:S$bDescriptorType$0$0({1}SC:U),Z,0,0)({2}S:S$bInterfaceNumber$0$0({1}SC:U),Z,0,0)({3}S:S$bAlternateSetting$0$0({1}SC:U),Z,0,0)({4}S:S$bNumEndpoints$0$0({1}SC:U),Z,0,0)({5}S:S$bInterfaceClass$0$0({1}SC:U),Z,0,0)({6}S:S$bInterfaceSubClass$0$0({1}SC:U),Z,0,0)({7}S:S$bInterfaceProtocol$0$0({1}SC:U),Z,0,0)({8}S:S$iInterface$0$0({1}SC:U),Z,0,0)] T:Ftests$__00000016[({0}S:S$cmd$0$0({1}SC:U),Z,0,0)({1}S:S$bcnth$0$0({1}SC:U),Z,0,0)({2}S:S$bcntl$0$0({1}SC:U),Z,0,0)({3}S:S$payload$0$0({57}DA57d,SC:U),Z,0,0)] T:Ftests$__00000007[({0}S:S$bLength$0$0({1}SC:U),Z,0,0)({1}S:S$bDescriptorType$0$0({1}SC:U),Z,0,0)({2}S:S$bEndpointAddress$0$0({1}SC:U),Z,0,0)({3}S:S$bmAttributes$0$0({1}SC:U),Z,0,0)({4}S:S$wMaxPacketSize$0$0({2}SI:U),Z,0,0)({6}S:S$bInterval$0$0({1}SC:U),Z,0,0)] T:Ftests$__00000017[({0}S:S$seq$0$0({1}SC:U),Z,0,0)({1}S:S$payload$0$0({59}DA59d,SC:U),Z,0,0)] T:Ftests$__00000008[({0}S:S$deviceDescriptor$0$0({3}DG,ST__00000004:S),Z,0,0)({3}S:S$configDescriptor$0$0({3}DG,SC:U),Z,0,0)({6}S:S$stringDescriptors$0$0({3}DG,DG,DG,SC:U),Z,0,0)({9}S:S$numberOfStrings$0$0({1}SC:U),Z,0,0)] T:Ftests$u2f_hid_msg[({0}S:S$cid$0$0({4}SL:U),Z,0,0)({4}S:S$pkt$0$0({60}ST__00000015:S),Z,0,0)] T:Ftests$__00000009[({0}S:S$buf$0$0({3}DG,SC:U),Z,0,0)({3}S:S$remaining$0$0({2}SI:U),Z,0,0)({5}S:S$state$0$0({1}SC:U),Z,0,0)({6}S:S$misc$0$0({1}ST__00000010:S),Z,0,0)] T:Ftests$APP_DATA[({0}S:S$tmp$0$0({70}DA70d,SC:U),Z,0,0)] T:Ftests$atecc_key_config[({0}S:S$private$0$0({1}SB0$1:U),Z,0,0)({0}S:S$pubinfo$0$0({1}SB1$1:U),Z,0,0)({0}S:S$keytype$0$0({1}SB2$3:U),Z,0,0)({0}S:S$lockable$0$0({1}SB5$1:U),Z,0,0)({0}S:S$reqrandom$0$0({1}SB6$1:U),Z,0,0)({0}S:S$reqauth$0$0({1}SB7$1:U),Z,0,0)({1}S:S$authkey$0$0({1}SB0$4:U),Z,0,0)({1}S:S$intrusiondisable$0$0({1}SB4$1:U),Z,0,0)({1}S:S$rfu$0$0({1}SB5$1:U),Z,0,0)({1}S:S$x509id$0$0({1}SB6$2:U),Z,0,0)] T:Ftests$u2f_hid_init_response[({0}S:S$cid$0$0({4}SL:U),Z,0,0)({4}S:S$version_id$0$0({1}SC:U),Z,0,0)({5}S:S$version_major$0$0({1}SC:U),Z,0,0)({6}S:S$version_minor$0$0({1}SC:U),Z,0,0)({7}S:S$version_build$0$0({1}SC:U),Z,0,0)({8}S:S$cflags$0$0({1}SC:U),Z,0,0)] T:Ftests$smb_interrupt_interface[({0}S:S$addr$0$0({1}SC:U),Z,0,0)({1}S:S$crc$0$0({2}SI:U),Z,0,0)({3}S:S$crc_offset$0$0({1}SC:U),Z,0,0)({4}S:S$write_buf$0$0({3}DG,SC:U),Z,0,0)({7}S:S$write_len$0$0({1}SC:U),Z,0,0)({8}S:S$write_offset$0$0({1}SC:U),Z,0,0)({9}S:S$read_len$0$0({1}SC:U),Z,0,0)({10}S:S$read_offset$0$0({1}SC:U),Z,0,0)({11}S:S$read_buf$0$0({3}DG,SC:U),Z,0,0)({14}S:S$write_ext_buf$0$0({3}DG,SC:U),Z,0,0)({17}S:S$write_ext_len$0$0({1}SC:U),Z,0,0)({18}S:S$write_ext_offset$0$0({1}SC:U),Z,0,0)({19}S:S$preflags$0$0({1}SC:U),Z,0,0)] T:Ftests$atecc_response[({0}S:S$len$0$0({1}SC:U),Z,0,0)({1}S:S$buf$0$0({3}DG,SC:U),Z,0,0)] T:Ftests$atecc_slot_config[({0}S:S$readkey$0$0({1}SB0$4:U),Z,0,0)({0}S:S$nomac$0$0({1}SB4$1:U),Z,0,0)({0}S:S$limiteduse$0$0({1}SB5$1:U),Z,0,0)({0}S:S$encread$0$0({1}SB6$1:U),Z,0,0)({0}S:S$secret$0$0({1}SB7$1:U),Z,0,0)({1}S:S$writekey$0$0({1}SB0$4:U),Z,0,0)({1}S:S$writeconfig$0$0({1}SB4$4:U),Z,0,0)] S:G$appdata$0$0({70}STAPP_DATA:S),E,0,0 S:G$_MS_$0$0({4}SL:U),E,0,0 S:G$SMB_addr$0$0({1}SC:U),E,0,0 S:G$SMB_write_len$0$0({1}SC:U),E,0,0 S:G$SMB_write_offset$0$0({1}SC:U),E,0,0 S:G$SMB_read_len$0$0({1}SC:U),E,0,0 S:G$SMB_read_offset$0$0({1}SC:U),E,0,0 S:G$SMB_write_ext_len$0$0({1}SC:U),E,0,0 S:G$SMB_write_ext_offset$0$0({1}SC:U),E,0,0 S:G$SMB_crc_offset$0$0({1}SC:U),E,0,0 S:G$SMB_FLAGS$0$0({1}SC:U),E,0,0 S:G$hidmsgbuf$0$0({64}DA64d,SC:U),F,0,0 S:G$myUsbDevice$0$0({43}ST__00000012:S),F,0,0 S:G$SMB_write_buf$0$0({3}DG,SC:U),F,0,0 S:G$SMB_read_buf$0$0({3}DG,SC:U),F,0,0 S:G$SMB_write_ext_buf$0$0({3}DG,SC:U),F,0,0 S:G$SMB_preflags$0$0({1}SC:U),F,0,0 S:G$SMB_crc$0$0({2}SI:U),F,0,0 S:G$ACC$0$0({1}SC:U),I,0,0 S:G$ADC0AC$0$0({1}SC:U),I,0,0 S:G$ADC0CF$0$0({1}SC:U),I,0,0 S:G$ADC0CN0$0$0({1}SC:U),I,0,0 S:G$ADC0CN1$0$0({1}SC:U),I,0,0 S:G$ADC0GTH$0$0({1}SC:U),I,0,0 S:G$ADC0GTL$0$0({1}SC:U),I,0,0 S:G$ADC0H$0$0({1}SC:U),I,0,0 S:G$ADC0L$0$0({1}SC:U),I,0,0 S:G$ADC0LTH$0$0({1}SC:U),I,0,0 S:G$ADC0LTL$0$0({1}SC:U),I,0,0 S:G$ADC0MX$0$0({1}SC:U),I,0,0 S:G$ADC0PWR$0$0({1}SC:U),I,0,0 S:G$ADC0TK$0$0({1}SC:U),I,0,0 S:G$B$0$0({1}SC:U),I,0,0 S:G$CKCON0$0$0({1}SC:U),I,0,0 S:G$CKCON1$0$0({1}SC:U),I,0,0 S:G$CLKSEL$0$0({1}SC:U),I,0,0 S:G$CMP0CN0$0$0({1}SC:U),I,0,0 S:G$CMP0CN1$0$0({1}SC:U),I,0,0 S:G$CMP0MD$0$0({1}SC:U),I,0,0 S:G$CMP0MX$0$0({1}SC:U),I,0,0 S:G$CMP1CN0$0$0({1}SC:U),I,0,0 S:G$CMP1CN1$0$0({1}SC:U),I,0,0 S:G$CMP1MD$0$0({1}SC:U),I,0,0 S:G$CMP1MX$0$0({1}SC:U),I,0,0 S:G$CRC0CN0$0$0({1}SC:U),I,0,0 S:G$CRC0CN1$0$0({1}SC:U),I,0,0 S:G$CRC0CNT$0$0({1}SC:U),I,0,0 S:G$CRC0DAT$0$0({1}SC:U),I,0,0 S:G$CRC0FLIP$0$0({1}SC:U),I,0,0 S:G$CRC0IN$0$0({1}SC:U),I,0,0 S:G$CRC0ST$0$0({1}SC:U),I,0,0 S:G$DERIVID$0$0({1}SC:U),I,0,0 S:G$DEVICEID$0$0({1}SC:U),I,0,0 S:G$DPH$0$0({1}SC:U),I,0,0 S:G$DPL$0$0({1}SC:U),I,0,0 S:G$EIE1$0$0({1}SC:U),I,0,0 S:G$EIE2$0$0({1}SC:U),I,0,0 S:G$EIP1$0$0({1}SC:U),I,0,0 S:G$EIP1H$0$0({1}SC:U),I,0,0 S:G$EIP2$0$0({1}SC:U),I,0,0 S:G$EIP2H$0$0({1}SC:U),I,0,0 S:G$EMI0CN$0$0({1}SC:U),I,0,0 S:G$FLKEY$0$0({1}SC:U),I,0,0 S:G$HFO0CAL$0$0({1}SC:U),I,0,0 S:G$HFO1CAL$0$0({1}SC:U),I,0,0 S:G$HFOCN$0$0({1}SC:U),I,0,0 S:G$I2C0CN0$0$0({1}SC:U),I,0,0 S:G$I2C0DIN$0$0({1}SC:U),I,0,0 S:G$I2C0DOUT$0$0({1}SC:U),I,0,0 S:G$I2C0FCN0$0$0({1}SC:U),I,0,0 S:G$I2C0FCN1$0$0({1}SC:U),I,0,0 S:G$I2C0FCT$0$0({1}SC:U),I,0,0 S:G$I2C0SLAD$0$0({1}SC:U),I,0,0 S:G$I2C0STAT$0$0({1}SC:U),I,0,0 S:G$IE$0$0({1}SC:U),I,0,0 S:G$IP$0$0({1}SC:U),I,0,0 S:G$IPH$0$0({1}SC:U),I,0,0 S:G$IT01CF$0$0({1}SC:U),I,0,0 S:G$LFO0CN$0$0({1}SC:U),I,0,0 S:G$P0$0$0({1}SC:U),I,0,0 S:G$P0MASK$0$0({1}SC:U),I,0,0 S:G$P0MAT$0$0({1}SC:U),I,0,0 S:G$P0MDIN$0$0({1}SC:U),I,0,0 S:G$P0MDOUT$0$0({1}SC:U),I,0,0 S:G$P0SKIP$0$0({1}SC:U),I,0,0 S:G$P1$0$0({1}SC:U),I,0,0 S:G$P1MASK$0$0({1}SC:U),I,0,0 S:G$P1MAT$0$0({1}SC:U),I,0,0 S:G$P1MDIN$0$0({1}SC:U),I,0,0 S:G$P1MDOUT$0$0({1}SC:U),I,0,0 S:G$P1SKIP$0$0({1}SC:U),I,0,0 S:G$P2$0$0({1}SC:U),I,0,0 S:G$P2MASK$0$0({1}SC:U),I,0,0 S:G$P2MAT$0$0({1}SC:U),I,0,0 S:G$P2MDIN$0$0({1}SC:U),I,0,0 S:G$P2MDOUT$0$0({1}SC:U),I,0,0 S:G$P2SKIP$0$0({1}SC:U),I,0,0 S:G$P3$0$0({1}SC:U),I,0,0 S:G$P3MDIN$0$0({1}SC:U),I,0,0 S:G$P3MDOUT$0$0({1}SC:U),I,0,0 S:G$PCA0CENT$0$0({1}SC:U),I,0,0 S:G$PCA0CLR$0$0({1}SC:U),I,0,0 S:G$PCA0CN0$0$0({1}SC:U),I,0,0 S:G$PCA0CPH0$0$0({1}SC:U),I,0,0 S:G$PCA0CPH1$0$0({1}SC:U),I,0,0 S:G$PCA0CPH2$0$0({1}SC:U),I,0,0 S:G$PCA0CPL0$0$0({1}SC:U),I,0,0 S:G$PCA0CPL1$0$0({1}SC:U),I,0,0 S:G$PCA0CPL2$0$0({1}SC:U),I,0,0 S:G$PCA0CPM0$0$0({1}SC:U),I,0,0 S:G$PCA0CPM1$0$0({1}SC:U),I,0,0 S:G$PCA0CPM2$0$0({1}SC:U),I,0,0 S:G$PCA0H$0$0({1}SC:U),I,0,0 S:G$PCA0L$0$0({1}SC:U),I,0,0 S:G$PCA0MD$0$0({1}SC:U),I,0,0 S:G$PCA0POL$0$0({1}SC:U),I,0,0 S:G$PCA0PWM$0$0({1}SC:U),I,0,0 S:G$PCON0$0$0({1}SC:U),I,0,0 S:G$PCON1$0$0({1}SC:U),I,0,0 S:G$PFE0CN$0$0({1}SC:U),I,0,0 S:G$PRTDRV$0$0({1}SC:U),I,0,0 S:G$PSCTL$0$0({1}SC:U),I,0,0 S:G$PSW$0$0({1}SC:U),I,0,0 S:G$REF0CN$0$0({1}SC:U),I,0,0 S:G$REG0CN$0$0({1}SC:U),I,0,0 S:G$REG1CN$0$0({1}SC:U),I,0,0 S:G$REVID$0$0({1}SC:U),I,0,0 S:G$RSTSRC$0$0({1}SC:U),I,0,0 S:G$SBCON1$0$0({1}SC:U),I,0,0 S:G$SBRLH1$0$0({1}SC:U),I,0,0 S:G$SBRLL1$0$0({1}SC:U),I,0,0 S:G$SBUF0$0$0({1}SC:U),I,0,0 S:G$SBUF1$0$0({1}SC:U),I,0,0 S:G$SCON0$0$0({1}SC:U),I,0,0 S:G$SCON1$0$0({1}SC:U),I,0,0 S:G$SFRPAGE$0$0({1}SC:U),I,0,0 S:G$SFRPGCN$0$0({1}SC:U),I,0,0 S:G$SFRSTACK$0$0({1}SC:U),I,0,0 S:G$SMB0ADM$0$0({1}SC:U),I,0,0 S:G$SMB0ADR$0$0({1}SC:U),I,0,0 S:G$SMB0CF$0$0({1}SC:U),I,0,0 S:G$SMB0CN0$0$0({1}SC:U),I,0,0 S:G$SMB0DAT$0$0({1}SC:U),I,0,0 S:G$SMB0FCN0$0$0({1}SC:U),I,0,0 S:G$SMB0FCN1$0$0({1}SC:U),I,0,0 S:G$SMB0FCT$0$0({1}SC:U),I,0,0 S:G$SMB0RXLN$0$0({1}SC:U),I,0,0 S:G$SMB0TC$0$0({1}SC:U),I,0,0 S:G$SMOD1$0$0({1}SC:U),I,0,0 S:G$SP$0$0({1}SC:U),I,0,0 S:G$SPI0CFG$0$0({1}SC:U),I,0,0 S:G$SPI0CKR$0$0({1}SC:U),I,0,0 S:G$SPI0CN0$0$0({1}SC:U),I,0,0 S:G$SPI0DAT$0$0({1}SC:U),I,0,0 S:G$SPI0FCN0$0$0({1}SC:U),I,0,0 S:G$SPI0FCN1$0$0({1}SC:U),I,0,0 S:G$SPI0FCT$0$0({1}SC:U),I,0,0 S:G$TCON$0$0({1}SC:U),I,0,0 S:G$TH0$0$0({1}SC:U),I,0,0 S:G$TH1$0$0({1}SC:U),I,0,0 S:G$TL0$0$0({1}SC:U),I,0,0 S:G$TL1$0$0({1}SC:U),I,0,0 S:G$TMOD$0$0({1}SC:U),I,0,0 S:G$TMR2CN0$0$0({1}SC:U),I,0,0 S:G$TMR2CN1$0$0({1}SC:U),I,0,0 S:G$TMR2H$0$0({1}SC:U),I,0,0 S:G$TMR2L$0$0({1}SC:U),I,0,0 S:G$TMR2RLH$0$0({1}SC:U),I,0,0 S:G$TMR2RLL$0$0({1}SC:U),I,0,0 S:G$TMR3CN0$0$0({1}SC:U),I,0,0 S:G$TMR3CN1$0$0({1}SC:U),I,0,0 S:G$TMR3H$0$0({1}SC:U),I,0,0 S:G$TMR3L$0$0({1}SC:U),I,0,0 S:G$TMR3RLH$0$0({1}SC:U),I,0,0 S:G$TMR3RLL$0$0({1}SC:U),I,0,0 S:G$TMR4CN0$0$0({1}SC:U),I,0,0 S:G$TMR4CN1$0$0({1}SC:U),I,0,0 S:G$TMR4H$0$0({1}SC:U),I,0,0 S:G$TMR4L$0$0({1}SC:U),I,0,0 S:G$TMR4RLH$0$0({1}SC:U),I,0,0 S:G$TMR4RLL$0$0({1}SC:U),I,0,0 S:G$UART1FCN0$0$0({1}SC:U),I,0,0 S:G$UART1FCN1$0$0({1}SC:U),I,0,0 S:G$UART1FCT$0$0({1}SC:U),I,0,0 S:G$UART1LIN$0$0({1}SC:U),I,0,0 S:G$USB0ADR$0$0({1}SC:U),I,0,0 S:G$USB0AEC$0$0({1}SC:U),I,0,0 S:G$USB0CDCF$0$0({1}SC:U),I,0,0 S:G$USB0CDCN$0$0({1}SC:U),I,0,0 S:G$USB0CDSTA$0$0({1}SC:U),I,0,0 S:G$USB0CF$0$0({1}SC:U),I,0,0 S:G$USB0DAT$0$0({1}SC:U),I,0,0 S:G$USB0XCN$0$0({1}SC:U),I,0,0 S:G$VDM0CN$0$0({1}SC:U),I,0,0 S:G$WDTCN$0$0({1}SC:U),I,0,0 S:G$XBR0$0$0({1}SC:U),I,0,0 S:G$XBR1$0$0({1}SC:U),I,0,0 S:G$XBR2$0$0({1}SC:U),I,0,0 S:G$ADC0GT$0$0({2}SI:U),I,0,0 S:G$ADC0$0$0({2}SI:U),I,0,0 S:G$ADC0LT$0$0({2}SI:U),I,0,0 S:G$DP$0$0({2}SI:U),I,0,0 S:G$PCA0CP0$0$0({2}SI:U),I,0,0 S:G$PCA0CP1$0$0({2}SI:U),I,0,0 S:G$PCA0CP2$0$0({2}SI:U),I,0,0 S:G$PCA0$0$0({2}SI:U),I,0,0 S:G$SBRL1$0$0({2}SI:U),I,0,0 S:G$TMR2$0$0({2}SI:U),I,0,0 S:G$TMR2RL$0$0({2}SI:U),I,0,0 S:G$TMR3$0$0({2}SI:U),I,0,0 S:G$TMR3RL$0$0({2}SI:U),I,0,0 S:G$TMR4$0$0({2}SI:U),I,0,0 S:G$TMR4RL$0$0({2}SI:U),I,0,0 S:G$_XPAGE$0$0({1}SC:U),I,0,0 S:G$ACC_ACC0$0$0({1}SX:U),J,0,0 S:G$ACC_ACC1$0$0({1}SX:U),J,0,0 S:G$ACC_ACC2$0$0({1}SX:U),J,0,0 S:G$ACC_ACC3$0$0({1}SX:U),J,0,0 S:G$ACC_ACC4$0$0({1}SX:U),J,0,0 S:G$ACC_ACC5$0$0({1}SX:U),J,0,0 S:G$ACC_ACC6$0$0({1}SX:U),J,0,0 S:G$ACC_ACC7$0$0({1}SX:U),J,0,0 S:G$ADC0CN0_ADCM0$0$0({1}SX:U),J,0,0 S:G$ADC0CN0_ADCM1$0$0({1}SX:U),J,0,0 S:G$ADC0CN0_ADCM2$0$0({1}SX:U),J,0,0 S:G$ADC0CN0_ADWINT$0$0({1}SX:U),J,0,0 S:G$ADC0CN0_ADBUSY$0$0({1}SX:U),J,0,0 S:G$ADC0CN0_ADINT$0$0({1}SX:U),J,0,0 S:G$ADC0CN0_ADBMEN$0$0({1}SX:U),J,0,0 S:G$ADC0CN0_ADEN$0$0({1}SX:U),J,0,0 S:G$B_B0$0$0({1}SX:U),J,0,0 S:G$B_B1$0$0({1}SX:U),J,0,0 S:G$B_B2$0$0({1}SX:U),J,0,0 S:G$B_B3$0$0({1}SX:U),J,0,0 S:G$B_B4$0$0({1}SX:U),J,0,0 S:G$B_B5$0$0({1}SX:U),J,0,0 S:G$B_B6$0$0({1}SX:U),J,0,0 S:G$B_B7$0$0({1}SX:U),J,0,0 S:G$IE_EX0$0$0({1}SX:U),J,0,0 S:G$IE_ET0$0$0({1}SX:U),J,0,0 S:G$IE_EX1$0$0({1}SX:U),J,0,0 S:G$IE_ET1$0$0({1}SX:U),J,0,0 S:G$IE_ES0$0$0({1}SX:U),J,0,0 S:G$IE_ET2$0$0({1}SX:U),J,0,0 S:G$IE_ESPI0$0$0({1}SX:U),J,0,0 S:G$IE_EA$0$0({1}SX:U),J,0,0 S:G$IP_PX0$0$0({1}SX:U),J,0,0 S:G$IP_PT0$0$0({1}SX:U),J,0,0 S:G$IP_PX1$0$0({1}SX:U),J,0,0 S:G$IP_PT1$0$0({1}SX:U),J,0,0 S:G$IP_PS0$0$0({1}SX:U),J,0,0 S:G$IP_PT2$0$0({1}SX:U),J,0,0 S:G$IP_PSPI0$0$0({1}SX:U),J,0,0 S:G$P0_B0$0$0({1}SX:U),J,0,0 S:G$P0_B1$0$0({1}SX:U),J,0,0 S:G$P0_B2$0$0({1}SX:U),J,0,0 S:G$P0_B3$0$0({1}SX:U),J,0,0 S:G$P0_B4$0$0({1}SX:U),J,0,0 S:G$P0_B5$0$0({1}SX:U),J,0,0 S:G$P0_B6$0$0({1}SX:U),J,0,0 S:G$P0_B7$0$0({1}SX:U),J,0,0 S:G$P1_B0$0$0({1}SX:U),J,0,0 S:G$P1_B1$0$0({1}SX:U),J,0,0 S:G$P1_B2$0$0({1}SX:U),J,0,0 S:G$P1_B3$0$0({1}SX:U),J,0,0 S:G$P1_B4$0$0({1}SX:U),J,0,0 S:G$P1_B5$0$0({1}SX:U),J,0,0 S:G$P1_B6$0$0({1}SX:U),J,0,0 S:G$P1_B7$0$0({1}SX:U),J,0,0 S:G$P2_B0$0$0({1}SX:U),J,0,0 S:G$P2_B1$0$0({1}SX:U),J,0,0 S:G$P2_B2$0$0({1}SX:U),J,0,0 S:G$P2_B3$0$0({1}SX:U),J,0,0 S:G$P3_B0$0$0({1}SX:U),J,0,0 S:G$P3_B1$0$0({1}SX:U),J,0,0 S:G$PCA0CN0_CCF0$0$0({1}SX:U),J,0,0 S:G$PCA0CN0_CCF1$0$0({1}SX:U),J,0,0 S:G$PCA0CN0_CCF2$0$0({1}SX:U),J,0,0 S:G$PCA0CN0_CR$0$0({1}SX:U),J,0,0 S:G$PCA0CN0_CF$0$0({1}SX:U),J,0,0 S:G$PSW_PARITY$0$0({1}SX:U),J,0,0 S:G$PSW_F1$0$0({1}SX:U),J,0,0 S:G$PSW_OV$0$0({1}SX:U),J,0,0 S:G$PSW_RS0$0$0({1}SX:U),J,0,0 S:G$PSW_RS1$0$0({1}SX:U),J,0,0 S:G$PSW_F0$0$0({1}SX:U),J,0,0 S:G$PSW_AC$0$0({1}SX:U),J,0,0 S:G$PSW_CY$0$0({1}SX:U),J,0,0 S:G$SCON0_RI$0$0({1}SX:U),J,0,0 S:G$SCON0_TI$0$0({1}SX:U),J,0,0 S:G$SCON0_RB8$0$0({1}SX:U),J,0,0 S:G$SCON0_TB8$0$0({1}SX:U),J,0,0 S:G$SCON0_REN$0$0({1}SX:U),J,0,0 S:G$SCON0_MCE$0$0({1}SX:U),J,0,0 S:G$SCON0_SMODE$0$0({1}SX:U),J,0,0 S:G$SCON1_RI$0$0({1}SX:U),J,0,0 S:G$SCON1_TI$0$0({1}SX:U),J,0,0 S:G$SCON1_RBX$0$0({1}SX:U),J,0,0 S:G$SCON1_TBX$0$0({1}SX:U),J,0,0 S:G$SCON1_REN$0$0({1}SX:U),J,0,0 S:G$SCON1_PERR$0$0({1}SX:U),J,0,0 S:G$SCON1_OVR$0$0({1}SX:U),J,0,0 S:G$SMB0CN0_SI$0$0({1}SX:U),J,0,0 S:G$SMB0CN0_ACK$0$0({1}SX:U),J,0,0 S:G$SMB0CN0_ARBLOST$0$0({1}SX:U),J,0,0 S:G$SMB0CN0_ACKRQ$0$0({1}SX:U),J,0,0 S:G$SMB0CN0_STO$0$0({1}SX:U),J,0,0 S:G$SMB0CN0_STA$0$0({1}SX:U),J,0,0 S:G$SMB0CN0_TXMODE$0$0({1}SX:U),J,0,0 S:G$SMB0CN0_MASTER$0$0({1}SX:U),J,0,0 S:G$SPI0CN0_SPIEN$0$0({1}SX:U),J,0,0 S:G$SPI0CN0_TXNF$0$0({1}SX:U),J,0,0 S:G$SPI0CN0_NSSMD0$0$0({1}SX:U),J,0,0 S:G$SPI0CN0_NSSMD1$0$0({1}SX:U),J,0,0 S:G$SPI0CN0_RXOVRN$0$0({1}SX:U),J,0,0 S:G$SPI0CN0_MODF$0$0({1}SX:U),J,0,0 S:G$SPI0CN0_WCOL$0$0({1}SX:U),J,0,0 S:G$SPI0CN0_SPIF$0$0({1}SX:U),J,0,0 S:G$TCON_IT0$0$0({1}SX:U),J,0,0 S:G$TCON_IE0$0$0({1}SX:U),J,0,0 S:G$TCON_IT1$0$0({1}SX:U),J,0,0 S:G$TCON_IE1$0$0({1}SX:U),J,0,0 S:G$TCON_TR0$0$0({1}SX:U),J,0,0 S:G$TCON_TF0$0$0({1}SX:U),J,0,0 S:G$TCON_TR1$0$0({1}SX:U),J,0,0 S:G$TCON_TF1$0$0({1}SX:U),J,0,0 S:G$TMR2CN0_T2XCLK0$0$0({1}SX:U),J,0,0 S:G$TMR2CN0_T2XCLK1$0$0({1}SX:U),J,0,0 S:G$TMR2CN0_TR2$0$0({1}SX:U),J,0,0 S:G$TMR2CN0_T2SPLIT$0$0({1}SX:U),J,0,0 S:G$TMR2CN0_TF2CEN$0$0({1}SX:U),J,0,0 S:G$TMR2CN0_TF2LEN$0$0({1}SX:U),J,0,0 S:G$TMR2CN0_TF2L$0$0({1}SX:U),J,0,0 S:G$TMR2CN0_TF2H$0$0({1}SX:U),J,0,0 S:G$TMR4CN0_T4XCLK0$0$0({1}SX:U),J,0,0 S:G$TMR4CN0_T4XCLK1$0$0({1}SX:U),J,0,0 S:G$TMR4CN0_TR4$0$0({1}SX:U),J,0,0 S:G$TMR4CN0_T4SPLIT$0$0({1}SX:U),J,0,0 S:G$TMR4CN0_TF4CEN$0$0({1}SX:U),J,0,0 S:G$TMR4CN0_TF4LEN$0$0({1}SX:U),J,0,0 S:G$TMR4CN0_TF4L$0$0({1}SX:U),J,0,0 S:G$TMR4CN0_TF4H$0$0({1}SX:U),J,0,0 S:G$UART1FCN1_RIE$0$0({1}SX:U),J,0,0 S:G$UART1FCN1_RXTO0$0$0({1}SX:U),J,0,0 S:G$UART1FCN1_RXTO1$0$0({1}SX:U),J,0,0 S:G$UART1FCN1_RFRQ$0$0({1}SX:U),J,0,0 S:G$UART1FCN1_TIE$0$0({1}SX:U),J,0,0 S:G$UART1FCN1_TXHOLD$0$0({1}SX:U),J,0,0 S:G$UART1FCN1_TXNF$0$0({1}SX:U),J,0,0 S:G$UART1FCN1_TFRQ$0$0({1}SX:U),J,0,0 S:G$U2F_BUTTON$0$0({1}SX:U),J,0,0 S:G$U2F_BUTTON_VAL$0$0({1}SX:U),J,0,0 S:G$U2F_RED$0$0({1}SX:U),J,0,0 S:G$U2F_GREEN$0$0({1}SX:U),J,0,0 S:G$U2F_BLUE$0$0({1}SX:U),J,0,0 S:G$_print_format$0$0({2}DF,SI:S),C,0,0 S:G$printf_small$0$0({2}DF,SV:S),C,0,0 S:G$printf$0$0({2}DF,SI:S),C,0,0 S:G$vprintf$0$0({2}DF,SI:S),C,0,0 S:G$sprintf$0$0({2}DF,SI:S),C,0,0 S:G$vsprintf$0$0({2}DF,SI:S),C,0,0 S:G$puts$0$0({2}DF,SI:S),C,0,0 S:G$getchar$0$0({2}DF,SC:U),C,0,0 S:G$putchar$0$0({2}DF,SV:S),C,0,0 S:G$printf_fast$0$0({2}DF,SV:S),C,0,0 S:G$printf_fast_f$0$0({2}DF,SV:S),C,0,0 S:G$printf_tiny$0$0({2}DF,SV:S),C,0,0 S:G$atof$0$0({2}DF,SF:S),C,0,0 S:G$atoi$0$0({2}DF,SI:S),C,0,0 S:G$atol$0$0({2}DF,SL:S),C,0,0 S:G$_uitoa$0$0({2}DF,SV:S),C,0,0 S:G$_itoa$0$0({2}DF,SV:S),C,0,0 S:G$_ultoa$0$0({2}DF,SV:S),C,0,0 S:G$_ltoa$0$0({2}DF,SV:S),C,0,0 S:G$rand$0$0({2}DF,SI:S),C,0,0 S:G$srand$0$0({2}DF,SV:S),C,0,0 S:G$calloc$0$0({2}DF,DX,SV:S),C,0,0 S:G$malloc$0$0({2}DF,DX,SV:S),C,0,0 S:G$realloc$0$0({2}DF,DX,SV:S),C,0,0 S:G$aligned_alloc$0$0({2}DF,DG,SV:S),C,0,2 S:G$free$0$0({2}DF,SV:S),C,0,0 S:G$abs$0$0({2}DF,SI:S),C,0,0 S:G$labs$0$0({2}DF,SL:S),C,0,0 S:G$mblen$0$0({2}DF,SI:S),C,0,0 S:G$mbtowc$0$0({2}DF,SI:S),C,0,0 S:G$wctomb$0$0({2}DF,SI:S),C,0,0 S:G$memcpy$0$0({2}DF,DG,SV:S),C,0,0 S:G$memmove$0$0({2}DF,DG,SV:S),C,0,0 S:G$strcpy$0$0({2}DF,DG,SC:U),C,0,0 S:G$strncpy$0$0({2}DF,DG,SC:U),C,0,0 S:G$strcat$0$0({2}DF,DG,SC:U),C,0,0 S:G$strncat$0$0({2}DF,DG,SC:U),C,0,0 S:G$memcmp$0$0({2}DF,SI:S),C,0,0 S:G$strcmp$0$0({2}DF,SI:S),C,0,0 S:G$strncmp$0$0({2}DF,SI:S),C,0,0 S:G$strxfrm$0$0({2}DF,SI:U),C,0,0 S:G$memchr$0$0({2}DF,DG,SV:S),C,0,0 S:G$strchr$0$0({2}DF,DG,SC:U),C,0,0 S:G$strcspn$0$0({2}DF,SI:U),C,0,0 S:G$strpbrk$0$0({2}DF,DG,SC:U),C,0,0 S:G$strrchr$0$0({2}DF,DG,SC:U),C,0,0 S:G$strspn$0$0({2}DF,SI:U),C,0,0 S:G$strstr$0$0({2}DF,DG,SC:U),C,0,0 S:G$strtok$0$0({2}DF,DG,SC:U),C,0,0 S:G$memset$0$0({2}DF,DG,SV:S),C,0,0 S:G$strlen$0$0({2}DF,SI:U),C,0,0 S:G$USBD_SetUsbState$0$0({2}DF,SV:S),C,0,0 S:G$USBDCH9_SetupCmd$0$0({2}DF,SC:U),C,0,0 S:G$USBD_AbortAllTransfers$0$0({2}DF,SV:S),C,0,0 S:G$USBD_AbortTransfer$0$0({2}DF,SC:S),C,0,0 S:G$USBD_Connect$0$0({2}DF,SV:S),C,0,0 S:G$USBD_Disconnect$0$0({2}DF,SV:S),C,0,0 S:G$USBD_EpIsBusy$0$0({2}DF,SB0$1:U),C,0,0 S:G$USBD_GetUsbState$0$0({2}DF,SC:U),C,0,0 S:G$USBD_Init$0$0({2}DF,SC:S),C,0,0 S:G$USBD_Read$0$0({2}DF,SC:S),C,0,0 S:G$USBD_RemoteWakeup$0$0({2}DF,SC:S),C,0,0 S:G$USBD_StallEp$0$0({2}DF,SC:S),C,0,0 S:G$USBD_Stop$0$0({2}DF,SV:S),C,0,0 S:G$USBD_Suspend$0$0({2}DF,SV:S),C,0,0 S:G$USBD_UnStallEp$0$0({2}DF,SC:S),C,0,0 S:G$USBD_Write$0$0({2}DF,SC:S),C,0,0 S:G$USBD_EnterHandler$0$0({2}DF,SV:S),C,0,0 S:G$USBD_ExitHandler$0$0({2}DF,SV:S),C,0,0 S:G$USBD_ResetCb$0$0({2}DF,SV:S),C,0,0 S:G$USBD_SofCb$0$0({2}DF,SV:S),C,0,0 S:G$USBD_DeviceStateChangeCb$0$0({2}DF,SV:S),C,0,0 S:G$USBD_IsSelfPoweredCb$0$0({2}DF,SB0$1:U),C,0,0 S:G$USBD_SetupCmdCb$0$0({2}DF,SC:U),C,0,0 S:G$USBD_SetInterfaceCb$0$0({2}DF,SC:U),C,0,0 S:G$USBD_RemoteWakeupCb$0$0({2}DF,SB0$1:U),C,0,0 S:G$USBD_RemoteWakeupDelay$0$0({2}DF,SV:S),C,0,0 S:G$USBD_Run$0$0({2}DF,SV:S),C,0,0 S:G$USBD_XferCompleteCb$0$0({2}DF,SI:U),C,0,0 S:G$USB_ReadFIFO$0$0({2}DF,SV:S),C,0,0 S:G$USB_WriteFIFO$0$0({2}DF,SV:S),C,0,0 S:G$USB_GetIntsEnabled$0$0({2}DF,SB0$1:U),C,0,0 S:G$USB_IsRegulatorEnabled$0$0({2}DF,SB0$1:U),C,0,0 S:G$USB_IsPrefetchEnabled$0$0({2}DF,SB0$1:U),C,0,0 S:G$USB_SuspendOscillator$0$0({2}DF,SV:S),C,0,0 S:G$USB_SetIndex$0$0({2}DF,SV:S),C,0,0 S:G$USB_GetCommonInts$0$0({2}DF,SC:U),C,0,0 S:G$USB_GetInInts$0$0({2}DF,SC:U),C,0,0 S:G$USB_GetOutInts$0$0({2}DF,SC:U),C,0,0 S:G$USB_GetIndex$0$0({2}DF,SC:U),C,0,0 S:G$USB_IsSuspended$0$0({2}DF,SB0$1:U),C,0,0 S:G$USB_GetSetupEnd$0$0({2}DF,SB0$1:U),C,0,0 S:G$USB_Ep0SentStall$0$0({2}DF,SB0$1:U),C,0,0 S:G$USB_Ep0InPacketReady$0$0({2}DF,SB0$1:U),C,0,0 S:G$USB_Ep0OutPacketReady$0$0({2}DF,SB0$1:U),C,0,0 S:G$USB_Ep0GetCount$0$0({2}DF,SC:U),C,0,0 S:G$USB_EpnInGetSentStall$0$0({2}DF,SB0$1:U),C,0,0 S:G$USB_EpnGetInPacketReady$0$0({2}DF,SB0$1:U),C,0,0 S:G$USB_EpnOutGetSentStall$0$0({2}DF,SB0$1:U),C,0,0 S:G$USB_EpnGetOutPacketReady$0$0({2}DF,SB0$1:U),C,0,0 S:G$USB_EpOutGetCount$0$0({2}DF,SI:U),C,0,0 S:G$USB_GetSofNumber$0$0({2}DF,SI:U),C,0,0 S:G$USB_AbortInEp$0$0({2}DF,SV:S),C,0,0 S:G$USB_AbortOutEp$0$0({2}DF,SV:S),C,0,0 S:G$USB_ActivateEp$0$0({2}DF,SV:S),C,0,0 S:G$u2f_hid_init$0$0({2}DF,SV:S),C,0,0 S:G$u2f_hid_set_len$0$0({2}DF,SV:S),C,0,0 S:G$u2f_hid_writeback$0$0({2}DF,SV:S),C,0,0 S:G$u2f_hid_flush$0$0({2}DF,SV:S),C,0,0 S:G$u2f_hid_request$0$0({2}DF,SV:S),C,0,0 S:G$u2f_hid_check_timeouts$0$0({2}DF,SV:S),C,0,0 S:G$u2f_print_hid_check_timeouts$0$0({2}DF,SV:S),C,0,0 S:G$set_app_u2f_hid_msg$0$0({2}DF,SV:S),C,0,0 S:G$set_app_error$0$0({2}DF,SV:S),C,0,0 S:G$get_app_error$0$0({2}DF,SC:U),C,0,0 S:G$get_app_state$0$0({2}DF,SC:U),C,0,0 S:G$set_app_state$0$0({2}DF,SV:S),C,0,0 S:G$rgb$0$0({2}DF,SV:S),C,0,0 S:G$app_wink$0$0({2}DF,SV:S),C,0,0 S:G$u2f_init$0$0({2}DF,SV:S),C,0,0 S:G$u2f_wipe_keys$0$0({2}DF,SC:S),C,0,0 S:G$u2f_delay$0$0({2}DF,SV:S),C,0,0 S:G$usb_write$0$0({2}DF,SV:S),C,0,0 S:G$putf$0$0({2}DF,SV:S),C,0,0 S:G$dump_hex$0$0({2}DF,SV:S),C,0,0 S:G$u2f_prints$0$0({2}DF,SV:S),C,0,0 S:G$__int2strn$0$0({2}DF,DG,SC:U),C,0,0 S:G$u2f_putd$0$0({2}DF,SV:S),C,0,0 S:G$u2f_putx$0$0({2}DF,SV:S),C,0,0 S:G$u2f_printd$0$0({2}DF,SV:S),C,0,0 S:G$u2f_printx$0$0({2}DF,SV:S),C,0,0 S:G$u2f_printb$0$0({2}DF,SV:S),C,0,0 S:G$u2f_printlx$0$0({2}DF,SV:S),C,0,0 S:G$smb_init$0$0({2}DF,SV:S),C,0,0 S:G$smb_read$0$0({2}DF,SC:U),C,0,0 S:G$smb_write$0$0({2}DF,SV:S),C,0,0 S:G$smb_set_ext_write$0$0({2}DF,SV:S),C,0,0 S:G$reverse_bits$0$0({2}DF,SI:U),C,0,0 S:G$feed_crc$0$0({2}DF,SI:U),C,0,0 S:G$atecc_idle$0$0({2}DF,SV:S),C,0,0 S:G$atecc_wake$0$0({2}DF,SV:S),C,0,0 S:G$atecc_sleep$0$0({2}DF,SV:S),C,0,0 S:G$atecc_send$0$0({2}DF,SC:S),C,0,0 S:G$atecc_recv$0$0({2}DF,SC:S),C,0,0 S:G$atecc_send_recv$0$0({2}DF,SC:S),C,0,0 S:G$atecc_write_eeprom$0$0({2}DF,SC:S),C,0,0 S:G$eeprom_init$0$0({2}DF,SV:S),C,0,0 S:G$eeprom_read$0$0({2}DF,SV:S),C,0,0 S:G$_eeprom_write$0$0({2}DF,SV:S),C,0,0 S:G$ReportDescriptor0$0$0({34}DA34d,SC:U),D,0,0 S:G$deviceDesc$0$0({0}DA0d,SC:U),D,0,0 S:G$configDesc$0$0({0}DA0d,SC:U),D,0,0 S:G$initstruct$0$0({10}ST__00000008:S),D,0,0 S:G$WMASK$0$0({0}DA0d,SC:U),D,0,0 S:G$RMASK$0$0({0}DA0d,SC:U),D,0,0
------------------------------------------------------------------------------ -- -- -- GNAT LIBRARY COMPONENTS -- -- -- -- A D A . C O N T A I N E R S . B O U N D E D _ H A S H E D _ S E T S -- -- -- -- S p e c -- -- -- -- Copyright (C) 2004-2012, Free Software Foundation, Inc. -- -- -- -- This specification is derived from the Ada Reference Manual for use with -- -- GNAT. The copyright notice above, and the license provisions that follow -- -- apply solely to the contents of the part following the private keyword. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- -- -- -- -- -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- This unit was originally developed by Matthew J Heaney. -- ------------------------------------------------------------------------------ with Ada.Iterator_Interfaces; private with Ada.Containers.Hash_Tables; private with Ada.Streams; generic type Element_Type is private; with function Hash (Element : Element_Type) return Hash_Type; with function Equivalent_Elements (Left, Right : Element_Type) return Boolean; with function "=" (Left, Right : Element_Type) return Boolean is <>; package Ada.Containers.Bounded_Hashed_Sets is pragma Pure; pragma Remote_Types; type Set (Capacity : Count_Type; Modulus : Hash_Type) is tagged private with Constant_Indexing => Constant_Reference, Default_Iterator => Iterate, Iterator_Element => Element_Type; pragma Preelaborable_Initialization (Set); type Cursor is private; pragma Preelaborable_Initialization (Cursor); Empty_Set : constant Set; -- Set objects declared without an initialization expression are -- initialized to the value Empty_Set. No_Element : constant Cursor; -- Cursor objects declared without an initialization expression are -- initialized to the value No_Element. function Has_Element (Position : Cursor) return Boolean; -- Equivalent to Position /= No_Element package Set_Iterator_Interfaces is new Ada.Iterator_Interfaces (Cursor, Has_Element); function "=" (Left, Right : Set) return Boolean; -- For each element in Left, set equality attempts to find the equal -- element in Right; if a search fails, then set equality immediately -- returns False. The search works by calling Hash to find the bucket in -- the Right set that corresponds to the Left element. If the bucket is -- non-empty, the search calls the generic formal element equality operator -- to compare the element (in Left) to the element of each node in the -- bucket (in Right); the search terminates when a matching node in the -- bucket is found, or the nodes in the bucket are exhausted. (Note that -- element equality is called here, not Equivalent_Elements. Set equality -- is the only operation in which element equality is used. Compare set -- equality to Equivalent_Sets, which does call Equivalent_Elements.) function Equivalent_Sets (Left, Right : Set) return Boolean; -- Similar to set equality, with the difference that the element in Left is -- compared to the elements in Right using the generic formal -- Equivalent_Elements operation instead of element equality. function To_Set (New_Item : Element_Type) return Set; -- Constructs a singleton set comprising New_Element. To_Set calls Hash to -- determine the bucket for New_Item. function Capacity (Container : Set) return Count_Type; -- Returns the current capacity of the set. Capacity is the maximum length -- before which rehashing in guaranteed not to occur. procedure Reserve_Capacity (Container : in out Set; Capacity : Count_Type); -- If the value of the Capacity actual parameter is less or equal to -- Container.Capacity, then the operation has no effect. Otherwise it -- raises Capacity_Error (as no expansion of capacity is possible for a -- bounded form). function Default_Modulus (Capacity : Count_Type) return Hash_Type; -- Returns a modulus value (hash table size) which is optimal for the -- specified capacity (which corresponds to the maximum number of items). function Length (Container : Set) return Count_Type; -- Returns the number of items in the set function Is_Empty (Container : Set) return Boolean; -- Equivalent to Length (Container) = 0 procedure Clear (Container : in out Set); -- Removes all of the items from the set function Element (Position : Cursor) return Element_Type; -- Returns the element of the node designated by the cursor procedure Replace_Element (Container : in out Set; Position : Cursor; New_Item : Element_Type); -- If New_Item is equivalent (as determined by calling Equivalent_Elements) -- to the element of the node designated by Position, then New_Element is -- assigned to that element. Otherwise, it calls Hash to determine the -- bucket for New_Item. If the bucket is not empty, then it calls -- Equivalent_Elements for each node in that bucket to determine whether -- New_Item is equivalent to an element in that bucket. If -- Equivalent_Elements returns True then Program_Error is raised (because -- an element may appear only once in the set); otherwise, New_Item is -- assigned to the node designated by Position, and the node is moved to -- its new bucket. procedure Query_Element (Position : Cursor; Process : not null access procedure (Element : Element_Type)); -- Calls Process with the element (having only a constant view) of the node -- designated by the cursor. type Constant_Reference_Type (Element : not null access constant Element_Type) is private with Implicit_Dereference => Element; function Constant_Reference (Container : aliased Set; Position : Cursor) return Constant_Reference_Type; procedure Assign (Target : in out Set; Source : Set); -- If Target denotes the same object as Source, then the operation has no -- effect. If the Target capacity is less than the Source length, then -- Assign raises Capacity_Error. Otherwise, Assign clears Target and then -- copies the (active) elements from Source to Target. function Copy (Source : Set; Capacity : Count_Type := 0; Modulus : Hash_Type := 0) return Set; -- Constructs a new set object whose elements correspond to Source. If the -- Capacity parameter is 0, then the capacity of the result is the same as -- the length of Source. If the Capacity parameter is equal or greater than -- the length of Source, then the capacity of the result is the specified -- value. Otherwise, Copy raises Capacity_Error. If the Modulus parameter -- is 0, then the modulus of the result is the value returned by a call to -- Default_Modulus with the capacity parameter determined as above; -- otherwise the modulus of the result is the specified value. procedure Move (Target : in out Set; Source : in out Set); -- Clears Target (if it's not empty), and then moves (not copies) the -- buckets array and nodes from Source to Target. procedure Insert (Container : in out Set; New_Item : Element_Type; Position : out Cursor; Inserted : out Boolean); -- Conditionally inserts New_Item into the set. If New_Item is already in -- the set, then Inserted returns False and Position designates the node -- containing the existing element (which is not modified). If New_Item is -- not already in the set, then Inserted returns True and Position -- designates the newly-inserted node containing New_Item. The search for -- an existing element works as follows. Hash is called to determine -- New_Item's bucket; if the bucket is non-empty, then Equivalent_Elements -- is called to compare New_Item to the element of each node in that -- bucket. If the bucket is empty, or there were no equivalent elements in -- the bucket, the search "fails" and the New_Item is inserted in the set -- (and Inserted returns True); otherwise, the search "succeeds" (and -- Inserted returns False). procedure Insert (Container : in out Set; New_Item : Element_Type); -- Attempts to insert New_Item into the set, performing the usual insertion -- search (which involves calling both Hash and Equivalent_Elements); if -- the search succeeds (New_Item is equivalent to an element already in the -- set, and so was not inserted), then this operation raises -- Constraint_Error. (This version of Insert is similar to Replace, but -- having the opposite exception behavior. It is intended for use when you -- want to assert that the item is not already in the set.) procedure Include (Container : in out Set; New_Item : Element_Type); -- Attempts to insert New_Item into the set. If an element equivalent to -- New_Item is already in the set (the insertion search succeeded, and -- hence New_Item was not inserted), then the value of New_Item is assigned -- to the existing element. (This insertion operation only raises an -- exception if cursor tampering occurs. It is intended for use when you -- want to insert the item in the set, and you don't care whether an -- equivalent element is already present.) procedure Replace (Container : in out Set; New_Item : Element_Type); -- Searches for New_Item in the set; if the search fails (because an -- equivalent element was not in the set), then it raises -- Constraint_Error. Otherwise, the existing element is assigned the value -- New_Item. (This is similar to Insert, but with the opposite exception -- behavior. It is intended for use when you want to assert that the item -- is already in the set.) procedure Exclude (Container : in out Set; Item : Element_Type); -- Searches for Item in the set, and if found, removes its node from the -- set and then deallocates it. The search works as follows. The operation -- calls Hash to determine the item's bucket; if the bucket is not empty, -- it calls Equivalent_Elements to compare Item to the element of each node -- in the bucket. (This is the deletion analog of Include. It is intended -- for use when you want to remove the item from the set, but don't care -- whether the item is already in the set.) procedure Delete (Container : in out Set; Item : Element_Type); -- Searches for Item in the set (which involves calling both Hash and -- Equivalent_Elements). If the search fails, then the operation raises -- Constraint_Error. Otherwise it removes the node from the set and then -- deallocates it. (This is the deletion analog of non-conditional -- Insert. It is intended for use when you want to assert that the item is -- already in the set.) procedure Delete (Container : in out Set; Position : in out Cursor); -- Removes the node designated by Position from the set, and then -- deallocates the node. The operation calls Hash to determine the bucket, -- and then compares Position to each node in the bucket until there's a -- match (it does not call Equivalent_Elements). procedure Union (Target : in out Set; Source : Set); -- Iterates over the Source set, and conditionally inserts each element -- into Target. function Union (Left, Right : Set) return Set; -- The operation first copies the Left set to the result, and then iterates -- over the Right set to conditionally insert each element into the result. function "or" (Left, Right : Set) return Set renames Union; procedure Intersection (Target : in out Set; Source : Set); -- Iterates over the Target set (calling First and Next), calling Find to -- determine whether the element is in Source. If an equivalent element is -- not found in Source, the element is deleted from Target. function Intersection (Left, Right : Set) return Set; -- Iterates over the Left set, calling Find to determine whether the -- element is in Right. If an equivalent element is found, it is inserted -- into the result set. function "and" (Left, Right : Set) return Set renames Intersection; procedure Difference (Target : in out Set; Source : Set); -- Iterates over the Source (calling First and Next), calling Find to -- determine whether the element is in Target. If an equivalent element is -- found, it is deleted from Target. function Difference (Left, Right : Set) return Set; -- Iterates over the Left set, calling Find to determine whether the -- element is in the Right set. If an equivalent element is not found, the -- element is inserted into the result set. function "-" (Left, Right : Set) return Set renames Difference; procedure Symmetric_Difference (Target : in out Set; Source : Set); -- The operation iterates over the Source set, searching for the element -- in Target (calling Hash and Equivalent_Elements). If an equivalent -- element is found, it is removed from Target; otherwise it is inserted -- into Target. function Symmetric_Difference (Left, Right : Set) return Set; -- The operation first iterates over the Left set. It calls Find to -- determine whether the element is in the Right set. If no equivalent -- element is found, the element from Left is inserted into the result. The -- operation then iterates over the Right set, to determine whether the -- element is in the Left set. If no equivalent element is found, the Right -- element is inserted into the result. function "xor" (Left, Right : Set) return Set renames Symmetric_Difference; function Overlap (Left, Right : Set) return Boolean; -- Iterates over the Left set (calling First and Next), calling Find to -- determine whether the element is in the Right set. If an equivalent -- element is found, the operation immediately returns True. The operation -- returns False if the iteration over Left terminates without finding any -- equivalent element in Right. function Is_Subset (Subset : Set; Of_Set : Set) return Boolean; -- Iterates over Subset (calling First and Next), calling Find to determine -- whether the element is in Of_Set. If no equivalent element is found in -- Of_Set, the operation immediately returns False. The operation returns -- True if the iteration over Subset terminates without finding an element -- not in Of_Set (that is, every element in Subset is equivalent to an -- element in Of_Set). function First (Container : Set) return Cursor; -- Returns a cursor that designates the first non-empty bucket, by -- searching from the beginning of the buckets array. function Next (Position : Cursor) return Cursor; -- Returns a cursor that designates the node that follows the current one -- designated by Position. If Position designates the last node in its -- bucket, the operation calls Hash to compute the index of this bucket, -- and searches the buckets array for the first non-empty bucket, starting -- from that index; otherwise, it simply follows the link to the next node -- in the same bucket. procedure Next (Position : in out Cursor); -- Equivalent to Position := Next (Position) function Find (Container : Set; Item : Element_Type) return Cursor; -- Searches for Item in the set. Find calls Hash to determine the item's -- bucket; if the bucket is not empty, it calls Equivalent_Elements to -- compare Item to each element in the bucket. If the search succeeds, Find -- returns a cursor designating the node containing the equivalent element; -- otherwise, it returns No_Element. function Contains (Container : Set; Item : Element_Type) return Boolean; -- Equivalent to Find (Container, Item) /= No_Element function Equivalent_Elements (Left, Right : Cursor) return Boolean; -- Returns the result of calling Equivalent_Elements with the elements of -- the nodes designated by cursors Left and Right. function Equivalent_Elements (Left : Cursor; Right : Element_Type) return Boolean; -- Returns the result of calling Equivalent_Elements with element of the -- node designated by Left and element Right. function Equivalent_Elements (Left : Element_Type; Right : Cursor) return Boolean; -- Returns the result of calling Equivalent_Elements with element Left and -- the element of the node designated by Right. procedure Iterate (Container : Set; Process : not null access procedure (Position : Cursor)); -- Calls Process for each node in the set function Iterate (Container : Set) return Set_Iterator_Interfaces.Forward_Iterator'Class; generic type Key_Type (<>) is private; with function Key (Element : Element_Type) return Key_Type; with function Hash (Key : Key_Type) return Hash_Type; with function Equivalent_Keys (Left, Right : Key_Type) return Boolean; package Generic_Keys is function Key (Position : Cursor) return Key_Type; -- Applies generic formal operation Key to the element of the node -- designated by Position. function Element (Container : Set; Key : Key_Type) return Element_Type; -- Searches (as per the key-based Find) for the node containing Key, and -- returns the associated element. procedure Replace (Container : in out Set; Key : Key_Type; New_Item : Element_Type); -- Searches (as per the key-based Find) for the node containing Key, and -- then replaces the element of that node (as per the element-based -- Replace_Element). procedure Exclude (Container : in out Set; Key : Key_Type); -- Searches for Key in the set, and if found, removes its node from the -- set and then deallocates it. The search works by first calling Hash -- (on Key) to determine the bucket; if the bucket is not empty, it -- calls Equivalent_Keys to compare parameter Key to the value of -- generic formal operation Key applied to element of each node in the -- bucket. procedure Delete (Container : in out Set; Key : Key_Type); -- Deletes the node containing Key as per Exclude, with the difference -- that Constraint_Error is raised if Key is not found. function Find (Container : Set; Key : Key_Type) return Cursor; -- Searches for the node containing Key, and returns a cursor -- designating the node. The search works by first calling Hash (on Key) -- to determine the bucket. If the bucket is not empty, the search -- compares Key to the element of each node in the bucket, and returns -- the matching node. The comparison itself works by applying the -- generic formal Key operation to the element of the node, and then -- calling generic formal operation Equivalent_Keys. function Contains (Container : Set; Key : Key_Type) return Boolean; -- Equivalent to Find (Container, Key) /= No_Element procedure Update_Element_Preserving_Key (Container : in out Set; Position : Cursor; Process : not null access procedure (Element : in out Element_Type)); -- Calls Process with the element of the node designated by Position, -- but with the restriction that the key-value of the element is not -- modified. The operation first makes a copy of the value returned by -- applying generic formal operation Key on the element of the node, and -- then calls Process with the element. The operation verifies that the -- key-part has not been modified by calling generic formal operation -- Equivalent_Keys to compare the saved key-value to the value returned -- by applying generic formal operation Key to the post-Process value of -- element. If the key values compare equal then the operation -- completes. Otherwise, the node is removed from the map and -- Program_Error is raised. type Reference_Type (Element : not null access Element_Type) is private with Implicit_Dereference => Element; function Reference_Preserving_Key (Container : aliased in out Set; Position : Cursor) return Reference_Type; function Constant_Reference (Container : aliased Set; Key : Key_Type) return Constant_Reference_Type; function Reference_Preserving_Key (Container : aliased in out Set; Key : Key_Type) return Reference_Type; private type Reference_Type (Element : not null access Element_Type) is null record; use Ada.Streams; procedure Read (Stream : not null access Root_Stream_Type'Class; Item : out Reference_Type); for Reference_Type'Read use Read; procedure Write (Stream : not null access Root_Stream_Type'Class; Item : Reference_Type); for Reference_Type'Write use Write; end Generic_Keys; private pragma Inline (Next); type Node_Type is record Element : aliased Element_Type; Next : Count_Type; end record; package HT_Types is new Hash_Tables.Generic_Bounded_Hash_Table_Types (Node_Type); type Set (Capacity : Count_Type; Modulus : Hash_Type) is new HT_Types.Hash_Table_Type (Capacity, Modulus) with null record; use HT_Types; use Ada.Streams; procedure Write (Stream : not null access Root_Stream_Type'Class; Container : Set); for Set'Write use Write; procedure Read (Stream : not null access Root_Stream_Type'Class; Container : out Set); for Set'Read use Read; type Set_Access is access all Set; for Set_Access'Storage_Size use 0; -- Note: If a Cursor object has no explicit initialization expression, -- it must default initialize to the same value as constant No_Element. -- The Node component of type Cursor has scalar type Count_Type, so it -- requires an explicit initialization expression of its own declaration, -- in order for objects of record type Cursor to properly initialize. type Cursor is record Container : Set_Access; Node : Count_Type := 0; end record; procedure Write (Stream : not null access Root_Stream_Type'Class; Item : Cursor); for Cursor'Write use Write; procedure Read (Stream : not null access Root_Stream_Type'Class; Item : out Cursor); for Cursor'Read use Read; type Constant_Reference_Type (Element : not null access constant Element_Type) is null record; procedure Read (Stream : not null access Root_Stream_Type'Class; Item : out Constant_Reference_Type); for Constant_Reference_Type'Read use Read; procedure Write (Stream : not null access Root_Stream_Type'Class; Item : Constant_Reference_Type); for Constant_Reference_Type'Write use Write; Empty_Set : constant Set := (Hash_Table_Type with Capacity => 0, Modulus => 0); No_Element : constant Cursor := (Container => null, Node => 0); end Ada.Containers.Bounded_Hashed_Sets;
------------------------------------------------------------------------------ -- Ada Web Server -- -- -- -- Copyright (C) 2005-2018, 2020, AdaCore -- -- -- -- This library is free software; you can redistribute it and/or modify -- -- it under terms of the GNU General Public License as published by the -- -- Free Software Foundation; either version 3, or (at your option) any -- -- later version. This 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. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are -- -- granted additional permissions described in the GCC Runtime Library -- -- Exception, version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- 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. -- ------------------------------------------------------------------------------ pragma Ada_2012; with AWS.Messages; with AWS.Net.Buffered; with AWS.Translator; with AWS.Client.HTTP_Utils; package body AWS.Client.Ext is procedure Do_Options (Connection : in out HTTP_Connection; Result : out Response.Data; URI : String := No_Data; Headers : Header_List := Empty_Header_List) is begin Send_Request (Connection, OPTIONS, Result, URI, No_Content, Headers); end Do_Options; function Do_Options (URL : String; User : String := No_Data; Pwd : String := No_Data; Proxy : String := No_Data; Proxy_User : String := No_Data; Proxy_Pwd : String := No_Data; Timeouts : Timeouts_Values := No_Timeout; Headers : Header_List := Empty_Header_List; User_Agent : String := Default.User_Agent) return Response.Data is Connection : HTTP_Connection; Result : Response.Data; begin Create (Connection, URL, User, Pwd, Proxy, Proxy_User, Proxy_Pwd, Persistent => False, Timeouts => Timeouts, User_Agent => User_Agent); Do_Options (Connection, Result, Headers => Headers); Close (Connection); return Result; exception when others => Close (Connection); raise; end Do_Options; procedure Do_Patch (Connection : in out HTTP_Connection; Result : out Response.Data; URI : String := No_Data; Data : String; Headers : Header_List := Empty_Header_List) is begin Send_Request (Connection, PATCH, Result, URI, Translator.To_Stream_Element_Array (Data), Headers); end Do_Patch; function Do_Patch (URL : String; Data : String; User : String := No_Data; Pwd : String := No_Data; Proxy : String := No_Data; Proxy_User : String := No_Data; Proxy_Pwd : String := No_Data; Timeouts : Timeouts_Values := No_Timeout; Headers : Header_List := Empty_Header_List; User_Agent : String := Default.User_Agent) return Response.Data is Connection : HTTP_Connection; Result : Response.Data; begin Create (Connection, URL, User, Pwd, Proxy, Proxy_User, Proxy_Pwd, Persistent => False, Timeouts => Timeouts, User_Agent => User_Agent); Do_Patch (Connection, Result, Data => Data, Headers => Headers); Close (Connection); return Result; exception when others => Close (Connection); raise; end Do_Patch; function Do_Delete (URL : String; Data : String; User : String := No_Data; Pwd : String := No_Data; Proxy : String := No_Data; Proxy_User : String := No_Data; Proxy_Pwd : String := No_Data; Timeouts : Timeouts_Values := No_Timeout; Headers : Header_List := Empty_Header_List; User_Agent : String := Default.User_Agent) return Response.Data is Connection : HTTP_Connection; Result : Response.Data; begin Create (Connection, URL, User, Pwd, Proxy, Proxy_User, Proxy_Pwd, Persistent => False, Timeouts => Timeouts, User_Agent => User_Agent); Do_Delete (Connection, Result, Data, Headers => Headers); Close (Connection); return Result; exception when others => Close (Connection); raise; end Do_Delete; procedure Do_Delete (Connection : in out HTTP_Connection; Result : out Response.Data; Data : String; URI : String := No_Data; Headers : Header_List := Empty_Header_List) is begin Send_Request (Connection, DELETE, Result, URI, Translator.To_Stream_Element_Array (Data), Headers); end Do_Delete; ------------------ -- Send_Request -- ------------------ procedure Send_Request (Connection : in out HTTP_Connection; Kind : Method_Kind; Result : out Response.Data; URI : String; Data : Stream_Element_Array := No_Content; Headers : Header_List := Empty_Header_List) is use Ada.Real_Time; Stamp : constant Time := Clock; Try_Count : Natural := Connection.Retry; Auth_Attempts : Auth_Attempts_Count := (others => 2); Auth_Is_Over : Boolean; begin Retry : loop begin HTTP_Utils.Open_Send_Common_Header (Connection, Method_Kind'Image (Kind), URI, Headers); -- If there is some data to send if Data'Length > 0 then HTTP_Utils.Send_Header (Connection.Socket.all, Messages.Content_Length (Data'Length)); Net.Buffered.New_Line (Connection.Socket.all); -- Send message body Net.Buffered.Write (Connection.Socket.all, Data); else Net.Buffered.New_Line (Connection.Socket.all); end if; HTTP_Utils.Get_Response (Connection, Result, Get_Body => Kind /= HEAD and then not Connection.Streaming); HTTP_Utils.Decrement_Authentication_Attempt (Connection, Auth_Attempts, Auth_Is_Over); if Auth_Is_Over then return; elsif Kind /= HEAD and then Connection.Streaming then HTTP_Utils.Read_Body (Connection, Result, Store => False); end if; exception when E : Net.Socket_Error | HTTP_Utils.Connection_Error => Error_Processing (Connection, Try_Count, Result, Method_Kind'Image (Kind), E, Stamp); exit Retry when not Response.Is_Empty (Result); end; end loop Retry; end Send_Request; end AWS.Client.Ext;
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- S Y S T E M . P R O G R A M _ I N F O -- -- -- -- B o d y -- -- -- -- Copyright (C) 1996-2014, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ package body System.Program_Info is Default_Stack_Size : constant := 10000; function Default_Task_Stack return Integer is begin return Default_Stack_Size; end Default_Task_Stack; end System.Program_Info;
-- C97304B.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 TASKING_ERROR IS RAISED IF THE CALLED TASK IS ABORTED -- BEFORE THE TIMED ENTRY CALL IS EXECUTED. -- WRG 7/13/86 with Impdef; WITH REPORT; USE REPORT; PROCEDURE C97304B IS BEGIN TEST ("C97304B", "CHECK THAT TASKING_ERROR IS RAISED IF THE " & "CALLED TASK IS ABORTED BEFORE THE TIMED " & "ENTRY CALL IS EXECUTED"); DECLARE TASK T IS ENTRY E (I : INTEGER); END T; TASK BODY T IS BEGIN ACCEPT E (I : INTEGER); FAILED ("ENTRY CALL ACCEPTED"); EXCEPTION WHEN OTHERS => FAILED ("EXCEPTION RAISED"); END T; FUNCTION F RETURN INTEGER IS BEGIN ABORT T; RETURN 1; END F; BEGIN SELECT T.E (F); FAILED ("TIMED ENTRY CALL MADE"); OR DELAY 1.0 * Impdef.One_Second; FAILED ("DELAY ALTERNATIVE TAKEN"); END SELECT; FAILED ("EXCEPTION NOT RAISED"); EXCEPTION WHEN TASKING_ERROR => NULL; WHEN OTHERS => FAILED ("WRONG EXCEPTION RAISED"); END; RESULT; END C97304B;
-- SPDX-License-Identifier: Apache-2.0 -- -- Copyright (c) 2016 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 Ada.Characters.Handling; with Ada.Characters.Latin_1; with Ada.Strings.Bounded; with Ada.Strings.Unbounded; package body JSON.Types is package SU renames Ada.Strings.Unbounded; function "+" (Text : String) return SU.Unbounded_String renames SU.To_Unbounded_String; function "+" (Text : SU.Unbounded_String) return String renames SU.To_String; function Unescape (Text : String) return String is -- Add 1 so that the length is always positive package SB is new Ada.Strings.Bounded.Generic_Bounded_Length (Max => Text'Length + 1); Value : SB.Bounded_String; Escaped : Boolean := False; use Ada.Characters.Latin_1; begin for C of Text loop if Escaped then case C is when '"' | '\' | '/' => SB.Append (Value, C); when 'b' => SB.Append (Value, BS); when 'f' => SB.Append (Value, FF); when 'n' => SB.Append (Value, LF); when 'r' => SB.Append (Value, CR); when 't' => SB.Append (Value, HT); when others => raise Program_Error; end case; elsif C = '"' then raise Program_Error; elsif C /= '\' then if Ada.Characters.Handling.Is_Control (C) then raise Program_Error; end if; SB.Append (Value, C); end if; Escaped := not Escaped and C = '\'; end loop; return SB.To_String (Value); end Unescape; ----------------------------------------------------------------------------- -- Memory allocator -- ----------------------------------------------------------------------------- function Create_Array (Object : Memory_Allocator; Depth : Positive) return Array_Offset is begin if Depth > Object.Maximum_Depth then raise Constraint_Error with "Maximum depth (" & Object.Maximum_Depth'Image & ") exceeded"; end if; return Array_Offset (Object.Array_Levels (Depth).Length); end Create_Array; function Create_Object (Object : Memory_Allocator; Depth : Positive) return Array_Offset is begin if Depth > Object.Maximum_Depth then raise Constraint_Error with "Maximum depth (" & Object.Maximum_Depth'Image & ") exceeded"; end if; return Array_Offset (Object.Object_Levels (Depth).Length); end Create_Object; ----------------------------------------------------------------------------- -- Constructors -- ----------------------------------------------------------------------------- function Create_String (Stream : Streams.Stream_Ptr; Offset, Length : Streams.AS.Stream_Element_Offset) return JSON_Value is begin return (Kind => String_Kind, Stream => Stream, String_Offset => Offset, String_Length => Length); end Create_String; function Create_Integer (Value : Integer_Type) return JSON_Value is begin return (Kind => Integer_Kind, Integer_Value => Value); end Create_Integer; function Create_Float (Value : Float_Type) return JSON_Value is begin return (Kind => Float_Kind, Float_Value => Value); end Create_Float; function Create_Boolean (Value : Boolean) return JSON_Value is begin return (Kind => Boolean_Kind, Boolean_Value => Value); end Create_Boolean; function Create_Null return JSON_Value is begin return (Kind => Null_Kind); end Create_Null; function Create_Array (Allocator : Memory_Allocator_Ptr; Depth : Positive) return JSON_Value is begin return (Kind => Array_Kind, Allocator => Allocator, Depth => Depth, Offset => Create_Array (Allocator.all, Depth), Length => 0); end Create_Array; function Create_Object (Allocator : Memory_Allocator_Ptr; Depth : Positive) return JSON_Value is begin return (Kind => Object_Kind, Allocator => Allocator, Depth => Depth, Offset => Create_Object (Allocator.all, Depth), Length => 0); end Create_Object; ----------------------------------------------------------------------------- -- Value -- ----------------------------------------------------------------------------- function "=" (Left : String; Right : JSON_Value) return Boolean is (if Right.Kind = String_Kind then Right.Stream.Is_Equal_String (Right.String_Offset, Right.String_Length, Left) else False); function Value (Object : JSON_Value) return String is begin if Object.Kind = String_Kind then return Unescape (Object.Stream.Get_String (Object.String_Offset, Object.String_Length)); else raise Invalid_Type_Error with "Value not a string"; end if; end Value; function Value (Object : JSON_Value) return Boolean is begin if Object.Kind = Boolean_Kind then return Object.Boolean_Value; else raise Invalid_Type_Error with "Value not a boolean"; end if; end Value; function Value (Object : JSON_Value) return Integer_Type is begin if Object.Kind = Integer_Kind then return Object.Integer_Value; else raise Invalid_Type_Error with "Value not a integer"; end if; end Value; function Value (Object : JSON_Value) return Float_Type is begin if Object.Kind = Float_Kind then return Object.Float_Value; elsif Object.Kind = Integer_Kind then return Float_Type (Object.Integer_Value); else raise Invalid_Type_Error with "Value not a float"; end if; end Value; ----------------------------------------------------------------------------- function Length (Object : JSON_Value) return Natural is begin if Object.Kind in Array_Kind | Object_Kind then return Object.Length; else raise Invalid_Type_Error with "Value not an object or array"; end if; end Length; function Contains (Object : JSON_Value; Key : String) return Boolean is begin if Object.Kind = Object_Kind then for Index in 1 .. Object.Length loop declare Pair : Key_Value_Pair renames Object.Allocator.Object_Levels (Object.Depth).Element (Object.Offset + Index); begin if Key = Pair.Key then return True; end if; end; end loop; return False; else raise Invalid_Type_Error with "Value not an object"; end if; end Contains; function Get (Object : JSON_Value; Index : Positive) return JSON_Value is begin if Object.Kind = Array_Kind then return Object.Allocator.Array_Levels (Object.Depth).Element (Object.Offset + Index).Value; else raise Invalid_Type_Error with "Value not an array"; end if; exception when Constraint_Error => raise Constraint_Error with "JSON array has no element at index" & Index'Image; end Get; function Get (Object : JSON_Value; Key : String) return JSON_Value is begin if Object.Kind = Object_Kind then for Index in 1 .. Object.Length loop declare Pair : constant Key_Value_Pair := Object.Allocator.Object_Levels (Object.Depth).Element (Object.Offset + Index); begin if Key = Pair.Key then return Pair.Element; end if; end; end loop; raise Constraint_Error with "JSON object has no key '" & Key & "'"; else raise Invalid_Type_Error with "Value not an object"; end if; end Get; procedure Append (Object : in out JSON_Value; Value : JSON_Value) is begin if Object.Kind = Array_Kind then declare Length : constant Natural := Natural (Object.Allocator.Array_Levels (Object.Depth).Length); begin -- Assert that Object is the last array in a particular level -- so that its elements form a continuous array pragma Assert (Length = Object.Offset + Object.Length); end; Object.Allocator.Array_Levels (Object.Depth).Append (Array_Value'(Kind => Value.Kind, Value => Value)); Object.Length := Object.Length + 1; else raise Invalid_Type_Error with "Value not an array"; end if; end Append; procedure Insert (Object : in out JSON_Value; Key : JSON_Value; Value : JSON_Value; Check_Duplicate_Keys : Boolean) is begin if Object.Kind = Object_Kind then if Check_Duplicate_Keys and then Object.Contains (Key.Value) then raise Constraint_Error with "JSON object already has key '" & Key.Value & "'"; end if; declare Length : constant Natural := Natural (Object.Allocator.Object_Levels (Object.Depth).Length); begin -- Assert that Object is the last object in a particular level -- so that its key-value pairs form a continuous array pragma Assert (Length = Object.Offset + Object.Length); end; pragma Assert (Key.Kind = String_Kind); Object.Allocator.Object_Levels (Object.Depth).Append (Key_Value_Pair'(Kind => Value.Kind, Key => Key, Element => Value)); Object.Length := Object.Length + 1; else raise Invalid_Type_Error with "Value not an object"; end if; end Insert; ----------------------------------------------------------------------------- function Constant_Reference (Object : JSON_Value; Index : Positive) return JSON_Value renames Get; function Constant_Reference (Object : JSON_Value; Key : String) return JSON_Value renames Get; function Constant_Reference (Object : aliased JSON_Value; Position : Cursor) return JSON_Value is begin case Position.Kind is when Array_Kind => return Object.Allocator.Array_Levels (Position.Data.Depth).Element (Position.Data.Offset + Position.Index).Value; when Object_Kind => return Object.Allocator.Object_Levels (Position.Data.Depth).Element (Position.Data.Offset + Position.Index).Key; end case; end Constant_Reference; function Has_Element (Position : Cursor) return Boolean is (Position.Index <= Position.Data.Length); overriding function First (Object : Iterator) return Cursor is begin return (Kind => Object.Kind, Data => Object.Data, Index => 1); end First; overriding function Next (Object : Iterator; Position : Cursor) return Cursor is begin return (Kind => Position.Kind, Data => Position.Data, Index => Position.Index + 1); end Next; function Iterate (Object : JSON_Value) return Value_Iterator_Interfaces.Forward_Iterator'Class is begin if Object.Kind in Array_Kind | Object_Kind then return Iterator'(Kind => Object.Kind, Data => Object); else raise Program_Error with "Can only iterate over an array or object"; end if; end Iterate; ----------------------------------------------------------------------------- -- Helpers -- ----------------------------------------------------------------------------- function Get_Array_Or_Empty (Object : JSON_Value; Key : String) return JSON_Value is begin if Object.Contains (Key) then return Object.Get (Key); else return (Kind => Array_Kind, Allocator => Object.Allocator, Depth => Object.Allocator.Array_Levels'First, Offset => 0, Length => 0); end if; end Get_Array_Or_Empty; function Get_Object_Or_Empty (Object : JSON_Value; Key : String) return JSON_Value is begin if Object.Contains (Key) then return Object.Get (Key); else return (Kind => Object_Kind, Allocator => Object.Allocator, Depth => Object.Allocator.Object_Levels'First, Offset => 0, Length => 0); end if; end Get_Object_Or_Empty; function Get (Object : JSON_Value; Key : String; Default : Integer_Type) return JSON_Value is begin if Object.Contains (Key) then return Object.Get (Key); else return Create_Integer (Default); end if; end Get; function Get (Object : JSON_Value; Key : String; Default : Float_Type) return JSON_Value is begin if Object.Contains (Key) then return Object.Get (Key); else return Create_Float (Default); end if; end Get; function Get (Object : JSON_Value; Key : String; Default : Boolean) return JSON_Value is begin if Object.Contains (Key) then return Object.Get (Key); else return Create_Boolean (Default); end if; end Get; ----------------------------------------------------------------------------- -- Image - ----------------------------------------------------------------------------- function Image_String (Object : JSON_Value) return String is Text : String renames Object.Stream.Get_String (Object.String_Offset, Object.String_Length); begin -- A string backed by a stream is always escaped. The tokenizer -- will verify that the string does not contain unexpected characters return '"' & Text & '"'; end Image_String; function Image_Integer (Object : JSON_Value) return String is Result : constant String := Integer_Type'Image (Object.Integer_Value); begin if Object.Integer_Value < 0 then return Result; else return Result (2 .. Result'Last); end if; end Image_Integer; function Image_Float (Object : JSON_Value) return String is Result : constant String := Float_Type'Image (Object.Float_Value); begin if Object.Float_Value < 0.0 then return Result; else return Result (2 .. Result'Last); end if; end Image_Float; function Image_Boolean (Object : JSON_Value) return String is (if Object.Boolean_Value then "true" else "false"); function Image_Null (Object : JSON_Value) return String is ("null"); function Image_Array (Object : JSON_Value) return String is Index : Natural := 0; Result : SU.Unbounded_String := +"["; begin for Element of Object loop Index := Index + 1; if Index > 1 then SU.Append (Result, ","); end if; SU.Append (Result, Element.Image); end loop; SU.Append (Result, "]"); return +Result; end Image_Array; function Image_Object (Object : JSON_Value) return String is Index : Natural := 0; Result : SU.Unbounded_String := +"{"; begin for Key of Object loop Index := Index + 1; if Index > 1 then SU.Append (Result, ','); end if; SU.Append (Result, '"' & Key.Value & '"'); SU.Append (Result, ':'); SU.Append (Result, Object.Get (Key.Value).Image); end loop; SU.Append (Result, '}'); return +Result; end Image_Object; function Image (Object : JSON_Value) return String is begin case Object.Kind is when Array_Kind => return Image_Array (Object); when Object_Kind => return Image_Object (Object); when String_Kind => return Image_String (Object); when Integer_Kind => return Image_Integer (Object); when Float_Kind => return Image_Float (Object); when Boolean_Kind => return Image_Boolean (Object); when Null_Kind => return Image_Null (Object); end case; end Image; end JSON.Types;
with AUnit.Test_Suites; package Test.Test_Suite is function Suite return AUnit.Test_Suites.Access_Test_Suite; end Test.Test_Suite;
private package Spawn_Manager.Server is function Spawn (Request : Spawn_Request) return Spawn_Response; end Spawn_Manager.Server;
package lace.Strings -- -- DSA friendly packages based on the 'ada.Strings' package family provided by FSF GCC. -- is pragma Pure; end lace.Strings;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- G N A T . T R A C E B A C K . S Y M B O L I C -- -- -- -- B o d y -- -- -- -- Copyright (C) 2005, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 2, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING. If not, write -- -- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, -- -- Boston, MA 02110-1301, USA. -- -- -- -- As a special exception, if other files instantiate generics from this -- -- unit, or you link this unit with other files to produce an executable, -- -- this unit does not by itself cause the resulting executable to be -- -- covered by the GNU General Public License. This exception does not -- -- however invalidate any other reasons why the executable file might be -- -- covered by the GNU Public License. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- Run-time symbolic traceback support for IA64/VMS with Ada.Exceptions.Traceback; use Ada.Exceptions.Traceback; with Interfaces.C; with System; with System.Aux_DEC; with System.Soft_Links; with System.Traceback_Entries; package body GNAT.Traceback.Symbolic is pragma Warnings (Off); pragma Linker_Options ("--for-linker=sys$library:trace.exe"); use Interfaces.C; use System; use System.Aux_DEC; use System.Traceback_Entries; subtype User_Arg_Type is Unsigned_Longword; subtype Cond_Value_Type is Unsigned_Longword; type ASCIC is record Count : unsigned_char; Data : char_array (1 .. 255); end record; pragma Convention (C, ASCIC); for ASCIC use record Count at 0 range 0 .. 7; Data at 1 range 0 .. 8 * 255 - 1; end record; for ASCIC'Size use 8 * 256; function Fetch_ASCIC is new Fetch_From_Address (ASCIC); procedure Symbolize (Status : out Cond_Value_Type; Current_PC : in Address; Filename_Name : out Address; Library_Name : out Address; Record_Number : out Integer; Image_Name : out Address; Module_Name : out Address; Routine_Name : out Address; Line_Number : out Integer; Relative_PC : out Address); pragma Interface (External, Symbolize); pragma Import_Valued_Procedure (Symbolize, "TBK$I64_SYMBOLIZE", (Cond_Value_Type, Address, Address, Address, Integer, Address, Address, Address, Integer, Address), (Value, Value, Reference, Reference, Reference, Reference, Reference, Reference, Reference, Reference)); function Decode_Ada_Name (Encoded_Name : String) return String; -- Decodes an Ada identifier name. Removes leading "_ada_" and trailing -- __{DIGIT}+ or ${DIGIT}+, converts other "__" to '.' --------------------- -- Decode_Ada_Name -- --------------------- function Decode_Ada_Name (Encoded_Name : String) return String is Decoded_Name : String (1 .. Encoded_Name'Length); Pos : Integer := Encoded_Name'First; Last : Integer := Encoded_Name'Last; DPos : Integer := 1; begin if Pos > Last then return ""; end if; -- Skip leading _ada_ if Encoded_Name'Length > 4 and then Encoded_Name (Pos .. Pos + 4) = "_ada_" then Pos := Pos + 5; end if; -- Skip trailing __{DIGIT}+ or ${DIGIT}+ if Encoded_Name (Last) in '0' .. '9' then for J in reverse Pos + 2 .. Last - 1 loop case Encoded_Name (J) is when '0' .. '9' => null; when '$' => Last := J - 1; exit; when '_' => if Encoded_Name (J - 1) = '_' then Last := J - 2; end if; exit; when others => exit; end case; end loop; end if; -- Now just copy encoded name to decoded name, converting "__" to '.' while Pos <= Last loop if Encoded_Name (Pos) = '_' and then Encoded_Name (Pos + 1) = '_' and then Pos /= Encoded_Name'First then Decoded_Name (DPos) := '.'; Pos := Pos + 2; else Decoded_Name (DPos) := Encoded_Name (Pos); Pos := Pos + 1; end if; DPos := DPos + 1; end loop; return Decoded_Name (1 .. DPos - 1); end Decode_Ada_Name; ------------------------ -- Symbolic_Traceback -- ------------------------ function Symbolic_Traceback (Traceback : Tracebacks_Array) return String is Status : Cond_Value_Type; Filename_Name_Addr : Address; Library_Name_Addr : Address; Record_Number : Integer; Image_Name : ASCIC; Image_Name_Addr : Address; Module_Name : ASCIC; Module_Name_Addr : Address; Routine_Name : ASCIC; Routine_Name_Addr : Address; Line_Number : Integer; Relative_PC : Address; Res : String (1 .. 256 * Traceback'Length); Len : Integer; begin if Traceback'Length > 0 then Len := 0; -- Since image computation is not thread-safe we need task lockout System.Soft_Links.Lock_Task.all; for J in Traceback'Range loop Symbolize (Status, PC_For (Traceback (J)), Filename_Name_Addr, Library_Name_Addr, Record_Number, Image_Name_Addr, Module_Name_Addr, Routine_Name_Addr, Line_Number, Relative_PC); Image_Name := Fetch_ASCIC (Image_Name_Addr); Module_Name := Fetch_ASCIC (Module_Name_Addr); Routine_Name := Fetch_ASCIC (Routine_Name_Addr); declare First : Integer := Len + 1; Last : Integer := First + 80 - 1; Pos : Integer; Routine_Name_D : String := Decode_Ada_Name (To_Ada (Routine_Name.Data (1 .. size_t (Routine_Name.Count)), False)); begin Res (First .. Last) := (others => ' '); Res (First .. First + Integer (Image_Name.Count) - 1) := To_Ada (Image_Name.Data (1 .. size_t (Image_Name.Count)), False); Res (First + 10 .. First + 10 + Integer (Module_Name.Count) - 1) := To_Ada (Module_Name.Data (1 .. size_t (Module_Name.Count)), False); Res (First + 30 .. First + 30 + Routine_Name_D'Length - 1) := Routine_Name_D; -- If routine name doesn't fit 20 characters, output -- the line number on next line at 50th position if Routine_Name_D'Length > 20 then Pos := First + 30 + Routine_Name_D'Length; Res (Pos) := ASCII.LF; Last := Pos + 80; Res (Pos + 1 .. Last) := (others => ' '); Pos := Pos + 51; else Pos := First + 50; end if; Res (Pos .. Pos + Integer'Image (Line_Number)'Length - 1) := Integer'Image (Line_Number); Res (Last) := ASCII.LF; Len := Last; end; end loop; System.Soft_Links.Unlock_Task.all; return Res (1 .. Len); else return ""; end if; end Symbolic_Traceback; function Symbolic_Traceback (E : Exception_Occurrence) return String is begin return Symbolic_Traceback (Tracebacks (E)); end Symbolic_Traceback; end GNAT.Traceback.Symbolic;
------------------------------------------------------------------------------ -- -- -- GNU ADA RUN-TIME LIBRARY (GNARL) COMPONENTS -- -- -- -- S Y S T E M . O S _ I N T E R F A C E -- -- -- -- S p e c -- -- -- -- $Revision$ -- -- -- Copyright (C) 1991-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 is the no tasking version with Interfaces.C; package System.OS_Interface is pragma Preelaborate; subtype int is Interfaces.C.int; ------------- -- Signals -- ------------- Max_Interrupt : constant := 2; type Signal is new int range 0 .. Max_Interrupt; type sigset_t is new Integer; type Thread_Id is new Integer; end System.OS_Interface;
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Web Framework -- -- -- -- Tools Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2015, Vadim Godunko <vgodunko@gmail.com> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with Asis; with Engines.Contexts; with League.Strings; package Properties.Declarations.Loop_Parameter_Specification is function Initialize (Engine : access Engines.Contexts.Context; Element : Asis.Declaration; Name : Engines.Text_Property) return League.Strings.Universal_String; function Code (Engine : access Engines.Contexts.Context; Element : Asis.Declaration; Name : Engines.Text_Property) return League.Strings.Universal_String; function Condition (Engine : access Engines.Contexts.Context; Element : Asis.Declaration; Name : Engines.Text_Property) return League.Strings.Universal_String; end Properties.Declarations.Loop_Parameter_Specification;
------------------------------------------------------------------------------ -- -- -- Copyright (C) 2017-2020, Fabien Chouteau -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions are -- -- met: -- -- 1. Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- 2. Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in -- -- the documentation and/or other materials provided with the -- -- distribution. -- -- 3. Neither the name of the copyright holder nor the names of its -- -- contributors may be used to endorse or promote products derived -- -- from this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -- -- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -- -- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -- -- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -- -- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -- -- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ with AGATE.Traces_Output; use AGATE.Traces_Output; with AGATE.Timer; with AGATE_Types_Data.Traces; use AGATE_Types_Data.Traces; package body AGATE.Traces is Next_String_Token : String_Token := 0; Next_Wire_Token : Wire_Token := 0; Next_Reg_Token : Reg_Token := 0; Next_Event_Token : Event_Token := 0; Running_Task_Token : String_Token; Context_Switch_Token : Event_Token; Registration_Done : Boolean := False; procedure Initialize; procedure Put_Line (Str : String); procedure End_Of_Registration; function Timestamp (Now : Time := 0) return String; procedure Put_State_Change (Token : Reg_Token; Value : Word; Now : Time := 0); procedure Put_State_Change (Token : Wire_Token; Value : Boolean; Now : Time := 0); procedure Put_State_Change (Token : String_Token; Value : String; Now : Time := 0); procedure Put_State_Change (Token : Event_Token; Now : Time := 0); function Create return String_Token; function Create return Wire_Token; function Create return Reg_Token; function Create return Event_Token; function Image (Val : Natural) return String; function Image (Tok : String_Token) return String; function Image (Tok : Wire_Token) return String; function Image (Tok : Reg_Token) return String; function Image (Tok : Event_Token) return String; procedure Declare_Var (Tok : String_Token; Name : String); procedure Declare_Var (Tok : Wire_Token; Name : String); procedure Declare_Var (Tok : Reg_Token; Name : String); procedure Declare_Var (Tok : Event_Token; Name : String); function Clean (Name : String) return String; ---------------- -- Initialize -- ---------------- procedure Initialize is begin Traces_Output.Initialize ("agate_traces.vcd"); Put_Line ("$timescale 1 us $end"); Put_Line ("$scope module AGATE $end"); Running_Task_Token := Create; Declare_Var (Running_Task_Token, "Running_Task"); Context_Switch_Token := Create; Declare_Var (Context_Switch_Token, "Context_Switch"); end Initialize; -------------- -- Put_Line -- -------------- procedure Put_Line (Str : String) is To_Put : constant String := Str & ASCII.CR & ASCII.LF; begin if Traces_Output.Write (To_Put (To_Put'First)'Address, To_Put'Length) /= To_Put'Length then raise Program_Error; end if; end Put_Line; ------------------------- -- End_Of_Registration -- ------------------------- procedure End_Of_Registration is begin Put_Line ("$upscope $end"); Put_Line ("$enddefinitions $end"); -- Print initial values for X in Wire_Token'First .. Next_Wire_Token - 1 loop Put_Line ("#0 0" & Image (X)); end loop; for X in Reg_Token'First .. Next_Reg_Token - 1 loop Put_Line ("#0 b0 " & Image (X)); end loop; Registration_Done := True; end End_Of_Registration; --------------- -- Timestamp -- --------------- function Timestamp (Now : Time := 0) return String is T : constant Time := (if Now /= 0 then Now else Timer.Clock); Img : constant String := T'Img; begin return "#" & Img (Img'First + 1 .. Img'Last); end Timestamp; ---------------------- -- Put_State_Change -- ---------------------- procedure Put_State_Change (Token : Reg_Token; Value : Word; Now : Time := 0) is Bin : String (1 .. 32); Val : Word := Value; begin if not Registration_Done then End_Of_Registration; end if; for C of reverse Bin loop C := (if (Val and 1) = 0 then '0' else '1'); Val := Shift_Right (Val, 1); end loop; -- TODO: print the boolean value of the integer (e.g. b100101) Put_Line (Timestamp (Now) & " b" & Bin & " " & Image (Token)); end Put_State_Change; ---------------------- -- Put_State_Change -- ---------------------- procedure Put_State_Change (Token : Wire_Token; Value : Boolean; Now : Time := 0) is begin if not Registration_Done then End_Of_Registration; end if; Put_Line (Timestamp (Now) & (if Value then " 1" else " 0") & Image (Token)); end Put_State_Change; ---------------------- -- Put_State_Change -- ---------------------- procedure Put_State_Change (Token : String_Token; Value : String; Now : Time := 0) is begin if not Registration_Done then End_Of_Registration; end if; Put_Line (Timestamp (Now) & " s" & Value & " " & Image (Token)); end Put_State_Change; ---------------------- -- Put_State_Change -- ---------------------- procedure Put_State_Change (Token : Event_Token; Now : Time := 0) is begin if not Registration_Done then End_Of_Registration; end if; Put_Line (Timestamp (Now) & " x" & Image (Token)); end Put_State_Change; ----------- -- Clean -- ----------- function Clean (Name : String) return String is Ret : String := Name; begin for C of Ret loop if C in ASCII.NUL .. ' ' then C := '_'; end if; end loop; return Ret; end Clean; ------------ -- Create -- ------------ function Create return String_Token is Ret : constant String_Token := Next_String_Token; begin Next_String_Token := Next_String_Token + 1; return Ret; end Create; ------------ -- Create -- ------------ function Create return Wire_Token is Ret : constant Wire_Token := Next_Wire_Token; begin Next_Wire_Token := Next_Wire_Token + 1; return Ret; end Create; ------------ -- Create -- ------------ function Create return Reg_Token is Ret : constant Reg_Token := Next_Reg_Token; begin Next_Reg_Token := Next_Reg_Token + 1; return Ret; end Create; ------------ -- Create -- ------------ function Create return Event_Token is Ret : constant Event_Token := Next_Event_Token; begin Next_Event_Token := Next_Event_Token + 1; return Ret; end Create; ----------- -- Image -- ----------- function Image (Val : Natural) return String is Ret : constant String := Val'Img; begin return Ret (Ret'First + 1 .. Ret'Last); end Image; ----------- -- Image -- ----------- function Image (Tok : String_Token) return String is ("s" & Image (Natural (Tok))); ----------- -- Image -- ----------- function Image (Tok : Wire_Token) return String is ("w" & Image (Natural (Tok))); ----------- -- Image -- ----------- function Image (Tok : Reg_Token) return String is ("r" & Image (Natural (Tok))); ----------- -- Image -- ----------- function Image (Tok : Event_Token) return String is ("e" & Image (Natural (Tok))); ----------------- -- Declare_Var -- ----------------- procedure Declare_Var (Tok : String_Token; Name : String) is begin Put_Line ("$var string 1 " & Image (Tok) & " " & Name & " $end"); end Declare_Var; ----------------- -- Declare_Var -- ----------------- procedure Declare_Var (Tok : Wire_Token; Name : String) is begin Put_Line ("$var wire 1 " & Image (Tok) & " " & Name & " $end"); end Declare_Var; ----------------- -- Declare_Var -- ----------------- procedure Declare_Var (Tok : Reg_Token; Name : String) is begin Put_Line ("$var reg 32 " & Image (Tok) & " " & Name & " $end"); end Declare_Var; ----------------- -- Declare_Var -- ----------------- procedure Declare_Var (Tok : Event_Token; Name : String) is begin Put_Line ("$var event 1 " & Image (Tok) & " " & Name & " $end"); end Declare_Var; -------------- -- Register -- -------------- procedure Register (ID : Task_ID; Name : String) is begin ID.Trace_Data.Running := Create; ID.Trace_Data.Status := Create; ID.Trace_Data.Prio := Create; Declare_Var (ID.Trace_Data.Running, Clean (Name)); Declare_Var (ID.Trace_Data.Status, Clean (Name) & "_Status"); Declare_Var (ID.Trace_Data.Prio, Clean (Name) & "_Priority"); end Register; ------------ -- Resume -- ------------ procedure Resume (ID : Task_ID) is begin Put_State_Change (ID.Trace_Data.Status, Clean (Image (ID.Status))); Put_State_Change (ID.Trace_Data.Prio, Word (ID.Current_Prio)); end Resume; ------------- -- Suspend -- ------------- procedure Suspend (ID : Task_ID) is begin Put_State_Change (ID.Trace_Data.Status, Clean (Image (ID.Status))); end Suspend; ----------- -- Fault -- ----------- procedure Fault (ID : Task_ID) is begin Put_State_Change (ID.Trace_Data.Status, Clean (Image (ID.Status))); end Fault; ------------- -- Running -- ------------- procedure Running (ID : Task_ID) is begin Put_State_Change (ID.Trace_Data.Status, Clean (Image (ID.Status))); end Running; --------------------- -- Change_Priority -- --------------------- procedure Change_Priority (ID : Task_ID; New_Prio : Internal_Task_Priority) is begin Put_State_Change (ID.Trace_Data.Prio, Word (New_Prio)); end Change_Priority; -------------------- -- Context_Switch -- -------------------- procedure Context_Switch (Old, Next : Task_ID) is Now : constant Time := Timer.Clock; begin Put_State_Change (Old.Trace_Data.Running, False, Now); Put_State_Change (Next.Trace_Data.Running, True, Now); Put_State_Change (Running_Task_Token, Clean (Next.Name), Now); Put_State_Change (Context_Switch_Token, Now); end Context_Switch; -------------- -- Register -- -------------- procedure Register (ID : Semaphore_ID; Name : String) is begin ID.Trace_Data.Token := Create; Declare_Var (ID.Trace_Data.Token, Clean (Name)); end Register; ------------------- -- Value_Changed -- ------------------- procedure Value_Changed (ID : Semaphore_ID; Count : Semaphore_Count; By : Task_ID) is pragma Unreferenced (By); begin Put_State_Change (ID.Trace_Data.Token, Word (Count)); end Value_Changed; -------------- -- Register -- -------------- procedure Register (ID : Mutex_ID; Name : String) is begin ID.Trace_Data.Token := Create; Declare_Var (ID.Trace_Data.Token, Clean (Name) & "_Owner"); end Register; ---------- -- Lock -- ---------- procedure Lock (ID : Mutex_ID; By : Task_ID) is begin Put_State_Change (ID.Trace_Data.Token, Clean (By.Name)); end Lock; ------------- -- Release -- ------------- procedure Release (ID : Mutex_ID; By : Task_ID) is pragma Unreferenced (By); begin Put_State_Change (ID.Trace_Data.Token, "unlocked"); end Release; -------------- -- Shutdown -- -------------- procedure Shutdown is begin Traces_Output.Finalize; end Shutdown; begin Initialize; end AGATE.Traces;
-- PR ada/49732 -- Testcase by Vorfeed Canal -- { dg-do compile } -- { dg-options "-gnato" } with Interfaces.C; use Interfaces.C; with Interfaces.C.Strings; use Interfaces.C.Strings; with Interfaces.C.Pointers; procedure Pointer_Controlled is function Create (Name : String) return size_t is type Name_String is new char_array (0 .. Name'Length); type Name_String_Ptr is access Name_String; pragma Controlled (Name_String_Ptr); Name_Str : constant Name_String_Ptr := new Name_String; Name_Len : size_t; begin To_C (Name, Name_Str.all, Name_Len); return 1; end; Test : size_t; begin Test := Create("ABC"); end;
-- -- Copyright (C) 2020, AdaCore -- -- This spec has been automatically generated from STM32F0x8.svd -- This is a version for the STM32F0x8 MCU package Ada.Interrupts.Names is -- All identifiers in this unit are implementation defined pragma Implementation_Defined; ---------------- -- Interrupts -- ---------------- -- System tick Sys_Tick_Interrupt : constant Interrupt_ID := -1; -- Window Watchdog interrupt WWDG_Interrupt : constant Interrupt_ID := 0; -- PVD and VDDIO2 supply comparator interrupt PVD_Interrupt : constant Interrupt_ID := 1; -- RTC interrupts RTC_Interrupt : constant Interrupt_ID := 2; -- Flash global interrupt FLASH_Interrupt : constant Interrupt_ID := 3; -- RCC and CRS global interrupts RCC_CRS_Interrupt : constant Interrupt_ID := 4; -- EXTI Line[1:0] interrupts EXTI0_1_Interrupt : constant Interrupt_ID := 5; -- EXTI Line[3:2] interrupts EXTI2_3_Interrupt : constant Interrupt_ID := 6; -- EXTI Line15 and EXTI4 interrupts EXTI4_15_Interrupt : constant Interrupt_ID := 7; -- Touch sensing interrupt TSC_Interrupt : constant Interrupt_ID := 8; -- DMA1 channel 1 interrupt DMA1_CH1_Interrupt : constant Interrupt_ID := 9; -- DMA1 channel 2 and 3 and DMA2 channel 1 and 2 interrupt DMA1_CH2_3_DMA2_CH1_2_Interrupt : constant Interrupt_ID := 10; -- DMA1 channel 4, 5, 6 and 7 and DMA2 channel 3, 4 and 5 interrupts DMA1_CH4_5_6_7_DMA2_CH3_4_5_Interrupt : constant Interrupt_ID := 11; -- ADC and comparator interrupts ADC_COMP_Interrupt : constant Interrupt_ID := 12; -- TIM1 break, update, trigger and commutation interrupt TIM1_BRK_UP_TRG_COM_Interrupt : constant Interrupt_ID := 13; -- TIM1 Capture Compare interrupt TIM1_CC_Interrupt : constant Interrupt_ID := 14; -- TIM2 global interrupt TIM2_Interrupt : constant Interrupt_ID := 15; -- TIM3 global interrupt TIM3_Interrupt : constant Interrupt_ID := 16; -- TIM6 global interrupt and DAC underrun interrupt TIM6_DAC_Interrupt : constant Interrupt_ID := 17; -- TIM7 global interrupt TIM7_Interrupt : constant Interrupt_ID := 18; -- TIM14 global interrupt TIM14_Interrupt : constant Interrupt_ID := 19; -- TIM15 global interrupt TIM15_Interrupt : constant Interrupt_ID := 20; -- TIM16 global interrupt TIM16_Interrupt : constant Interrupt_ID := 21; -- TIM17 global interrupt TIM17_Interrupt : constant Interrupt_ID := 22; -- I2C1 global interrupt I2C1_Interrupt : constant Interrupt_ID := 23; -- I2C2 global interrupt I2C2_Interrupt : constant Interrupt_ID := 24; -- SPI1_global_interrupt SPI1_Interrupt : constant Interrupt_ID := 25; -- SPI2 global interrupt SPI2_Interrupt : constant Interrupt_ID := 26; -- USART1 global interrupt USART1_Interrupt : constant Interrupt_ID := 27; -- USART2 global interrupt USART2_Interrupt : constant Interrupt_ID := 28; -- USART3, USART4, USART5, USART6, USART7, USART8 global interrupt USART3_4_5_6_7_8_Interrupt : constant Interrupt_ID := 29; -- CEC and CAN global interrupt CEC_CAN_Interrupt : constant Interrupt_ID := 30; -- USB global interrupt USB_Interrupt : constant Interrupt_ID := 31; end Ada.Interrupts.Names;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- Copyright (C) 2012-2016, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ with Interfaces.STM32; package System.STM32 is pragma No_Elaboration_Code_All; pragma Preelaborate (System.STM32); subtype Frequency is Interfaces.STM32.UInt32; -- See RM0433 rev. 7 pg. 334 chapter 8.5, and pg. 335 for clock tree type RCC_System_Clocks is record SYSCLK : Frequency; HCLK1 : Frequency; -- CPU clock HCLK2 : Frequency; -- AHBs peripheral clocks PCLK1 : Frequency; -- APB1 peripheral clock (D2PPRE1) PCLK2 : Frequency; -- APB2 peripheral clock (D2PPRE2) PCLK3 : Frequency; -- APB3 peripheral clock (D1PPRE) PCLK4 : Frequency; -- APB4 peripheral clock (D3PPRE) TIMCLK1 : Frequency; -- APB1 timer clock for TIMs 2 .. 7, 12 .. 14 TIMCLK2 : Frequency; -- APB2 timer clock for TIMs 1, 8, 15 .. 17 TIMCLK3 : Frequency; -- APB1 timer clock for HRTIM1 end record; function System_Clocks return RCC_System_Clocks; -- MODER constants subtype GPIO_MODER_Values is Interfaces.STM32.UInt2; Mode_IN : constant GPIO_MODER_Values := 0; Mode_OUT : constant GPIO_MODER_Values := 1; Mode_AF : constant GPIO_MODER_Values := 2; Mode_AN : constant GPIO_MODER_Values := 3; -- OTYPER constants subtype GPIO_OTYPER_Values is Interfaces.STM32.Bit; Push_Pull : constant GPIO_OTYPER_Values := 0; Open_Drain : constant GPIO_OTYPER_Values := 1; -- OSPEEDR constants subtype GPIO_OSPEEDR_Values is Interfaces.STM32.UInt2; Speed_2MHz : constant GPIO_OSPEEDR_Values := 0; -- Low speed Speed_25MHz : constant GPIO_OSPEEDR_Values := 1; -- Medium speed Speed_50MHz : constant GPIO_OSPEEDR_Values := 2; -- Fast speed Speed_100MHz : constant GPIO_OSPEEDR_Values := 3; -- High speed -- PUPDR constants subtype GPIO_PUPDR_Values is Interfaces.STM32.UInt2; No_Pull : constant GPIO_PUPDR_Values := 0; Pull_Up : constant GPIO_PUPDR_Values := 1; Pull_Down : constant GPIO_PUPDR_Values := 2; -- AFL constants AF_USART1 : constant Interfaces.STM32.UInt4 := 7; AF_USART3 : constant Interfaces.STM32.UInt4 := 7; type MCU_ID_Register is record DEV_ID : Interfaces.STM32.UInt12; Reserved : Interfaces.STM32.UInt4; REV_ID : Interfaces.STM32.UInt16; end record with Pack, Size => 32; -- RCC constants type PLL_Source is (PLL_SRC_HSI, PLL_SRC_CSI, PLL_SRC_HSE) with Size => 2; for PLL_Source use (PLL_SRC_HSI => 2#00#, PLL_SRC_CSI => 2#01#, PLL_SRC_HSE => 2#10#); type SYSCLK_Source is (SYSCLK_SRC_HSI, SYSCLK_SRC_CSI, SYSCLK_SRC_HSE, SYSCLK_SRC_PLL) with Size => 3; for SYSCLK_Source use (SYSCLK_SRC_HSI => 2#000#, SYSCLK_SRC_CSI => 2#001#, SYSCLK_SRC_HSE => 2#010#, SYSCLK_SRC_PLL => 2#011#); type AHB_Prescaler_Enum is (DIV2, DIV4, DIV8, DIV16, DIV64, DIV128, DIV256, DIV512) with Size => 3; type AHB_Prescaler is record Enabled : Boolean := False; Value : AHB_Prescaler_Enum := AHB_Prescaler_Enum'First; end record with Size => 4; for AHB_Prescaler use record Enabled at 0 range 3 .. 3; Value at 0 range 0 .. 2; end record; type APB_Prescaler_Enum is (DIV2, DIV4, DIV8, DIV16) with Size => 2; type APB_Prescaler is record Enabled : Boolean; Value : APB_Prescaler_Enum := APB_Prescaler_Enum'First; end record with Size => 3; for APB_Prescaler use record Enabled at 0 range 2 .. 2; Value at 0 range 0 .. 1; end record; type MCO1_Clock_Selection is (MCOSEL_HSI, MCOSEL_LSE, MCOSEL_HSE, MCOSEL_PLL1, MCOSEL_HSI48) with Size => 3; type MCO2_Clock_Selection is (MCOSEL_SYSCLK, MCOSEL_PLL2, MCOSEL_HSE, MCOSEL_PLL1, MCOSEL_CSI, MCOSEL_LSI) with Size => 3; type MCO_Prescaler is (MCOPRE_Disabled, MCOPRE_DIV1, -- Bypass MCOPRE_DIV2, MCOPRE_DIV3, MCOPRE_DIV4, MCOPRE_DIV5, MCOPRE_DIV6, MCOPRE_DIV7, MCOPRE_DIV8, MCOPRE_DIV9, MCOPRE_DIV10, MCOPRE_DIV11, MCOPRE_DIV12, MCOPRE_DIV13, MCOPRE_DIV14, MCOPRE_DIV15) with Size => 4; type HSI_Divisor is (HSI_DIV1, HSI_DIV2, HSI_DIV4, HSI_DIV8) with Size => 2; type PER_Source is (PER_SRC_HSI, PER_SRC_CSI, PER_SRC_HSE) with Size => 2; -- Constants for RCC CR register subtype PLLM_Range is Integer range 1 .. 63; subtype PLLN_Range is Integer range 4 .. 512; subtype PLL1P_Range is Integer range 2 .. 128; -- Only even numbers subtype PLL23P_Range is Integer range 1 .. 128; subtype PLLQ_Range is Integer range 1 .. 128; subtype PLLR_Range is Integer range 1 .. 128; subtype HSECLK_Range is Integer range 4_000_000 .. 50_000_000; subtype PLLM_OUT_Range is Integer range 1_000_000 .. 16_000_000; subtype PLLN_OUT_Range is Integer range 150_000_000 .. 960_000_000; subtype PLL1P_OUT_Range is Integer range 1_500_000 .. 480_000_000; subtype PLL2P_OUT_Range is Integer range 1_500_000 .. 300_000_000; subtype PLL3P_OUT_Range is Integer range 1_500_000 .. 200_000_000; subtype PLL1Q_OUT_Range is Integer range 1_500_000 .. 400_000_000; subtype PLL2Q_OUT_Range is Integer range 1_500_000 .. 300_000_000; subtype PLL3Q_OUT_Range is Integer range 1_500_000 .. 200_000_000; subtype PLLCLK_Range is Integer range 192_000_000 .. 836_000_000; subtype SYSCLK_Range is Integer range 1 .. 480_000_000; subtype HCLK1_Range is Integer range 1 .. 480_000_000; subtype HCLK2_Range is Integer range 1 .. 240_000_000; subtype PCLK1_Range is Integer range 1 .. 120_000_000; subtype PCLK2_Range is Integer range 1 .. 120_000_000; subtype PCLK3_Range is Integer range 1 .. 120_000_000; subtype PCLK4_Range is Integer range 1 .. 120_000_000; -- Constants for Flash read latency with VCORE Range in relation to -- AXI Interface clock frequency (MHz) (AXI clock is HCLK2): -- RM0433 STM32H743 pg. 159 table 17 chapter 4.3.8. -- VCORE range VOS3 | VOS2 | VOS1 | VOS0 -- 000: Zero wait state 0 - 45 | 0 - 55 | 0 - 70 | 0 - 70 -- 001: One wait state 45 - 90 | 55 - 110 | 70 - 140 | 70 - 140 -- 010: Two wait sates 90 - 135 | 110 - 165 | 140 - 210 | 140 - 210 -- 011: Three wait sates 135 - 180 | 165 - 225 | 210 - 225 | 210 - 225 -- 100: Four wait sates 180 - 225 | 225 | | 225 - 240 subtype FLASH_Latency_0 is Integer range 1 .. 70_000_000; subtype FLASH_Latency_1 is Integer range 71_000_000 .. 140_000_000; subtype FLASH_Latency_2 is Integer range 141_000_000 .. 210_000_000; subtype FLASH_Latency_3 is Integer range 211_000_000 .. 225_000_000; subtype FLASH_Latency_4 is Integer range 226_000_000 .. 240_000_000; -- Flash wait states type FLASH_WS is (FWS0, FWS1, FWS2, FWS3, FWS4) with Size => 4; FLASH_Latency : Interfaces.STM32.UInt4 := FLASH_WS'Enum_Rep (FWS4); type VCORE_Scaling_Selection is (Scale_3, Scale_2, Scale_1); for VCORE_Scaling_Selection use (Scale_3 => 2#01#, Scale_2 => 2#10#, Scale_1 => 2#11#); MCU_ID : MCU_ID_Register with Volatile, Address => System'To_Address (16#E00E_1000#); -- DBGMCU_IDC Identity code register, also at CPU address 16#5C00_1000#. -- RM0433 rev 7 pg. 3189 chapter 60.5.8. DEV_ID_STM32F40xxx : constant := 16#413#; -- STM32F40xxx/41xxx DEV_ID_STM32F42xxx : constant := 16#419#; -- STM32F42xxx/43xxx DEV_ID_STM32F46xxx : constant := 16#434#; -- STM32F469xx/479xx DEV_ID_STM32F74xxx : constant := 16#449#; -- STM32F74xxx/75xxx DEV_ID_STM32F76xxx : constant := 16#451#; -- STM32F76xxx/77xxx DEV_ID_STM32F334xx : constant := 16#438#; -- STM32F334xx DEV_ID_STM32G474x2 : constant := 16#468#; -- STM32G474xx category 2 DEV_ID_STM32G474x3 : constant := 16#469#; -- STM32G474xx category 3 DEV_ID_STM32G474x4 : constant := 16#479#; -- STM32G474xx category 4 DEV_ID_STM32H743 : constant := 16#450#; -- STM32H742/743/753/750 end System.STM32;
-- This spec has been automatically generated from STM32F427x.svd pragma Restrictions (No_Elaboration_Code); pragma Ada_2012; with System; with HAL; package STM32_SVD.IWDG is pragma Preelaborate; --------------- -- Registers -- --------------- ----------------- -- KR_Register -- ----------------- subtype KR_KEY_Field is HAL.Short; -- Key register type KR_Register is record -- Write-only. Key value (write only, read 0000h) KEY : KR_KEY_Field := 16#0#; -- unspecified Reserved_16_31 : HAL.Short := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for KR_Register use record KEY at 0 range 0 .. 15; Reserved_16_31 at 0 range 16 .. 31; end record; ----------------- -- PR_Register -- ----------------- subtype PR_PR_Field is HAL.UInt3; -- Prescaler register type PR_Register is record -- Prescaler divider PR : PR_PR_Field := 16#0#; -- unspecified Reserved_3_31 : HAL.UInt29 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for PR_Register use record PR at 0 range 0 .. 2; Reserved_3_31 at 0 range 3 .. 31; end record; ------------------ -- RLR_Register -- ------------------ subtype RLR_RL_Field is HAL.UInt12; -- Reload register type RLR_Register is record -- Watchdog counter reload value RL : RLR_RL_Field := 16#FFF#; -- unspecified Reserved_12_31 : HAL.UInt20 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for RLR_Register use record RL at 0 range 0 .. 11; Reserved_12_31 at 0 range 12 .. 31; end record; ----------------- -- SR_Register -- ----------------- -- Status register type SR_Register is record -- Read-only. Watchdog prescaler value update PVU : Boolean; -- Read-only. Watchdog counter reload value update RVU : Boolean; -- unspecified Reserved_2_31 : HAL.UInt30; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for SR_Register use record PVU at 0 range 0 .. 0; RVU at 0 range 1 .. 1; Reserved_2_31 at 0 range 2 .. 31; end record; ----------------- -- Peripherals -- ----------------- -- Independent watchdog type IWDG_Peripheral is record -- Key register KR : KR_Register; -- Prescaler register PR : PR_Register; -- Reload register RLR : RLR_Register; -- Status register SR : SR_Register; end record with Volatile; for IWDG_Peripheral use record KR at 0 range 0 .. 31; PR at 4 range 0 .. 31; RLR at 8 range 0 .. 31; SR at 12 range 0 .. 31; end record; -- Independent watchdog IWDG_Periph : aliased IWDG_Peripheral with Import, Address => IWDG_Base; end STM32_SVD.IWDG;
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;
-- AOC 2020, Day 22 package Day is function combat(filename : in String) return Natural; function recursive_combat(filename : in String) return Natural; end Day;
----------------------------------------------------------------------- -- awa-mail -- Mail module -- Copyright (C) 2011, 2012, 2017, 2018 Stephane Carrez -- Written by Stephane Carrez (Stephane.Carrez@gmail.com) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- with Util.Beans.Objects.Maps; with ASF.Applications; with AWA.Modules; with AWA.Events; with AWA.Mail.Clients; -- == Configuration == -- The *mail* module needs some properties to configure the SMTP -- server. -- -- |Configuration | Default | Description | -- | --------------- | --------- | ----------------------------------------------- | -- |mail.smtp.host | localhost | Defines the SMTP server host name | -- |mail.smtp.port | 25 | Defines the SMTP connection port | -- |mail.smtp.enable | 1 | Defines whether sending email is enabled or not | -- -- == Sending an email == -- Sending an email when an event is posted can be done by using -- an XML configuration. Basically, the *mail* module uses the event -- framework provided by AWA. The XML definition looks like: -- -- <on-event name="user-register"> -- <action>#{userMail.send}</action> -- <property name="template">/mail/register-user-message.xhtml</property> -- </on-event> -- -- With this definition, the mail template `/mail/register-user-message.xhtml` -- is formatted by using the event and application context when the -- `user-register` event is posted. -- -- @include awa-mail-components.ads -- @include awa-mail-components-recipients.ads -- @include awa-mail-components-messages.ads -- -- == Ada Beans == -- @include mail.xml -- package AWA.Mail.Modules is NAME : constant String := "mail"; type Mail_Module is new AWA.Modules.Module with private; type Mail_Module_Access is access all Mail_Module'Class; -- Initialize the mail module. overriding procedure Initialize (Plugin : in out Mail_Module; App : in AWA.Modules.Application_Access; Props : in ASF.Applications.Config); -- Configures the module after its initialization and after having read its XML configuration. overriding procedure Configure (Plugin : in out Mail_Module; Props : in ASF.Applications.Config); -- Create a new mail message. function Create_Message (Plugin : in Mail_Module) return AWA.Mail.Clients.Mail_Message_Access; -- Format and send an email. procedure Send_Mail (Plugin : in Mail_Module; Template : in String; Props : in Util.Beans.Objects.Maps.Map; Content : in AWA.Events.Module_Event'Class); -- Get the mail module instance associated with the current application. function Get_Mail_Module return Mail_Module_Access; private type Mail_Module is new AWA.Modules.Module with record Mailer : AWA.Mail.Clients.Mail_Manager_Access; end record; end AWA.Mail.Modules;
------------------------------------------------------------------------------ -- -- -- GNU ADA RUN-TIME LIBRARY (GNARL) COMPONENTS -- -- -- -- A D A . R E A L _ T I M E -- -- -- -- B o d y -- -- -- -- $Revision$ -- -- -- Copyright (C) 1991-2001, Florida State University -- -- -- -- GNARL is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 2, or (at your option) any later ver- -- -- sion. GNARL is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNARL; see file COPYING. If not, write -- -- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, -- -- MA 02111-1307, USA. -- -- -- -- As a special exception, if other files instantiate generics from this -- -- unit, or you link this unit with other files to produce an executable, -- -- this unit does not by itself cause the resulting executable to be -- -- covered by the GNU General Public License. This exception does not -- -- however invalidate any other reasons why the executable file might be -- -- covered by the GNU Public License. -- -- -- -- GNARL was developed by the GNARL team at Florida State University. It is -- -- now maintained by Ada Core Technologies Inc. in cooperation with Florida -- -- State University (http://www.gnat.com). -- -- -- ------------------------------------------------------------------------------ with System.Task_Primitives.Operations; -- used for Monotonic_Clock package body Ada.Real_Time is --------- -- "*" -- --------- -- Note that Constraint_Error may be propagated function "*" (Left : Time_Span; Right : Integer) return Time_Span is begin return Time_Span (Duration (Left) * Right); end "*"; function "*" (Left : Integer; Right : Time_Span) return Time_Span is begin return Time_Span (Left * Duration (Right)); end "*"; --------- -- "+" -- --------- -- Note that Constraint_Error may be propagated function "+" (Left : Time; Right : Time_Span) return Time is begin return Time (Duration (Left) + Duration (Right)); end "+"; function "+" (Left : Time_Span; Right : Time) return Time is begin return Time (Duration (Left) + Duration (Right)); end "+"; function "+" (Left, Right : Time_Span) return Time_Span is begin return Time_Span (Duration (Left) + Duration (Right)); end "+"; --------- -- "-" -- --------- -- Note that Constraint_Error may be propagated function "-" (Left : Time; Right : Time_Span) return Time is begin return Time (Duration (Left) - Duration (Right)); end "-"; function "-" (Left, Right : Time) return Time_Span is begin return Time_Span (Duration (Left) - Duration (Right)); end "-"; function "-" (Left, Right : Time_Span) return Time_Span is begin return Time_Span (Duration (Left) - Duration (Right)); end "-"; function "-" (Right : Time_Span) return Time_Span is begin return Time_Span_Zero - Right; end "-"; --------- -- "/" -- --------- -- Note that Constraint_Error may be propagated function "/" (Left, Right : Time_Span) return Integer is begin return Integer (Duration (Left) / Duration (Right)); end "/"; function "/" (Left : Time_Span; Right : Integer) return Time_Span is begin return Time_Span (Duration (Left) / Right); end "/"; ----------- -- Clock -- ----------- function Clock return Time is begin return Time (System.Task_Primitives.Operations.Monotonic_Clock); end Clock; ------------------ -- Microseconds -- ------------------ function Microseconds (US : Integer) return Time_Span is begin return Time_Span_Unit * US * 1_000; end Microseconds; ------------------ -- Milliseconds -- ------------------ function Milliseconds (MS : Integer) return Time_Span is begin return Time_Span_Unit * MS * 1_000_000; end Milliseconds; ----------------- -- Nanoseconds -- ----------------- function Nanoseconds (NS : Integer) return Time_Span is begin return Time_Span_Unit * NS; end Nanoseconds; ----------- -- Split -- ----------- procedure Split (T : Time; SC : out Seconds_Count; TS : out Time_Span) is T_Val : Time; begin -- Special-case for Time_First, whose absolute value is anomalous, -- courtesy of two's complement. if T = Time_First then T_Val := abs (Time_Last); else T_Val := abs (T); end if; -- Extract the integer part of T, truncating towards zero. if T_Val < 0.5 then SC := 0; else SC := Seconds_Count (Time_Span' (T_Val - 0.5)); end if; if T < 0.0 then SC := -SC; end if; -- If original time is negative, need to truncate towards negative -- infinity, to make TS non-negative, as per ARM. if Time (SC) > T then SC := SC - 1; end if; TS := T - Time (SC); end Split; ------------- -- Time_Of -- ------------- function Time_Of (SC : Seconds_Count; TS : Time_Span) return Time is begin return Time (SC) + TS; end Time_Of; ----------------- -- To_Duration -- ----------------- function To_Duration (TS : Time_Span) return Duration is begin return Duration (TS); end To_Duration; ------------------ -- To_Time_Span -- ------------------ function To_Time_Span (D : Duration) return Time_Span is begin return Time_Span (D); end To_Time_Span; end Ada.Real_Time;
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- U I N T P -- -- -- -- S p e c -- -- -- -- Copyright (C) 1992-2014, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- Support for universal integer arithmetic -- WARNING: There is a C version of this package. Any changes to this -- source file must be properly reflected in the C header file uintp.h with Alloc; with Table; pragma Elaborate_All (Table); with Types; use Types; package Uintp is ------------------------------------------------- -- Basic Types and Constants for Uintp Package -- ------------------------------------------------- type Uint is private; -- The basic universal integer type No_Uint : constant Uint; -- A constant value indicating a missing or unset Uint value Uint_0 : constant Uint; Uint_1 : constant Uint; Uint_2 : constant Uint; Uint_3 : constant Uint; Uint_4 : constant Uint; Uint_5 : constant Uint; Uint_6 : constant Uint; Uint_7 : constant Uint; Uint_8 : constant Uint; Uint_9 : constant Uint; Uint_10 : constant Uint; Uint_11 : constant Uint; Uint_12 : constant Uint; Uint_13 : constant Uint; Uint_14 : constant Uint; Uint_15 : constant Uint; Uint_16 : constant Uint; Uint_24 : constant Uint; Uint_32 : constant Uint; Uint_63 : constant Uint; Uint_64 : constant Uint; Uint_80 : constant Uint; Uint_128 : constant Uint; Uint_Minus_1 : constant Uint; Uint_Minus_2 : constant Uint; Uint_Minus_3 : constant Uint; Uint_Minus_4 : constant Uint; Uint_Minus_5 : constant Uint; Uint_Minus_6 : constant Uint; Uint_Minus_7 : constant Uint; Uint_Minus_8 : constant Uint; Uint_Minus_9 : constant Uint; Uint_Minus_12 : constant Uint; Uint_Minus_36 : constant Uint; Uint_Minus_63 : constant Uint; Uint_Minus_80 : constant Uint; Uint_Minus_128 : constant Uint; type UI_Vector is array (Pos range <>) of Int; -- Vector containing the integer values of a Uint value -- Note: An earlier version of this package used pointers of arrays of Ints -- (dynamically allocated) for the Uint type. The change leads to a few -- less natural idioms used throughout this code, but eliminates all uses -- of the heap except for the table package itself. For example, Uint -- parameters are often converted to UI_Vectors for internal manipulation. -- This is done by creating the local UI_Vector using the function N_Digits -- on the Uint to find the size needed for the vector, and then calling -- Init_Operand to copy the values out of the table into the vector. ----------------- -- Subprograms -- ----------------- procedure Initialize; -- Initialize Uint tables. Note that Initialize must not be called if -- Tree_Read is used. Note also that there is no lock routine in this -- unit, these are among the few tables that can be expanded during -- gigi processing. procedure Tree_Read; -- Initializes internal tables from current tree file using the relevant -- Table.Tree_Read routines. Note that Initialize should not be called if -- Tree_Read is used. Tree_Read includes all necessary initialization. procedure Tree_Write; -- Writes out internal tables to current tree file using the relevant -- Table.Tree_Write routines. function UI_Abs (Right : Uint) return Uint; pragma Inline (UI_Abs); -- Returns abs function of universal integer function UI_Add (Left : Uint; Right : Uint) return Uint; function UI_Add (Left : Int; Right : Uint) return Uint; function UI_Add (Left : Uint; Right : Int) return Uint; -- Returns sum of two integer values function UI_Decimal_Digits_Hi (U : Uint) return Nat; -- Returns an estimate of the number of decimal digits required to -- represent the absolute value of U. This estimate is correct or high, -- i.e. it never returns a value that is too low. The accuracy of the -- estimate affects only the effectiveness of comparison optimizations -- in Urealp. function UI_Decimal_Digits_Lo (U : Uint) return Nat; -- Returns an estimate of the number of decimal digits required to -- represent the absolute value of U. This estimate is correct or low, -- i.e. it never returns a value that is too high. The accuracy of the -- estimate affects only the effectiveness of comparison optimizations -- in Urealp. function UI_Div (Left : Uint; Right : Uint) return Uint; function UI_Div (Left : Int; Right : Uint) return Uint; function UI_Div (Left : Uint; Right : Int) return Uint; -- Returns quotient of two integer values. Fatal error if Right = 0 function UI_Eq (Left : Uint; Right : Uint) return Boolean; function UI_Eq (Left : Int; Right : Uint) return Boolean; function UI_Eq (Left : Uint; Right : Int) return Boolean; pragma Inline (UI_Eq); -- Compares integer values for equality function UI_Expon (Left : Uint; Right : Uint) return Uint; function UI_Expon (Left : Int; Right : Uint) return Uint; function UI_Expon (Left : Uint; Right : Int) return Uint; function UI_Expon (Left : Int; Right : Int) return Uint; -- Returns result of exponentiating two integer values. -- Fatal error if Right is negative. function UI_GCD (Uin, Vin : Uint) return Uint; -- Computes GCD of input values. Assumes Uin >= Vin >= 0 function UI_Ge (Left : Uint; Right : Uint) return Boolean; function UI_Ge (Left : Int; Right : Uint) return Boolean; function UI_Ge (Left : Uint; Right : Int) return Boolean; pragma Inline (UI_Ge); -- Compares integer values for greater than or equal function UI_Gt (Left : Uint; Right : Uint) return Boolean; function UI_Gt (Left : Int; Right : Uint) return Boolean; function UI_Gt (Left : Uint; Right : Int) return Boolean; pragma Inline (UI_Gt); -- Compares integer values for greater than function UI_Is_In_Int_Range (Input : Uint) return Boolean; pragma Inline (UI_Is_In_Int_Range); -- Determines if universal integer is in Int range function UI_Le (Left : Uint; Right : Uint) return Boolean; function UI_Le (Left : Int; Right : Uint) return Boolean; function UI_Le (Left : Uint; Right : Int) return Boolean; pragma Inline (UI_Le); -- Compares integer values for less than or equal function UI_Lt (Left : Uint; Right : Uint) return Boolean; function UI_Lt (Left : Int; Right : Uint) return Boolean; function UI_Lt (Left : Uint; Right : Int) return Boolean; -- Compares integer values for less than function UI_Max (Left : Uint; Right : Uint) return Uint; function UI_Max (Left : Int; Right : Uint) return Uint; function UI_Max (Left : Uint; Right : Int) return Uint; -- Returns maximum of two integer values function UI_Min (Left : Uint; Right : Uint) return Uint; function UI_Min (Left : Int; Right : Uint) return Uint; function UI_Min (Left : Uint; Right : Int) return Uint; -- Returns minimum of two integer values function UI_Mod (Left : Uint; Right : Uint) return Uint; function UI_Mod (Left : Int; Right : Uint) return Uint; function UI_Mod (Left : Uint; Right : Int) return Uint; pragma Inline (UI_Mod); -- Returns mod function of two integer values function UI_Mul (Left : Uint; Right : Uint) return Uint; function UI_Mul (Left : Int; Right : Uint) return Uint; function UI_Mul (Left : Uint; Right : Int) return Uint; -- Returns product of two integer values function UI_Ne (Left : Uint; Right : Uint) return Boolean; function UI_Ne (Left : Int; Right : Uint) return Boolean; function UI_Ne (Left : Uint; Right : Int) return Boolean; pragma Inline (UI_Ne); -- Compares integer values for inequality function UI_Negate (Right : Uint) return Uint; pragma Inline (UI_Negate); -- Returns negative of universal integer function UI_Rem (Left : Uint; Right : Uint) return Uint; function UI_Rem (Left : Int; Right : Uint) return Uint; function UI_Rem (Left : Uint; Right : Int) return Uint; -- Returns rem of two integer values function UI_Sub (Left : Uint; Right : Uint) return Uint; function UI_Sub (Left : Int; Right : Uint) return Uint; function UI_Sub (Left : Uint; Right : Int) return Uint; pragma Inline (UI_Sub); -- Returns difference of two integer values function UI_Modular_Exponentiation (B : Uint; E : Uint; Modulo : Uint) return Uint; -- Efficiently compute (B ** E) rem Modulo function UI_Modular_Inverse (N : Uint; Modulo : Uint) return Uint; -- Compute the multiplicative inverse of N in modular arithmetics with the -- given Modulo (uses Euclid's algorithm). Note: the call is considered -- to be erroneous (and the behavior is undefined) if n is not invertible. function UI_From_Int (Input : Int) return Uint; -- Converts Int value to universal integer form function UI_From_CC (Input : Char_Code) return Uint; -- Converts Char_Code value to universal integer form function UI_To_Int (Input : Uint) return Int; -- Converts universal integer value to Int. Fatal error if value is not in -- appropriate range. function UI_To_CC (Input : Uint) return Char_Code; -- Converts universal integer value to Char_Code. Fatal error if value is -- not in Char_Code range. function Num_Bits (Input : Uint) return Nat; -- Approximate number of binary bits in given universal integer. This -- function is used for capacity checks, and it can be one bit off -- without affecting its usage. function Vector_To_Uint (In_Vec : UI_Vector; Negative : Boolean) return Uint; -- Functions that calculate values in UI_Vectors, call this function to -- create and return the Uint value. In_Vec contains the multiple precision -- (Base) representation of a non-negative value. Leading zeroes are -- permitted. Negative is set if the desired result is the negative of the -- given value. The result will be either the appropriate directly -- represented value, or a table entry in the proper canonical format is -- created and returned. -- -- Note that Init_Operand puts a signed value in the result vector, but -- Vector_To_Uint is always presented with a non-negative value. The -- processing of signs is something that is done by the caller before -- calling Vector_To_Uint. --------------------- -- Output Routines -- --------------------- type UI_Format is (Hex, Decimal, Auto); -- Used to determine whether UI_Image/UI_Write output is in hexadecimal -- or decimal format. Auto, the default setting, lets the routine make a -- decision based on the value. UI_Image_Max : constant := 48; -- Enough for a 128-bit number UI_Image_Buffer : String (1 .. UI_Image_Max); UI_Image_Length : Natural; -- Buffer used for UI_Image as described below procedure UI_Image (Input : Uint; Format : UI_Format := Auto); -- Places a representation of Uint, consisting of a possible minus sign, -- followed by the value in UI_Image_Buffer. The form of the value is an -- integer literal in either decimal (no base) or hexadecimal (base 16) -- format. If Hex is True on entry, then hex mode is forced, otherwise -- UI_Image makes a guess at which output format is more convenient. The -- value must fit in UI_Image_Buffer. The actual length of the result is -- returned in UI_Image_Length. If necessary to meet this requirement, the -- result is an approximation of the proper value, using an exponential -- format. The image of No_Uint is output as a single question mark. function UI_Image (Input : Uint; Format : UI_Format := Auto) return String; -- Functional form, in which the result is returned as a string. This call -- also leaves the result in UI_Image_Buffer/Length as described above. procedure UI_Write (Input : Uint; Format : UI_Format := Auto); -- Writes a representation of Uint, consisting of a possible minus sign, -- followed by the value to the output file. The form of the value is an -- integer literal in either decimal (no base) or hexadecimal (base 16) -- format as appropriate. UI_Format shows which format to use. Auto, the -- default, asks UI_Write to make a guess at which output format will be -- more convenient to read. procedure pid (Input : Uint); pragma Export (Ada, pid); -- Writes representation of Uint in decimal with a terminating line -- return. This is intended for use from the debugger. procedure pih (Input : Uint); pragma Export (Ada, pih); -- Writes representation of Uint in hex with a terminating line return. -- This is intended for use from the debugger. ------------------------ -- Operator Renamings -- ------------------------ function "+" (Left : Uint; Right : Uint) return Uint renames UI_Add; function "+" (Left : Int; Right : Uint) return Uint renames UI_Add; function "+" (Left : Uint; Right : Int) return Uint renames UI_Add; function "/" (Left : Uint; Right : Uint) return Uint renames UI_Div; function "/" (Left : Int; Right : Uint) return Uint renames UI_Div; function "/" (Left : Uint; Right : Int) return Uint renames UI_Div; function "*" (Left : Uint; Right : Uint) return Uint renames UI_Mul; function "*" (Left : Int; Right : Uint) return Uint renames UI_Mul; function "*" (Left : Uint; Right : Int) return Uint renames UI_Mul; function "-" (Left : Uint; Right : Uint) return Uint renames UI_Sub; function "-" (Left : Int; Right : Uint) return Uint renames UI_Sub; function "-" (Left : Uint; Right : Int) return Uint renames UI_Sub; function "**" (Left : Uint; Right : Uint) return Uint renames UI_Expon; function "**" (Left : Uint; Right : Int) return Uint renames UI_Expon; function "**" (Left : Int; Right : Uint) return Uint renames UI_Expon; function "**" (Left : Int; Right : Int) return Uint renames UI_Expon; function "abs" (Real : Uint) return Uint renames UI_Abs; function "mod" (Left : Uint; Right : Uint) return Uint renames UI_Mod; function "mod" (Left : Int; Right : Uint) return Uint renames UI_Mod; function "mod" (Left : Uint; Right : Int) return Uint renames UI_Mod; function "rem" (Left : Uint; Right : Uint) return Uint renames UI_Rem; function "rem" (Left : Int; Right : Uint) return Uint renames UI_Rem; function "rem" (Left : Uint; Right : Int) return Uint renames UI_Rem; function "-" (Real : Uint) return Uint renames UI_Negate; function "=" (Left : Uint; Right : Uint) return Boolean renames UI_Eq; function "=" (Left : Int; Right : Uint) return Boolean renames UI_Eq; function "=" (Left : Uint; Right : Int) return Boolean renames UI_Eq; function ">=" (Left : Uint; Right : Uint) return Boolean renames UI_Ge; function ">=" (Left : Int; Right : Uint) return Boolean renames UI_Ge; function ">=" (Left : Uint; Right : Int) return Boolean renames UI_Ge; function ">" (Left : Uint; Right : Uint) return Boolean renames UI_Gt; function ">" (Left : Int; Right : Uint) return Boolean renames UI_Gt; function ">" (Left : Uint; Right : Int) return Boolean renames UI_Gt; function "<=" (Left : Uint; Right : Uint) return Boolean renames UI_Le; function "<=" (Left : Int; Right : Uint) return Boolean renames UI_Le; function "<=" (Left : Uint; Right : Int) return Boolean renames UI_Le; function "<" (Left : Uint; Right : Uint) return Boolean renames UI_Lt; function "<" (Left : Int; Right : Uint) return Boolean renames UI_Lt; function "<" (Left : Uint; Right : Int) return Boolean renames UI_Lt; ----------------------------- -- Mark/Release Processing -- ----------------------------- -- The space used by Uint data is not automatically reclaimed. However, a -- mark-release regime is implemented which allows storage to be released -- back to a previously noted mark. This is used for example when doing -- comparisons, where only intermediate results get stored that do not -- need to be saved for future use. type Save_Mark is private; function Mark return Save_Mark; -- Note mark point for future release procedure Release (M : Save_Mark); -- Release storage allocated since mark was noted procedure Release_And_Save (M : Save_Mark; UI : in out Uint); -- Like Release, except that the given Uint value (which is typically among -- the data being released) is recopied after the release, so that it is -- the most recent item, and UI is updated to point to its copied location. procedure Release_And_Save (M : Save_Mark; UI1, UI2 : in out Uint); -- Like Release, except that the given Uint values (which are typically -- among the data being released) are recopied after the release, so that -- they are the most recent items, and UI1 and UI2 are updated if necessary -- to point to the copied locations. This routine is careful to do things -- in the right order, so that the values do not clobber one another. ----------------------------------- -- Representation of Uint Values -- ----------------------------------- private type Uint is new Int range Uint_Low_Bound .. Uint_High_Bound; for Uint'Size use 32; No_Uint : constant Uint := Uint (Uint_Low_Bound); -- Uint values are represented as multiple precision integers stored in -- a multi-digit format using Base as the base. This value is chosen so -- that the product Base*Base is within the range of allowed Int values. -- Base is defined to allow efficient execution of the primitive operations -- (a0, b0, c0) defined in the section "The Classical Algorithms" -- (sec. 4.3.1) of Donald Knuth's "The Art of Computer Programming", -- Vol. 2. These algorithms are used in this package. In particular, -- the product of two single digits in this base fits in a 32-bit integer. Base_Bits : constant := 15; -- Number of bits in base value Base : constant Int := 2 ** Base_Bits; -- Values in the range -(Base-1) .. Max_Direct are encoded directly as -- Uint values by adding a bias value. The value of Max_Direct is chosen -- so that a directly represented number always fits in two digits when -- represented in base format. Min_Direct : constant Int := -(Base - 1); Max_Direct : constant Int := (Base - 1) * (Base - 1); -- The following values define the bias used to store Uint values which -- are in this range, as well as the biased values for the first and last -- values in this range. We use a new derived type for these constants to -- avoid accidental use of Uint arithmetic on these values, which is never -- correct. type Ctrl is range Int'First .. Int'Last; Uint_Direct_Bias : constant Ctrl := Ctrl (Uint_Low_Bound) + Ctrl (Base); Uint_Direct_First : constant Ctrl := Uint_Direct_Bias + Ctrl (Min_Direct); Uint_Direct_Last : constant Ctrl := Uint_Direct_Bias + Ctrl (Max_Direct); Uint_0 : constant Uint := Uint (Uint_Direct_Bias); Uint_1 : constant Uint := Uint (Uint_Direct_Bias + 1); Uint_2 : constant Uint := Uint (Uint_Direct_Bias + 2); Uint_3 : constant Uint := Uint (Uint_Direct_Bias + 3); Uint_4 : constant Uint := Uint (Uint_Direct_Bias + 4); Uint_5 : constant Uint := Uint (Uint_Direct_Bias + 5); Uint_6 : constant Uint := Uint (Uint_Direct_Bias + 6); Uint_7 : constant Uint := Uint (Uint_Direct_Bias + 7); Uint_8 : constant Uint := Uint (Uint_Direct_Bias + 8); Uint_9 : constant Uint := Uint (Uint_Direct_Bias + 9); Uint_10 : constant Uint := Uint (Uint_Direct_Bias + 10); Uint_11 : constant Uint := Uint (Uint_Direct_Bias + 11); Uint_12 : constant Uint := Uint (Uint_Direct_Bias + 12); Uint_13 : constant Uint := Uint (Uint_Direct_Bias + 13); Uint_14 : constant Uint := Uint (Uint_Direct_Bias + 14); Uint_15 : constant Uint := Uint (Uint_Direct_Bias + 15); Uint_16 : constant Uint := Uint (Uint_Direct_Bias + 16); Uint_24 : constant Uint := Uint (Uint_Direct_Bias + 24); Uint_32 : constant Uint := Uint (Uint_Direct_Bias + 32); Uint_63 : constant Uint := Uint (Uint_Direct_Bias + 63); Uint_64 : constant Uint := Uint (Uint_Direct_Bias + 64); Uint_80 : constant Uint := Uint (Uint_Direct_Bias + 80); Uint_128 : constant Uint := Uint (Uint_Direct_Bias + 128); Uint_Minus_1 : constant Uint := Uint (Uint_Direct_Bias - 1); Uint_Minus_2 : constant Uint := Uint (Uint_Direct_Bias - 2); Uint_Minus_3 : constant Uint := Uint (Uint_Direct_Bias - 3); Uint_Minus_4 : constant Uint := Uint (Uint_Direct_Bias - 4); Uint_Minus_5 : constant Uint := Uint (Uint_Direct_Bias - 5); Uint_Minus_6 : constant Uint := Uint (Uint_Direct_Bias - 6); Uint_Minus_7 : constant Uint := Uint (Uint_Direct_Bias - 7); Uint_Minus_8 : constant Uint := Uint (Uint_Direct_Bias - 8); Uint_Minus_9 : constant Uint := Uint (Uint_Direct_Bias - 9); Uint_Minus_12 : constant Uint := Uint (Uint_Direct_Bias - 12); Uint_Minus_36 : constant Uint := Uint (Uint_Direct_Bias - 36); Uint_Minus_63 : constant Uint := Uint (Uint_Direct_Bias - 63); Uint_Minus_80 : constant Uint := Uint (Uint_Direct_Bias - 80); Uint_Minus_128 : constant Uint := Uint (Uint_Direct_Bias - 128); Uint_Max_Simple_Mul : constant := Uint_Direct_Bias + 2 ** 15; -- If two values are directly represented and less than or equal to this -- value, then we know the product fits in a 32-bit integer. This allows -- UI_Mul to efficiently compute the product in this case. type Save_Mark is record Save_Uint : Uint; Save_Udigit : Int; end record; -- Values outside the range that is represented directly are stored using -- two tables. The secondary table Udigits contains sequences of Int values -- consisting of the digits of the number in a radix Base system. The -- digits are stored from most significant to least significant with the -- first digit only carrying the sign. -- There is one entry in the primary Uints table for each distinct Uint -- value. This table entry contains the length (number of digits) and -- a starting offset of the value in the Udigits table. Uint_First_Entry : constant Uint := Uint (Uint_Table_Start); -- Some subprograms defined in this package manipulate the Udigits table -- directly, while for others it is more convenient to work with locally -- defined arrays of the digits of the Universal Integers. The type -- UI_Vector is defined for this purpose and some internal subprograms -- used for converting from one to the other are defined. type Uint_Entry is record Length : Pos; -- Length of entry in Udigits table in digits (i.e. in words) Loc : Int; -- Starting location in Udigits table of this Uint value end record; package Uints is new Table.Table ( Table_Component_Type => Uint_Entry, Table_Index_Type => Uint'Base, Table_Low_Bound => Uint_First_Entry, Table_Initial => Alloc.Uints_Initial, Table_Increment => Alloc.Uints_Increment, Table_Name => "Uints"); package Udigits is new Table.Table ( Table_Component_Type => Int, Table_Index_Type => Int, Table_Low_Bound => 0, Table_Initial => Alloc.Udigits_Initial, Table_Increment => Alloc.Udigits_Increment, Table_Name => "Udigits"); -- Note: the reason these tables are defined here in the private part of -- the spec, rather than in the body, is that they are referenced directly -- by gigi. end Uintp;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME LIBRARY (GNARL) COMPONENTS -- -- -- -- SYSTEM.TASK_PRIMITIVES.INTERRUPT_OPERATIONS -- -- -- -- S p e c -- -- -- -- Copyright (C) 1998-2020, Free Software Foundation, Inc. -- -- -- -- GNARL is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNARL was developed by the GNARL team at Florida State University. -- -- Extensive contributions were provided by Ada Core Technologies, Inc. -- -- -- ------------------------------------------------------------------------------ with System.Interrupt_Management; with System.Tasking; package System.Task_Primitives.Interrupt_Operations is pragma Preelaborate; package IM renames System.Interrupt_Management; package ST renames System.Tasking; procedure Set_Interrupt_ID (Interrupt : IM.Interrupt_ID; T : ST.Task_Id); -- Associate an Interrupt_ID with a task function Get_Interrupt_ID (T : ST.Task_Id) return IM.Interrupt_ID; -- Return the Interrupt_ID associated with a task function Get_Task_Id (Interrupt : IM.Interrupt_ID) return ST.Task_Id; -- Return the Task_Id associated with an Interrupt end System.Task_Primitives.Interrupt_Operations;
<?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>p_hls_fptosi_float_i</name> <ret_bitwidth>32</ret_bitwidth> <ports class_id="2" tracking_level="0" version="0"> <count>1</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>x</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>x</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs class_id="7" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> </ports> <nodes class_id="8" tracking_level="0" version="0"> <count>25</count> <item_version>0</item_version> <item class_id="9" tracking_level="1" version="0" object_id="_2"> <Value> <Obj> <type>0</type> <id>2</id> <name>x_read</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>x</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>29</item> <item>30</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_3"> <Value> <Obj> <type>0</type> <id>3</id> <name>p_Val2_s</name> <fileName>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/src/technology/autopilot/header_files/utils/x_hls_utils.h</fileName> <fileDirectory>/wrk/2017.4/nightly/2017_12_15_2086221/src/products</fileDirectory> <lineNumber>311</lineNumber> <contextFuncName>fp_struct</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item class_id="11" tracking_level="0" version="0"> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products</first> <second class_id="12" tracking_level="0" version="0"> <count>4</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>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/hls_lib/hlsmath/src/../include/internal/hls_round.h</first> <second>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</second> </first> <second>281</second> </item> <item> <first> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/hls_lib/hlsmath/src/../include/internal/hls_round.h</first> <second>generic_cast_IEEE754&amp;lt;int, float&amp;gt;</second> </first> <second>368</second> </item> <item> <first> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/hls_lib/hlsmath/src/lib_floatconversion.cpp</first> <second>__hls_fptosi_float_i32</second> </first> <second>49</second> </item> <item> <first> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/src/technology/autopilot/header_files/utils/x_hls_utils.h</first> <second>fp_struct</second> </first> <second>311</second> </item> </second> </item> </inlineStackInfo> <originalName>val</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>31</item> </oprand_edges> <opcode>bitcast</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_4"> <Value> <Obj> <type>0</type> <id>4</id> <name>p_Result_s</name> <fileName>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/src/technology/autopilot/header_files/utils/x_hls_utils.h</fileName> <fileDirectory>/wrk/2017.4/nightly/2017_12_15_2086221/src/products</fileDirectory> <lineNumber>317</lineNumber> <contextFuncName>fp_struct</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products</first> <second> <count>4</count> <item_version>0</item_version> <item> <first> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/hls_lib/hlsmath/src/../include/internal/hls_round.h</first> <second>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</second> </first> <second>281</second> </item> <item> <first> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/hls_lib/hlsmath/src/../include/internal/hls_round.h</first> <second>generic_cast_IEEE754&amp;lt;int, float&amp;gt;</second> </first> <second>368</second> </item> <item> <first> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/hls_lib/hlsmath/src/lib_floatconversion.cpp</first> <second>__hls_fptosi_float_i32</second> </first> <second>49</second> </item> <item> <first> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/src/technology/autopilot/header_files/utils/x_hls_utils.h</first> <second>fp_struct</second> </first> <second>317</second> </item> </second> </item> </inlineStackInfo> <originalName>__Result__</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>33</item> <item>34</item> <item>36</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_5"> <Value> <Obj> <type>0</type> <id>5</id> <name>loc_V</name> <fileName>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/src/technology/autopilot/header_files/utils/x_hls_utils.h</fileName> <fileDirectory>/wrk/2017.4/nightly/2017_12_15_2086221/src/products</fileDirectory> <lineNumber>318</lineNumber> <contextFuncName>fp_struct</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products</first> <second> <count>4</count> <item_version>0</item_version> <item> <first> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/hls_lib/hlsmath/src/../include/internal/hls_round.h</first> <second>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</second> </first> <second>281</second> </item> <item> <first> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/hls_lib/hlsmath/src/../include/internal/hls_round.h</first> <second>generic_cast_IEEE754&amp;lt;int, float&amp;gt;</second> </first> <second>368</second> </item> <item> <first> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/hls_lib/hlsmath/src/lib_floatconversion.cpp</first> <second>__hls_fptosi_float_i32</second> </first> <second>49</second> </item> <item> <first> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/src/technology/autopilot/header_files/utils/x_hls_utils.h</first> <second>fp_struct</second> </first> <second>318</second> </item> </second> </item> </inlineStackInfo> <originalName>loc.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>38</item> <item>39</item> <item>41</item> <item>43</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_6"> <Value> <Obj> <type>0</type> <id>6</id> <name>loc_V_1</name> <fileName>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/src/technology/autopilot/header_files/utils/x_hls_utils.h</fileName> <fileDirectory>/wrk/2017.4/nightly/2017_12_15_2086221/src/products</fileDirectory> <lineNumber>319</lineNumber> <contextFuncName>fp_struct</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products</first> <second> <count>4</count> <item_version>0</item_version> <item> <first> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/hls_lib/hlsmath/src/../include/internal/hls_round.h</first> <second>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</second> </first> <second>281</second> </item> <item> <first> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/hls_lib/hlsmath/src/../include/internal/hls_round.h</first> <second>generic_cast_IEEE754&amp;lt;int, float&amp;gt;</second> </first> <second>368</second> </item> <item> <first> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/hls_lib/hlsmath/src/lib_floatconversion.cpp</first> <second>__hls_fptosi_float_i32</second> </first> <second>49</second> </item> <item> <first> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/src/technology/autopilot/header_files/utils/x_hls_utils.h</first> <second>fp_struct</second> </first> <second>319</second> </item> </second> </item> </inlineStackInfo> <originalName>loc.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>23</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>44</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_7"> <Value> <Obj> <type>0</type> <id>7</id> <name>tmp_3_i_i</name> <fileName>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/hls_lib/hlsmath/src/../include/internal/hls_round.h</fileName> <fileDirectory>/wrk/2017.4/nightly/2017_12_15_2086221/src/products</fileDirectory> <lineNumber>283</lineNumber> <contextFuncName>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/hls_lib/hlsmath/src/../include/internal/hls_round.h</first> <second>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</second> </first> <second>283</second> </item> <item> <first> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/hls_lib/hlsmath/src/../include/internal/hls_round.h</first> <second>generic_cast_IEEE754&amp;lt;int, float&amp;gt;</second> </first> <second>368</second> </item> <item> <first> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/hls_lib/hlsmath/src/lib_floatconversion.cpp</first> <second>__hls_fptosi_float_i32</second> </first> <second>49</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>25</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>46</item> <item>48</item> <item>49</item> <item>51</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_8"> <Value> <Obj> <type>0</type> <id>8</id> <name>tmp_3_i_i_cast2</name> <fileName>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/hls_lib/hlsmath/src/../include/internal/hls_round.h</fileName> <fileDirectory>/wrk/2017.4/nightly/2017_12_15_2086221/src/products</fileDirectory> <lineNumber>283</lineNumber> <contextFuncName>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/hls_lib/hlsmath/src/../include/internal/hls_round.h</first> <second>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</second> </first> <second>283</second> </item> <item> <first> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/hls_lib/hlsmath/src/../include/internal/hls_round.h</first> <second>generic_cast_IEEE754&amp;lt;int, float&amp;gt;</second> </first> <second>368</second> </item> <item> <first> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/hls_lib/hlsmath/src/lib_floatconversion.cpp</first> <second>__hls_fptosi_float_i32</second> </first> <second>49</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>79</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>52</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_9"> <Value> <Obj> <type>0</type> <id>9</id> <name>tmp_i_i_i_cast1</name> <fileName>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/src/technology/autopilot/header_files/utils/x_hls_utils.h</fileName> <fileDirectory>/wrk/2017.4/nightly/2017_12_15_2086221/src/products</fileDirectory> <lineNumber>340</lineNumber> <contextFuncName>expv</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products</first> <second> <count>4</count> <item_version>0</item_version> <item> <first> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/hls_lib/hlsmath/src/../include/internal/hls_round.h</first> <second>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</second> </first> <second>286</second> </item> <item> <first> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/hls_lib/hlsmath/src/../include/internal/hls_round.h</first> <second>generic_cast_IEEE754&amp;lt;int, float&amp;gt;</second> </first> <second>368</second> </item> <item> <first> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/hls_lib/hlsmath/src/lib_floatconversion.cpp</first> <second>__hls_fptosi_float_i32</second> </first> <second>49</second> </item> <item> <first> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/src/technology/autopilot/header_files/utils/x_hls_utils.h</first> <second>expv</second> </first> <second>340</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>53</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_10"> <Value> <Obj> <type>0</type> <id>10</id> <name>sh_assign</name> <fileName>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/src/technology/autopilot/header_files/utils/x_hls_utils.h</fileName> <fileDirectory>/wrk/2017.4/nightly/2017_12_15_2086221/src/products</fileDirectory> <lineNumber>340</lineNumber> <contextFuncName>expv</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products</first> <second> <count>4</count> <item_version>0</item_version> <item> <first> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/hls_lib/hlsmath/src/../include/internal/hls_round.h</first> <second>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</second> </first> <second>286</second> </item> <item> <first> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/hls_lib/hlsmath/src/../include/internal/hls_round.h</first> <second>generic_cast_IEEE754&amp;lt;int, float&amp;gt;</second> </first> <second>368</second> </item> <item> <first> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/hls_lib/hlsmath/src/lib_floatconversion.cpp</first> <second>__hls_fptosi_float_i32</second> </first> <second>49</second> </item> <item> <first> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/src/technology/autopilot/header_files/utils/x_hls_utils.h</first> <second>expv</second> </first> <second>340</second> </item> </second> </item> </inlineStackInfo> <originalName>sh</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>55</item> <item>56</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_11"> <Value> <Obj> <type>0</type> <id>11</id> <name>isNeg</name> <fileName>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/hls_lib/hlsmath/src/../include/internal/hls_round.h</fileName> <fileDirectory>/wrk/2017.4/nightly/2017_12_15_2086221/src/products</fileDirectory> <lineNumber>286</lineNumber> <contextFuncName>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/hls_lib/hlsmath/src/../include/internal/hls_round.h</first> <second>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</second> </first> <second>286</second> </item> <item> <first> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/hls_lib/hlsmath/src/../include/internal/hls_round.h</first> <second>generic_cast_IEEE754&amp;lt;int, float&amp;gt;</second> </first> <second>368</second> </item> <item> <first> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/hls_lib/hlsmath/src/lib_floatconversion.cpp</first> <second>__hls_fptosi_float_i32</second> </first> <second>49</second> </item> </second> </item> </inlineStackInfo> <originalName>isNeg</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>58</item> <item>59</item> <item>61</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_12"> <Value> <Obj> <type>0</type> <id>12</id> <name>tmp_5_i_i</name> <fileName>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/hls_lib/hlsmath/src/../include/internal/hls_round.h</fileName> <fileDirectory>/wrk/2017.4/nightly/2017_12_15_2086221/src/products</fileDirectory> <lineNumber>286</lineNumber> <contextFuncName>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/hls_lib/hlsmath/src/../include/internal/hls_round.h</first> <second>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</second> </first> <second>286</second> </item> <item> <first> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/hls_lib/hlsmath/src/../include/internal/hls_round.h</first> <second>generic_cast_IEEE754&amp;lt;int, float&amp;gt;</second> </first> <second>368</second> </item> <item> <first> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/hls_lib/hlsmath/src/lib_floatconversion.cpp</first> <second>__hls_fptosi_float_i32</second> </first> <second>49</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>63</item> <item>64</item> </oprand_edges> <opcode>sub</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_13"> <Value> <Obj> <type>0</type> <id>13</id> <name>tmp_5_i_i_cast</name> <fileName>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/hls_lib/hlsmath/src/../include/internal/hls_round.h</fileName> <fileDirectory>/wrk/2017.4/nightly/2017_12_15_2086221/src/products</fileDirectory> <lineNumber>286</lineNumber> <contextFuncName>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/hls_lib/hlsmath/src/../include/internal/hls_round.h</first> <second>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</second> </first> <second>286</second> </item> <item> <first> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/hls_lib/hlsmath/src/../include/internal/hls_round.h</first> <second>generic_cast_IEEE754&amp;lt;int, float&amp;gt;</second> </first> <second>368</second> </item> <item> <first> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/hls_lib/hlsmath/src/lib_floatconversion.cpp</first> <second>__hls_fptosi_float_i32</second> </first> <second>49</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>65</item> </oprand_edges> <opcode>sext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_14"> <Value> <Obj> <type>0</type> <id>14</id> <name>sh_assign_1</name> <fileName>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/hls_lib/hlsmath/src/../include/internal/hls_round.h</fileName> <fileDirectory>/wrk/2017.4/nightly/2017_12_15_2086221/src/products</fileDirectory> <lineNumber>286</lineNumber> <contextFuncName>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/hls_lib/hlsmath/src/../include/internal/hls_round.h</first> <second>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</second> </first> <second>286</second> </item> <item> <first> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/hls_lib/hlsmath/src/../include/internal/hls_round.h</first> <second>generic_cast_IEEE754&amp;lt;int, float&amp;gt;</second> </first> <second>368</second> </item> <item> <first> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/hls_lib/hlsmath/src/lib_floatconversion.cpp</first> <second>__hls_fptosi_float_i32</second> </first> <second>49</second> </item> </second> </item> </inlineStackInfo> <originalName>sh</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>66</item> <item>67</item> <item>68</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_15"> <Value> <Obj> <type>0</type> <id>15</id> <name>sh_assign_1_cast</name> <fileName>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/hls_lib/hlsmath/src/../include/internal/hls_round.h</fileName> <fileDirectory>/wrk/2017.4/nightly/2017_12_15_2086221/src/products</fileDirectory> <lineNumber>286</lineNumber> <contextFuncName>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/hls_lib/hlsmath/src/../include/internal/hls_round.h</first> <second>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</second> </first> <second>286</second> </item> <item> <first> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/hls_lib/hlsmath/src/../include/internal/hls_round.h</first> <second>generic_cast_IEEE754&amp;lt;int, float&amp;gt;</second> </first> <second>368</second> </item> <item> <first> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/hls_lib/hlsmath/src/lib_floatconversion.cpp</first> <second>__hls_fptosi_float_i32</second> </first> <second>49</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>69</item> </oprand_edges> <opcode>sext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_16"> <Value> <Obj> <type>0</type> <id>16</id> <name>sh_assign_1_cast_cas</name> <fileName>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/hls_lib/hlsmath/src/../include/internal/hls_round.h</fileName> <fileDirectory>/wrk/2017.4/nightly/2017_12_15_2086221/src/products</fileDirectory> <lineNumber>286</lineNumber> <contextFuncName>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/hls_lib/hlsmath/src/../include/internal/hls_round.h</first> <second>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</second> </first> <second>286</second> </item> <item> <first> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/hls_lib/hlsmath/src/../include/internal/hls_round.h</first> <second>generic_cast_IEEE754&amp;lt;int, float&amp;gt;</second> </first> <second>368</second> </item> <item> <first> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/hls_lib/hlsmath/src/lib_floatconversion.cpp</first> <second>__hls_fptosi_float_i32</second> </first> <second>49</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>25</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>70</item> </oprand_edges> <opcode>sext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_17"> <Value> <Obj> <type>0</type> <id>17</id> <name>tmp_7_i_i</name> <fileName>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/hls_lib/hlsmath/src/../include/internal/hls_round.h</fileName> <fileDirectory>/wrk/2017.4/nightly/2017_12_15_2086221/src/products</fileDirectory> <lineNumber>286</lineNumber> <contextFuncName>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/hls_lib/hlsmath/src/../include/internal/hls_round.h</first> <second>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</second> </first> <second>286</second> </item> <item> <first> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/hls_lib/hlsmath/src/../include/internal/hls_round.h</first> <second>generic_cast_IEEE754&amp;lt;int, float&amp;gt;</second> </first> <second>368</second> </item> <item> <first> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/hls_lib/hlsmath/src/lib_floatconversion.cpp</first> <second>__hls_fptosi_float_i32</second> </first> <second>49</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>79</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>71</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_18"> <Value> <Obj> <type>0</type> <id>18</id> <name>tmp_8_i_i</name> <fileName>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/hls_lib/hlsmath/src/../include/internal/hls_round.h</fileName> <fileDirectory>/wrk/2017.4/nightly/2017_12_15_2086221/src/products</fileDirectory> <lineNumber>286</lineNumber> <contextFuncName>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/hls_lib/hlsmath/src/../include/internal/hls_round.h</first> <second>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</second> </first> <second>286</second> </item> <item> <first> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/hls_lib/hlsmath/src/../include/internal/hls_round.h</first> <second>generic_cast_IEEE754&amp;lt;int, float&amp;gt;</second> </first> <second>368</second> </item> <item> <first> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/hls_lib/hlsmath/src/lib_floatconversion.cpp</first> <second>__hls_fptosi_float_i32</second> </first> <second>49</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>25</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>72</item> <item>73</item> </oprand_edges> <opcode>lshr</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_19"> <Value> <Obj> <type>0</type> <id>19</id> <name>tmp_i_i</name> <fileName>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/hls_lib/hlsmath/src/../include/internal/hls_round.h</fileName> <fileDirectory>/wrk/2017.4/nightly/2017_12_15_2086221/src/products</fileDirectory> <lineNumber>286</lineNumber> <contextFuncName>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/hls_lib/hlsmath/src/../include/internal/hls_round.h</first> <second>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</second> </first> <second>286</second> </item> <item> <first> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/hls_lib/hlsmath/src/../include/internal/hls_round.h</first> <second>generic_cast_IEEE754&amp;lt;int, float&amp;gt;</second> </first> <second>368</second> </item> <item> <first> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/hls_lib/hlsmath/src/lib_floatconversion.cpp</first> <second>__hls_fptosi_float_i32</second> </first> <second>49</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>79</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>74</item> <item>75</item> </oprand_edges> <opcode>shl</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_20"> <Value> <Obj> <type>0</type> <id>20</id> <name>tmp</name> <fileName>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/hls_lib/hlsmath/src/../include/internal/hls_round.h</fileName> <fileDirectory>/wrk/2017.4/nightly/2017_12_15_2086221/src/products</fileDirectory> <lineNumber>289</lineNumber> <contextFuncName>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/hls_lib/hlsmath/src/../include/internal/hls_round.h</first> <second>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</second> </first> <second>289</second> </item> <item> <first> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/hls_lib/hlsmath/src/../include/internal/hls_round.h</first> <second>generic_cast_IEEE754&amp;lt;int, float&amp;gt;</second> </first> <second>368</second> </item> <item> <first> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/hls_lib/hlsmath/src/lib_floatconversion.cpp</first> <second>__hls_fptosi_float_i32</second> </first> <second>49</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>77</item> <item>78</item> <item>80</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_21"> <Value> <Obj> <type>0</type> <id>21</id> <name>tmp_13</name> <fileName>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/hls_lib/hlsmath/src/../include/internal/hls_round.h</fileName> <fileDirectory>/wrk/2017.4/nightly/2017_12_15_2086221/src/products</fileDirectory> <lineNumber>289</lineNumber> <contextFuncName>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/hls_lib/hlsmath/src/../include/internal/hls_round.h</first> <second>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</second> </first> <second>289</second> </item> <item> <first> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/hls_lib/hlsmath/src/../include/internal/hls_round.h</first> <second>generic_cast_IEEE754&amp;lt;int, float&amp;gt;</second> </first> <second>368</second> </item> <item> <first> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/hls_lib/hlsmath/src/lib_floatconversion.cpp</first> <second>__hls_fptosi_float_i32</second> </first> <second>49</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>81</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_22"> <Value> <Obj> <type>0</type> <id>22</id> <name>tmp_14</name> <fileName>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/hls_lib/hlsmath/src/../include/internal/hls_round.h</fileName> <fileDirectory>/wrk/2017.4/nightly/2017_12_15_2086221/src/products</fileDirectory> <lineNumber>289</lineNumber> <contextFuncName>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/hls_lib/hlsmath/src/../include/internal/hls_round.h</first> <second>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</second> </first> <second>289</second> </item> <item> <first> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/hls_lib/hlsmath/src/../include/internal/hls_round.h</first> <second>generic_cast_IEEE754&amp;lt;int, float&amp;gt;</second> </first> <second>368</second> </item> <item> <first> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/hls_lib/hlsmath/src/lib_floatconversion.cpp</first> <second>__hls_fptosi_float_i32</second> </first> <second>49</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>83</item> <item>84</item> <item>85</item> <item>87</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_23"> <Value> <Obj> <type>0</type> <id>23</id> <name>p_Val2_2</name> <fileName>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/hls_lib/hlsmath/src/../include/internal/hls_round.h</fileName> <fileDirectory>/wrk/2017.4/nightly/2017_12_15_2086221/src/products</fileDirectory> <lineNumber>286</lineNumber> <contextFuncName>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/hls_lib/hlsmath/src/../include/internal/hls_round.h</first> <second>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</second> </first> <second>286</second> </item> <item> <first> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/hls_lib/hlsmath/src/../include/internal/hls_round.h</first> <second>generic_cast_IEEE754&amp;lt;int, float&amp;gt;</second> </first> <second>368</second> </item> <item> <first> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/hls_lib/hlsmath/src/lib_floatconversion.cpp</first> <second>__hls_fptosi_float_i32</second> </first> <second>49</second> </item> </second> </item> </inlineStackInfo> <originalName>__Val2__</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>88</item> <item>89</item> <item>90</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_24"> <Value> <Obj> <type>0</type> <id>24</id> <name>p_Val2_6_i_i</name> <fileName>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/hls_lib/hlsmath/src/../include/internal/hls_round.h</fileName> <fileDirectory>/wrk/2017.4/nightly/2017_12_15_2086221/src/products</fileDirectory> <lineNumber>318</lineNumber> <contextFuncName>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/hls_lib/hlsmath/src/../include/internal/hls_round.h</first> <second>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</second> </first> <second>318</second> </item> <item> <first> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/hls_lib/hlsmath/src/../include/internal/hls_round.h</first> <second>generic_cast_IEEE754&amp;lt;int, float&amp;gt;</second> </first> <second>368</second> </item> <item> <first> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/hls_lib/hlsmath/src/lib_floatconversion.cpp</first> <second>__hls_fptosi_float_i32</second> </first> <second>49</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>92</item> <item>93</item> </oprand_edges> <opcode>sub</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_25"> <Value> <Obj> <type>0</type> <id>25</id> <name>p_Val2_4</name> <fileName>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/hls_lib/hlsmath/src/../include/internal/hls_round.h</fileName> <fileDirectory>/wrk/2017.4/nightly/2017_12_15_2086221/src/products</fileDirectory> <lineNumber>318</lineNumber> <contextFuncName>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/hls_lib/hlsmath/src/../include/internal/hls_round.h</first> <second>generic_cast_IEEE754&amp;lt;int, 6, float&amp;gt;</second> </first> <second>318</second> </item> <item> <first> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/hls_lib/hlsmath/src/../include/internal/hls_round.h</first> <second>generic_cast_IEEE754&amp;lt;int, float&amp;gt;</second> </first> <second>368</second> </item> <item> <first> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/hls_lib/hlsmath/src/lib_floatconversion.cpp</first> <second>__hls_fptosi_float_i32</second> </first> <second>49</second> </item> </second> </item> </inlineStackInfo> <originalName>__Val2__</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>94</item> <item>95</item> <item>96</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_26"> <Value> <Obj> <type>0</type> <id>26</id> <name></name> <fileName>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/hls_lib/hlsmath/src/lib_floatconversion.cpp</fileName> <fileDirectory>/wrk/2017.4/nightly/2017_12_15_2086221/src/products</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>__hls_fptosi_float_i32</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/wrk/2017.4/nightly/2017_12_15_2086221/src/products/hls/hls_lib/hlsmath/src/lib_floatconversion.cpp</first> <second>__hls_fptosi_float_i32</second> </first> <second>49</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>97</item> </oprand_edges> <opcode>ret</opcode> <m_Display>0</m_Display> </item> </nodes> <consts class_id="15" tracking_level="0" version="0"> <count>11</count> <item_version>0</item_version> <item class_id="16" tracking_level="1" version="0" object_id="_27"> <Value> <Obj> <type>2</type> <id>35</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="_28"> <Value> <Obj> <type>2</type> <id>40</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="_29"> <Value> <Obj> <type>2</type> <id>42</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>30</content> </item> <item class_id_reference="16" object_id="_30"> <Value> <Obj> <type>2</type> <id>47</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="_31"> <Value> <Obj> <type>2</type> <id>50</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="_32"> <Value> <Obj> <type>2</type> <id>54</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>385</content> </item> <item class_id_reference="16" object_id="_33"> <Value> <Obj> <type>2</type> <id>60</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="_34"> <Value> <Obj> <type>2</type> <id>62</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>127</content> </item> <item class_id_reference="16" object_id="_35"> <Value> <Obj> <type>2</type> <id>79</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="_36"> <Value> <Obj> <type>2</type> <id>86</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>55</content> </item> <item class_id_reference="16" object_id="_37"> <Value> <Obj> <type>2</type> <id>91</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> </consts> <blocks class_id="17" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="18" tracking_level="1" version="0" object_id="_38"> <Obj> <type>3</type> <id>27</id> <name>__hls_fptosi_float_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>25</count> <item_version>0</item_version> <item>2</item> <item>3</item> <item>4</item> <item>5</item> <item>6</item> <item>7</item> <item>8</item> <item>9</item> <item>10</item> <item>11</item> <item>12</item> <item>13</item> <item>14</item> <item>15</item> <item>16</item> <item>17</item> <item>18</item> <item>19</item> <item>20</item> <item>21</item> <item>22</item> <item>23</item> <item>24</item> <item>25</item> <item>26</item> </node_objs> </item> </blocks> <edges class_id="19" tracking_level="0" version="0"> <count>45</count> <item_version>0</item_version> <item class_id="20" tracking_level="1" version="0" object_id="_39"> <id>30</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>2</sink_obj> </item> <item class_id_reference="20" object_id="_40"> <id>31</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>3</sink_obj> </item> <item class_id_reference="20" object_id="_41"> <id>34</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>4</sink_obj> </item> <item class_id_reference="20" object_id="_42"> <id>36</id> <edge_type>1</edge_type> <source_obj>35</source_obj> <sink_obj>4</sink_obj> </item> <item class_id_reference="20" object_id="_43"> <id>39</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>5</sink_obj> </item> <item class_id_reference="20" object_id="_44"> <id>41</id> <edge_type>1</edge_type> <source_obj>40</source_obj> <sink_obj>5</sink_obj> </item> <item class_id_reference="20" object_id="_45"> <id>43</id> <edge_type>1</edge_type> <source_obj>42</source_obj> <sink_obj>5</sink_obj> </item> <item class_id_reference="20" object_id="_46"> <id>44</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>6</sink_obj> </item> <item class_id_reference="20" object_id="_47"> <id>48</id> <edge_type>1</edge_type> <source_obj>47</source_obj> <sink_obj>7</sink_obj> </item> <item class_id_reference="20" object_id="_48"> <id>49</id> <edge_type>1</edge_type> <source_obj>6</source_obj> <sink_obj>7</sink_obj> </item> <item class_id_reference="20" object_id="_49"> <id>51</id> <edge_type>1</edge_type> <source_obj>50</source_obj> <sink_obj>7</sink_obj> </item> <item class_id_reference="20" object_id="_50"> <id>52</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>8</sink_obj> </item> <item class_id_reference="20" object_id="_51"> <id>53</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>9</sink_obj> </item> <item class_id_reference="20" object_id="_52"> <id>55</id> <edge_type>1</edge_type> <source_obj>54</source_obj> <sink_obj>10</sink_obj> </item> <item class_id_reference="20" object_id="_53"> <id>56</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>10</sink_obj> </item> <item class_id_reference="20" object_id="_54"> <id>59</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>11</sink_obj> </item> <item class_id_reference="20" object_id="_55"> <id>61</id> <edge_type>1</edge_type> <source_obj>60</source_obj> <sink_obj>11</sink_obj> </item> <item class_id_reference="20" object_id="_56"> <id>63</id> <edge_type>1</edge_type> <source_obj>62</source_obj> <sink_obj>12</sink_obj> </item> <item class_id_reference="20" object_id="_57"> <id>64</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>12</sink_obj> </item> <item class_id_reference="20" object_id="_58"> <id>65</id> <edge_type>1</edge_type> <source_obj>12</source_obj> <sink_obj>13</sink_obj> </item> <item class_id_reference="20" object_id="_59"> <id>66</id> <edge_type>1</edge_type> <source_obj>11</source_obj> <sink_obj>14</sink_obj> </item> <item class_id_reference="20" object_id="_60"> <id>67</id> <edge_type>1</edge_type> <source_obj>13</source_obj> <sink_obj>14</sink_obj> </item> <item class_id_reference="20" object_id="_61"> <id>68</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>14</sink_obj> </item> <item class_id_reference="20" object_id="_62"> <id>69</id> <edge_type>1</edge_type> <source_obj>14</source_obj> <sink_obj>15</sink_obj> </item> <item class_id_reference="20" object_id="_63"> <id>70</id> <edge_type>1</edge_type> <source_obj>14</source_obj> <sink_obj>16</sink_obj> </item> <item class_id_reference="20" object_id="_64"> <id>71</id> <edge_type>1</edge_type> <source_obj>15</source_obj> <sink_obj>17</sink_obj> </item> <item class_id_reference="20" object_id="_65"> <id>72</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>18</sink_obj> </item> <item class_id_reference="20" object_id="_66"> <id>73</id> <edge_type>1</edge_type> <source_obj>16</source_obj> <sink_obj>18</sink_obj> </item> <item class_id_reference="20" object_id="_67"> <id>74</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>19</sink_obj> </item> <item class_id_reference="20" object_id="_68"> <id>75</id> <edge_type>1</edge_type> <source_obj>17</source_obj> <sink_obj>19</sink_obj> </item> <item class_id_reference="20" object_id="_69"> <id>78</id> <edge_type>1</edge_type> <source_obj>18</source_obj> <sink_obj>20</sink_obj> </item> <item class_id_reference="20" object_id="_70"> <id>80</id> <edge_type>1</edge_type> <source_obj>79</source_obj> <sink_obj>20</sink_obj> </item> <item class_id_reference="20" object_id="_71"> <id>81</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>21</sink_obj> </item> <item class_id_reference="20" object_id="_72"> <id>84</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>22</sink_obj> </item> <item class_id_reference="20" object_id="_73"> <id>85</id> <edge_type>1</edge_type> <source_obj>79</source_obj> <sink_obj>22</sink_obj> </item> <item class_id_reference="20" object_id="_74"> <id>87</id> <edge_type>1</edge_type> <source_obj>86</source_obj> <sink_obj>22</sink_obj> </item> <item class_id_reference="20" object_id="_75"> <id>88</id> <edge_type>1</edge_type> <source_obj>11</source_obj> <sink_obj>23</sink_obj> </item> <item class_id_reference="20" object_id="_76"> <id>89</id> <edge_type>1</edge_type> <source_obj>21</source_obj> <sink_obj>23</sink_obj> </item> <item class_id_reference="20" object_id="_77"> <id>90</id> <edge_type>1</edge_type> <source_obj>22</source_obj> <sink_obj>23</sink_obj> </item> <item class_id_reference="20" object_id="_78"> <id>92</id> <edge_type>1</edge_type> <source_obj>91</source_obj> <sink_obj>24</sink_obj> </item> <item class_id_reference="20" object_id="_79"> <id>93</id> <edge_type>1</edge_type> <source_obj>23</source_obj> <sink_obj>24</sink_obj> </item> <item class_id_reference="20" object_id="_80"> <id>94</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>25</sink_obj> </item> <item class_id_reference="20" object_id="_81"> <id>95</id> <edge_type>1</edge_type> <source_obj>24</source_obj> <sink_obj>25</sink_obj> </item> <item class_id_reference="20" object_id="_82"> <id>96</id> <edge_type>1</edge_type> <source_obj>23</source_obj> <sink_obj>25</sink_obj> </item> <item class_id_reference="20" object_id="_83"> <id>97</id> <edge_type>1</edge_type> <source_obj>25</source_obj> <sink_obj>26</sink_obj> </item> </edges> </cdfg> <cdfg_regions class_id="21" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="22" tracking_level="1" version="0" object_id="_84"> <mId>1</mId> <mTag>__hls_fptosi_float_i</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>27</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="_85"> <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="_86"> <id>1</id> <operations class_id="27" tracking_level="0" version="0"> <count>22</count> <item_version>0</item_version> <item class_id="28" tracking_level="1" version="0" object_id="_87"> <id>2</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_88"> <id>3</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_89"> <id>4</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_90"> <id>5</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_91"> <id>6</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_92"> <id>7</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_93"> <id>8</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_94"> <id>9</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_95"> <id>10</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_96"> <id>11</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_97"> <id>12</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_98"> <id>13</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_99"> <id>14</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_100"> <id>15</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_101"> <id>16</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_102"> <id>17</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_103"> <id>18</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_104"> <id>19</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_105"> <id>20</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_106"> <id>21</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_107"> <id>22</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_108"> <id>23</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_109"> <id>2</id> <operations> <count>3</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_110"> <id>24</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_111"> <id>25</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_112"> <id>26</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="_113"> <inState>1</inState> <outState>2</outState> <condition class_id="31" tracking_level="0" version="0"> <id>24</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>25</count> <item_version>0</item_version> <item class_id="36" tracking_level="0" version="0"> <first>2</first> <second class_id="37" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>3</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>4</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>5</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>6</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>7</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>8</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>9</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>10</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>11</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>12</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>13</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>14</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>15</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>16</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>17</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>18</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>19</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>20</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>21</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>22</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>23</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>24</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>25</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>26</first> <second> <first>1</first> <second>0</second> </second> </item> </node_label_latency> <bblk_ent_exit class_id="38" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="39" tracking_level="0" version="0"> <first>27</first> <second class_id="40" tracking_level="0" version="0"> <first>0</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="_114"> <region_name>__hls_fptosi_float_i</region_name> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>27</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>24</count> <item_version>0</item_version> <item class_id="44" tracking_level="0" version="0"> <first>38</first> <second> <count>1</count> <item_version>0</item_version> <item>2</item> </second> </item> <item> <first>44</first> <second> <count>1</count> <item_version>0</item_version> <item>3</item> </second> </item> <item> <first>48</first> <second> <count>1</count> <item_version>0</item_version> <item>4</item> </second> </item> <item> <first>56</first> <second> <count>1</count> <item_version>0</item_version> <item>5</item> </second> </item> <item> <first>66</first> <second> <count>1</count> <item_version>0</item_version> <item>6</item> </second> </item> <item> <first>70</first> <second> <count>1</count> <item_version>0</item_version> <item>7</item> </second> </item> <item> <first>80</first> <second> <count>1</count> <item_version>0</item_version> <item>8</item> </second> </item> <item> <first>84</first> <second> <count>1</count> <item_version>0</item_version> <item>9</item> </second> </item> <item> <first>88</first> <second> <count>1</count> <item_version>0</item_version> <item>10</item> </second> </item> <item> <first>94</first> <second> <count>1</count> <item_version>0</item_version> <item>11</item> </second> </item> <item> <first>102</first> <second> <count>1</count> <item_version>0</item_version> <item>12</item> </second> </item> <item> <first>108</first> <second> <count>1</count> <item_version>0</item_version> <item>13</item> </second> </item> <item> <first>112</first> <second> <count>1</count> <item_version>0</item_version> <item>14</item> </second> </item> <item> <first>120</first> <second> <count>1</count> <item_version>0</item_version> <item>15</item> </second> </item> <item> <first>124</first> <second> <count>1</count> <item_version>0</item_version> <item>16</item> </second> </item> <item> <first>128</first> <second> <count>1</count> <item_version>0</item_version> <item>17</item> </second> </item> <item> <first>132</first> <second> <count>1</count> <item_version>0</item_version> <item>18</item> </second> </item> <item> <first>138</first> <second> <count>1</count> <item_version>0</item_version> <item>19</item> </second> </item> <item> <first>144</first> <second> <count>1</count> <item_version>0</item_version> <item>20</item> </second> </item> <item> <first>152</first> <second> <count>1</count> <item_version>0</item_version> <item>21</item> </second> </item> <item> <first>156</first> <second> <count>1</count> <item_version>0</item_version> <item>22</item> </second> </item> <item> <first>166</first> <second> <count>1</count> <item_version>0</item_version> <item>23</item> </second> </item> <item> <first>174</first> <second> <count>1</count> <item_version>0</item_version> <item>24</item> </second> </item> <item> <first>179</first> <second> <count>1</count> <item_version>0</item_version> <item>25</item> </second> </item> </dp_fu_nodes> <dp_fu_nodes_expression class_id="46" tracking_level="0" version="0"> <count>23</count> <item_version>0</item_version> <item class_id="47" tracking_level="0" version="0"> <first>isNeg_fu_94</first> <second> <count>1</count> <item_version>0</item_version> <item>11</item> </second> </item> <item> <first>loc_V_1_fu_66</first> <second> <count>1</count> <item_version>0</item_version> <item>6</item> </second> </item> <item> <first>loc_V_fu_56</first> <second> <count>1</count> <item_version>0</item_version> <item>5</item> </second> </item> <item> <first>p_Result_s_fu_48</first> <second> <count>1</count> <item_version>0</item_version> <item>4</item> </second> </item> <item> <first>p_Val2_2_fu_166</first> <second> <count>1</count> <item_version>0</item_version> <item>23</item> </second> </item> <item> <first>p_Val2_4_fu_179</first> <second> <count>1</count> <item_version>0</item_version> <item>25</item> </second> </item> <item> <first>p_Val2_6_i_i_fu_174</first> <second> <count>1</count> <item_version>0</item_version> <item>24</item> </second> </item> <item> <first>p_Val2_s_fu_44</first> <second> <count>1</count> <item_version>0</item_version> <item>3</item> </second> </item> <item> <first>sh_assign_1_cast_cas_fu_124</first> <second> <count>1</count> <item_version>0</item_version> <item>16</item> </second> </item> <item> <first>sh_assign_1_cast_fu_120</first> <second> <count>1</count> <item_version>0</item_version> <item>15</item> </second> </item> <item> <first>sh_assign_1_fu_112</first> <second> <count>1</count> <item_version>0</item_version> <item>14</item> </second> </item> <item> <first>sh_assign_fu_88</first> <second> <count>1</count> <item_version>0</item_version> <item>10</item> </second> </item> <item> <first>tmp_13_fu_152</first> <second> <count>1</count> <item_version>0</item_version> <item>21</item> </second> </item> <item> <first>tmp_14_fu_156</first> <second> <count>1</count> <item_version>0</item_version> <item>22</item> </second> </item> <item> <first>tmp_3_i_i_cast2_fu_80</first> <second> <count>1</count> <item_version>0</item_version> <item>8</item> </second> </item> <item> <first>tmp_3_i_i_fu_70</first> <second> <count>1</count> <item_version>0</item_version> <item>7</item> </second> </item> <item> <first>tmp_5_i_i_cast_fu_108</first> <second> <count>1</count> <item_version>0</item_version> <item>13</item> </second> </item> <item> <first>tmp_5_i_i_fu_102</first> <second> <count>1</count> <item_version>0</item_version> <item>12</item> </second> </item> <item> <first>tmp_7_i_i_fu_128</first> <second> <count>1</count> <item_version>0</item_version> <item>17</item> </second> </item> <item> <first>tmp_8_i_i_fu_132</first> <second> <count>1</count> <item_version>0</item_version> <item>18</item> </second> </item> <item> <first>tmp_fu_144</first> <second> <count>1</count> <item_version>0</item_version> <item>20</item> </second> </item> <item> <first>tmp_i_i_fu_138</first> <second> <count>1</count> <item_version>0</item_version> <item>19</item> </second> </item> <item> <first>tmp_i_i_i_cast1_fu_84</first> <second> <count>1</count> <item_version>0</item_version> <item>9</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>1</count> <item_version>0</item_version> <item> <first>x_read_read_fu_38</first> <second> <count>1</count> <item_version>0</item_version> <item>2</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>2</count> <item_version>0</item_version> <item> <first>185</first> <second> <count>1</count> <item_version>0</item_version> <item>4</item> </second> </item> <item> <first>190</first> <second> <count>1</count> <item_version>0</item_version> <item>23</item> </second> </item> </dp_reg_nodes> <dp_regname_nodes> <count>2</count> <item_version>0</item_version> <item> <first>p_Result_s_reg_185</first> <second> <count>1</count> <item_version>0</item_version> <item>4</item> </second> </item> <item> <first>p_Val2_2_reg_190</first> <second> <count>1</count> <item_version>0</item_version> <item>23</item> </second> </item> </dp_regname_nodes> <dp_reg_phi> <count>0</count> <item_version>0</item_version> </dp_reg_phi> <dp_regname_phi> <count>0</count> <item_version>0</item_version> </dp_regname_phi> <dp_port_io_nodes class_id="49" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="50" tracking_level="0" version="0"> <first>x</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>2</item> </second> </item> </second> </item> </dp_port_io_nodes> <port2core class_id="51" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </port2core> <node2core> <count>0</count> <item_version>0</item_version> </node2core> </syndb> </boost_serialization>
with Exprs; use Exprs; use Exprs.Visitors; with L_Strings; use L_Strings; package Ast_Printers is -- Creates an unambiguous, if ugly, string representation of AST nodes. -- SPARK implementation follows Matthew Heaney -- http://www.adapower.com/index.php?Command=Class&ClassID=Patterns&CID=288 -- This is because in Ada, generic functions cannot be overloaded, so we -- cannot follow Bob's implementation type Ast_Printer is new Visitor with record Image : L_String := To_Bounded_String (""); end record; function Print (V : Ast_Printer) return String; function Print (The_Expr : Expr'Class) return String; overriding procedure visit_Binary_Expr (Self : in out Ast_Printer; The_Expr : Binary) with Global => (input => Exprs.State); overriding procedure visit_Grouping_Expr (Self : in out Ast_Printer; The_Expr : Grouping); overriding procedure visit_Float_Literal_Expr (Self : in out Ast_Printer; The_Expr : Float_Literal); overriding procedure visit_Num_Literal_Expr (Self : in out Ast_Printer; The_Expr : Num_Literal); overriding procedure visit_Str_Literal_Expr (Self : in out Ast_Printer; The_Expr : Str_Literal); overriding procedure visit_Unary_Expr (Self : in out Ast_Printer; The_Expr : Unary); private function Print (The_Expr : Binary) return String; function Print (The_Expr : Grouping) return String; function Print (The_Expr : Float_Literal) return String; function Print (The_Expr : Num_Literal) return String; function Print (The_Expr : Str_Literal) return String; function Print (The_Expr : Unary) return String; end Ast_Printers;
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Localization, Internationalization, Globalization for Ada -- -- -- -- Tools Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2011, Vadim Godunko <vgodunko@gmail.com> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ -- This test detects whether valgrind is installed on system. -- -- It sets following substitution variables: -- - HAS_VALGRIND ------------------------------------------------------------------------------ with Configure.Abstract_Tests; package Configure.Tests.Valgrind is type Valgrind_Test is new Configure.Abstract_Tests.Abstract_Test with private; overriding function Name (Self : Valgrind_Test) return String; -- Returns name of the test to be used in reports. overriding function Help (Self : Valgrind_Test) return Unbounded_String_Vector; -- Returns help information for test. overriding procedure Execute (Self : in out Valgrind_Test; Arguments : in out Unbounded_String_Vector); -- Executes test's actions. All used arguments must be removed from -- Arguments. private type Valgrind_Test is new Configure.Abstract_Tests.Abstract_Test with null record; end Configure.Tests.Valgrind;
package Type_Lib is type RPM is new Natural range 1000 .. 2000; type Motor_Direction is (Left, Right); end Type_Lib;
-- Ada_GUI implementation based on Gnoga. Adapted 2021 -- -- -- GNOGA - The GNU Omnificent GUI for Ada -- -- -- -- G N O G A . G U I . V I E W . G R I D -- -- -- -- B o d y -- -- -- -- -- -- Copyright (C) 2014 David Botton -- -- -- -- This library is free software; you can redistribute it and/or modify -- -- it under terms of the GNU General Public License as published by the -- -- Free Software Foundation; either version 3, or (at your option) any -- -- later version. This 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. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are -- -- granted additional permissions described in the GCC Runtime Library -- -- Exception, version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- 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. -- -- -- -- For more information please go to http://www.gnoga.com -- ------------------------------------------------------------------------------ with Ada.Strings.Unbounded; with Ada_GUI.Gnoga.Server.Connection; with Ada_GUI.Gnoga.Gui.Window; package body Ada_GUI.Gnoga.Gui.View.Grid is ------------ -- Create -- ------------ procedure Create (Grid : in out Grid_View_Type; Parent : in out Gnoga.Gui.Base_Type'Class; Layout : in Grid_Rows_Type; Fill_Parent : in Boolean := True; Set_Sizes : in Boolean := True; ID : in String := "") is use Ada.Strings.Unbounded; C : Unbounded_String; CID : constant String := Gnoga.Server.Connection.New_GID; N : Natural; Span_Size : Natural; Column : Positive; P_Height : constant String := Left_Trim (Integer (100 / Layout'Length (1))'Img) & "%"; P_Width : constant String := Left_Trim (Integer (100 / Layout'Length (2))'Img) & "%"; Column_Object : View_Base_Access := null; function TD_Width return String; function TD_Width return String is begin if Set_Sizes then return " width:" & P_Width & ";"; else return ""; end if; end TD_Width; begin if Parent in Gnoga.Gui.Window.Window_Type'Class then C := To_Unbounded_String ("<div style='position:relative'>"); end if; C := C & "<table style='" & " position:relative;" & " border-spacing: 0px; border-collapse: collapse;"; if Fill_Parent then C := C & " width:100%; height:100%;'>"; else C := C & "'>"; end if; N := 0; for Row in Layout'Range (1) loop C := C & "<tr>"; Column := Layout'First (2); Span_Size := 0; loop if Layout (Row, Column) = COL then N := N + 1; C := C & "<td style='" & TD_Width & " position:relative;" & " padding:0; text-align: left; vertical-align: top;" & "' id='" & CID & "_" & Left_Trim (N'Img) & "'"; Span_Size := 1; elsif Layout (Row, Column) = SPN then Span_Size := Span_Size + 1; end if; Column := Column + 1; if Column > Layout'Last (2) or else Layout (Row, Column) = COL then if Span_Size > 0 then if Span_Size > 1 then C := C & " colspan=" & Left_Trim (Span_Size'Img); end if; C := C & " />"; end if; end if; exit when Column > Layout'Last (2); end loop; C := C & "</tr>"; end loop; C := C & "</table>"; if Parent in Gnoga.Gui.Window.Window_Type'Class then C := C & "</div>"; end if; Grid.Create_From_HTML (Parent, Escape_Quotes (To_String (C)), ID); N := 0; for Row in Layout'Range (1) loop Column := Layout'First (2); Span_Size := 0; loop if Layout (Row, Column) = COL then N := N + 1; Span_Size := 1; Column_Object := new View_Base_Type; Column_Object.Auto_Place (False); Column_Object.Dynamic (True); Column_Object.Attach_Using_Parent (Grid, CID & "_" & Left_Trim (N'Img)); Column_Object.Parent (Grid); if Column = Layout'First (2) and Row = Layout'First (1) then Column_Object.Box_Height (P_Height); end if; elsif Layout (Row, Column) = SPN then Span_Size := Span_Size + 1; end if; declare Address : constant String := Left_Trim (Row'Img) & "_" & Left_Trim (Column'Img); begin Grid.Add_Element (Address, Gnoga.Gui.Element.Pointer_To_Element_Class (Column_Object)); end; Column := Column + 1; exit when Column > Layout'Last (2); end loop; end loop; end Create; ----------- -- Panel -- ----------- function Panel (Grid : Grid_View_Type; Row, Column : Positive) return Pointer_To_View_Base_Class is Address : constant String := Left_Trim (Row'Img) & "_" & Left_Trim (Column'Img); begin return Pointer_To_View_Base_Class (Grid.Element (Address)); end Panel; end Ada_GUI.Gnoga.Gui.View.Grid;
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> <!DOCTYPE boost_serialization> <boost_serialization signature="serialization::archive" version="11"> <syndb class_id="0" tracking_level="0" version="0"> <userIPLatency>-1</userIPLatency> <userIPName></userIPName> <cdfg class_id="1" tracking_level="1" version="0" object_id="_0"> <name>array_io</name> <ret_bitwidth>0</ret_bitwidth> <ports class_id="2" tracking_level="0" version="0"> <count>2</count> <item_version>0</item_version> <item class_id="3" tracking_level="1" version="0" object_id="_1"> <Value class_id="4" tracking_level="0" version="0"> <Obj class_id="5" tracking_level="0" version="0"> <type>1</type> <id>1</id> <name>d_o</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>d_o</originalName> <rtlName></rtlName> <coreName>FSL</coreName> </Obj> <bitwidth>16</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs class_id="7" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_2"> <Value> <Obj> <type>1</type> <id>2</id> <name>d_i</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>d_i</originalName> <rtlName></rtlName> <coreName>RAM_2P_BRAM</coreName> </Obj> <bitwidth>16</bitwidth> </Value> <direction>0</direction> <if_type>1</if_type> <array_size>32</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>209</count> <item_version>0</item_version> <item class_id="9" tracking_level="1" version="0" object_id="_3"> <Value> <Obj> <type>0</type> <id>16</id> <name>acc_0_load</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item class_id="10" tracking_level="0" version="0"> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second class_id="11" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="12" tracking_level="0" version="0"> <first class_id="13" tracking_level="0" version="0"> <first>array_io.c</first> <second>array_io</second> </first> <second>67</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>226</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_4"> <Value> <Obj> <type>0</type> <id>17</id> <name>d_i_addr</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>227</item> <item>229</item> <item>230</item> </oprand_edges> <opcode>getelementptr</opcode> </item> <item class_id_reference="9" object_id="_5"> <Value> <Obj> <type>0</type> <id>18</id> <name>d_i_load</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</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>231</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_6"> <Value> <Obj> <type>0</type> <id>19</id> <name>tmp_2</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</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>232</item> </oprand_edges> <opcode>sext</opcode> </item> <item class_id_reference="9" object_id="_7"> <Value> <Obj> <type>0</type> <id>20</id> <name>acc_0_loc_assign_2</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>233</item> <item>234</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_8"> <Value> <Obj> <type>0</type> <id>21</id> <name>tmp</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>69</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>235</item> </oprand_edges> <opcode>trunc</opcode> </item> <item class_id_reference="9" object_id="_9"> <Value> <Obj> <type>0</type> <id>22</id> <name></name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>237</item> <item>238</item> <item>239</item> </oprand_edges> <opcode>write</opcode> </item> <item class_id_reference="9" object_id="_10"> <Value> <Obj> <type>0</type> <id>23</id> <name>acc_1_load</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</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>240</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_11"> <Value> <Obj> <type>0</type> <id>24</id> <name>d_i_addr_1</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>241</item> <item>242</item> <item>244</item> </oprand_edges> <opcode>getelementptr</opcode> </item> <item class_id_reference="9" object_id="_12"> <Value> <Obj> <type>0</type> <id>25</id> <name>d_i_load_1</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>245</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_13"> <Value> <Obj> <type>0</type> <id>26</id> <name>tmp_2_1</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</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>246</item> </oprand_edges> <opcode>sext</opcode> </item> <item class_id_reference="9" object_id="_14"> <Value> <Obj> <type>0</type> <id>27</id> <name>acc_1_loc_assign_2</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>247</item> <item>248</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_15"> <Value> <Obj> <type>0</type> <id>28</id> <name>tmp_1</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>69</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>249</item> </oprand_edges> <opcode>trunc</opcode> </item> <item class_id_reference="9" object_id="_16"> <Value> <Obj> <type>0</type> <id>29</id> <name></name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>250</item> <item>251</item> <item>252</item> <item>707</item> </oprand_edges> <opcode>write</opcode> </item> <item class_id_reference="9" object_id="_17"> <Value> <Obj> <type>0</type> <id>30</id> <name>acc_2_load</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</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>253</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_18"> <Value> <Obj> <type>0</type> <id>31</id> <name>d_i_addr_2</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>254</item> <item>255</item> <item>257</item> </oprand_edges> <opcode>getelementptr</opcode> </item> <item class_id_reference="9" object_id="_19"> <Value> <Obj> <type>0</type> <id>32</id> <name>d_i_load_2</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</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>258</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_20"> <Value> <Obj> <type>0</type> <id>33</id> <name>tmp_2_2</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</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>259</item> </oprand_edges> <opcode>sext</opcode> </item> <item class_id_reference="9" object_id="_21"> <Value> <Obj> <type>0</type> <id>34</id> <name>acc_2_loc_assign_2</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>260</item> <item>261</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_22"> <Value> <Obj> <type>0</type> <id>35</id> <name>tmp_3</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>69</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>262</item> </oprand_edges> <opcode>trunc</opcode> </item> <item class_id_reference="9" object_id="_23"> <Value> <Obj> <type>0</type> <id>36</id> <name></name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>263</item> <item>264</item> <item>265</item> <item>705</item> </oprand_edges> <opcode>write</opcode> </item> <item class_id_reference="9" object_id="_24"> <Value> <Obj> <type>0</type> <id>37</id> <name>acc_3_load</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</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>266</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_25"> <Value> <Obj> <type>0</type> <id>38</id> <name>d_i_addr_3</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>267</item> <item>268</item> <item>270</item> </oprand_edges> <opcode>getelementptr</opcode> </item> <item class_id_reference="9" object_id="_26"> <Value> <Obj> <type>0</type> <id>39</id> <name>d_i_load_3</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</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>271</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_27"> <Value> <Obj> <type>0</type> <id>40</id> <name>tmp_2_3</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</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>272</item> </oprand_edges> <opcode>sext</opcode> </item> <item class_id_reference="9" object_id="_28"> <Value> <Obj> <type>0</type> <id>41</id> <name>acc_3_loc_assign_2</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>273</item> <item>274</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_29"> <Value> <Obj> <type>0</type> <id>42</id> <name>tmp_4</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>69</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>275</item> </oprand_edges> <opcode>trunc</opcode> </item> <item class_id_reference="9" object_id="_30"> <Value> <Obj> <type>0</type> <id>43</id> <name></name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>276</item> <item>277</item> <item>278</item> <item>703</item> </oprand_edges> <opcode>write</opcode> </item> <item class_id_reference="9" object_id="_31"> <Value> <Obj> <type>0</type> <id>44</id> <name>acc_4_load</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</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>279</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_32"> <Value> <Obj> <type>0</type> <id>45</id> <name>d_i_addr_4</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>280</item> <item>281</item> <item>283</item> </oprand_edges> <opcode>getelementptr</opcode> </item> <item class_id_reference="9" object_id="_33"> <Value> <Obj> <type>0</type> <id>46</id> <name>d_i_load_4</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</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>284</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_34"> <Value> <Obj> <type>0</type> <id>47</id> <name>tmp_2_4</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</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>285</item> </oprand_edges> <opcode>sext</opcode> </item> <item class_id_reference="9" object_id="_35"> <Value> <Obj> <type>0</type> <id>48</id> <name>acc_4_loc_assign_2</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>286</item> <item>287</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_36"> <Value> <Obj> <type>0</type> <id>49</id> <name>tmp_5</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>69</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>288</item> </oprand_edges> <opcode>trunc</opcode> </item> <item class_id_reference="9" object_id="_37"> <Value> <Obj> <type>0</type> <id>50</id> <name></name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>289</item> <item>290</item> <item>291</item> <item>701</item> </oprand_edges> <opcode>write</opcode> </item> <item class_id_reference="9" object_id="_38"> <Value> <Obj> <type>0</type> <id>51</id> <name>acc_5_load</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</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>292</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_39"> <Value> <Obj> <type>0</type> <id>52</id> <name>d_i_addr_5</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>293</item> <item>294</item> <item>296</item> </oprand_edges> <opcode>getelementptr</opcode> </item> <item class_id_reference="9" object_id="_40"> <Value> <Obj> <type>0</type> <id>53</id> <name>d_i_load_5</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>297</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_41"> <Value> <Obj> <type>0</type> <id>54</id> <name>tmp_2_5</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</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>298</item> </oprand_edges> <opcode>sext</opcode> </item> <item class_id_reference="9" object_id="_42"> <Value> <Obj> <type>0</type> <id>55</id> <name>acc_5_loc_assign_2</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>299</item> <item>300</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_43"> <Value> <Obj> <type>0</type> <id>56</id> <name>tmp_6</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>69</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>301</item> </oprand_edges> <opcode>trunc</opcode> </item> <item class_id_reference="9" object_id="_44"> <Value> <Obj> <type>0</type> <id>57</id> <name></name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>302</item> <item>303</item> <item>304</item> <item>699</item> </oprand_edges> <opcode>write</opcode> </item> <item class_id_reference="9" object_id="_45"> <Value> <Obj> <type>0</type> <id>58</id> <name>acc_6_load</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</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>305</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_46"> <Value> <Obj> <type>0</type> <id>59</id> <name>d_i_addr_6</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>306</item> <item>307</item> <item>309</item> </oprand_edges> <opcode>getelementptr</opcode> </item> <item class_id_reference="9" object_id="_47"> <Value> <Obj> <type>0</type> <id>60</id> <name>d_i_load_6</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</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>310</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_48"> <Value> <Obj> <type>0</type> <id>61</id> <name>tmp_2_6</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</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>311</item> </oprand_edges> <opcode>sext</opcode> </item> <item class_id_reference="9" object_id="_49"> <Value> <Obj> <type>0</type> <id>62</id> <name>acc_6_loc_assign_2</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>312</item> <item>313</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_50"> <Value> <Obj> <type>0</type> <id>63</id> <name>tmp_7</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>69</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>314</item> </oprand_edges> <opcode>trunc</opcode> </item> <item class_id_reference="9" object_id="_51"> <Value> <Obj> <type>0</type> <id>64</id> <name></name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>315</item> <item>316</item> <item>317</item> <item>697</item> </oprand_edges> <opcode>write</opcode> </item> <item class_id_reference="9" object_id="_52"> <Value> <Obj> <type>0</type> <id>65</id> <name>acc_7_load</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</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>318</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_53"> <Value> <Obj> <type>0</type> <id>66</id> <name>d_i_addr_7</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>319</item> <item>320</item> <item>322</item> </oprand_edges> <opcode>getelementptr</opcode> </item> <item class_id_reference="9" object_id="_54"> <Value> <Obj> <type>0</type> <id>67</id> <name>d_i_load_7</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</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>323</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_55"> <Value> <Obj> <type>0</type> <id>68</id> <name>tmp_2_7</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</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>324</item> </oprand_edges> <opcode>sext</opcode> </item> <item class_id_reference="9" object_id="_56"> <Value> <Obj> <type>0</type> <id>69</id> <name>acc_7_loc_assign_2</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>325</item> <item>326</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_57"> <Value> <Obj> <type>0</type> <id>70</id> <name>tmp_8</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>69</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>327</item> </oprand_edges> <opcode>trunc</opcode> </item> <item class_id_reference="9" object_id="_58"> <Value> <Obj> <type>0</type> <id>71</id> <name></name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>328</item> <item>329</item> <item>330</item> <item>695</item> </oprand_edges> <opcode>write</opcode> </item> <item class_id_reference="9" object_id="_59"> <Value> <Obj> <type>0</type> <id>72</id> <name>d_i_addr_8</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>331</item> <item>332</item> <item>334</item> </oprand_edges> <opcode>getelementptr</opcode> </item> <item class_id_reference="9" object_id="_60"> <Value> <Obj> <type>0</type> <id>73</id> <name>d_i_load_8</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</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>335</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_61"> <Value> <Obj> <type>0</type> <id>74</id> <name>tmp_2_8</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</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>336</item> </oprand_edges> <opcode>sext</opcode> </item> <item class_id_reference="9" object_id="_62"> <Value> <Obj> <type>0</type> <id>75</id> <name>acc_0_loc_assign_1</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>337</item> <item>338</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_63"> <Value> <Obj> <type>0</type> <id>76</id> <name>tmp_9</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>69</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>339</item> </oprand_edges> <opcode>trunc</opcode> </item> <item class_id_reference="9" object_id="_64"> <Value> <Obj> <type>0</type> <id>77</id> <name></name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>340</item> <item>341</item> <item>342</item> <item>693</item> </oprand_edges> <opcode>write</opcode> </item> <item class_id_reference="9" object_id="_65"> <Value> <Obj> <type>0</type> <id>78</id> <name>d_i_addr_9</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>343</item> <item>344</item> <item>346</item> </oprand_edges> <opcode>getelementptr</opcode> </item> <item class_id_reference="9" object_id="_66"> <Value> <Obj> <type>0</type> <id>79</id> <name>d_i_load_9</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</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>347</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_67"> <Value> <Obj> <type>0</type> <id>80</id> <name>tmp_2_9</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</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>348</item> </oprand_edges> <opcode>sext</opcode> </item> <item class_id_reference="9" object_id="_68"> <Value> <Obj> <type>0</type> <id>81</id> <name>acc_1_loc_assign_1</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>349</item> <item>350</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_69"> <Value> <Obj> <type>0</type> <id>82</id> <name>tmp_10</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>69</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>351</item> </oprand_edges> <opcode>trunc</opcode> </item> <item class_id_reference="9" object_id="_70"> <Value> <Obj> <type>0</type> <id>83</id> <name></name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>352</item> <item>353</item> <item>354</item> <item>692</item> </oprand_edges> <opcode>write</opcode> </item> <item class_id_reference="9" object_id="_71"> <Value> <Obj> <type>0</type> <id>84</id> <name>d_i_addr_10</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>355</item> <item>356</item> <item>358</item> </oprand_edges> <opcode>getelementptr</opcode> </item> <item class_id_reference="9" object_id="_72"> <Value> <Obj> <type>0</type> <id>85</id> <name>d_i_load_10</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</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>359</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_73"> <Value> <Obj> <type>0</type> <id>86</id> <name>tmp_2_s</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</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>360</item> </oprand_edges> <opcode>sext</opcode> </item> <item class_id_reference="9" object_id="_74"> <Value> <Obj> <type>0</type> <id>87</id> <name>acc_2_loc_assign_1</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>361</item> <item>362</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_75"> <Value> <Obj> <type>0</type> <id>88</id> <name>tmp_11</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>69</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>363</item> </oprand_edges> <opcode>trunc</opcode> </item> <item class_id_reference="9" object_id="_76"> <Value> <Obj> <type>0</type> <id>89</id> <name></name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>364</item> <item>365</item> <item>366</item> <item>691</item> </oprand_edges> <opcode>write</opcode> </item> <item class_id_reference="9" object_id="_77"> <Value> <Obj> <type>0</type> <id>90</id> <name>d_i_addr_11</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>367</item> <item>368</item> <item>370</item> </oprand_edges> <opcode>getelementptr</opcode> </item> <item class_id_reference="9" object_id="_78"> <Value> <Obj> <type>0</type> <id>91</id> <name>d_i_load_11</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</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>371</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_79"> <Value> <Obj> <type>0</type> <id>92</id> <name>tmp_2_10</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</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>372</item> </oprand_edges> <opcode>sext</opcode> </item> <item class_id_reference="9" object_id="_80"> <Value> <Obj> <type>0</type> <id>93</id> <name>acc_3_loc_assign_1</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>373</item> <item>374</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_81"> <Value> <Obj> <type>0</type> <id>94</id> <name>tmp_12</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>69</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>375</item> </oprand_edges> <opcode>trunc</opcode> </item> <item class_id_reference="9" object_id="_82"> <Value> <Obj> <type>0</type> <id>95</id> <name></name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>376</item> <item>377</item> <item>378</item> <item>690</item> </oprand_edges> <opcode>write</opcode> </item> <item class_id_reference="9" object_id="_83"> <Value> <Obj> <type>0</type> <id>96</id> <name>d_i_addr_12</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>379</item> <item>380</item> <item>382</item> </oprand_edges> <opcode>getelementptr</opcode> </item> <item class_id_reference="9" object_id="_84"> <Value> <Obj> <type>0</type> <id>97</id> <name>d_i_load_12</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</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>383</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_85"> <Value> <Obj> <type>0</type> <id>98</id> <name>tmp_2_11</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</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>384</item> </oprand_edges> <opcode>sext</opcode> </item> <item class_id_reference="9" object_id="_86"> <Value> <Obj> <type>0</type> <id>99</id> <name>acc_4_loc_assign_1</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>385</item> <item>386</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_87"> <Value> <Obj> <type>0</type> <id>100</id> <name>tmp_13</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>69</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>387</item> </oprand_edges> <opcode>trunc</opcode> </item> <item class_id_reference="9" object_id="_88"> <Value> <Obj> <type>0</type> <id>101</id> <name></name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>388</item> <item>389</item> <item>390</item> <item>689</item> </oprand_edges> <opcode>write</opcode> </item> <item class_id_reference="9" object_id="_89"> <Value> <Obj> <type>0</type> <id>102</id> <name>d_i_addr_13</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>391</item> <item>392</item> <item>394</item> </oprand_edges> <opcode>getelementptr</opcode> </item> <item class_id_reference="9" object_id="_90"> <Value> <Obj> <type>0</type> <id>103</id> <name>d_i_load_13</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</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>395</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_91"> <Value> <Obj> <type>0</type> <id>104</id> <name>tmp_2_12</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</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>396</item> </oprand_edges> <opcode>sext</opcode> </item> <item class_id_reference="9" object_id="_92"> <Value> <Obj> <type>0</type> <id>105</id> <name>acc_5_loc_assign_1</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>397</item> <item>398</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_93"> <Value> <Obj> <type>0</type> <id>106</id> <name>tmp_14</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>69</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>399</item> </oprand_edges> <opcode>trunc</opcode> </item> <item class_id_reference="9" object_id="_94"> <Value> <Obj> <type>0</type> <id>107</id> <name></name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>400</item> <item>401</item> <item>402</item> <item>688</item> </oprand_edges> <opcode>write</opcode> </item> <item class_id_reference="9" object_id="_95"> <Value> <Obj> <type>0</type> <id>108</id> <name>d_i_addr_14</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>403</item> <item>404</item> <item>406</item> </oprand_edges> <opcode>getelementptr</opcode> </item> <item class_id_reference="9" object_id="_96"> <Value> <Obj> <type>0</type> <id>109</id> <name>d_i_load_14</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</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>407</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_97"> <Value> <Obj> <type>0</type> <id>110</id> <name>tmp_2_13</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>408</item> </oprand_edges> <opcode>sext</opcode> </item> <item class_id_reference="9" object_id="_98"> <Value> <Obj> <type>0</type> <id>111</id> <name>acc_6_loc_assign_1</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>409</item> <item>410</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_99"> <Value> <Obj> <type>0</type> <id>112</id> <name>tmp_15</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>69</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>411</item> </oprand_edges> <opcode>trunc</opcode> </item> <item class_id_reference="9" object_id="_100"> <Value> <Obj> <type>0</type> <id>113</id> <name></name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>412</item> <item>413</item> <item>414</item> <item>687</item> </oprand_edges> <opcode>write</opcode> </item> <item class_id_reference="9" object_id="_101"> <Value> <Obj> <type>0</type> <id>114</id> <name>d_i_addr_15</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>415</item> <item>416</item> <item>418</item> </oprand_edges> <opcode>getelementptr</opcode> </item> <item class_id_reference="9" object_id="_102"> <Value> <Obj> <type>0</type> <id>115</id> <name>d_i_load_15</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</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>419</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_103"> <Value> <Obj> <type>0</type> <id>116</id> <name>tmp_2_14</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</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>420</item> </oprand_edges> <opcode>sext</opcode> </item> <item class_id_reference="9" object_id="_104"> <Value> <Obj> <type>0</type> <id>117</id> <name>acc_7_loc_assign_1</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>421</item> <item>422</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_105"> <Value> <Obj> <type>0</type> <id>118</id> <name>tmp_16</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>69</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>423</item> </oprand_edges> <opcode>trunc</opcode> </item> <item class_id_reference="9" object_id="_106"> <Value> <Obj> <type>0</type> <id>119</id> <name></name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>424</item> <item>425</item> <item>426</item> <item>686</item> </oprand_edges> <opcode>write</opcode> </item> <item class_id_reference="9" object_id="_107"> <Value> <Obj> <type>0</type> <id>120</id> <name>d_i_addr_16</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>427</item> <item>428</item> <item>430</item> </oprand_edges> <opcode>getelementptr</opcode> </item> <item class_id_reference="9" object_id="_108"> <Value> <Obj> <type>0</type> <id>121</id> <name>d_i_load_16</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</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>431</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_109"> <Value> <Obj> <type>0</type> <id>122</id> <name>tmp_2_15</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</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>432</item> </oprand_edges> <opcode>sext</opcode> </item> <item class_id_reference="9" object_id="_110"> <Value> <Obj> <type>0</type> <id>123</id> <name>acc_0_loc</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>433</item> <item>434</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_111"> <Value> <Obj> <type>0</type> <id>124</id> <name>tmp_17</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>69</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>435</item> </oprand_edges> <opcode>trunc</opcode> </item> <item class_id_reference="9" object_id="_112"> <Value> <Obj> <type>0</type> <id>125</id> <name></name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>436</item> <item>437</item> <item>438</item> <item>685</item> </oprand_edges> <opcode>write</opcode> </item> <item class_id_reference="9" object_id="_113"> <Value> <Obj> <type>0</type> <id>126</id> <name>d_i_addr_17</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>439</item> <item>440</item> <item>442</item> </oprand_edges> <opcode>getelementptr</opcode> </item> <item class_id_reference="9" object_id="_114"> <Value> <Obj> <type>0</type> <id>127</id> <name>d_i_load_17</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</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>443</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_115"> <Value> <Obj> <type>0</type> <id>128</id> <name>tmp_2_16</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</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>444</item> </oprand_edges> <opcode>sext</opcode> </item> <item class_id_reference="9" object_id="_116"> <Value> <Obj> <type>0</type> <id>129</id> <name>acc_1_loc</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>445</item> <item>446</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_117"> <Value> <Obj> <type>0</type> <id>130</id> <name>tmp_18</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>69</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>447</item> </oprand_edges> <opcode>trunc</opcode> </item> <item class_id_reference="9" object_id="_118"> <Value> <Obj> <type>0</type> <id>131</id> <name></name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>448</item> <item>449</item> <item>450</item> <item>684</item> </oprand_edges> <opcode>write</opcode> </item> <item class_id_reference="9" object_id="_119"> <Value> <Obj> <type>0</type> <id>132</id> <name>d_i_addr_18</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>451</item> <item>452</item> <item>454</item> </oprand_edges> <opcode>getelementptr</opcode> </item> <item class_id_reference="9" object_id="_120"> <Value> <Obj> <type>0</type> <id>133</id> <name>d_i_load_18</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</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>455</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_121"> <Value> <Obj> <type>0</type> <id>134</id> <name>tmp_2_17</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</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>456</item> </oprand_edges> <opcode>sext</opcode> </item> <item class_id_reference="9" object_id="_122"> <Value> <Obj> <type>0</type> <id>135</id> <name>acc_2_loc</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>457</item> <item>458</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_123"> <Value> <Obj> <type>0</type> <id>136</id> <name>tmp_19</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>69</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>459</item> </oprand_edges> <opcode>trunc</opcode> </item> <item class_id_reference="9" object_id="_124"> <Value> <Obj> <type>0</type> <id>137</id> <name></name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>460</item> <item>461</item> <item>462</item> <item>683</item> </oprand_edges> <opcode>write</opcode> </item> <item class_id_reference="9" object_id="_125"> <Value> <Obj> <type>0</type> <id>138</id> <name>d_i_addr_19</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>463</item> <item>464</item> <item>466</item> </oprand_edges> <opcode>getelementptr</opcode> </item> <item class_id_reference="9" object_id="_126"> <Value> <Obj> <type>0</type> <id>139</id> <name>d_i_load_19</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</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>467</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_127"> <Value> <Obj> <type>0</type> <id>140</id> <name>tmp_2_18</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</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>468</item> </oprand_edges> <opcode>sext</opcode> </item> <item class_id_reference="9" object_id="_128"> <Value> <Obj> <type>0</type> <id>141</id> <name>acc_3_loc</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>469</item> <item>470</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_129"> <Value> <Obj> <type>0</type> <id>142</id> <name>tmp_20</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>69</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>471</item> </oprand_edges> <opcode>trunc</opcode> </item> <item class_id_reference="9" object_id="_130"> <Value> <Obj> <type>0</type> <id>143</id> <name></name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>472</item> <item>473</item> <item>474</item> <item>682</item> </oprand_edges> <opcode>write</opcode> </item> <item class_id_reference="9" object_id="_131"> <Value> <Obj> <type>0</type> <id>144</id> <name>d_i_addr_20</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>475</item> <item>476</item> <item>478</item> </oprand_edges> <opcode>getelementptr</opcode> </item> <item class_id_reference="9" object_id="_132"> <Value> <Obj> <type>0</type> <id>145</id> <name>d_i_load_20</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</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>479</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_133"> <Value> <Obj> <type>0</type> <id>146</id> <name>tmp_2_19</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</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>480</item> </oprand_edges> <opcode>sext</opcode> </item> <item class_id_reference="9" object_id="_134"> <Value> <Obj> <type>0</type> <id>147</id> <name>acc_4_loc</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>481</item> <item>482</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_135"> <Value> <Obj> <type>0</type> <id>148</id> <name>tmp_21</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>69</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>483</item> </oprand_edges> <opcode>trunc</opcode> </item> <item class_id_reference="9" object_id="_136"> <Value> <Obj> <type>0</type> <id>149</id> <name></name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>484</item> <item>485</item> <item>486</item> <item>681</item> </oprand_edges> <opcode>write</opcode> </item> <item class_id_reference="9" object_id="_137"> <Value> <Obj> <type>0</type> <id>150</id> <name>d_i_addr_21</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>487</item> <item>488</item> <item>490</item> </oprand_edges> <opcode>getelementptr</opcode> </item> <item class_id_reference="9" object_id="_138"> <Value> <Obj> <type>0</type> <id>151</id> <name>d_i_load_21</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</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>491</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_139"> <Value> <Obj> <type>0</type> <id>152</id> <name>tmp_2_20</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</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>492</item> </oprand_edges> <opcode>sext</opcode> </item> <item class_id_reference="9" object_id="_140"> <Value> <Obj> <type>0</type> <id>153</id> <name>acc_5_loc</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>493</item> <item>494</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_141"> <Value> <Obj> <type>0</type> <id>154</id> <name>tmp_22</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>69</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>495</item> </oprand_edges> <opcode>trunc</opcode> </item> <item class_id_reference="9" object_id="_142"> <Value> <Obj> <type>0</type> <id>155</id> <name></name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>496</item> <item>497</item> <item>498</item> <item>680</item> </oprand_edges> <opcode>write</opcode> </item> <item class_id_reference="9" object_id="_143"> <Value> <Obj> <type>0</type> <id>156</id> <name>d_i_addr_22</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>499</item> <item>500</item> <item>502</item> </oprand_edges> <opcode>getelementptr</opcode> </item> <item class_id_reference="9" object_id="_144"> <Value> <Obj> <type>0</type> <id>157</id> <name>d_i_load_22</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</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>503</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_145"> <Value> <Obj> <type>0</type> <id>158</id> <name>tmp_2_21</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</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>504</item> </oprand_edges> <opcode>sext</opcode> </item> <item class_id_reference="9" object_id="_146"> <Value> <Obj> <type>0</type> <id>159</id> <name>acc_6_loc</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>505</item> <item>506</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_147"> <Value> <Obj> <type>0</type> <id>160</id> <name>tmp_23</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>69</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>507</item> </oprand_edges> <opcode>trunc</opcode> </item> <item class_id_reference="9" object_id="_148"> <Value> <Obj> <type>0</type> <id>161</id> <name></name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>508</item> <item>509</item> <item>510</item> <item>679</item> </oprand_edges> <opcode>write</opcode> </item> <item class_id_reference="9" object_id="_149"> <Value> <Obj> <type>0</type> <id>162</id> <name>d_i_addr_23</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>511</item> <item>512</item> <item>514</item> </oprand_edges> <opcode>getelementptr</opcode> </item> <item class_id_reference="9" object_id="_150"> <Value> <Obj> <type>0</type> <id>163</id> <name>d_i_load_23</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</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>515</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_151"> <Value> <Obj> <type>0</type> <id>164</id> <name>tmp_2_22</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</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>516</item> </oprand_edges> <opcode>sext</opcode> </item> <item class_id_reference="9" object_id="_152"> <Value> <Obj> <type>0</type> <id>165</id> <name>acc_7_loc</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>517</item> <item>518</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_153"> <Value> <Obj> <type>0</type> <id>166</id> <name>tmp_24</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>69</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>519</item> </oprand_edges> <opcode>trunc</opcode> </item> <item class_id_reference="9" object_id="_154"> <Value> <Obj> <type>0</type> <id>167</id> <name></name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>520</item> <item>521</item> <item>522</item> <item>678</item> </oprand_edges> <opcode>write</opcode> </item> <item class_id_reference="9" object_id="_155"> <Value> <Obj> <type>0</type> <id>168</id> <name>d_i_addr_24</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>523</item> <item>524</item> <item>526</item> </oprand_edges> <opcode>getelementptr</opcode> </item> <item class_id_reference="9" object_id="_156"> <Value> <Obj> <type>0</type> <id>169</id> <name>d_i_load_24</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</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>527</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_157"> <Value> <Obj> <type>0</type> <id>170</id> <name>tmp_2_23</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</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>528</item> </oprand_edges> <opcode>sext</opcode> </item> <item class_id_reference="9" object_id="_158"> <Value> <Obj> <type>0</type> <id>171</id> <name>temp_s</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>529</item> <item>530</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_159"> <Value> <Obj> <type>0</type> <id>172</id> <name></name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>68</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</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>531</item> <item>532</item> <item>708</item> </oprand_edges> <opcode>store</opcode> </item> <item class_id_reference="9" object_id="_160"> <Value> <Obj> <type>0</type> <id>173</id> <name>tmp_25</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>69</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>533</item> </oprand_edges> <opcode>trunc</opcode> </item> <item class_id_reference="9" object_id="_161"> <Value> <Obj> <type>0</type> <id>174</id> <name></name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>534</item> <item>535</item> <item>536</item> <item>677</item> </oprand_edges> <opcode>write</opcode> </item> <item class_id_reference="9" object_id="_162"> <Value> <Obj> <type>0</type> <id>175</id> <name>d_i_addr_25</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>537</item> <item>538</item> <item>540</item> </oprand_edges> <opcode>getelementptr</opcode> </item> <item class_id_reference="9" object_id="_163"> <Value> <Obj> <type>0</type> <id>176</id> <name>d_i_load_25</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</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>541</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_164"> <Value> <Obj> <type>0</type> <id>177</id> <name>tmp_2_24</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</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>542</item> </oprand_edges> <opcode>sext</opcode> </item> <item class_id_reference="9" object_id="_165"> <Value> <Obj> <type>0</type> <id>178</id> <name>temp_1</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>543</item> <item>544</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_166"> <Value> <Obj> <type>0</type> <id>179</id> <name></name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>68</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</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>545</item> <item>546</item> <item>706</item> </oprand_edges> <opcode>store</opcode> </item> <item class_id_reference="9" object_id="_167"> <Value> <Obj> <type>0</type> <id>180</id> <name>tmp_26</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>69</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>547</item> </oprand_edges> <opcode>trunc</opcode> </item> <item class_id_reference="9" object_id="_168"> <Value> <Obj> <type>0</type> <id>181</id> <name></name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>548</item> <item>549</item> <item>550</item> <item>676</item> </oprand_edges> <opcode>write</opcode> </item> <item class_id_reference="9" object_id="_169"> <Value> <Obj> <type>0</type> <id>182</id> <name>d_i_addr_26</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>551</item> <item>552</item> <item>554</item> </oprand_edges> <opcode>getelementptr</opcode> </item> <item class_id_reference="9" object_id="_170"> <Value> <Obj> <type>0</type> <id>183</id> <name>d_i_load_26</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</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>555</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_171"> <Value> <Obj> <type>0</type> <id>184</id> <name>tmp_2_25</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</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>556</item> </oprand_edges> <opcode>sext</opcode> </item> <item class_id_reference="9" object_id="_172"> <Value> <Obj> <type>0</type> <id>185</id> <name>temp_2</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>557</item> <item>558</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_173"> <Value> <Obj> <type>0</type> <id>186</id> <name></name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>68</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</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>559</item> <item>560</item> <item>704</item> </oprand_edges> <opcode>store</opcode> </item> <item class_id_reference="9" object_id="_174"> <Value> <Obj> <type>0</type> <id>187</id> <name>tmp_27</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>69</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>561</item> </oprand_edges> <opcode>trunc</opcode> </item> <item class_id_reference="9" object_id="_175"> <Value> <Obj> <type>0</type> <id>188</id> <name></name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>562</item> <item>563</item> <item>564</item> <item>675</item> </oprand_edges> <opcode>write</opcode> </item> <item class_id_reference="9" object_id="_176"> <Value> <Obj> <type>0</type> <id>189</id> <name>d_i_addr_27</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>565</item> <item>566</item> <item>568</item> </oprand_edges> <opcode>getelementptr</opcode> </item> <item class_id_reference="9" object_id="_177"> <Value> <Obj> <type>0</type> <id>190</id> <name>d_i_load_27</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</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>569</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_178"> <Value> <Obj> <type>0</type> <id>191</id> <name>tmp_2_26</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</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>570</item> </oprand_edges> <opcode>sext</opcode> </item> <item class_id_reference="9" object_id="_179"> <Value> <Obj> <type>0</type> <id>192</id> <name>temp_3</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>571</item> <item>572</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_180"> <Value> <Obj> <type>0</type> <id>193</id> <name></name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>68</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</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>573</item> <item>574</item> <item>702</item> </oprand_edges> <opcode>store</opcode> </item> <item class_id_reference="9" object_id="_181"> <Value> <Obj> <type>0</type> <id>194</id> <name>tmp_28</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>69</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>575</item> </oprand_edges> <opcode>trunc</opcode> </item> <item class_id_reference="9" object_id="_182"> <Value> <Obj> <type>0</type> <id>195</id> <name></name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>576</item> <item>577</item> <item>578</item> <item>674</item> </oprand_edges> <opcode>write</opcode> </item> <item class_id_reference="9" object_id="_183"> <Value> <Obj> <type>0</type> <id>196</id> <name>d_i_addr_28</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>579</item> <item>580</item> <item>582</item> </oprand_edges> <opcode>getelementptr</opcode> </item> <item class_id_reference="9" object_id="_184"> <Value> <Obj> <type>0</type> <id>197</id> <name>d_i_load_28</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</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>583</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_185"> <Value> <Obj> <type>0</type> <id>198</id> <name>tmp_2_27</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</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>584</item> </oprand_edges> <opcode>sext</opcode> </item> <item class_id_reference="9" object_id="_186"> <Value> <Obj> <type>0</type> <id>199</id> <name>temp_4</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>585</item> <item>586</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_187"> <Value> <Obj> <type>0</type> <id>200</id> <name></name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>68</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</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>587</item> <item>588</item> <item>700</item> </oprand_edges> <opcode>store</opcode> </item> <item class_id_reference="9" object_id="_188"> <Value> <Obj> <type>0</type> <id>201</id> <name>tmp_29</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>69</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>589</item> </oprand_edges> <opcode>trunc</opcode> </item> <item class_id_reference="9" object_id="_189"> <Value> <Obj> <type>0</type> <id>202</id> <name></name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>590</item> <item>591</item> <item>592</item> <item>673</item> </oprand_edges> <opcode>write</opcode> </item> <item class_id_reference="9" object_id="_190"> <Value> <Obj> <type>0</type> <id>203</id> <name>d_i_addr_29</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>593</item> <item>594</item> <item>596</item> </oprand_edges> <opcode>getelementptr</opcode> </item> <item class_id_reference="9" object_id="_191"> <Value> <Obj> <type>0</type> <id>204</id> <name>d_i_load_29</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</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>597</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_192"> <Value> <Obj> <type>0</type> <id>205</id> <name>tmp_2_28</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</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>598</item> </oprand_edges> <opcode>sext</opcode> </item> <item class_id_reference="9" object_id="_193"> <Value> <Obj> <type>0</type> <id>206</id> <name>temp_5</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>599</item> <item>600</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_194"> <Value> <Obj> <type>0</type> <id>207</id> <name></name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>68</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</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>601</item> <item>602</item> <item>698</item> </oprand_edges> <opcode>store</opcode> </item> <item class_id_reference="9" object_id="_195"> <Value> <Obj> <type>0</type> <id>208</id> <name>tmp_30</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>69</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>603</item> </oprand_edges> <opcode>trunc</opcode> </item> <item class_id_reference="9" object_id="_196"> <Value> <Obj> <type>0</type> <id>209</id> <name></name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>604</item> <item>605</item> <item>606</item> <item>672</item> </oprand_edges> <opcode>write</opcode> </item> <item class_id_reference="9" object_id="_197"> <Value> <Obj> <type>0</type> <id>210</id> <name>d_i_addr_30</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>607</item> <item>608</item> <item>610</item> </oprand_edges> <opcode>getelementptr</opcode> </item> <item class_id_reference="9" object_id="_198"> <Value> <Obj> <type>0</type> <id>211</id> <name>d_i_load_30</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</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>611</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_199"> <Value> <Obj> <type>0</type> <id>212</id> <name>tmp_2_29</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</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>612</item> </oprand_edges> <opcode>sext</opcode> </item> <item class_id_reference="9" object_id="_200"> <Value> <Obj> <type>0</type> <id>213</id> <name>temp_6</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>613</item> <item>614</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_201"> <Value> <Obj> <type>0</type> <id>214</id> <name></name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>68</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</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>615</item> <item>616</item> <item>696</item> </oprand_edges> <opcode>store</opcode> </item> <item class_id_reference="9" object_id="_202"> <Value> <Obj> <type>0</type> <id>215</id> <name>tmp_31</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>69</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>617</item> </oprand_edges> <opcode>trunc</opcode> </item> <item class_id_reference="9" object_id="_203"> <Value> <Obj> <type>0</type> <id>216</id> <name></name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>618</item> <item>619</item> <item>620</item> <item>671</item> </oprand_edges> <opcode>write</opcode> </item> <item class_id_reference="9" object_id="_204"> <Value> <Obj> <type>0</type> <id>217</id> <name>d_i_addr_31</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>621</item> <item>622</item> <item>624</item> </oprand_edges> <opcode>getelementptr</opcode> </item> <item class_id_reference="9" object_id="_205"> <Value> <Obj> <type>0</type> <id>218</id> <name>d_i_load_31</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</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>625</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_206"> <Value> <Obj> <type>0</type> <id>219</id> <name>tmp_2_30</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</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>626</item> </oprand_edges> <opcode>sext</opcode> </item> <item class_id_reference="9" object_id="_207"> <Value> <Obj> <type>0</type> <id>220</id> <name>temp_7</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>627</item> <item>628</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_208"> <Value> <Obj> <type>0</type> <id>221</id> <name></name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>68</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</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>629</item> <item>630</item> <item>694</item> </oprand_edges> <opcode>store</opcode> </item> <item class_id_reference="9" object_id="_209"> <Value> <Obj> <type>0</type> <id>222</id> <name>tmp_32</name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>69</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>631</item> </oprand_edges> <opcode>trunc</opcode> </item> <item class_id_reference="9" object_id="_210"> <Value> <Obj> <type>0</type> <id>223</id> <name></name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>632</item> <item>633</item> <item>634</item> <item>670</item> </oprand_edges> <opcode>write</opcode> </item> <item class_id_reference="9" object_id="_211"> <Value> <Obj> <type>0</type> <id>224</id> <name></name> <fileName>array_io.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</fileDirectory> <lineNumber>71</lineNumber> <contextFuncName>array_io</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>array_io.c</first> <second>array_io</second> </first> <second>71</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>0</count> <item_version>0</item_version> </oprand_edges> <opcode>ret</opcode> </item> </nodes> <consts class_id="15" tracking_level="0" version="0"> <count>32</count> <item_version>0</item_version> <item class_id="16" tracking_level="1" version="0" object_id="_212"> <Value> <Obj> <type>2</type> <id>228</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_213"> <Value> <Obj> <type>2</type> <id>243</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_214"> <Value> <Obj> <type>2</type> <id>256</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>0</const_type> <content>2</content> </item> <item class_id_reference="16" object_id="_215"> <Value> <Obj> <type>2</type> <id>269</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>3</content> </item> <item class_id_reference="16" object_id="_216"> <Value> <Obj> <type>2</type> <id>282</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>0</const_type> <content>4</content> </item> <item class_id_reference="16" object_id="_217"> <Value> <Obj> <type>2</type> <id>295</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>0</const_type> <content>5</content> </item> <item class_id_reference="16" object_id="_218"> <Value> <Obj> <type>2</type> <id>308</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>0</const_type> <content>6</content> </item> <item class_id_reference="16" object_id="_219"> <Value> <Obj> <type>2</type> <id>321</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>0</const_type> <content>7</content> </item> <item class_id_reference="16" object_id="_220"> <Value> <Obj> <type>2</type> <id>333</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>0</const_type> <content>8</content> </item> <item class_id_reference="16" object_id="_221"> <Value> <Obj> <type>2</type> <id>345</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>0</const_type> <content>9</content> </item> <item class_id_reference="16" object_id="_222"> <Value> <Obj> <type>2</type> <id>357</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>0</const_type> <content>10</content> </item> <item class_id_reference="16" object_id="_223"> <Value> <Obj> <type>2</type> <id>369</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>0</const_type> <content>11</content> </item> <item class_id_reference="16" object_id="_224"> <Value> <Obj> <type>2</type> <id>381</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>0</const_type> <content>12</content> </item> <item class_id_reference="16" object_id="_225"> <Value> <Obj> <type>2</type> <id>393</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>0</const_type> <content>13</content> </item> <item class_id_reference="16" object_id="_226"> <Value> <Obj> <type>2</type> <id>405</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>0</const_type> <content>14</content> </item> <item class_id_reference="16" object_id="_227"> <Value> <Obj> <type>2</type> <id>417</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>0</const_type> <content>15</content> </item> <item class_id_reference="16" object_id="_228"> <Value> <Obj> <type>2</type> <id>429</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>16</content> </item> <item class_id_reference="16" object_id="_229"> <Value> <Obj> <type>2</type> <id>441</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>17</content> </item> <item class_id_reference="16" object_id="_230"> <Value> <Obj> <type>2</type> <id>453</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>18</content> </item> <item class_id_reference="16" object_id="_231"> <Value> <Obj> <type>2</type> <id>465</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>19</content> </item> <item class_id_reference="16" object_id="_232"> <Value> <Obj> <type>2</type> <id>477</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>20</content> </item> <item class_id_reference="16" object_id="_233"> <Value> <Obj> <type>2</type> <id>489</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>21</content> </item> <item class_id_reference="16" object_id="_234"> <Value> <Obj> <type>2</type> <id>501</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>22</content> </item> <item class_id_reference="16" object_id="_235"> <Value> <Obj> <type>2</type> <id>513</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>23</content> </item> <item class_id_reference="16" object_id="_236"> <Value> <Obj> <type>2</type> <id>525</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>24</content> </item> <item class_id_reference="16" object_id="_237"> <Value> <Obj> <type>2</type> <id>539</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>25</content> </item> <item class_id_reference="16" object_id="_238"> <Value> <Obj> <type>2</type> <id>553</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>26</content> </item> <item class_id_reference="16" object_id="_239"> <Value> <Obj> <type>2</type> <id>567</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>27</content> </item> <item class_id_reference="16" object_id="_240"> <Value> <Obj> <type>2</type> <id>581</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>28</content> </item> <item class_id_reference="16" object_id="_241"> <Value> <Obj> <type>2</type> <id>595</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>29</content> </item> <item class_id_reference="16" object_id="_242"> <Value> <Obj> <type>2</type> <id>609</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>30</content> </item> <item class_id_reference="16" object_id="_243"> <Value> <Obj> <type>2</type> <id>623</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>31</content> </item> </consts> <blocks class_id="17" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="18" tracking_level="1" version="0" object_id="_244"> <Obj> <type>3</type> <id>225</id> <name>array_io</name> <fileName></fileName> <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>209</count> <item_version>0</item_version> <item>16</item> <item>17</item> <item>18</item> <item>19</item> <item>20</item> <item>21</item> <item>22</item> <item>23</item> <item>24</item> <item>25</item> <item>26</item> <item>27</item> <item>28</item> <item>29</item> <item>30</item> <item>31</item> <item>32</item> <item>33</item> <item>34</item> <item>35</item> <item>36</item> <item>37</item> <item>38</item> <item>39</item> <item>40</item> <item>41</item> <item>42</item> <item>43</item> <item>44</item> <item>45</item> <item>46</item> <item>47</item> <item>48</item> <item>49</item> <item>50</item> <item>51</item> <item>52</item> <item>53</item> <item>54</item> <item>55</item> <item>56</item> <item>57</item> <item>58</item> <item>59</item> <item>60</item> <item>61</item> <item>62</item> <item>63</item> <item>64</item> <item>65</item> <item>66</item> <item>67</item> <item>68</item> <item>69</item> <item>70</item> <item>71</item> <item>72</item> <item>73</item> <item>74</item> <item>75</item> <item>76</item> <item>77</item> <item>78</item> <item>79</item> <item>80</item> <item>81</item> <item>82</item> <item>83</item> <item>84</item> <item>85</item> <item>86</item> <item>87</item> <item>88</item> <item>89</item> <item>90</item> <item>91</item> <item>92</item> <item>93</item> <item>94</item> <item>95</item> <item>96</item> <item>97</item> <item>98</item> <item>99</item> <item>100</item> <item>101</item> <item>102</item> <item>103</item> <item>104</item> <item>105</item> <item>106</item> <item>107</item> <item>108</item> <item>109</item> <item>110</item> <item>111</item> <item>112</item> <item>113</item> <item>114</item> <item>115</item> <item>116</item> <item>117</item> <item>118</item> <item>119</item> <item>120</item> <item>121</item> <item>122</item> <item>123</item> <item>124</item> <item>125</item> <item>126</item> <item>127</item> <item>128</item> <item>129</item> <item>130</item> <item>131</item> <item>132</item> <item>133</item> <item>134</item> <item>135</item> <item>136</item> <item>137</item> <item>138</item> <item>139</item> <item>140</item> <item>141</item> <item>142</item> <item>143</item> <item>144</item> <item>145</item> <item>146</item> <item>147</item> <item>148</item> <item>149</item> <item>150</item> <item>151</item> <item>152</item> <item>153</item> <item>154</item> <item>155</item> <item>156</item> <item>157</item> <item>158</item> <item>159</item> <item>160</item> <item>161</item> <item>162</item> <item>163</item> <item>164</item> <item>165</item> <item>166</item> <item>167</item> <item>168</item> <item>169</item> <item>170</item> <item>171</item> <item>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> <item>184</item> <item>185</item> <item>186</item> <item>187</item> <item>188</item> <item>189</item> <item>190</item> <item>191</item> <item>192</item> <item>193</item> <item>194</item> <item>195</item> <item>196</item> <item>197</item> <item>198</item> <item>199</item> <item>200</item> <item>201</item> <item>202</item> <item>203</item> <item>204</item> <item>205</item> <item>206</item> <item>207</item> <item>208</item> <item>209</item> <item>210</item> <item>211</item> <item>212</item> <item>213</item> <item>214</item> <item>215</item> <item>216</item> <item>217</item> <item>218</item> <item>219</item> <item>220</item> <item>221</item> <item>222</item> <item>223</item> <item>224</item> </node_objs> </item> </blocks> <edges class_id="19" tracking_level="0" version="0"> <count>383</count> <item_version>0</item_version> <item class_id="20" tracking_level="1" version="0" object_id="_245"> <id>226</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>16</sink_obj> </item> <item class_id_reference="20" object_id="_246"> <id>227</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>17</sink_obj> </item> <item class_id_reference="20" object_id="_247"> <id>229</id> <edge_type>1</edge_type> <source_obj>228</source_obj> <sink_obj>17</sink_obj> </item> <item class_id_reference="20" object_id="_248"> <id>230</id> <edge_type>1</edge_type> <source_obj>228</source_obj> <sink_obj>17</sink_obj> </item> <item class_id_reference="20" object_id="_249"> <id>231</id> <edge_type>1</edge_type> <source_obj>17</source_obj> <sink_obj>18</sink_obj> </item> <item class_id_reference="20" object_id="_250"> <id>232</id> <edge_type>1</edge_type> <source_obj>18</source_obj> <sink_obj>19</sink_obj> </item> <item class_id_reference="20" object_id="_251"> <id>233</id> <edge_type>1</edge_type> <source_obj>16</source_obj> <sink_obj>20</sink_obj> </item> <item class_id_reference="20" object_id="_252"> <id>234</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>20</sink_obj> </item> <item class_id_reference="20" object_id="_253"> <id>235</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>21</sink_obj> </item> <item class_id_reference="20" object_id="_254"> <id>238</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>22</sink_obj> </item> <item class_id_reference="20" object_id="_255"> <id>239</id> <edge_type>1</edge_type> <source_obj>21</source_obj> <sink_obj>22</sink_obj> </item> <item class_id_reference="20" object_id="_256"> <id>240</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>23</sink_obj> </item> <item class_id_reference="20" object_id="_257"> <id>241</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>24</sink_obj> </item> <item class_id_reference="20" object_id="_258"> <id>242</id> <edge_type>1</edge_type> <source_obj>228</source_obj> <sink_obj>24</sink_obj> </item> <item class_id_reference="20" object_id="_259"> <id>244</id> <edge_type>1</edge_type> <source_obj>243</source_obj> <sink_obj>24</sink_obj> </item> <item class_id_reference="20" object_id="_260"> <id>245</id> <edge_type>1</edge_type> <source_obj>24</source_obj> <sink_obj>25</sink_obj> </item> <item class_id_reference="20" object_id="_261"> <id>246</id> <edge_type>1</edge_type> <source_obj>25</source_obj> <sink_obj>26</sink_obj> </item> <item class_id_reference="20" object_id="_262"> <id>247</id> <edge_type>1</edge_type> <source_obj>23</source_obj> <sink_obj>27</sink_obj> </item> <item class_id_reference="20" object_id="_263"> <id>248</id> <edge_type>1</edge_type> <source_obj>26</source_obj> <sink_obj>27</sink_obj> </item> <item class_id_reference="20" object_id="_264"> <id>249</id> <edge_type>1</edge_type> <source_obj>27</source_obj> <sink_obj>28</sink_obj> </item> <item class_id_reference="20" object_id="_265"> <id>251</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>29</sink_obj> </item> <item class_id_reference="20" object_id="_266"> <id>252</id> <edge_type>1</edge_type> <source_obj>28</source_obj> <sink_obj>29</sink_obj> </item> <item class_id_reference="20" object_id="_267"> <id>253</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>30</sink_obj> </item> <item class_id_reference="20" object_id="_268"> <id>254</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>31</sink_obj> </item> <item class_id_reference="20" object_id="_269"> <id>255</id> <edge_type>1</edge_type> <source_obj>228</source_obj> <sink_obj>31</sink_obj> </item> <item class_id_reference="20" object_id="_270"> <id>257</id> <edge_type>1</edge_type> <source_obj>256</source_obj> <sink_obj>31</sink_obj> </item> <item class_id_reference="20" object_id="_271"> <id>258</id> <edge_type>1</edge_type> <source_obj>31</source_obj> <sink_obj>32</sink_obj> </item> <item class_id_reference="20" object_id="_272"> <id>259</id> <edge_type>1</edge_type> <source_obj>32</source_obj> <sink_obj>33</sink_obj> </item> <item class_id_reference="20" object_id="_273"> <id>260</id> <edge_type>1</edge_type> <source_obj>30</source_obj> <sink_obj>34</sink_obj> </item> <item class_id_reference="20" object_id="_274"> <id>261</id> <edge_type>1</edge_type> <source_obj>33</source_obj> <sink_obj>34</sink_obj> </item> <item class_id_reference="20" object_id="_275"> <id>262</id> <edge_type>1</edge_type> <source_obj>34</source_obj> <sink_obj>35</sink_obj> </item> <item class_id_reference="20" object_id="_276"> <id>264</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>36</sink_obj> </item> <item class_id_reference="20" object_id="_277"> <id>265</id> <edge_type>1</edge_type> <source_obj>35</source_obj> <sink_obj>36</sink_obj> </item> <item class_id_reference="20" object_id="_278"> <id>266</id> <edge_type>1</edge_type> <source_obj>6</source_obj> <sink_obj>37</sink_obj> </item> <item class_id_reference="20" object_id="_279"> <id>267</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>38</sink_obj> </item> <item class_id_reference="20" object_id="_280"> <id>268</id> <edge_type>1</edge_type> <source_obj>228</source_obj> <sink_obj>38</sink_obj> </item> <item class_id_reference="20" object_id="_281"> <id>270</id> <edge_type>1</edge_type> <source_obj>269</source_obj> <sink_obj>38</sink_obj> </item> <item class_id_reference="20" object_id="_282"> <id>271</id> <edge_type>1</edge_type> <source_obj>38</source_obj> <sink_obj>39</sink_obj> </item> <item class_id_reference="20" object_id="_283"> <id>272</id> <edge_type>1</edge_type> <source_obj>39</source_obj> <sink_obj>40</sink_obj> </item> <item class_id_reference="20" object_id="_284"> <id>273</id> <edge_type>1</edge_type> <source_obj>37</source_obj> <sink_obj>41</sink_obj> </item> <item class_id_reference="20" object_id="_285"> <id>274</id> <edge_type>1</edge_type> <source_obj>40</source_obj> <sink_obj>41</sink_obj> </item> <item class_id_reference="20" object_id="_286"> <id>275</id> <edge_type>1</edge_type> <source_obj>41</source_obj> <sink_obj>42</sink_obj> </item> <item class_id_reference="20" object_id="_287"> <id>277</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>43</sink_obj> </item> <item class_id_reference="20" object_id="_288"> <id>278</id> <edge_type>1</edge_type> <source_obj>42</source_obj> <sink_obj>43</sink_obj> </item> <item class_id_reference="20" object_id="_289"> <id>279</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>44</sink_obj> </item> <item class_id_reference="20" object_id="_290"> <id>280</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>45</sink_obj> </item> <item class_id_reference="20" object_id="_291"> <id>281</id> <edge_type>1</edge_type> <source_obj>228</source_obj> <sink_obj>45</sink_obj> </item> <item class_id_reference="20" object_id="_292"> <id>283</id> <edge_type>1</edge_type> <source_obj>282</source_obj> <sink_obj>45</sink_obj> </item> <item class_id_reference="20" object_id="_293"> <id>284</id> <edge_type>1</edge_type> <source_obj>45</source_obj> <sink_obj>46</sink_obj> </item> <item class_id_reference="20" object_id="_294"> <id>285</id> <edge_type>1</edge_type> <source_obj>46</source_obj> <sink_obj>47</sink_obj> </item> <item class_id_reference="20" object_id="_295"> <id>286</id> <edge_type>1</edge_type> <source_obj>44</source_obj> <sink_obj>48</sink_obj> </item> <item class_id_reference="20" object_id="_296"> <id>287</id> <edge_type>1</edge_type> <source_obj>47</source_obj> <sink_obj>48</sink_obj> </item> <item class_id_reference="20" object_id="_297"> <id>288</id> <edge_type>1</edge_type> <source_obj>48</source_obj> <sink_obj>49</sink_obj> </item> <item class_id_reference="20" object_id="_298"> <id>290</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>50</sink_obj> </item> <item class_id_reference="20" object_id="_299"> <id>291</id> <edge_type>1</edge_type> <source_obj>49</source_obj> <sink_obj>50</sink_obj> </item> <item class_id_reference="20" object_id="_300"> <id>292</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>51</sink_obj> </item> <item class_id_reference="20" object_id="_301"> <id>293</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>52</sink_obj> </item> <item class_id_reference="20" object_id="_302"> <id>294</id> <edge_type>1</edge_type> <source_obj>228</source_obj> <sink_obj>52</sink_obj> </item> <item class_id_reference="20" object_id="_303"> <id>296</id> <edge_type>1</edge_type> <source_obj>295</source_obj> <sink_obj>52</sink_obj> </item> <item class_id_reference="20" object_id="_304"> <id>297</id> <edge_type>1</edge_type> <source_obj>52</source_obj> <sink_obj>53</sink_obj> </item> <item class_id_reference="20" object_id="_305"> <id>298</id> <edge_type>1</edge_type> <source_obj>53</source_obj> <sink_obj>54</sink_obj> </item> <item class_id_reference="20" object_id="_306"> <id>299</id> <edge_type>1</edge_type> <source_obj>51</source_obj> <sink_obj>55</sink_obj> </item> <item class_id_reference="20" object_id="_307"> <id>300</id> <edge_type>1</edge_type> <source_obj>54</source_obj> <sink_obj>55</sink_obj> </item> <item class_id_reference="20" object_id="_308"> <id>301</id> <edge_type>1</edge_type> <source_obj>55</source_obj> <sink_obj>56</sink_obj> </item> <item class_id_reference="20" object_id="_309"> <id>303</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>57</sink_obj> </item> <item class_id_reference="20" object_id="_310"> <id>304</id> <edge_type>1</edge_type> <source_obj>56</source_obj> <sink_obj>57</sink_obj> </item> <item class_id_reference="20" object_id="_311"> <id>305</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>58</sink_obj> </item> <item class_id_reference="20" object_id="_312"> <id>306</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>59</sink_obj> </item> <item class_id_reference="20" object_id="_313"> <id>307</id> <edge_type>1</edge_type> <source_obj>228</source_obj> <sink_obj>59</sink_obj> </item> <item class_id_reference="20" object_id="_314"> <id>309</id> <edge_type>1</edge_type> <source_obj>308</source_obj> <sink_obj>59</sink_obj> </item> <item class_id_reference="20" object_id="_315"> <id>310</id> <edge_type>1</edge_type> <source_obj>59</source_obj> <sink_obj>60</sink_obj> </item> <item class_id_reference="20" object_id="_316"> <id>311</id> <edge_type>1</edge_type> <source_obj>60</source_obj> <sink_obj>61</sink_obj> </item> <item class_id_reference="20" object_id="_317"> <id>312</id> <edge_type>1</edge_type> <source_obj>58</source_obj> <sink_obj>62</sink_obj> </item> <item class_id_reference="20" object_id="_318"> <id>313</id> <edge_type>1</edge_type> <source_obj>61</source_obj> <sink_obj>62</sink_obj> </item> <item class_id_reference="20" object_id="_319"> <id>314</id> <edge_type>1</edge_type> <source_obj>62</source_obj> <sink_obj>63</sink_obj> </item> <item class_id_reference="20" object_id="_320"> <id>316</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>64</sink_obj> </item> <item class_id_reference="20" object_id="_321"> <id>317</id> <edge_type>1</edge_type> <source_obj>63</source_obj> <sink_obj>64</sink_obj> </item> <item class_id_reference="20" object_id="_322"> <id>318</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>65</sink_obj> </item> <item class_id_reference="20" object_id="_323"> <id>319</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>66</sink_obj> </item> <item class_id_reference="20" object_id="_324"> <id>320</id> <edge_type>1</edge_type> <source_obj>228</source_obj> <sink_obj>66</sink_obj> </item> <item class_id_reference="20" object_id="_325"> <id>322</id> <edge_type>1</edge_type> <source_obj>321</source_obj> <sink_obj>66</sink_obj> </item> <item class_id_reference="20" object_id="_326"> <id>323</id> <edge_type>1</edge_type> <source_obj>66</source_obj> <sink_obj>67</sink_obj> </item> <item class_id_reference="20" object_id="_327"> <id>324</id> <edge_type>1</edge_type> <source_obj>67</source_obj> <sink_obj>68</sink_obj> </item> <item class_id_reference="20" object_id="_328"> <id>325</id> <edge_type>1</edge_type> <source_obj>65</source_obj> <sink_obj>69</sink_obj> </item> <item class_id_reference="20" object_id="_329"> <id>326</id> <edge_type>1</edge_type> <source_obj>68</source_obj> <sink_obj>69</sink_obj> </item> <item class_id_reference="20" object_id="_330"> <id>327</id> <edge_type>1</edge_type> <source_obj>69</source_obj> <sink_obj>70</sink_obj> </item> <item class_id_reference="20" object_id="_331"> <id>329</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>71</sink_obj> </item> <item class_id_reference="20" object_id="_332"> <id>330</id> <edge_type>1</edge_type> <source_obj>70</source_obj> <sink_obj>71</sink_obj> </item> <item class_id_reference="20" object_id="_333"> <id>331</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>72</sink_obj> </item> <item class_id_reference="20" object_id="_334"> <id>332</id> <edge_type>1</edge_type> <source_obj>228</source_obj> <sink_obj>72</sink_obj> </item> <item class_id_reference="20" object_id="_335"> <id>334</id> <edge_type>1</edge_type> <source_obj>333</source_obj> <sink_obj>72</sink_obj> </item> <item class_id_reference="20" object_id="_336"> <id>335</id> <edge_type>1</edge_type> <source_obj>72</source_obj> <sink_obj>73</sink_obj> </item> <item class_id_reference="20" object_id="_337"> <id>336</id> <edge_type>1</edge_type> <source_obj>73</source_obj> <sink_obj>74</sink_obj> </item> <item class_id_reference="20" object_id="_338"> <id>337</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>75</sink_obj> </item> <item class_id_reference="20" object_id="_339"> <id>338</id> <edge_type>1</edge_type> <source_obj>74</source_obj> <sink_obj>75</sink_obj> </item> <item class_id_reference="20" object_id="_340"> <id>339</id> <edge_type>1</edge_type> <source_obj>75</source_obj> <sink_obj>76</sink_obj> </item> <item class_id_reference="20" object_id="_341"> <id>341</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>77</sink_obj> </item> <item class_id_reference="20" object_id="_342"> <id>342</id> <edge_type>1</edge_type> <source_obj>76</source_obj> <sink_obj>77</sink_obj> </item> <item class_id_reference="20" object_id="_343"> <id>343</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>78</sink_obj> </item> <item class_id_reference="20" object_id="_344"> <id>344</id> <edge_type>1</edge_type> <source_obj>228</source_obj> <sink_obj>78</sink_obj> </item> <item class_id_reference="20" object_id="_345"> <id>346</id> <edge_type>1</edge_type> <source_obj>345</source_obj> <sink_obj>78</sink_obj> </item> <item class_id_reference="20" object_id="_346"> <id>347</id> <edge_type>1</edge_type> <source_obj>78</source_obj> <sink_obj>79</sink_obj> </item> <item class_id_reference="20" object_id="_347"> <id>348</id> <edge_type>1</edge_type> <source_obj>79</source_obj> <sink_obj>80</sink_obj> </item> <item class_id_reference="20" object_id="_348"> <id>349</id> <edge_type>1</edge_type> <source_obj>27</source_obj> <sink_obj>81</sink_obj> </item> <item class_id_reference="20" object_id="_349"> <id>350</id> <edge_type>1</edge_type> <source_obj>80</source_obj> <sink_obj>81</sink_obj> </item> <item class_id_reference="20" object_id="_350"> <id>351</id> <edge_type>1</edge_type> <source_obj>81</source_obj> <sink_obj>82</sink_obj> </item> <item class_id_reference="20" object_id="_351"> <id>353</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>83</sink_obj> </item> <item class_id_reference="20" object_id="_352"> <id>354</id> <edge_type>1</edge_type> <source_obj>82</source_obj> <sink_obj>83</sink_obj> </item> <item class_id_reference="20" object_id="_353"> <id>355</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>84</sink_obj> </item> <item class_id_reference="20" object_id="_354"> <id>356</id> <edge_type>1</edge_type> <source_obj>228</source_obj> <sink_obj>84</sink_obj> </item> <item class_id_reference="20" object_id="_355"> <id>358</id> <edge_type>1</edge_type> <source_obj>357</source_obj> <sink_obj>84</sink_obj> </item> <item class_id_reference="20" object_id="_356"> <id>359</id> <edge_type>1</edge_type> <source_obj>84</source_obj> <sink_obj>85</sink_obj> </item> <item class_id_reference="20" object_id="_357"> <id>360</id> <edge_type>1</edge_type> <source_obj>85</source_obj> <sink_obj>86</sink_obj> </item> <item class_id_reference="20" object_id="_358"> <id>361</id> <edge_type>1</edge_type> <source_obj>34</source_obj> <sink_obj>87</sink_obj> </item> <item class_id_reference="20" object_id="_359"> <id>362</id> <edge_type>1</edge_type> <source_obj>86</source_obj> <sink_obj>87</sink_obj> </item> <item class_id_reference="20" object_id="_360"> <id>363</id> <edge_type>1</edge_type> <source_obj>87</source_obj> <sink_obj>88</sink_obj> </item> <item class_id_reference="20" object_id="_361"> <id>365</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>89</sink_obj> </item> <item class_id_reference="20" object_id="_362"> <id>366</id> <edge_type>1</edge_type> <source_obj>88</source_obj> <sink_obj>89</sink_obj> </item> <item class_id_reference="20" object_id="_363"> <id>367</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>90</sink_obj> </item> <item class_id_reference="20" object_id="_364"> <id>368</id> <edge_type>1</edge_type> <source_obj>228</source_obj> <sink_obj>90</sink_obj> </item> <item class_id_reference="20" object_id="_365"> <id>370</id> <edge_type>1</edge_type> <source_obj>369</source_obj> <sink_obj>90</sink_obj> </item> <item class_id_reference="20" object_id="_366"> <id>371</id> <edge_type>1</edge_type> <source_obj>90</source_obj> <sink_obj>91</sink_obj> </item> <item class_id_reference="20" object_id="_367"> <id>372</id> <edge_type>1</edge_type> <source_obj>91</source_obj> <sink_obj>92</sink_obj> </item> <item class_id_reference="20" object_id="_368"> <id>373</id> <edge_type>1</edge_type> <source_obj>41</source_obj> <sink_obj>93</sink_obj> </item> <item class_id_reference="20" object_id="_369"> <id>374</id> <edge_type>1</edge_type> <source_obj>92</source_obj> <sink_obj>93</sink_obj> </item> <item class_id_reference="20" object_id="_370"> <id>375</id> <edge_type>1</edge_type> <source_obj>93</source_obj> <sink_obj>94</sink_obj> </item> <item class_id_reference="20" object_id="_371"> <id>377</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>95</sink_obj> </item> <item class_id_reference="20" object_id="_372"> <id>378</id> <edge_type>1</edge_type> <source_obj>94</source_obj> <sink_obj>95</sink_obj> </item> <item class_id_reference="20" object_id="_373"> <id>379</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>96</sink_obj> </item> <item class_id_reference="20" object_id="_374"> <id>380</id> <edge_type>1</edge_type> <source_obj>228</source_obj> <sink_obj>96</sink_obj> </item> <item class_id_reference="20" object_id="_375"> <id>382</id> <edge_type>1</edge_type> <source_obj>381</source_obj> <sink_obj>96</sink_obj> </item> <item class_id_reference="20" object_id="_376"> <id>383</id> <edge_type>1</edge_type> <source_obj>96</source_obj> <sink_obj>97</sink_obj> </item> <item class_id_reference="20" object_id="_377"> <id>384</id> <edge_type>1</edge_type> <source_obj>97</source_obj> <sink_obj>98</sink_obj> </item> <item class_id_reference="20" object_id="_378"> <id>385</id> <edge_type>1</edge_type> <source_obj>48</source_obj> <sink_obj>99</sink_obj> </item> <item class_id_reference="20" object_id="_379"> <id>386</id> <edge_type>1</edge_type> <source_obj>98</source_obj> <sink_obj>99</sink_obj> </item> <item class_id_reference="20" object_id="_380"> <id>387</id> <edge_type>1</edge_type> <source_obj>99</source_obj> <sink_obj>100</sink_obj> </item> <item class_id_reference="20" object_id="_381"> <id>389</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>101</sink_obj> </item> <item class_id_reference="20" object_id="_382"> <id>390</id> <edge_type>1</edge_type> <source_obj>100</source_obj> <sink_obj>101</sink_obj> </item> <item class_id_reference="20" object_id="_383"> <id>391</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>102</sink_obj> </item> <item class_id_reference="20" object_id="_384"> <id>392</id> <edge_type>1</edge_type> <source_obj>228</source_obj> <sink_obj>102</sink_obj> </item> <item class_id_reference="20" object_id="_385"> <id>394</id> <edge_type>1</edge_type> <source_obj>393</source_obj> <sink_obj>102</sink_obj> </item> <item class_id_reference="20" object_id="_386"> <id>395</id> <edge_type>1</edge_type> <source_obj>102</source_obj> <sink_obj>103</sink_obj> </item> <item class_id_reference="20" object_id="_387"> <id>396</id> <edge_type>1</edge_type> <source_obj>103</source_obj> <sink_obj>104</sink_obj> </item> <item class_id_reference="20" object_id="_388"> <id>397</id> <edge_type>1</edge_type> <source_obj>55</source_obj> <sink_obj>105</sink_obj> </item> <item class_id_reference="20" object_id="_389"> <id>398</id> <edge_type>1</edge_type> <source_obj>104</source_obj> <sink_obj>105</sink_obj> </item> <item class_id_reference="20" object_id="_390"> <id>399</id> <edge_type>1</edge_type> <source_obj>105</source_obj> <sink_obj>106</sink_obj> </item> <item class_id_reference="20" object_id="_391"> <id>401</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>107</sink_obj> </item> <item class_id_reference="20" object_id="_392"> <id>402</id> <edge_type>1</edge_type> <source_obj>106</source_obj> <sink_obj>107</sink_obj> </item> <item class_id_reference="20" object_id="_393"> <id>403</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>108</sink_obj> </item> <item class_id_reference="20" object_id="_394"> <id>404</id> <edge_type>1</edge_type> <source_obj>228</source_obj> <sink_obj>108</sink_obj> </item> <item class_id_reference="20" object_id="_395"> <id>406</id> <edge_type>1</edge_type> <source_obj>405</source_obj> <sink_obj>108</sink_obj> </item> <item class_id_reference="20" object_id="_396"> <id>407</id> <edge_type>1</edge_type> <source_obj>108</source_obj> <sink_obj>109</sink_obj> </item> <item class_id_reference="20" object_id="_397"> <id>408</id> <edge_type>1</edge_type> <source_obj>109</source_obj> <sink_obj>110</sink_obj> </item> <item class_id_reference="20" object_id="_398"> <id>409</id> <edge_type>1</edge_type> <source_obj>62</source_obj> <sink_obj>111</sink_obj> </item> <item class_id_reference="20" object_id="_399"> <id>410</id> <edge_type>1</edge_type> <source_obj>110</source_obj> <sink_obj>111</sink_obj> </item> <item class_id_reference="20" object_id="_400"> <id>411</id> <edge_type>1</edge_type> <source_obj>111</source_obj> <sink_obj>112</sink_obj> </item> <item class_id_reference="20" object_id="_401"> <id>413</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>113</sink_obj> </item> <item class_id_reference="20" object_id="_402"> <id>414</id> <edge_type>1</edge_type> <source_obj>112</source_obj> <sink_obj>113</sink_obj> </item> <item class_id_reference="20" object_id="_403"> <id>415</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>114</sink_obj> </item> <item class_id_reference="20" object_id="_404"> <id>416</id> <edge_type>1</edge_type> <source_obj>228</source_obj> <sink_obj>114</sink_obj> </item> <item class_id_reference="20" object_id="_405"> <id>418</id> <edge_type>1</edge_type> <source_obj>417</source_obj> <sink_obj>114</sink_obj> </item> <item class_id_reference="20" object_id="_406"> <id>419</id> <edge_type>1</edge_type> <source_obj>114</source_obj> <sink_obj>115</sink_obj> </item> <item class_id_reference="20" object_id="_407"> <id>420</id> <edge_type>1</edge_type> <source_obj>115</source_obj> <sink_obj>116</sink_obj> </item> <item class_id_reference="20" object_id="_408"> <id>421</id> <edge_type>1</edge_type> <source_obj>69</source_obj> <sink_obj>117</sink_obj> </item> <item class_id_reference="20" object_id="_409"> <id>422</id> <edge_type>1</edge_type> <source_obj>116</source_obj> <sink_obj>117</sink_obj> </item> <item class_id_reference="20" object_id="_410"> <id>423</id> <edge_type>1</edge_type> <source_obj>117</source_obj> <sink_obj>118</sink_obj> </item> <item class_id_reference="20" object_id="_411"> <id>425</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>119</sink_obj> </item> <item class_id_reference="20" object_id="_412"> <id>426</id> <edge_type>1</edge_type> <source_obj>118</source_obj> <sink_obj>119</sink_obj> </item> <item class_id_reference="20" object_id="_413"> <id>427</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>120</sink_obj> </item> <item class_id_reference="20" object_id="_414"> <id>428</id> <edge_type>1</edge_type> <source_obj>228</source_obj> <sink_obj>120</sink_obj> </item> <item class_id_reference="20" object_id="_415"> <id>430</id> <edge_type>1</edge_type> <source_obj>429</source_obj> <sink_obj>120</sink_obj> </item> <item class_id_reference="20" object_id="_416"> <id>431</id> <edge_type>1</edge_type> <source_obj>120</source_obj> <sink_obj>121</sink_obj> </item> <item class_id_reference="20" object_id="_417"> <id>432</id> <edge_type>1</edge_type> <source_obj>121</source_obj> <sink_obj>122</sink_obj> </item> <item class_id_reference="20" object_id="_418"> <id>433</id> <edge_type>1</edge_type> <source_obj>75</source_obj> <sink_obj>123</sink_obj> </item> <item class_id_reference="20" object_id="_419"> <id>434</id> <edge_type>1</edge_type> <source_obj>122</source_obj> <sink_obj>123</sink_obj> </item> <item class_id_reference="20" object_id="_420"> <id>435</id> <edge_type>1</edge_type> <source_obj>123</source_obj> <sink_obj>124</sink_obj> </item> <item class_id_reference="20" object_id="_421"> <id>437</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>125</sink_obj> </item> <item class_id_reference="20" object_id="_422"> <id>438</id> <edge_type>1</edge_type> <source_obj>124</source_obj> <sink_obj>125</sink_obj> </item> <item class_id_reference="20" object_id="_423"> <id>439</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>126</sink_obj> </item> <item class_id_reference="20" object_id="_424"> <id>440</id> <edge_type>1</edge_type> <source_obj>228</source_obj> <sink_obj>126</sink_obj> </item> <item class_id_reference="20" object_id="_425"> <id>442</id> <edge_type>1</edge_type> <source_obj>441</source_obj> <sink_obj>126</sink_obj> </item> <item class_id_reference="20" object_id="_426"> <id>443</id> <edge_type>1</edge_type> <source_obj>126</source_obj> <sink_obj>127</sink_obj> </item> <item class_id_reference="20" object_id="_427"> <id>444</id> <edge_type>1</edge_type> <source_obj>127</source_obj> <sink_obj>128</sink_obj> </item> <item class_id_reference="20" object_id="_428"> <id>445</id> <edge_type>1</edge_type> <source_obj>81</source_obj> <sink_obj>129</sink_obj> </item> <item class_id_reference="20" object_id="_429"> <id>446</id> <edge_type>1</edge_type> <source_obj>128</source_obj> <sink_obj>129</sink_obj> </item> <item class_id_reference="20" object_id="_430"> <id>447</id> <edge_type>1</edge_type> <source_obj>129</source_obj> <sink_obj>130</sink_obj> </item> <item class_id_reference="20" object_id="_431"> <id>449</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>131</sink_obj> </item> <item class_id_reference="20" object_id="_432"> <id>450</id> <edge_type>1</edge_type> <source_obj>130</source_obj> <sink_obj>131</sink_obj> </item> <item class_id_reference="20" object_id="_433"> <id>451</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>132</sink_obj> </item> <item class_id_reference="20" object_id="_434"> <id>452</id> <edge_type>1</edge_type> <source_obj>228</source_obj> <sink_obj>132</sink_obj> </item> <item class_id_reference="20" object_id="_435"> <id>454</id> <edge_type>1</edge_type> <source_obj>453</source_obj> <sink_obj>132</sink_obj> </item> <item class_id_reference="20" object_id="_436"> <id>455</id> <edge_type>1</edge_type> <source_obj>132</source_obj> <sink_obj>133</sink_obj> </item> <item class_id_reference="20" object_id="_437"> <id>456</id> <edge_type>1</edge_type> <source_obj>133</source_obj> <sink_obj>134</sink_obj> </item> <item class_id_reference="20" object_id="_438"> <id>457</id> <edge_type>1</edge_type> <source_obj>87</source_obj> <sink_obj>135</sink_obj> </item> <item class_id_reference="20" object_id="_439"> <id>458</id> <edge_type>1</edge_type> <source_obj>134</source_obj> <sink_obj>135</sink_obj> </item> <item class_id_reference="20" object_id="_440"> <id>459</id> <edge_type>1</edge_type> <source_obj>135</source_obj> <sink_obj>136</sink_obj> </item> <item class_id_reference="20" object_id="_441"> <id>461</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>137</sink_obj> </item> <item class_id_reference="20" object_id="_442"> <id>462</id> <edge_type>1</edge_type> <source_obj>136</source_obj> <sink_obj>137</sink_obj> </item> <item class_id_reference="20" object_id="_443"> <id>463</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>138</sink_obj> </item> <item class_id_reference="20" object_id="_444"> <id>464</id> <edge_type>1</edge_type> <source_obj>228</source_obj> <sink_obj>138</sink_obj> </item> <item class_id_reference="20" object_id="_445"> <id>466</id> <edge_type>1</edge_type> <source_obj>465</source_obj> <sink_obj>138</sink_obj> </item> <item class_id_reference="20" object_id="_446"> <id>467</id> <edge_type>1</edge_type> <source_obj>138</source_obj> <sink_obj>139</sink_obj> </item> <item class_id_reference="20" object_id="_447"> <id>468</id> <edge_type>1</edge_type> <source_obj>139</source_obj> <sink_obj>140</sink_obj> </item> <item class_id_reference="20" object_id="_448"> <id>469</id> <edge_type>1</edge_type> <source_obj>93</source_obj> <sink_obj>141</sink_obj> </item> <item class_id_reference="20" object_id="_449"> <id>470</id> <edge_type>1</edge_type> <source_obj>140</source_obj> <sink_obj>141</sink_obj> </item> <item class_id_reference="20" object_id="_450"> <id>471</id> <edge_type>1</edge_type> <source_obj>141</source_obj> <sink_obj>142</sink_obj> </item> <item class_id_reference="20" object_id="_451"> <id>473</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>143</sink_obj> </item> <item class_id_reference="20" object_id="_452"> <id>474</id> <edge_type>1</edge_type> <source_obj>142</source_obj> <sink_obj>143</sink_obj> </item> <item class_id_reference="20" object_id="_453"> <id>475</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>144</sink_obj> </item> <item class_id_reference="20" object_id="_454"> <id>476</id> <edge_type>1</edge_type> <source_obj>228</source_obj> <sink_obj>144</sink_obj> </item> <item class_id_reference="20" object_id="_455"> <id>478</id> <edge_type>1</edge_type> <source_obj>477</source_obj> <sink_obj>144</sink_obj> </item> <item class_id_reference="20" object_id="_456"> <id>479</id> <edge_type>1</edge_type> <source_obj>144</source_obj> <sink_obj>145</sink_obj> </item> <item class_id_reference="20" object_id="_457"> <id>480</id> <edge_type>1</edge_type> <source_obj>145</source_obj> <sink_obj>146</sink_obj> </item> <item class_id_reference="20" object_id="_458"> <id>481</id> <edge_type>1</edge_type> <source_obj>99</source_obj> <sink_obj>147</sink_obj> </item> <item class_id_reference="20" object_id="_459"> <id>482</id> <edge_type>1</edge_type> <source_obj>146</source_obj> <sink_obj>147</sink_obj> </item> <item class_id_reference="20" object_id="_460"> <id>483</id> <edge_type>1</edge_type> <source_obj>147</source_obj> <sink_obj>148</sink_obj> </item> <item class_id_reference="20" object_id="_461"> <id>485</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>149</sink_obj> </item> <item class_id_reference="20" object_id="_462"> <id>486</id> <edge_type>1</edge_type> <source_obj>148</source_obj> <sink_obj>149</sink_obj> </item> <item class_id_reference="20" object_id="_463"> <id>487</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>150</sink_obj> </item> <item class_id_reference="20" object_id="_464"> <id>488</id> <edge_type>1</edge_type> <source_obj>228</source_obj> <sink_obj>150</sink_obj> </item> <item class_id_reference="20" object_id="_465"> <id>490</id> <edge_type>1</edge_type> <source_obj>489</source_obj> <sink_obj>150</sink_obj> </item> <item class_id_reference="20" object_id="_466"> <id>491</id> <edge_type>1</edge_type> <source_obj>150</source_obj> <sink_obj>151</sink_obj> </item> <item class_id_reference="20" object_id="_467"> <id>492</id> <edge_type>1</edge_type> <source_obj>151</source_obj> <sink_obj>152</sink_obj> </item> <item class_id_reference="20" object_id="_468"> <id>493</id> <edge_type>1</edge_type> <source_obj>105</source_obj> <sink_obj>153</sink_obj> </item> <item class_id_reference="20" object_id="_469"> <id>494</id> <edge_type>1</edge_type> <source_obj>152</source_obj> <sink_obj>153</sink_obj> </item> <item class_id_reference="20" object_id="_470"> <id>495</id> <edge_type>1</edge_type> <source_obj>153</source_obj> <sink_obj>154</sink_obj> </item> <item class_id_reference="20" object_id="_471"> <id>497</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>155</sink_obj> </item> <item class_id_reference="20" object_id="_472"> <id>498</id> <edge_type>1</edge_type> <source_obj>154</source_obj> <sink_obj>155</sink_obj> </item> <item class_id_reference="20" object_id="_473"> <id>499</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>156</sink_obj> </item> <item class_id_reference="20" object_id="_474"> <id>500</id> <edge_type>1</edge_type> <source_obj>228</source_obj> <sink_obj>156</sink_obj> </item> <item class_id_reference="20" object_id="_475"> <id>502</id> <edge_type>1</edge_type> <source_obj>501</source_obj> <sink_obj>156</sink_obj> </item> <item class_id_reference="20" object_id="_476"> <id>503</id> <edge_type>1</edge_type> <source_obj>156</source_obj> <sink_obj>157</sink_obj> </item> <item class_id_reference="20" object_id="_477"> <id>504</id> <edge_type>1</edge_type> <source_obj>157</source_obj> <sink_obj>158</sink_obj> </item> <item class_id_reference="20" object_id="_478"> <id>505</id> <edge_type>1</edge_type> <source_obj>111</source_obj> <sink_obj>159</sink_obj> </item> <item class_id_reference="20" object_id="_479"> <id>506</id> <edge_type>1</edge_type> <source_obj>158</source_obj> <sink_obj>159</sink_obj> </item> <item class_id_reference="20" object_id="_480"> <id>507</id> <edge_type>1</edge_type> <source_obj>159</source_obj> <sink_obj>160</sink_obj> </item> <item class_id_reference="20" object_id="_481"> <id>509</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>161</sink_obj> </item> <item class_id_reference="20" object_id="_482"> <id>510</id> <edge_type>1</edge_type> <source_obj>160</source_obj> <sink_obj>161</sink_obj> </item> <item class_id_reference="20" object_id="_483"> <id>511</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>162</sink_obj> </item> <item class_id_reference="20" object_id="_484"> <id>512</id> <edge_type>1</edge_type> <source_obj>228</source_obj> <sink_obj>162</sink_obj> </item> <item class_id_reference="20" object_id="_485"> <id>514</id> <edge_type>1</edge_type> <source_obj>513</source_obj> <sink_obj>162</sink_obj> </item> <item class_id_reference="20" object_id="_486"> <id>515</id> <edge_type>1</edge_type> <source_obj>162</source_obj> <sink_obj>163</sink_obj> </item> <item class_id_reference="20" object_id="_487"> <id>516</id> <edge_type>1</edge_type> <source_obj>163</source_obj> <sink_obj>164</sink_obj> </item> <item class_id_reference="20" object_id="_488"> <id>517</id> <edge_type>1</edge_type> <source_obj>117</source_obj> <sink_obj>165</sink_obj> </item> <item class_id_reference="20" object_id="_489"> <id>518</id> <edge_type>1</edge_type> <source_obj>164</source_obj> <sink_obj>165</sink_obj> </item> <item class_id_reference="20" object_id="_490"> <id>519</id> <edge_type>1</edge_type> <source_obj>165</source_obj> <sink_obj>166</sink_obj> </item> <item class_id_reference="20" object_id="_491"> <id>521</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>167</sink_obj> </item> <item class_id_reference="20" object_id="_492"> <id>522</id> <edge_type>1</edge_type> <source_obj>166</source_obj> <sink_obj>167</sink_obj> </item> <item class_id_reference="20" object_id="_493"> <id>523</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>168</sink_obj> </item> <item class_id_reference="20" object_id="_494"> <id>524</id> <edge_type>1</edge_type> <source_obj>228</source_obj> <sink_obj>168</sink_obj> </item> <item class_id_reference="20" object_id="_495"> <id>526</id> <edge_type>1</edge_type> <source_obj>525</source_obj> <sink_obj>168</sink_obj> </item> <item class_id_reference="20" object_id="_496"> <id>527</id> <edge_type>1</edge_type> <source_obj>168</source_obj> <sink_obj>169</sink_obj> </item> <item class_id_reference="20" object_id="_497"> <id>528</id> <edge_type>1</edge_type> <source_obj>169</source_obj> <sink_obj>170</sink_obj> </item> <item class_id_reference="20" object_id="_498"> <id>529</id> <edge_type>1</edge_type> <source_obj>123</source_obj> <sink_obj>171</sink_obj> </item> <item class_id_reference="20" object_id="_499"> <id>530</id> <edge_type>1</edge_type> <source_obj>170</source_obj> <sink_obj>171</sink_obj> </item> <item class_id_reference="20" object_id="_500"> <id>531</id> <edge_type>1</edge_type> <source_obj>171</source_obj> <sink_obj>172</sink_obj> </item> <item class_id_reference="20" object_id="_501"> <id>532</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>172</sink_obj> </item> <item class_id_reference="20" object_id="_502"> <id>533</id> <edge_type>1</edge_type> <source_obj>171</source_obj> <sink_obj>173</sink_obj> </item> <item class_id_reference="20" object_id="_503"> <id>535</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>174</sink_obj> </item> <item class_id_reference="20" object_id="_504"> <id>536</id> <edge_type>1</edge_type> <source_obj>173</source_obj> <sink_obj>174</sink_obj> </item> <item class_id_reference="20" object_id="_505"> <id>537</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>175</sink_obj> </item> <item class_id_reference="20" object_id="_506"> <id>538</id> <edge_type>1</edge_type> <source_obj>228</source_obj> <sink_obj>175</sink_obj> </item> <item class_id_reference="20" object_id="_507"> <id>540</id> <edge_type>1</edge_type> <source_obj>539</source_obj> <sink_obj>175</sink_obj> </item> <item class_id_reference="20" object_id="_508"> <id>541</id> <edge_type>1</edge_type> <source_obj>175</source_obj> <sink_obj>176</sink_obj> </item> <item class_id_reference="20" object_id="_509"> <id>542</id> <edge_type>1</edge_type> <source_obj>176</source_obj> <sink_obj>177</sink_obj> </item> <item class_id_reference="20" object_id="_510"> <id>543</id> <edge_type>1</edge_type> <source_obj>129</source_obj> <sink_obj>178</sink_obj> </item> <item class_id_reference="20" object_id="_511"> <id>544</id> <edge_type>1</edge_type> <source_obj>177</source_obj> <sink_obj>178</sink_obj> </item> <item class_id_reference="20" object_id="_512"> <id>545</id> <edge_type>1</edge_type> <source_obj>178</source_obj> <sink_obj>179</sink_obj> </item> <item class_id_reference="20" object_id="_513"> <id>546</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>179</sink_obj> </item> <item class_id_reference="20" object_id="_514"> <id>547</id> <edge_type>1</edge_type> <source_obj>178</source_obj> <sink_obj>180</sink_obj> </item> <item class_id_reference="20" object_id="_515"> <id>549</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>181</sink_obj> </item> <item class_id_reference="20" object_id="_516"> <id>550</id> <edge_type>1</edge_type> <source_obj>180</source_obj> <sink_obj>181</sink_obj> </item> <item class_id_reference="20" object_id="_517"> <id>551</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>182</sink_obj> </item> <item class_id_reference="20" object_id="_518"> <id>552</id> <edge_type>1</edge_type> <source_obj>228</source_obj> <sink_obj>182</sink_obj> </item> <item class_id_reference="20" object_id="_519"> <id>554</id> <edge_type>1</edge_type> <source_obj>553</source_obj> <sink_obj>182</sink_obj> </item> <item class_id_reference="20" object_id="_520"> <id>555</id> <edge_type>1</edge_type> <source_obj>182</source_obj> <sink_obj>183</sink_obj> </item> <item class_id_reference="20" object_id="_521"> <id>556</id> <edge_type>1</edge_type> <source_obj>183</source_obj> <sink_obj>184</sink_obj> </item> <item class_id_reference="20" object_id="_522"> <id>557</id> <edge_type>1</edge_type> <source_obj>135</source_obj> <sink_obj>185</sink_obj> </item> <item class_id_reference="20" object_id="_523"> <id>558</id> <edge_type>1</edge_type> <source_obj>184</source_obj> <sink_obj>185</sink_obj> </item> <item class_id_reference="20" object_id="_524"> <id>559</id> <edge_type>1</edge_type> <source_obj>185</source_obj> <sink_obj>186</sink_obj> </item> <item class_id_reference="20" object_id="_525"> <id>560</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>186</sink_obj> </item> <item class_id_reference="20" object_id="_526"> <id>561</id> <edge_type>1</edge_type> <source_obj>185</source_obj> <sink_obj>187</sink_obj> </item> <item class_id_reference="20" object_id="_527"> <id>563</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>188</sink_obj> </item> <item class_id_reference="20" object_id="_528"> <id>564</id> <edge_type>1</edge_type> <source_obj>187</source_obj> <sink_obj>188</sink_obj> </item> <item class_id_reference="20" object_id="_529"> <id>565</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>189</sink_obj> </item> <item class_id_reference="20" object_id="_530"> <id>566</id> <edge_type>1</edge_type> <source_obj>228</source_obj> <sink_obj>189</sink_obj> </item> <item class_id_reference="20" object_id="_531"> <id>568</id> <edge_type>1</edge_type> <source_obj>567</source_obj> <sink_obj>189</sink_obj> </item> <item class_id_reference="20" object_id="_532"> <id>569</id> <edge_type>1</edge_type> <source_obj>189</source_obj> <sink_obj>190</sink_obj> </item> <item class_id_reference="20" object_id="_533"> <id>570</id> <edge_type>1</edge_type> <source_obj>190</source_obj> <sink_obj>191</sink_obj> </item> <item class_id_reference="20" object_id="_534"> <id>571</id> <edge_type>1</edge_type> <source_obj>141</source_obj> <sink_obj>192</sink_obj> </item> <item class_id_reference="20" object_id="_535"> <id>572</id> <edge_type>1</edge_type> <source_obj>191</source_obj> <sink_obj>192</sink_obj> </item> <item class_id_reference="20" object_id="_536"> <id>573</id> <edge_type>1</edge_type> <source_obj>192</source_obj> <sink_obj>193</sink_obj> </item> <item class_id_reference="20" object_id="_537"> <id>574</id> <edge_type>1</edge_type> <source_obj>6</source_obj> <sink_obj>193</sink_obj> </item> <item class_id_reference="20" object_id="_538"> <id>575</id> <edge_type>1</edge_type> <source_obj>192</source_obj> <sink_obj>194</sink_obj> </item> <item class_id_reference="20" object_id="_539"> <id>577</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>195</sink_obj> </item> <item class_id_reference="20" object_id="_540"> <id>578</id> <edge_type>1</edge_type> <source_obj>194</source_obj> <sink_obj>195</sink_obj> </item> <item class_id_reference="20" object_id="_541"> <id>579</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>196</sink_obj> </item> <item class_id_reference="20" object_id="_542"> <id>580</id> <edge_type>1</edge_type> <source_obj>228</source_obj> <sink_obj>196</sink_obj> </item> <item class_id_reference="20" object_id="_543"> <id>582</id> <edge_type>1</edge_type> <source_obj>581</source_obj> <sink_obj>196</sink_obj> </item> <item class_id_reference="20" object_id="_544"> <id>583</id> <edge_type>1</edge_type> <source_obj>196</source_obj> <sink_obj>197</sink_obj> </item> <item class_id_reference="20" object_id="_545"> <id>584</id> <edge_type>1</edge_type> <source_obj>197</source_obj> <sink_obj>198</sink_obj> </item> <item class_id_reference="20" object_id="_546"> <id>585</id> <edge_type>1</edge_type> <source_obj>147</source_obj> <sink_obj>199</sink_obj> </item> <item class_id_reference="20" object_id="_547"> <id>586</id> <edge_type>1</edge_type> <source_obj>198</source_obj> <sink_obj>199</sink_obj> </item> <item class_id_reference="20" object_id="_548"> <id>587</id> <edge_type>1</edge_type> <source_obj>199</source_obj> <sink_obj>200</sink_obj> </item> <item class_id_reference="20" object_id="_549"> <id>588</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>200</sink_obj> </item> <item class_id_reference="20" object_id="_550"> <id>589</id> <edge_type>1</edge_type> <source_obj>199</source_obj> <sink_obj>201</sink_obj> </item> <item class_id_reference="20" object_id="_551"> <id>591</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>202</sink_obj> </item> <item class_id_reference="20" object_id="_552"> <id>592</id> <edge_type>1</edge_type> <source_obj>201</source_obj> <sink_obj>202</sink_obj> </item> <item class_id_reference="20" object_id="_553"> <id>593</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>203</sink_obj> </item> <item class_id_reference="20" object_id="_554"> <id>594</id> <edge_type>1</edge_type> <source_obj>228</source_obj> <sink_obj>203</sink_obj> </item> <item class_id_reference="20" object_id="_555"> <id>596</id> <edge_type>1</edge_type> <source_obj>595</source_obj> <sink_obj>203</sink_obj> </item> <item class_id_reference="20" object_id="_556"> <id>597</id> <edge_type>1</edge_type> <source_obj>203</source_obj> <sink_obj>204</sink_obj> </item> <item class_id_reference="20" object_id="_557"> <id>598</id> <edge_type>1</edge_type> <source_obj>204</source_obj> <sink_obj>205</sink_obj> </item> <item class_id_reference="20" object_id="_558"> <id>599</id> <edge_type>1</edge_type> <source_obj>153</source_obj> <sink_obj>206</sink_obj> </item> <item class_id_reference="20" object_id="_559"> <id>600</id> <edge_type>1</edge_type> <source_obj>205</source_obj> <sink_obj>206</sink_obj> </item> <item class_id_reference="20" object_id="_560"> <id>601</id> <edge_type>1</edge_type> <source_obj>206</source_obj> <sink_obj>207</sink_obj> </item> <item class_id_reference="20" object_id="_561"> <id>602</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>207</sink_obj> </item> <item class_id_reference="20" object_id="_562"> <id>603</id> <edge_type>1</edge_type> <source_obj>206</source_obj> <sink_obj>208</sink_obj> </item> <item class_id_reference="20" object_id="_563"> <id>605</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>209</sink_obj> </item> <item class_id_reference="20" object_id="_564"> <id>606</id> <edge_type>1</edge_type> <source_obj>208</source_obj> <sink_obj>209</sink_obj> </item> <item class_id_reference="20" object_id="_565"> <id>607</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>210</sink_obj> </item> <item class_id_reference="20" object_id="_566"> <id>608</id> <edge_type>1</edge_type> <source_obj>228</source_obj> <sink_obj>210</sink_obj> </item> <item class_id_reference="20" object_id="_567"> <id>610</id> <edge_type>1</edge_type> <source_obj>609</source_obj> <sink_obj>210</sink_obj> </item> <item class_id_reference="20" object_id="_568"> <id>611</id> <edge_type>1</edge_type> <source_obj>210</source_obj> <sink_obj>211</sink_obj> </item> <item class_id_reference="20" object_id="_569"> <id>612</id> <edge_type>1</edge_type> <source_obj>211</source_obj> <sink_obj>212</sink_obj> </item> <item class_id_reference="20" object_id="_570"> <id>613</id> <edge_type>1</edge_type> <source_obj>159</source_obj> <sink_obj>213</sink_obj> </item> <item class_id_reference="20" object_id="_571"> <id>614</id> <edge_type>1</edge_type> <source_obj>212</source_obj> <sink_obj>213</sink_obj> </item> <item class_id_reference="20" object_id="_572"> <id>615</id> <edge_type>1</edge_type> <source_obj>213</source_obj> <sink_obj>214</sink_obj> </item> <item class_id_reference="20" object_id="_573"> <id>616</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>214</sink_obj> </item> <item class_id_reference="20" object_id="_574"> <id>617</id> <edge_type>1</edge_type> <source_obj>213</source_obj> <sink_obj>215</sink_obj> </item> <item class_id_reference="20" object_id="_575"> <id>619</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>216</sink_obj> </item> <item class_id_reference="20" object_id="_576"> <id>620</id> <edge_type>1</edge_type> <source_obj>215</source_obj> <sink_obj>216</sink_obj> </item> <item class_id_reference="20" object_id="_577"> <id>621</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>217</sink_obj> </item> <item class_id_reference="20" object_id="_578"> <id>622</id> <edge_type>1</edge_type> <source_obj>228</source_obj> <sink_obj>217</sink_obj> </item> <item class_id_reference="20" object_id="_579"> <id>624</id> <edge_type>1</edge_type> <source_obj>623</source_obj> <sink_obj>217</sink_obj> </item> <item class_id_reference="20" object_id="_580"> <id>625</id> <edge_type>1</edge_type> <source_obj>217</source_obj> <sink_obj>218</sink_obj> </item> <item class_id_reference="20" object_id="_581"> <id>626</id> <edge_type>1</edge_type> <source_obj>218</source_obj> <sink_obj>219</sink_obj> </item> <item class_id_reference="20" object_id="_582"> <id>627</id> <edge_type>1</edge_type> <source_obj>165</source_obj> <sink_obj>220</sink_obj> </item> <item class_id_reference="20" object_id="_583"> <id>628</id> <edge_type>1</edge_type> <source_obj>219</source_obj> <sink_obj>220</sink_obj> </item> <item class_id_reference="20" object_id="_584"> <id>629</id> <edge_type>1</edge_type> <source_obj>220</source_obj> <sink_obj>221</sink_obj> </item> <item class_id_reference="20" object_id="_585"> <id>630</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>221</sink_obj> </item> <item class_id_reference="20" object_id="_586"> <id>631</id> <edge_type>1</edge_type> <source_obj>220</source_obj> <sink_obj>222</sink_obj> </item> <item class_id_reference="20" object_id="_587"> <id>633</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>223</sink_obj> </item> <item class_id_reference="20" object_id="_588"> <id>634</id> <edge_type>1</edge_type> <source_obj>222</source_obj> <sink_obj>223</sink_obj> </item> <item class_id_reference="20" object_id="_589"> <id>670</id> <edge_type>4</edge_type> <source_obj>216</source_obj> <sink_obj>223</sink_obj> </item> <item class_id_reference="20" object_id="_590"> <id>671</id> <edge_type>4</edge_type> <source_obj>209</source_obj> <sink_obj>216</sink_obj> </item> <item class_id_reference="20" object_id="_591"> <id>672</id> <edge_type>4</edge_type> <source_obj>202</source_obj> <sink_obj>209</sink_obj> </item> <item class_id_reference="20" object_id="_592"> <id>673</id> <edge_type>4</edge_type> <source_obj>195</source_obj> <sink_obj>202</sink_obj> </item> <item class_id_reference="20" object_id="_593"> <id>674</id> <edge_type>4</edge_type> <source_obj>188</source_obj> <sink_obj>195</sink_obj> </item> <item class_id_reference="20" object_id="_594"> <id>675</id> <edge_type>4</edge_type> <source_obj>181</source_obj> <sink_obj>188</sink_obj> </item> <item class_id_reference="20" object_id="_595"> <id>676</id> <edge_type>4</edge_type> <source_obj>174</source_obj> <sink_obj>181</sink_obj> </item> <item class_id_reference="20" object_id="_596"> <id>677</id> <edge_type>4</edge_type> <source_obj>167</source_obj> <sink_obj>174</sink_obj> </item> <item class_id_reference="20" object_id="_597"> <id>678</id> <edge_type>4</edge_type> <source_obj>161</source_obj> <sink_obj>167</sink_obj> </item> <item class_id_reference="20" object_id="_598"> <id>679</id> <edge_type>4</edge_type> <source_obj>155</source_obj> <sink_obj>161</sink_obj> </item> <item class_id_reference="20" object_id="_599"> <id>680</id> <edge_type>4</edge_type> <source_obj>149</source_obj> <sink_obj>155</sink_obj> </item> <item class_id_reference="20" object_id="_600"> <id>681</id> <edge_type>4</edge_type> <source_obj>143</source_obj> <sink_obj>149</sink_obj> </item> <item class_id_reference="20" object_id="_601"> <id>682</id> <edge_type>4</edge_type> <source_obj>137</source_obj> <sink_obj>143</sink_obj> </item> <item class_id_reference="20" object_id="_602"> <id>683</id> <edge_type>4</edge_type> <source_obj>131</source_obj> <sink_obj>137</sink_obj> </item> <item class_id_reference="20" object_id="_603"> <id>684</id> <edge_type>4</edge_type> <source_obj>125</source_obj> <sink_obj>131</sink_obj> </item> <item class_id_reference="20" object_id="_604"> <id>685</id> <edge_type>4</edge_type> <source_obj>119</source_obj> <sink_obj>125</sink_obj> </item> <item class_id_reference="20" object_id="_605"> <id>686</id> <edge_type>4</edge_type> <source_obj>113</source_obj> <sink_obj>119</sink_obj> </item> <item class_id_reference="20" object_id="_606"> <id>687</id> <edge_type>4</edge_type> <source_obj>107</source_obj> <sink_obj>113</sink_obj> </item> <item class_id_reference="20" object_id="_607"> <id>688</id> <edge_type>4</edge_type> <source_obj>101</source_obj> <sink_obj>107</sink_obj> </item> <item class_id_reference="20" object_id="_608"> <id>689</id> <edge_type>4</edge_type> <source_obj>95</source_obj> <sink_obj>101</sink_obj> </item> <item class_id_reference="20" object_id="_609"> <id>690</id> <edge_type>4</edge_type> <source_obj>89</source_obj> <sink_obj>95</sink_obj> </item> <item class_id_reference="20" object_id="_610"> <id>691</id> <edge_type>4</edge_type> <source_obj>83</source_obj> <sink_obj>89</sink_obj> </item> <item class_id_reference="20" object_id="_611"> <id>692</id> <edge_type>4</edge_type> <source_obj>77</source_obj> <sink_obj>83</sink_obj> </item> <item class_id_reference="20" object_id="_612"> <id>693</id> <edge_type>4</edge_type> <source_obj>71</source_obj> <sink_obj>77</sink_obj> </item> <item class_id_reference="20" object_id="_613"> <id>694</id> <edge_type>4</edge_type> <source_obj>65</source_obj> <sink_obj>221</sink_obj> </item> <item class_id_reference="20" object_id="_614"> <id>695</id> <edge_type>4</edge_type> <source_obj>64</source_obj> <sink_obj>71</sink_obj> </item> <item class_id_reference="20" object_id="_615"> <id>696</id> <edge_type>4</edge_type> <source_obj>58</source_obj> <sink_obj>214</sink_obj> </item> <item class_id_reference="20" object_id="_616"> <id>697</id> <edge_type>4</edge_type> <source_obj>57</source_obj> <sink_obj>64</sink_obj> </item> <item class_id_reference="20" object_id="_617"> <id>698</id> <edge_type>4</edge_type> <source_obj>51</source_obj> <sink_obj>207</sink_obj> </item> <item class_id_reference="20" object_id="_618"> <id>699</id> <edge_type>4</edge_type> <source_obj>50</source_obj> <sink_obj>57</sink_obj> </item> <item class_id_reference="20" object_id="_619"> <id>700</id> <edge_type>4</edge_type> <source_obj>44</source_obj> <sink_obj>200</sink_obj> </item> <item class_id_reference="20" object_id="_620"> <id>701</id> <edge_type>4</edge_type> <source_obj>43</source_obj> <sink_obj>50</sink_obj> </item> <item class_id_reference="20" object_id="_621"> <id>702</id> <edge_type>4</edge_type> <source_obj>37</source_obj> <sink_obj>193</sink_obj> </item> <item class_id_reference="20" object_id="_622"> <id>703</id> <edge_type>4</edge_type> <source_obj>36</source_obj> <sink_obj>43</sink_obj> </item> <item class_id_reference="20" object_id="_623"> <id>704</id> <edge_type>4</edge_type> <source_obj>30</source_obj> <sink_obj>186</sink_obj> </item> <item class_id_reference="20" object_id="_624"> <id>705</id> <edge_type>4</edge_type> <source_obj>29</source_obj> <sink_obj>36</sink_obj> </item> <item class_id_reference="20" object_id="_625"> <id>706</id> <edge_type>4</edge_type> <source_obj>23</source_obj> <sink_obj>179</sink_obj> </item> <item class_id_reference="20" object_id="_626"> <id>707</id> <edge_type>4</edge_type> <source_obj>22</source_obj> <sink_obj>29</sink_obj> </item> <item class_id_reference="20" object_id="_627"> <id>708</id> <edge_type>4</edge_type> <source_obj>16</source_obj> <sink_obj>172</sink_obj> </item> </edges> </cdfg> <cdfg_regions class_id="21" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="22" tracking_level="1" version="0" object_id="_628"> <mId>1</mId> <mTag>array_io</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>225</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>33</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="_629"> <states class_id="25" tracking_level="0" version="0"> <count>34</count> <item_version>0</item_version> <item class_id="26" tracking_level="1" version="0" object_id="_630"> <id>1</id> <operations class_id="27" tracking_level="0" version="0"> <count>2</count> <item_version>0</item_version> <item class_id="28" tracking_level="1" version="0" object_id="_631"> <id>17</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_632"> <id>18</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_633"> <id>2</id> <operations> <count>3</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_634"> <id>18</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_635"> <id>24</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_636"> <id>25</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_637"> <id>3</id> <operations> <count>8</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_638"> <id>16</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_639"> <id>19</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_640"> <id>20</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_641"> <id>21</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_642"> <id>22</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_643"> <id>25</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_644"> <id>31</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_645"> <id>32</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_646"> <id>4</id> <operations> <count>8</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_647"> <id>23</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_648"> <id>26</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_649"> <id>27</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_650"> <id>28</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_651"> <id>29</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_652"> <id>32</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_653"> <id>38</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_654"> <id>39</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_655"> <id>5</id> <operations> <count>8</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_656"> <id>30</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_657"> <id>33</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_658"> <id>34</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_659"> <id>35</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_660"> <id>36</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_661"> <id>39</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_662"> <id>45</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_663"> <id>46</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_664"> <id>6</id> <operations> <count>8</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_665"> <id>37</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_666"> <id>40</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_667"> <id>41</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_668"> <id>42</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_669"> <id>43</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_670"> <id>46</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_671"> <id>52</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_672"> <id>53</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_673"> <id>7</id> <operations> <count>8</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_674"> <id>44</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_675"> <id>47</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_676"> <id>48</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_677"> <id>49</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_678"> <id>50</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_679"> <id>53</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_680"> <id>59</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_681"> <id>60</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_682"> <id>8</id> <operations> <count>8</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_683"> <id>51</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_684"> <id>54</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_685"> <id>55</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_686"> <id>56</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_687"> <id>57</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_688"> <id>60</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_689"> <id>66</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_690"> <id>67</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_691"> <id>9</id> <operations> <count>8</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_692"> <id>58</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_693"> <id>61</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_694"> <id>62</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_695"> <id>63</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_696"> <id>64</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_697"> <id>67</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_698"> <id>72</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_699"> <id>73</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_700"> <id>10</id> <operations> <count>8</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_701"> <id>65</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_702"> <id>68</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_703"> <id>69</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_704"> <id>70</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_705"> <id>71</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_706"> <id>73</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_707"> <id>78</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_708"> <id>79</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_709"> <id>11</id> <operations> <count>7</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_710"> <id>74</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_711"> <id>75</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_712"> <id>76</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_713"> <id>77</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_714"> <id>79</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_715"> <id>84</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_716"> <id>85</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_717"> <id>12</id> <operations> <count>7</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_718"> <id>80</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_719"> <id>81</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_720"> <id>82</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_721"> <id>83</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_722"> <id>85</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_723"> <id>90</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_724"> <id>91</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_725"> <id>13</id> <operations> <count>7</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_726"> <id>86</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_727"> <id>87</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_728"> <id>88</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_729"> <id>89</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_730"> <id>91</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_731"> <id>96</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_732"> <id>97</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_733"> <id>14</id> <operations> <count>7</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_734"> <id>92</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_735"> <id>93</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_736"> <id>94</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_737"> <id>95</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_738"> <id>97</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_739"> <id>102</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_740"> <id>103</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_741"> <id>15</id> <operations> <count>7</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_742"> <id>98</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_743"> <id>99</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_744"> <id>100</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_745"> <id>101</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_746"> <id>103</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_747"> <id>108</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_748"> <id>109</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_749"> <id>16</id> <operations> <count>7</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_750"> <id>104</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_751"> <id>105</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_752"> <id>106</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_753"> <id>107</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_754"> <id>109</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_755"> <id>114</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_756"> <id>115</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_757"> <id>17</id> <operations> <count>7</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_758"> <id>110</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_759"> <id>111</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_760"> <id>112</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_761"> <id>113</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_762"> <id>115</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_763"> <id>120</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_764"> <id>121</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_765"> <id>18</id> <operations> <count>9</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_766"> <id>116</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_767"> <id>117</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_768"> <id>118</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_769"> <id>119</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_770"> <id>121</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_771"> <id>126</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_772"> <id>127</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_773"> <id>132</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_774"> <id>133</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_775"> <id>19</id> <operations> <count>10</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_776"> <id>122</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_777"> <id>123</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_778"> <id>124</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_779"> <id>125</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_780"> <id>127</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_781"> <id>133</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_782"> <id>138</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_783"> <id>139</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_784"> <id>144</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_785"> <id>145</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_786"> <id>20</id> <operations> <count>10</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_787"> <id>128</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_788"> <id>129</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_789"> <id>130</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_790"> <id>131</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_791"> <id>139</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_792"> <id>145</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_793"> <id>150</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_794"> <id>151</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_795"> <id>156</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_796"> <id>157</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_797"> <id>21</id> <operations> <count>10</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_798"> <id>134</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_799"> <id>135</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_800"> <id>136</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_801"> <id>137</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_802"> <id>151</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_803"> <id>157</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_804"> <id>162</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_805"> <id>163</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_806"> <id>168</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_807"> <id>169</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_808"> <id>22</id> <operations> <count>10</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_809"> <id>140</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_810"> <id>141</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_811"> <id>142</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_812"> <id>143</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_813"> <id>163</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_814"> <id>169</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_815"> <id>175</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_816"> <id>176</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_817"> <id>182</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_818"> <id>183</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_819"> <id>23</id> <operations> <count>14</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_820"> <id>146</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_821"> <id>147</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_822"> <id>148</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_823"> <id>149</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_824"> <id>170</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_825"> <id>171</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_826"> <id>172</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_827"> <id>173</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_828"> <id>176</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_829"> <id>183</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_830"> <id>189</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_831"> <id>190</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_832"> <id>196</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_833"> <id>197</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_834"> <id>24</id> <operations> <count>18</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_835"> <id>152</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_836"> <id>153</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_837"> <id>154</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_838"> <id>155</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_839"> <id>177</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_840"> <id>178</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_841"> <id>179</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_842"> <id>180</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_843"> <id>184</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_844"> <id>185</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_845"> <id>186</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_846"> <id>187</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_847"> <id>190</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_848"> <id>197</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_849"> <id>203</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_850"> <id>204</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_851"> <id>210</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_852"> <id>211</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_853"> <id>25</id> <operations> <count>16</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_854"> <id>158</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_855"> <id>159</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_856"> <id>160</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_857"> <id>161</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_858"> <id>191</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_859"> <id>192</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_860"> <id>193</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_861"> <id>194</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_862"> <id>198</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_863"> <id>199</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_864"> <id>200</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_865"> <id>201</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_866"> <id>204</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_867"> <id>211</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_868"> <id>217</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_869"> <id>218</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_870"> <id>26</id> <operations> <count>13</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_871"> <id>164</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_872"> <id>165</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_873"> <id>166</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_874"> <id>167</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_875"> <id>205</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_876"> <id>206</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_877"> <id>207</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_878"> <id>208</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_879"> <id>212</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_880"> <id>213</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_881"> <id>214</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_882"> <id>215</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_883"> <id>218</id> <stage>1</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_884"> <id>27</id> <operations> <count>5</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_885"> <id>174</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_886"> <id>219</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_887"> <id>220</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_888"> <id>221</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_889"> <id>222</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_890"> <id>28</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_891"> <id>181</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_892"> <id>29</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_893"> <id>188</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_894"> <id>30</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_895"> <id>195</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_896"> <id>31</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_897"> <id>202</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_898"> <id>32</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_899"> <id>209</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_900"> <id>33</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_901"> <id>216</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_902"> <id>34</id> <operations> <count>7</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_903"> <id>11</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_904"> <id>12</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_905"> <id>13</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_906"> <id>14</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_907"> <id>15</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_908"> <id>223</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_909"> <id>224</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> </states> <transitions class_id="29" tracking_level="0" version="0"> <count>33</count> <item_version>0</item_version> <item class_id="30" tracking_level="1" version="0" object_id="_910"> <inState>1</inState> <outState>2</outState> <condition class_id="31" tracking_level="0" version="0"> <id>34</id> <sop class_id="32" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="33" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_911"> <inState>2</inState> <outState>3</outState> <condition> <id>35</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_912"> <inState>3</inState> <outState>4</outState> <condition> <id>36</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_913"> <inState>4</inState> <outState>5</outState> <condition> <id>37</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_914"> <inState>5</inState> <outState>6</outState> <condition> <id>38</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_915"> <inState>6</inState> <outState>7</outState> <condition> <id>39</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_916"> <inState>7</inState> <outState>8</outState> <condition> <id>40</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_917"> <inState>8</inState> <outState>9</outState> <condition> <id>41</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_918"> <inState>9</inState> <outState>10</outState> <condition> <id>42</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_919"> <inState>10</inState> <outState>11</outState> <condition> <id>43</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_920"> <inState>11</inState> <outState>12</outState> <condition> <id>44</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_921"> <inState>12</inState> <outState>13</outState> <condition> <id>45</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_922"> <inState>13</inState> <outState>14</outState> <condition> <id>46</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_923"> <inState>14</inState> <outState>15</outState> <condition> <id>47</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_924"> <inState>15</inState> <outState>16</outState> <condition> <id>48</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_925"> <inState>16</inState> <outState>17</outState> <condition> <id>49</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_926"> <inState>17</inState> <outState>18</outState> <condition> <id>50</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_927"> <inState>18</inState> <outState>19</outState> <condition> <id>51</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_928"> <inState>19</inState> <outState>20</outState> <condition> <id>52</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_929"> <inState>20</inState> <outState>21</outState> <condition> <id>53</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_930"> <inState>21</inState> <outState>22</outState> <condition> <id>54</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_931"> <inState>22</inState> <outState>23</outState> <condition> <id>55</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_932"> <inState>23</inState> <outState>24</outState> <condition> <id>56</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_933"> <inState>24</inState> <outState>25</outState> <condition> <id>57</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_934"> <inState>25</inState> <outState>26</outState> <condition> <id>58</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_935"> <inState>26</inState> <outState>27</outState> <condition> <id>59</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_936"> <inState>27</inState> <outState>28</outState> <condition> <id>60</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_937"> <inState>28</inState> <outState>29</outState> <condition> <id>61</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_938"> <inState>29</inState> <outState>30</outState> <condition> <id>62</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_939"> <inState>30</inState> <outState>31</outState> <condition> <id>63</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_940"> <inState>31</inState> <outState>32</outState> <condition> <id>64</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_941"> <inState>32</inState> <outState>33</outState> <condition> <id>65</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_942"> <inState>33</inState> <outState>34</outState> <condition> <id>66</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> </transitions> </fsm> <res class_id="34" tracking_level="1" version="0" object_id="_943"> <dp_component_resource class_id="35" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_component_resource> <dp_expression_resource> <count>0</count> <item_version>0</item_version> </dp_expression_resource> <dp_fifo_resource> <count>0</count> <item_version>0</item_version> </dp_fifo_resource> <dp_memory_resource> <count>0</count> <item_version>0</item_version> </dp_memory_resource> <dp_multiplexer_resource> <count>0</count> <item_version>0</item_version> </dp_multiplexer_resource> <dp_register_resource> <count>0</count> <item_version>0</item_version> </dp_register_resource> <dp_component_map class_id="36" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_component_map> <dp_expression_map> <count>0</count> <item_version>0</item_version> </dp_expression_map> <dp_fifo_map> <count>0</count> <item_version>0</item_version> </dp_fifo_map> <dp_memory_map> <count>0</count> <item_version>0</item_version> </dp_memory_map> </res> <node_label_latency class_id="37" tracking_level="0" version="0"> <count>209</count> <item_version>0</item_version> <item class_id="38" tracking_level="0" version="0"> <first>16</first> <second class_id="39" tracking_level="0" version="0"> <first>2</first> <second>0</second> </second> </item> <item> <first>17</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>18</first> <second> <first>0</first> <second>1</second> </second> </item> <item> <first>19</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>20</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>21</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>22</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>23</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>24</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>25</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>26</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>27</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>28</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>29</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>30</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>31</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>32</first> <second> <first>2</first> <second>1</second> </second> </item> <item> <first>33</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>34</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>35</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>36</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>37</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>38</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>39</first> <second> <first>3</first> <second>1</second> </second> </item> <item> <first>40</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>41</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>42</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>43</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>44</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>45</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>46</first> <second> <first>4</first> <second>1</second> </second> </item> <item> <first>47</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>48</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>49</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>50</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>51</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>52</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>53</first> <second> <first>5</first> <second>1</second> </second> </item> <item> <first>54</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>55</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>56</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>57</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>58</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>59</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>60</first> <second> <first>6</first> <second>1</second> </second> </item> <item> <first>61</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>62</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>63</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>64</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>65</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>66</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>67</first> <second> <first>7</first> <second>1</second> </second> </item> <item> <first>68</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>69</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>70</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>71</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>72</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>73</first> <second> <first>8</first> <second>1</second> </second> </item> <item> <first>74</first> <second> <first>10</first> <second>0</second> </second> </item> <item> <first>75</first> <second> <first>10</first> <second>0</second> </second> </item> <item> <first>76</first> <second> <first>10</first> <second>0</second> </second> </item> <item> <first>77</first> <second> <first>10</first> <second>0</second> </second> </item> <item> <first>78</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>79</first> <second> <first>9</first> <second>1</second> </second> </item> <item> <first>80</first> <second> <first>11</first> <second>0</second> </second> </item> <item> <first>81</first> <second> <first>11</first> <second>0</second> </second> </item> <item> <first>82</first> <second> <first>11</first> <second>0</second> </second> </item> <item> <first>83</first> <second> <first>11</first> <second>0</second> </second> </item> <item> <first>84</first> <second> <first>10</first> <second>0</second> </second> </item> <item> <first>85</first> <second> <first>10</first> <second>1</second> </second> </item> <item> <first>86</first> <second> <first>12</first> <second>0</second> </second> </item> <item> <first>87</first> <second> <first>12</first> <second>0</second> </second> </item> <item> <first>88</first> <second> <first>12</first> <second>0</second> </second> </item> <item> <first>89</first> <second> <first>12</first> <second>0</second> </second> </item> <item> <first>90</first> <second> <first>11</first> <second>0</second> </second> </item> <item> <first>91</first> <second> <first>11</first> <second>1</second> </second> </item> <item> <first>92</first> <second> <first>13</first> <second>0</second> </second> </item> <item> <first>93</first> <second> <first>13</first> <second>0</second> </second> </item> <item> <first>94</first> <second> <first>13</first> <second>0</second> </second> </item> <item> <first>95</first> <second> <first>13</first> <second>0</second> </second> </item> <item> <first>96</first> <second> <first>12</first> <second>0</second> </second> </item> <item> <first>97</first> <second> <first>12</first> <second>1</second> </second> </item> <item> <first>98</first> <second> <first>14</first> <second>0</second> </second> </item> <item> <first>99</first> <second> <first>14</first> <second>0</second> </second> </item> <item> <first>100</first> <second> <first>14</first> <second>0</second> </second> </item> <item> <first>101</first> <second> <first>14</first> <second>0</second> </second> </item> <item> <first>102</first> <second> <first>13</first> <second>0</second> </second> </item> <item> <first>103</first> <second> <first>13</first> <second>1</second> </second> </item> <item> <first>104</first> <second> <first>15</first> <second>0</second> </second> </item> <item> <first>105</first> <second> <first>15</first> <second>0</second> </second> </item> <item> <first>106</first> <second> <first>15</first> <second>0</second> </second> </item> <item> <first>107</first> <second> <first>15</first> <second>0</second> </second> </item> <item> <first>108</first> <second> <first>14</first> <second>0</second> </second> </item> <item> <first>109</first> <second> <first>14</first> <second>1</second> </second> </item> <item> <first>110</first> <second> <first>16</first> <second>0</second> </second> </item> <item> <first>111</first> <second> <first>16</first> <second>0</second> </second> </item> <item> <first>112</first> <second> <first>16</first> <second>0</second> </second> </item> <item> <first>113</first> <second> <first>16</first> <second>0</second> </second> </item> <item> <first>114</first> <second> <first>15</first> <second>0</second> </second> </item> <item> <first>115</first> <second> <first>15</first> <second>1</second> </second> </item> <item> <first>116</first> <second> <first>17</first> <second>0</second> </second> </item> <item> <first>117</first> <second> <first>17</first> <second>0</second> </second> </item> <item> <first>118</first> <second> <first>17</first> <second>0</second> </second> </item> <item> <first>119</first> <second> <first>17</first> <second>0</second> </second> </item> <item> <first>120</first> <second> <first>16</first> <second>0</second> </second> </item> <item> <first>121</first> <second> <first>16</first> <second>1</second> </second> </item> <item> <first>122</first> <second> <first>18</first> <second>0</second> </second> </item> <item> <first>123</first> <second> <first>18</first> <second>0</second> </second> </item> <item> <first>124</first> <second> <first>18</first> <second>0</second> </second> </item> <item> <first>125</first> <second> <first>18</first> <second>0</second> </second> </item> <item> <first>126</first> <second> <first>17</first> <second>0</second> </second> </item> <item> <first>127</first> <second> <first>17</first> <second>1</second> </second> </item> <item> <first>128</first> <second> <first>19</first> <second>0</second> </second> </item> <item> <first>129</first> <second> <first>19</first> <second>0</second> </second> </item> <item> <first>130</first> <second> <first>19</first> <second>0</second> </second> </item> <item> <first>131</first> <second> <first>19</first> <second>0</second> </second> </item> <item> <first>132</first> <second> <first>17</first> <second>0</second> </second> </item> <item> <first>133</first> <second> <first>17</first> <second>1</second> </second> </item> <item> <first>134</first> <second> <first>20</first> <second>0</second> </second> </item> <item> <first>135</first> <second> <first>20</first> <second>0</second> </second> </item> <item> <first>136</first> <second> <first>20</first> <second>0</second> </second> </item> <item> <first>137</first> <second> <first>20</first> <second>0</second> </second> </item> <item> <first>138</first> <second> <first>18</first> <second>0</second> </second> </item> <item> <first>139</first> <second> <first>18</first> <second>1</second> </second> </item> <item> <first>140</first> <second> <first>21</first> <second>0</second> </second> </item> <item> <first>141</first> <second> <first>21</first> <second>0</second> </second> </item> <item> <first>142</first> <second> <first>21</first> <second>0</second> </second> </item> <item> <first>143</first> <second> <first>21</first> <second>0</second> </second> </item> <item> <first>144</first> <second> <first>18</first> <second>0</second> </second> </item> <item> <first>145</first> <second> <first>18</first> <second>1</second> </second> </item> <item> <first>146</first> <second> <first>22</first> <second>0</second> </second> </item> <item> <first>147</first> <second> <first>22</first> <second>0</second> </second> </item> <item> <first>148</first> <second> <first>22</first> <second>0</second> </second> </item> <item> <first>149</first> <second> <first>22</first> <second>0</second> </second> </item> <item> <first>150</first> <second> <first>19</first> <second>0</second> </second> </item> <item> <first>151</first> <second> <first>19</first> <second>1</second> </second> </item> <item> <first>152</first> <second> <first>23</first> <second>0</second> </second> </item> <item> <first>153</first> <second> <first>23</first> <second>0</second> </second> </item> <item> <first>154</first> <second> <first>23</first> <second>0</second> </second> </item> <item> <first>155</first> <second> <first>23</first> <second>0</second> </second> </item> <item> <first>156</first> <second> <first>19</first> <second>0</second> </second> </item> <item> <first>157</first> <second> <first>19</first> <second>1</second> </second> </item> <item> <first>158</first> <second> <first>24</first> <second>0</second> </second> </item> <item> <first>159</first> <second> <first>24</first> <second>0</second> </second> </item> <item> <first>160</first> <second> <first>24</first> <second>0</second> </second> </item> <item> <first>161</first> <second> <first>24</first> <second>0</second> </second> </item> <item> <first>162</first> <second> <first>20</first> <second>0</second> </second> </item> <item> <first>163</first> <second> <first>20</first> <second>1</second> </second> </item> <item> <first>164</first> <second> <first>25</first> <second>0</second> </second> </item> <item> <first>165</first> <second> <first>25</first> <second>0</second> </second> </item> <item> <first>166</first> <second> <first>25</first> <second>0</second> </second> </item> <item> <first>167</first> <second> <first>25</first> <second>0</second> </second> </item> <item> <first>168</first> <second> <first>20</first> <second>0</second> </second> </item> <item> <first>169</first> <second> <first>20</first> <second>1</second> </second> </item> <item> <first>170</first> <second> <first>22</first> <second>0</second> </second> </item> <item> <first>171</first> <second> <first>22</first> <second>0</second> </second> </item> <item> <first>172</first> <second> <first>22</first> <second>0</second> </second> </item> <item> <first>173</first> <second> <first>22</first> <second>0</second> </second> </item> <item> <first>174</first> <second> <first>26</first> <second>0</second> </second> </item> <item> <first>175</first> <second> <first>21</first> <second>0</second> </second> </item> <item> <first>176</first> <second> <first>21</first> <second>1</second> </second> </item> <item> <first>177</first> <second> <first>23</first> <second>0</second> </second> </item> <item> <first>178</first> <second> <first>23</first> <second>0</second> </second> </item> <item> <first>179</first> <second> <first>23</first> <second>0</second> </second> </item> <item> <first>180</first> <second> <first>23</first> <second>0</second> </second> </item> <item> <first>181</first> <second> <first>27</first> <second>0</second> </second> </item> <item> <first>182</first> <second> <first>21</first> <second>0</second> </second> </item> <item> <first>183</first> <second> <first>21</first> <second>1</second> </second> </item> <item> <first>184</first> <second> <first>23</first> <second>0</second> </second> </item> <item> <first>185</first> <second> <first>23</first> <second>0</second> </second> </item> <item> <first>186</first> <second> <first>23</first> <second>0</second> </second> </item> <item> <first>187</first> <second> <first>23</first> <second>0</second> </second> </item> <item> <first>188</first> <second> <first>28</first> <second>0</second> </second> </item> <item> <first>189</first> <second> <first>22</first> <second>0</second> </second> </item> <item> <first>190</first> <second> <first>22</first> <second>1</second> </second> </item> <item> <first>191</first> <second> <first>24</first> <second>0</second> </second> </item> <item> <first>192</first> <second> <first>24</first> <second>0</second> </second> </item> <item> <first>193</first> <second> <first>24</first> <second>0</second> </second> </item> <item> <first>194</first> <second> <first>24</first> <second>0</second> </second> </item> <item> <first>195</first> <second> <first>29</first> <second>0</second> </second> </item> <item> <first>196</first> <second> <first>22</first> <second>0</second> </second> </item> <item> <first>197</first> <second> <first>22</first> <second>1</second> </second> </item> <item> <first>198</first> <second> <first>24</first> <second>0</second> </second> </item> <item> <first>199</first> <second> <first>24</first> <second>0</second> </second> </item> <item> <first>200</first> <second> <first>24</first> <second>0</second> </second> </item> <item> <first>201</first> <second> <first>24</first> <second>0</second> </second> </item> <item> <first>202</first> <second> <first>30</first> <second>0</second> </second> </item> <item> <first>203</first> <second> <first>23</first> <second>0</second> </second> </item> <item> <first>204</first> <second> <first>23</first> <second>1</second> </second> </item> <item> <first>205</first> <second> <first>25</first> <second>0</second> </second> </item> <item> <first>206</first> <second> <first>25</first> <second>0</second> </second> </item> <item> <first>207</first> <second> <first>25</first> <second>0</second> </second> </item> <item> <first>208</first> <second> <first>25</first> <second>0</second> </second> </item> <item> <first>209</first> <second> <first>31</first> <second>0</second> </second> </item> <item> <first>210</first> <second> <first>23</first> <second>0</second> </second> </item> <item> <first>211</first> <second> <first>23</first> <second>1</second> </second> </item> <item> <first>212</first> <second> <first>25</first> <second>0</second> </second> </item> <item> <first>213</first> <second> <first>25</first> <second>0</second> </second> </item> <item> <first>214</first> <second> <first>25</first> <second>0</second> </second> </item> <item> <first>215</first> <second> <first>25</first> <second>0</second> </second> </item> <item> <first>216</first> <second> <first>32</first> <second>0</second> </second> </item> <item> <first>217</first> <second> <first>24</first> <second>0</second> </second> </item> <item> <first>218</first> <second> <first>24</first> <second>1</second> </second> </item> <item> <first>219</first> <second> <first>26</first> <second>0</second> </second> </item> <item> <first>220</first> <second> <first>26</first> <second>0</second> </second> </item> <item> <first>221</first> <second> <first>26</first> <second>0</second> </second> </item> <item> <first>222</first> <second> <first>26</first> <second>0</second> </second> </item> <item> <first>223</first> <second> <first>33</first> <second>0</second> </second> </item> <item> <first>224</first> <second> <first>33</first> <second>0</second> </second> </item> </node_label_latency> <bblk_ent_exit class_id="40" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="41" tracking_level="0" version="0"> <first>225</first> <second class_id="42" tracking_level="0" version="0"> <first>0</first> <second>33</second> </second> </item> </bblk_ent_exit> <regions class_id="43" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </regions> <dp_fu_nodes class_id="44" tracking_level="0" version="0"> <count>146</count> <item_version>0</item_version> <item class_id="45" tracking_level="0" version="0"> <first>106</first> <second> <count>32</count> <item_version>0</item_version> <item>22</item> <item>29</item> <item>36</item> <item>43</item> <item>50</item> <item>57</item> <item>64</item> <item>71</item> <item>77</item> <item>83</item> <item>89</item> <item>95</item> <item>101</item> <item>107</item> <item>113</item> <item>119</item> <item>125</item> <item>131</item> <item>137</item> <item>143</item> <item>149</item> <item>155</item> <item>161</item> <item>167</item> <item>174</item> <item>181</item> <item>188</item> <item>195</item> <item>202</item> <item>209</item> <item>216</item> <item>223</item> </second> </item> <item> <first>113</first> <second> <count>1</count> <item_version>0</item_version> <item>17</item> </second> </item> <item> <first>121</first> <second> <count>64</count> <item_version>0</item_version> <item>18</item> <item>18</item> <item>25</item> <item>25</item> <item>32</item> <item>32</item> <item>39</item> <item>39</item> <item>46</item> <item>46</item> <item>53</item> <item>53</item> <item>60</item> <item>60</item> <item>67</item> <item>67</item> <item>73</item> <item>73</item> <item>79</item> <item>79</item> <item>85</item> <item>85</item> <item>91</item> <item>91</item> <item>97</item> <item>97</item> <item>103</item> <item>103</item> <item>109</item> <item>109</item> <item>115</item> <item>115</item> <item>121</item> <item>121</item> <item>127</item> <item>127</item> <item>133</item> <item>133</item> <item>139</item> <item>139</item> <item>145</item> <item>145</item> <item>151</item> <item>151</item> <item>157</item> <item>157</item> <item>163</item> <item>163</item> <item>169</item> <item>169</item> <item>176</item> <item>176</item> <item>183</item> <item>183</item> <item>190</item> <item>190</item> <item>197</item> <item>197</item> <item>204</item> <item>204</item> <item>211</item> <item>211</item> <item>218</item> <item>218</item> </second> </item> <item> <first>126</first> <second> <count>1</count> <item_version>0</item_version> <item>24</item> </second> </item> <item> <first>135</first> <second> <count>1</count> <item_version>0</item_version> <item>31</item> </second> </item> <item> <first>144</first> <second> <count>1</count> <item_version>0</item_version> <item>38</item> </second> </item> <item> <first>153</first> <second> <count>1</count> <item_version>0</item_version> <item>45</item> </second> </item> <item> <first>162</first> <second> <count>1</count> <item_version>0</item_version> <item>52</item> </second> </item> <item> <first>171</first> <second> <count>1</count> <item_version>0</item_version> <item>59</item> </second> </item> <item> <first>180</first> <second> <count>1</count> <item_version>0</item_version> <item>66</item> </second> </item> <item> <first>189</first> <second> <count>1</count> <item_version>0</item_version> <item>72</item> </second> </item> <item> <first>198</first> <second> <count>1</count> <item_version>0</item_version> <item>78</item> </second> </item> <item> <first>207</first> <second> <count>1</count> <item_version>0</item_version> <item>84</item> </second> </item> <item> <first>216</first> <second> <count>1</count> <item_version>0</item_version> <item>90</item> </second> </item> <item> <first>225</first> <second> <count>1</count> <item_version>0</item_version> <item>96</item> </second> </item> <item> <first>234</first> <second> <count>1</count> <item_version>0</item_version> <item>102</item> </second> </item> <item> <first>243</first> <second> <count>1</count> <item_version>0</item_version> <item>108</item> </second> </item> <item> <first>252</first> <second> <count>1</count> <item_version>0</item_version> <item>114</item> </second> </item> <item> <first>261</first> <second> <count>1</count> <item_version>0</item_version> <item>120</item> </second> </item> <item> <first>270</first> <second> <count>1</count> <item_version>0</item_version> <item>126</item> </second> </item> <item> <first>279</first> <second> <count>1</count> <item_version>0</item_version> <item>132</item> </second> </item> <item> <first>291</first> <second> <count>1</count> <item_version>0</item_version> <item>138</item> </second> </item> <item> <first>300</first> <second> <count>1</count> <item_version>0</item_version> <item>144</item> </second> </item> <item> <first>309</first> <second> <count>1</count> <item_version>0</item_version> <item>150</item> </second> </item> <item> <first>318</first> <second> <count>1</count> <item_version>0</item_version> <item>156</item> </second> </item> <item> <first>327</first> <second> <count>1</count> <item_version>0</item_version> <item>162</item> </second> </item> <item> <first>336</first> <second> <count>1</count> <item_version>0</item_version> <item>168</item> </second> </item> <item> <first>345</first> <second> <count>1</count> <item_version>0</item_version> <item>175</item> </second> </item> <item> <first>354</first> <second> <count>1</count> <item_version>0</item_version> <item>182</item> </second> </item> <item> <first>363</first> <second> <count>1</count> <item_version>0</item_version> <item>189</item> </second> </item> <item> <first>372</first> <second> <count>1</count> <item_version>0</item_version> <item>196</item> </second> </item> <item> <first>381</first> <second> <count>1</count> <item_version>0</item_version> <item>203</item> </second> </item> <item> <first>390</first> <second> <count>1</count> <item_version>0</item_version> <item>210</item> </second> </item> <item> <first>399</first> <second> <count>1</count> <item_version>0</item_version> <item>217</item> </second> </item> <item> <first>426</first> <second> <count>1</count> <item_version>0</item_version> <item>16</item> </second> </item> <item> <first>430</first> <second> <count>1</count> <item_version>0</item_version> <item>19</item> </second> </item> <item> <first>434</first> <second> <count>1</count> <item_version>0</item_version> <item>20</item> </second> </item> <item> <first>440</first> <second> <count>1</count> <item_version>0</item_version> <item>21</item> </second> </item> <item> <first>445</first> <second> <count>1</count> <item_version>0</item_version> <item>23</item> </second> </item> <item> <first>449</first> <second> <count>1</count> <item_version>0</item_version> <item>26</item> </second> </item> <item> <first>453</first> <second> <count>1</count> <item_version>0</item_version> <item>27</item> </second> </item> <item> <first>459</first> <second> <count>1</count> <item_version>0</item_version> <item>28</item> </second> </item> <item> <first>464</first> <second> <count>1</count> <item_version>0</item_version> <item>30</item> </second> </item> <item> <first>468</first> <second> <count>1</count> <item_version>0</item_version> <item>33</item> </second> </item> <item> <first>472</first> <second> <count>1</count> <item_version>0</item_version> <item>34</item> </second> </item> <item> <first>478</first> <second> <count>1</count> <item_version>0</item_version> <item>35</item> </second> </item> <item> <first>483</first> <second> <count>1</count> <item_version>0</item_version> <item>37</item> </second> </item> <item> <first>487</first> <second> <count>1</count> <item_version>0</item_version> <item>40</item> </second> </item> <item> <first>491</first> <second> <count>1</count> <item_version>0</item_version> <item>41</item> </second> </item> <item> <first>497</first> <second> <count>1</count> <item_version>0</item_version> <item>42</item> </second> </item> <item> <first>502</first> <second> <count>1</count> <item_version>0</item_version> <item>44</item> </second> </item> <item> <first>506</first> <second> <count>1</count> <item_version>0</item_version> <item>47</item> </second> </item> <item> <first>510</first> <second> <count>1</count> <item_version>0</item_version> <item>48</item> </second> </item> <item> <first>516</first> <second> <count>1</count> <item_version>0</item_version> <item>49</item> </second> </item> <item> <first>521</first> <second> <count>1</count> <item_version>0</item_version> <item>51</item> </second> </item> <item> <first>525</first> <second> <count>1</count> <item_version>0</item_version> <item>54</item> </second> </item> <item> <first>529</first> <second> <count>1</count> <item_version>0</item_version> <item>55</item> </second> </item> <item> <first>535</first> <second> <count>1</count> <item_version>0</item_version> <item>56</item> </second> </item> <item> <first>540</first> <second> <count>1</count> <item_version>0</item_version> <item>58</item> </second> </item> <item> <first>544</first> <second> <count>1</count> <item_version>0</item_version> <item>61</item> </second> </item> <item> <first>548</first> <second> <count>1</count> <item_version>0</item_version> <item>62</item> </second> </item> <item> <first>554</first> <second> <count>1</count> <item_version>0</item_version> <item>63</item> </second> </item> <item> <first>559</first> <second> <count>1</count> <item_version>0</item_version> <item>65</item> </second> </item> <item> <first>563</first> <second> <count>1</count> <item_version>0</item_version> <item>68</item> </second> </item> <item> <first>567</first> <second> <count>1</count> <item_version>0</item_version> <item>69</item> </second> </item> <item> <first>573</first> <second> <count>1</count> <item_version>0</item_version> <item>70</item> </second> </item> <item> <first>578</first> <second> <count>1</count> <item_version>0</item_version> <item>74</item> </second> </item> <item> <first>582</first> <second> <count>1</count> <item_version>0</item_version> <item>75</item> </second> </item> <item> <first>587</first> <second> <count>1</count> <item_version>0</item_version> <item>76</item> </second> </item> <item> <first>592</first> <second> <count>1</count> <item_version>0</item_version> <item>80</item> </second> </item> <item> <first>596</first> <second> <count>1</count> <item_version>0</item_version> <item>81</item> </second> </item> <item> <first>601</first> <second> <count>1</count> <item_version>0</item_version> <item>82</item> </second> </item> <item> <first>606</first> <second> <count>1</count> <item_version>0</item_version> <item>86</item> </second> </item> <item> <first>610</first> <second> <count>1</count> <item_version>0</item_version> <item>87</item> </second> </item> <item> <first>615</first> <second> <count>1</count> <item_version>0</item_version> <item>88</item> </second> </item> <item> <first>620</first> <second> <count>1</count> <item_version>0</item_version> <item>92</item> </second> </item> <item> <first>624</first> <second> <count>1</count> <item_version>0</item_version> <item>93</item> </second> </item> <item> <first>629</first> <second> <count>1</count> <item_version>0</item_version> <item>94</item> </second> </item> <item> <first>634</first> <second> <count>1</count> <item_version>0</item_version> <item>98</item> </second> </item> <item> <first>638</first> <second> <count>1</count> <item_version>0</item_version> <item>99</item> </second> </item> <item> <first>643</first> <second> <count>1</count> <item_version>0</item_version> <item>100</item> </second> </item> <item> <first>648</first> <second> <count>1</count> <item_version>0</item_version> <item>104</item> </second> </item> <item> <first>652</first> <second> <count>1</count> <item_version>0</item_version> <item>105</item> </second> </item> <item> <first>657</first> <second> <count>1</count> <item_version>0</item_version> <item>106</item> </second> </item> <item> <first>662</first> <second> <count>1</count> <item_version>0</item_version> <item>110</item> </second> </item> <item> <first>666</first> <second> <count>1</count> <item_version>0</item_version> <item>111</item> </second> </item> <item> <first>671</first> <second> <count>1</count> <item_version>0</item_version> <item>112</item> </second> </item> <item> <first>676</first> <second> <count>1</count> <item_version>0</item_version> <item>116</item> </second> </item> <item> <first>680</first> <second> <count>1</count> <item_version>0</item_version> <item>117</item> </second> </item> <item> <first>685</first> <second> <count>1</count> <item_version>0</item_version> <item>118</item> </second> </item> <item> <first>690</first> <second> <count>1</count> <item_version>0</item_version> <item>122</item> </second> </item> <item> <first>694</first> <second> <count>1</count> <item_version>0</item_version> <item>123</item> </second> </item> <item> <first>699</first> <second> <count>1</count> <item_version>0</item_version> <item>124</item> </second> </item> <item> <first>704</first> <second> <count>1</count> <item_version>0</item_version> <item>128</item> </second> </item> <item> <first>708</first> <second> <count>1</count> <item_version>0</item_version> <item>129</item> </second> </item> <item> <first>713</first> <second> <count>1</count> <item_version>0</item_version> <item>130</item> </second> </item> <item> <first>718</first> <second> <count>1</count> <item_version>0</item_version> <item>134</item> </second> </item> <item> <first>722</first> <second> <count>1</count> <item_version>0</item_version> <item>135</item> </second> </item> <item> <first>727</first> <second> <count>1</count> <item_version>0</item_version> <item>136</item> </second> </item> <item> <first>732</first> <second> <count>1</count> <item_version>0</item_version> <item>140</item> </second> </item> <item> <first>736</first> <second> <count>1</count> <item_version>0</item_version> <item>141</item> </second> </item> <item> <first>741</first> <second> <count>1</count> <item_version>0</item_version> <item>142</item> </second> </item> <item> <first>746</first> <second> <count>1</count> <item_version>0</item_version> <item>146</item> </second> </item> <item> <first>750</first> <second> <count>1</count> <item_version>0</item_version> <item>147</item> </second> </item> <item> <first>755</first> <second> <count>1</count> <item_version>0</item_version> <item>148</item> </second> </item> <item> <first>760</first> <second> <count>1</count> <item_version>0</item_version> <item>170</item> </second> </item> <item> <first>764</first> <second> <count>1</count> <item_version>0</item_version> <item>171</item> </second> </item> <item> <first>769</first> <second> <count>1</count> <item_version>0</item_version> <item>172</item> </second> </item> <item> <first>775</first> <second> <count>1</count> <item_version>0</item_version> <item>173</item> </second> </item> <item> <first>779</first> <second> <count>1</count> <item_version>0</item_version> <item>152</item> </second> </item> <item> <first>783</first> <second> <count>1</count> <item_version>0</item_version> <item>153</item> </second> </item> <item> <first>788</first> <second> <count>1</count> <item_version>0</item_version> <item>154</item> </second> </item> <item> <first>793</first> <second> <count>1</count> <item_version>0</item_version> <item>177</item> </second> </item> <item> <first>797</first> <second> <count>1</count> <item_version>0</item_version> <item>178</item> </second> </item> <item> <first>802</first> <second> <count>1</count> <item_version>0</item_version> <item>179</item> </second> </item> <item> <first>808</first> <second> <count>1</count> <item_version>0</item_version> <item>180</item> </second> </item> <item> <first>812</first> <second> <count>1</count> <item_version>0</item_version> <item>184</item> </second> </item> <item> <first>816</first> <second> <count>1</count> <item_version>0</item_version> <item>185</item> </second> </item> <item> <first>821</first> <second> <count>1</count> <item_version>0</item_version> <item>186</item> </second> </item> <item> <first>827</first> <second> <count>1</count> <item_version>0</item_version> <item>187</item> </second> </item> <item> <first>831</first> <second> <count>1</count> <item_version>0</item_version> <item>158</item> </second> </item> <item> <first>834</first> <second> <count>1</count> <item_version>0</item_version> <item>159</item> </second> </item> <item> <first>839</first> <second> <count>1</count> <item_version>0</item_version> <item>160</item> </second> </item> <item> <first>844</first> <second> <count>1</count> <item_version>0</item_version> <item>191</item> </second> </item> <item> <first>848</first> <second> <count>1</count> <item_version>0</item_version> <item>192</item> </second> </item> <item> <first>853</first> <second> <count>1</count> <item_version>0</item_version> <item>193</item> </second> </item> <item> <first>859</first> <second> <count>1</count> <item_version>0</item_version> <item>194</item> </second> </item> <item> <first>863</first> <second> <count>1</count> <item_version>0</item_version> <item>198</item> </second> </item> <item> <first>867</first> <second> <count>1</count> <item_version>0</item_version> <item>199</item> </second> </item> <item> <first>872</first> <second> <count>1</count> <item_version>0</item_version> <item>200</item> </second> </item> <item> <first>878</first> <second> <count>1</count> <item_version>0</item_version> <item>201</item> </second> </item> <item> <first>882</first> <second> <count>1</count> <item_version>0</item_version> <item>164</item> </second> </item> <item> <first>886</first> <second> <count>1</count> <item_version>0</item_version> <item>165</item> </second> </item> <item> <first>891</first> <second> <count>1</count> <item_version>0</item_version> <item>166</item> </second> </item> <item> <first>896</first> <second> <count>1</count> <item_version>0</item_version> <item>205</item> </second> </item> <item> <first>900</first> <second> <count>1</count> <item_version>0</item_version> <item>206</item> </second> </item> <item> <first>905</first> <second> <count>1</count> <item_version>0</item_version> <item>207</item> </second> </item> <item> <first>911</first> <second> <count>1</count> <item_version>0</item_version> <item>208</item> </second> </item> <item> <first>915</first> <second> <count>1</count> <item_version>0</item_version> <item>212</item> </second> </item> <item> <first>919</first> <second> <count>1</count> <item_version>0</item_version> <item>213</item> </second> </item> <item> <first>924</first> <second> <count>1</count> <item_version>0</item_version> <item>214</item> </second> </item> <item> <first>930</first> <second> <count>1</count> <item_version>0</item_version> <item>215</item> </second> </item> <item> <first>934</first> <second> <count>1</count> <item_version>0</item_version> <item>219</item> </second> </item> <item> <first>938</first> <second> <count>1</count> <item_version>0</item_version> <item>220</item> </second> </item> <item> <first>943</first> <second> <count>1</count> <item_version>0</item_version> <item>221</item> </second> </item> <item> <first>949</first> <second> <count>1</count> <item_version>0</item_version> <item>222</item> </second> </item> </dp_fu_nodes> <dp_fu_nodes_expression class_id="47" tracking_level="0" version="0"> <count>128</count> <item_version>0</item_version> <item class_id="48" tracking_level="0" version="0"> <first>acc_0_loc_assign_1_fu_582</first> <second> <count>1</count> <item_version>0</item_version> <item>75</item> </second> </item> <item> <first>acc_0_loc_assign_2_fu_434</first> <second> <count>1</count> <item_version>0</item_version> <item>20</item> </second> </item> <item> <first>acc_0_loc_fu_694</first> <second> <count>1</count> <item_version>0</item_version> <item>123</item> </second> </item> <item> <first>acc_1_loc_assign_1_fu_596</first> <second> <count>1</count> <item_version>0</item_version> <item>81</item> </second> </item> <item> <first>acc_1_loc_assign_2_fu_453</first> <second> <count>1</count> <item_version>0</item_version> <item>27</item> </second> </item> <item> <first>acc_1_loc_fu_708</first> <second> <count>1</count> <item_version>0</item_version> <item>129</item> </second> </item> <item> <first>acc_2_loc_assign_1_fu_610</first> <second> <count>1</count> <item_version>0</item_version> <item>87</item> </second> </item> <item> <first>acc_2_loc_assign_2_fu_472</first> <second> <count>1</count> <item_version>0</item_version> <item>34</item> </second> </item> <item> <first>acc_2_loc_fu_722</first> <second> <count>1</count> <item_version>0</item_version> <item>135</item> </second> </item> <item> <first>acc_3_loc_assign_1_fu_624</first> <second> <count>1</count> <item_version>0</item_version> <item>93</item> </second> </item> <item> <first>acc_3_loc_assign_2_fu_491</first> <second> <count>1</count> <item_version>0</item_version> <item>41</item> </second> </item> <item> <first>acc_3_loc_fu_736</first> <second> <count>1</count> <item_version>0</item_version> <item>141</item> </second> </item> <item> <first>acc_4_loc_assign_1_fu_638</first> <second> <count>1</count> <item_version>0</item_version> <item>99</item> </second> </item> <item> <first>acc_4_loc_assign_2_fu_510</first> <second> <count>1</count> <item_version>0</item_version> <item>48</item> </second> </item> <item> <first>acc_4_loc_fu_750</first> <second> <count>1</count> <item_version>0</item_version> <item>147</item> </second> </item> <item> <first>acc_5_loc_assign_1_fu_652</first> <second> <count>1</count> <item_version>0</item_version> <item>105</item> </second> </item> <item> <first>acc_5_loc_assign_2_fu_529</first> <second> <count>1</count> <item_version>0</item_version> <item>55</item> </second> </item> <item> <first>acc_5_loc_fu_783</first> <second> <count>1</count> <item_version>0</item_version> <item>153</item> </second> </item> <item> <first>acc_6_loc_assign_1_fu_666</first> <second> <count>1</count> <item_version>0</item_version> <item>111</item> </second> </item> <item> <first>acc_6_loc_assign_2_fu_548</first> <second> <count>1</count> <item_version>0</item_version> <item>62</item> </second> </item> <item> <first>acc_6_loc_fu_834</first> <second> <count>1</count> <item_version>0</item_version> <item>159</item> </second> </item> <item> <first>acc_7_loc_assign_1_fu_680</first> <second> <count>1</count> <item_version>0</item_version> <item>117</item> </second> </item> <item> <first>acc_7_loc_assign_2_fu_567</first> <second> <count>1</count> <item_version>0</item_version> <item>69</item> </second> </item> <item> <first>acc_7_loc_fu_886</first> <second> <count>1</count> <item_version>0</item_version> <item>165</item> </second> </item> <item> <first>d_i_addr_10_gep_fu_207</first> <second> <count>1</count> <item_version>0</item_version> <item>84</item> </second> </item> <item> <first>d_i_addr_11_gep_fu_216</first> <second> <count>1</count> <item_version>0</item_version> <item>90</item> </second> </item> <item> <first>d_i_addr_12_gep_fu_225</first> <second> <count>1</count> <item_version>0</item_version> <item>96</item> </second> </item> <item> <first>d_i_addr_13_gep_fu_234</first> <second> <count>1</count> <item_version>0</item_version> <item>102</item> </second> </item> <item> <first>d_i_addr_14_gep_fu_243</first> <second> <count>1</count> <item_version>0</item_version> <item>108</item> </second> </item> <item> <first>d_i_addr_15_gep_fu_252</first> <second> <count>1</count> <item_version>0</item_version> <item>114</item> </second> </item> <item> <first>d_i_addr_16_gep_fu_261</first> <second> <count>1</count> <item_version>0</item_version> <item>120</item> </second> </item> <item> <first>d_i_addr_17_gep_fu_270</first> <second> <count>1</count> <item_version>0</item_version> <item>126</item> </second> </item> <item> <first>d_i_addr_18_gep_fu_279</first> <second> <count>1</count> <item_version>0</item_version> <item>132</item> </second> </item> <item> <first>d_i_addr_19_gep_fu_291</first> <second> <count>1</count> <item_version>0</item_version> <item>138</item> </second> </item> <item> <first>d_i_addr_1_gep_fu_126</first> <second> <count>1</count> <item_version>0</item_version> <item>24</item> </second> </item> <item> <first>d_i_addr_20_gep_fu_300</first> <second> <count>1</count> <item_version>0</item_version> <item>144</item> </second> </item> <item> <first>d_i_addr_21_gep_fu_309</first> <second> <count>1</count> <item_version>0</item_version> <item>150</item> </second> </item> <item> <first>d_i_addr_22_gep_fu_318</first> <second> <count>1</count> <item_version>0</item_version> <item>156</item> </second> </item> <item> <first>d_i_addr_23_gep_fu_327</first> <second> <count>1</count> <item_version>0</item_version> <item>162</item> </second> </item> <item> <first>d_i_addr_24_gep_fu_336</first> <second> <count>1</count> <item_version>0</item_version> <item>168</item> </second> </item> <item> <first>d_i_addr_25_gep_fu_345</first> <second> <count>1</count> <item_version>0</item_version> <item>175</item> </second> </item> <item> <first>d_i_addr_26_gep_fu_354</first> <second> <count>1</count> <item_version>0</item_version> <item>182</item> </second> </item> <item> <first>d_i_addr_27_gep_fu_363</first> <second> <count>1</count> <item_version>0</item_version> <item>189</item> </second> </item> <item> <first>d_i_addr_28_gep_fu_372</first> <second> <count>1</count> <item_version>0</item_version> <item>196</item> </second> </item> <item> <first>d_i_addr_29_gep_fu_381</first> <second> <count>1</count> <item_version>0</item_version> <item>203</item> </second> </item> <item> <first>d_i_addr_2_gep_fu_135</first> <second> <count>1</count> <item_version>0</item_version> <item>31</item> </second> </item> <item> <first>d_i_addr_30_gep_fu_390</first> <second> <count>1</count> <item_version>0</item_version> <item>210</item> </second> </item> <item> <first>d_i_addr_31_gep_fu_399</first> <second> <count>1</count> <item_version>0</item_version> <item>217</item> </second> </item> <item> <first>d_i_addr_3_gep_fu_144</first> <second> <count>1</count> <item_version>0</item_version> <item>38</item> </second> </item> <item> <first>d_i_addr_4_gep_fu_153</first> <second> <count>1</count> <item_version>0</item_version> <item>45</item> </second> </item> <item> <first>d_i_addr_5_gep_fu_162</first> <second> <count>1</count> <item_version>0</item_version> <item>52</item> </second> </item> <item> <first>d_i_addr_6_gep_fu_171</first> <second> <count>1</count> <item_version>0</item_version> <item>59</item> </second> </item> <item> <first>d_i_addr_7_gep_fu_180</first> <second> <count>1</count> <item_version>0</item_version> <item>66</item> </second> </item> <item> <first>d_i_addr_8_gep_fu_189</first> <second> <count>1</count> <item_version>0</item_version> <item>72</item> </second> </item> <item> <first>d_i_addr_9_gep_fu_198</first> <second> <count>1</count> <item_version>0</item_version> <item>78</item> </second> </item> <item> <first>d_i_addr_gep_fu_113</first> <second> <count>1</count> <item_version>0</item_version> <item>17</item> </second> </item> <item> <first>temp_1_fu_797</first> <second> <count>1</count> <item_version>0</item_version> <item>178</item> </second> </item> <item> <first>temp_2_fu_816</first> <second> <count>1</count> <item_version>0</item_version> <item>185</item> </second> </item> <item> <first>temp_3_fu_848</first> <second> <count>1</count> <item_version>0</item_version> <item>192</item> </second> </item> <item> <first>temp_4_fu_867</first> <second> <count>1</count> <item_version>0</item_version> <item>199</item> </second> </item> <item> <first>temp_5_fu_900</first> <second> <count>1</count> <item_version>0</item_version> <item>206</item> </second> </item> <item> <first>temp_6_fu_919</first> <second> <count>1</count> <item_version>0</item_version> <item>213</item> </second> </item> <item> <first>temp_7_fu_938</first> <second> <count>1</count> <item_version>0</item_version> <item>220</item> </second> </item> <item> <first>temp_s_fu_764</first> <second> <count>1</count> <item_version>0</item_version> <item>171</item> </second> </item> <item> <first>tmp_10_fu_601</first> <second> <count>1</count> <item_version>0</item_version> <item>82</item> </second> </item> <item> <first>tmp_11_fu_615</first> <second> <count>1</count> <item_version>0</item_version> <item>88</item> </second> </item> <item> <first>tmp_12_fu_629</first> <second> <count>1</count> <item_version>0</item_version> <item>94</item> </second> </item> <item> <first>tmp_13_fu_643</first> <second> <count>1</count> <item_version>0</item_version> <item>100</item> </second> </item> <item> <first>tmp_14_fu_657</first> <second> <count>1</count> <item_version>0</item_version> <item>106</item> </second> </item> <item> <first>tmp_15_fu_671</first> <second> <count>1</count> <item_version>0</item_version> <item>112</item> </second> </item> <item> <first>tmp_16_fu_685</first> <second> <count>1</count> <item_version>0</item_version> <item>118</item> </second> </item> <item> <first>tmp_17_fu_699</first> <second> <count>1</count> <item_version>0</item_version> <item>124</item> </second> </item> <item> <first>tmp_18_fu_713</first> <second> <count>1</count> <item_version>0</item_version> <item>130</item> </second> </item> <item> <first>tmp_19_fu_727</first> <second> <count>1</count> <item_version>0</item_version> <item>136</item> </second> </item> <item> <first>tmp_1_fu_459</first> <second> <count>1</count> <item_version>0</item_version> <item>28</item> </second> </item> <item> <first>tmp_20_fu_741</first> <second> <count>1</count> <item_version>0</item_version> <item>142</item> </second> </item> <item> <first>tmp_21_fu_755</first> <second> <count>1</count> <item_version>0</item_version> <item>148</item> </second> </item> <item> <first>tmp_22_fu_788</first> <second> <count>1</count> <item_version>0</item_version> <item>154</item> </second> </item> <item> <first>tmp_23_fu_839</first> <second> <count>1</count> <item_version>0</item_version> <item>160</item> </second> </item> <item> <first>tmp_24_fu_891</first> <second> <count>1</count> <item_version>0</item_version> <item>166</item> </second> </item> <item> <first>tmp_25_fu_775</first> <second> <count>1</count> <item_version>0</item_version> <item>173</item> </second> </item> <item> <first>tmp_26_fu_808</first> <second> <count>1</count> <item_version>0</item_version> <item>180</item> </second> </item> <item> <first>tmp_27_fu_827</first> <second> <count>1</count> <item_version>0</item_version> <item>187</item> </second> </item> <item> <first>tmp_28_fu_859</first> <second> <count>1</count> <item_version>0</item_version> <item>194</item> </second> </item> <item> <first>tmp_29_fu_878</first> <second> <count>1</count> <item_version>0</item_version> <item>201</item> </second> </item> <item> <first>tmp_2_10_fu_620</first> <second> <count>1</count> <item_version>0</item_version> <item>92</item> </second> </item> <item> <first>tmp_2_11_fu_634</first> <second> <count>1</count> <item_version>0</item_version> <item>98</item> </second> </item> <item> <first>tmp_2_12_fu_648</first> <second> <count>1</count> <item_version>0</item_version> <item>104</item> </second> </item> <item> <first>tmp_2_13_fu_662</first> <second> <count>1</count> <item_version>0</item_version> <item>110</item> </second> </item> <item> <first>tmp_2_14_fu_676</first> <second> <count>1</count> <item_version>0</item_version> <item>116</item> </second> </item> <item> <first>tmp_2_15_fu_690</first> <second> <count>1</count> <item_version>0</item_version> <item>122</item> </second> </item> <item> <first>tmp_2_16_fu_704</first> <second> <count>1</count> <item_version>0</item_version> <item>128</item> </second> </item> <item> <first>tmp_2_17_fu_718</first> <second> <count>1</count> <item_version>0</item_version> <item>134</item> </second> </item> <item> <first>tmp_2_18_fu_732</first> <second> <count>1</count> <item_version>0</item_version> <item>140</item> </second> </item> <item> <first>tmp_2_19_fu_746</first> <second> <count>1</count> <item_version>0</item_version> <item>146</item> </second> </item> <item> <first>tmp_2_1_fu_449</first> <second> <count>1</count> <item_version>0</item_version> <item>26</item> </second> </item> <item> <first>tmp_2_20_fu_779</first> <second> <count>1</count> <item_version>0</item_version> <item>152</item> </second> </item> <item> <first>tmp_2_21_fu_831</first> <second> <count>1</count> <item_version>0</item_version> <item>158</item> </second> </item> <item> <first>tmp_2_22_fu_882</first> <second> <count>1</count> <item_version>0</item_version> <item>164</item> </second> </item> <item> <first>tmp_2_23_fu_760</first> <second> <count>1</count> <item_version>0</item_version> <item>170</item> </second> </item> <item> <first>tmp_2_24_fu_793</first> <second> <count>1</count> <item_version>0</item_version> <item>177</item> </second> </item> <item> <first>tmp_2_25_fu_812</first> <second> <count>1</count> <item_version>0</item_version> <item>184</item> </second> </item> <item> <first>tmp_2_26_fu_844</first> <second> <count>1</count> <item_version>0</item_version> <item>191</item> </second> </item> <item> <first>tmp_2_27_fu_863</first> <second> <count>1</count> <item_version>0</item_version> <item>198</item> </second> </item> <item> <first>tmp_2_28_fu_896</first> <second> <count>1</count> <item_version>0</item_version> <item>205</item> </second> </item> <item> <first>tmp_2_29_fu_915</first> <second> <count>1</count> <item_version>0</item_version> <item>212</item> </second> </item> <item> <first>tmp_2_2_fu_468</first> <second> <count>1</count> <item_version>0</item_version> <item>33</item> </second> </item> <item> <first>tmp_2_30_fu_934</first> <second> <count>1</count> <item_version>0</item_version> <item>219</item> </second> </item> <item> <first>tmp_2_3_fu_487</first> <second> <count>1</count> <item_version>0</item_version> <item>40</item> </second> </item> <item> <first>tmp_2_4_fu_506</first> <second> <count>1</count> <item_version>0</item_version> <item>47</item> </second> </item> <item> <first>tmp_2_5_fu_525</first> <second> <count>1</count> <item_version>0</item_version> <item>54</item> </second> </item> <item> <first>tmp_2_6_fu_544</first> <second> <count>1</count> <item_version>0</item_version> <item>61</item> </second> </item> <item> <first>tmp_2_7_fu_563</first> <second> <count>1</count> <item_version>0</item_version> <item>68</item> </second> </item> <item> <first>tmp_2_8_fu_578</first> <second> <count>1</count> <item_version>0</item_version> <item>74</item> </second> </item> <item> <first>tmp_2_9_fu_592</first> <second> <count>1</count> <item_version>0</item_version> <item>80</item> </second> </item> <item> <first>tmp_2_fu_430</first> <second> <count>1</count> <item_version>0</item_version> <item>19</item> </second> </item> <item> <first>tmp_2_s_fu_606</first> <second> <count>1</count> <item_version>0</item_version> <item>86</item> </second> </item> <item> <first>tmp_30_fu_911</first> <second> <count>1</count> <item_version>0</item_version> <item>208</item> </second> </item> <item> <first>tmp_31_fu_930</first> <second> <count>1</count> <item_version>0</item_version> <item>215</item> </second> </item> <item> <first>tmp_32_fu_949</first> <second> <count>1</count> <item_version>0</item_version> <item>222</item> </second> </item> <item> <first>tmp_3_fu_478</first> <second> <count>1</count> <item_version>0</item_version> <item>35</item> </second> </item> <item> <first>tmp_4_fu_497</first> <second> <count>1</count> <item_version>0</item_version> <item>42</item> </second> </item> <item> <first>tmp_5_fu_516</first> <second> <count>1</count> <item_version>0</item_version> <item>49</item> </second> </item> <item> <first>tmp_6_fu_535</first> <second> <count>1</count> <item_version>0</item_version> <item>56</item> </second> </item> <item> <first>tmp_7_fu_554</first> <second> <count>1</count> <item_version>0</item_version> <item>63</item> </second> </item> <item> <first>tmp_8_fu_573</first> <second> <count>1</count> <item_version>0</item_version> <item>70</item> </second> </item> <item> <first>tmp_9_fu_587</first> <second> <count>1</count> <item_version>0</item_version> <item>76</item> </second> </item> <item> <first>tmp_fu_440</first> <second> <count>1</count> <item_version>0</item_version> <item>21</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>17</count> <item_version>0</item_version> <item> <first>acc_0_load_load_fu_426</first> <second> <count>1</count> <item_version>0</item_version> <item>16</item> </second> </item> <item> <first>acc_1_load_load_fu_445</first> <second> <count>1</count> <item_version>0</item_version> <item>23</item> </second> </item> <item> <first>acc_2_load_load_fu_464</first> <second> <count>1</count> <item_version>0</item_version> <item>30</item> </second> </item> <item> <first>acc_3_load_load_fu_483</first> <second> <count>1</count> <item_version>0</item_version> <item>37</item> </second> </item> <item> <first>acc_4_load_load_fu_502</first> <second> <count>1</count> <item_version>0</item_version> <item>44</item> </second> </item> <item> <first>acc_5_load_load_fu_521</first> <second> <count>1</count> <item_version>0</item_version> <item>51</item> </second> </item> <item> <first>acc_6_load_load_fu_540</first> <second> <count>1</count> <item_version>0</item_version> <item>58</item> </second> </item> <item> <first>acc_7_load_load_fu_559</first> <second> <count>1</count> <item_version>0</item_version> <item>65</item> </second> </item> <item> <first>grp_write_fu_106</first> <second> <count>32</count> <item_version>0</item_version> <item>22</item> <item>29</item> <item>36</item> <item>43</item> <item>50</item> <item>57</item> <item>64</item> <item>71</item> <item>77</item> <item>83</item> <item>89</item> <item>95</item> <item>101</item> <item>107</item> <item>113</item> <item>119</item> <item>125</item> <item>131</item> <item>137</item> <item>143</item> <item>149</item> <item>155</item> <item>161</item> <item>167</item> <item>174</item> <item>181</item> <item>188</item> <item>195</item> <item>202</item> <item>209</item> <item>216</item> <item>223</item> </second> </item> <item> <first>stg_208_store_fu_769</first> <second> <count>1</count> <item_version>0</item_version> <item>172</item> </second> </item> <item> <first>stg_222_store_fu_802</first> <second> <count>1</count> <item_version>0</item_version> <item>179</item> </second> </item> <item> <first>stg_226_store_fu_821</first> <second> <count>1</count> <item_version>0</item_version> <item>186</item> </second> </item> <item> <first>stg_240_store_fu_853</first> <second> <count>1</count> <item_version>0</item_version> <item>193</item> </second> </item> <item> <first>stg_244_store_fu_872</first> <second> <count>1</count> <item_version>0</item_version> <item>200</item> </second> </item> <item> <first>stg_256_store_fu_905</first> <second> <count>1</count> <item_version>0</item_version> <item>207</item> </second> </item> <item> <first>stg_260_store_fu_924</first> <second> <count>1</count> <item_version>0</item_version> <item>214</item> </second> </item> <item> <first>stg_266_store_fu_943</first> <second> <count>1</count> <item_version>0</item_version> <item>221</item> </second> </item> </dp_fu_nodes_io> <return_ports> <count>0</count> <item_version>0</item_version> </return_ports> <dp_mem_port_nodes class_id="49" tracking_level="0" version="0"> <count>2</count> <item_version>0</item_version> <item class_id="50" tracking_level="0" version="0"> <first class_id="51" tracking_level="0" version="0"> <first>d_i</first> <second>0</second> </first> <second> <count>50</count> <item_version>0</item_version> <item>18</item> <item>18</item> <item>25</item> <item>25</item> <item>32</item> <item>32</item> <item>39</item> <item>39</item> <item>46</item> <item>46</item> <item>53</item> <item>53</item> <item>60</item> <item>60</item> <item>67</item> <item>67</item> <item>73</item> <item>73</item> <item>79</item> <item>79</item> <item>85</item> <item>85</item> <item>91</item> <item>91</item> <item>97</item> <item>97</item> <item>103</item> <item>103</item> <item>109</item> <item>109</item> <item>115</item> <item>115</item> <item>121</item> <item>121</item> <item>127</item> <item>127</item> <item>139</item> <item>139</item> <item>151</item> <item>151</item> <item>163</item> <item>163</item> <item>176</item> <item>176</item> <item>190</item> <item>190</item> <item>204</item> <item>204</item> <item>218</item> <item>218</item> </second> </item> <item> <first> <first>d_i</first> <second>1</second> </first> <second> <count>14</count> <item_version>0</item_version> <item>133</item> <item>133</item> <item>145</item> <item>145</item> <item>157</item> <item>157</item> <item>169</item> <item>169</item> <item>183</item> <item>183</item> <item>197</item> <item>197</item> <item>211</item> <item>211</item> </second> </item> </dp_mem_port_nodes> <dp_reg_nodes> <count>69</count> <item_version>0</item_version> <item> <first>408</first> <second> <count>21</count> <item_version>0</item_version> <item>18</item> <item>25</item> <item>32</item> <item>39</item> <item>46</item> <item>53</item> <item>60</item> <item>67</item> <item>73</item> <item>79</item> <item>85</item> <item>91</item> <item>97</item> <item>103</item> <item>109</item> <item>115</item> <item>121</item> <item>127</item> <item>139</item> <item>163</item> <item>218</item> </second> </item> <item> <first>412</first> <second> <count>4</count> <item_version>0</item_version> <item>133</item> <item>151</item> <item>190</item> <item>204</item> </second> </item> <item> <first>417</first> <second> <count>4</count> <item_version>0</item_version> <item>145</item> <item>176</item> <item>197</item> <item>211</item> </second> </item> <item> <first>422</first> <second> <count>2</count> <item_version>0</item_version> <item>169</item> <item>183</item> </second> </item> <item> <first>953</first> <second> <count>1</count> <item_version>0</item_version> <item>17</item> </second> </item> <item> <first>958</first> <second> <count>1</count> <item_version>0</item_version> <item>24</item> </second> </item> <item> <first>963</first> <second> <count>1</count> <item_version>0</item_version> <item>20</item> </second> </item> <item> <first>968</first> <second> <count>1</count> <item_version>0</item_version> <item>31</item> </second> </item> <item> <first>973</first> <second> <count>1</count> <item_version>0</item_version> <item>27</item> </second> </item> <item> <first>978</first> <second> <count>1</count> <item_version>0</item_version> <item>38</item> </second> </item> <item> <first>983</first> <second> <count>1</count> <item_version>0</item_version> <item>34</item> </second> </item> <item> <first>988</first> <second> <count>1</count> <item_version>0</item_version> <item>45</item> </second> </item> <item> <first>993</first> <second> <count>1</count> <item_version>0</item_version> <item>41</item> </second> </item> <item> <first>998</first> <second> <count>1</count> <item_version>0</item_version> <item>52</item> </second> </item> <item> <first>1003</first> <second> <count>1</count> <item_version>0</item_version> <item>48</item> </second> </item> <item> <first>1008</first> <second> <count>1</count> <item_version>0</item_version> <item>59</item> </second> </item> <item> <first>1013</first> <second> <count>1</count> <item_version>0</item_version> <item>55</item> </second> </item> <item> <first>1018</first> <second> <count>1</count> <item_version>0</item_version> <item>66</item> </second> </item> <item> <first>1023</first> <second> <count>1</count> <item_version>0</item_version> <item>62</item> </second> </item> <item> <first>1028</first> <second> <count>1</count> <item_version>0</item_version> <item>72</item> </second> </item> <item> <first>1033</first> <second> <count>1</count> <item_version>0</item_version> <item>69</item> </second> </item> <item> <first>1038</first> <second> <count>1</count> <item_version>0</item_version> <item>78</item> </second> </item> <item> <first>1043</first> <second> <count>1</count> <item_version>0</item_version> <item>75</item> </second> </item> <item> <first>1048</first> <second> <count>1</count> <item_version>0</item_version> <item>84</item> </second> </item> <item> <first>1053</first> <second> <count>1</count> <item_version>0</item_version> <item>81</item> </second> </item> <item> <first>1058</first> <second> <count>1</count> <item_version>0</item_version> <item>90</item> </second> </item> <item> <first>1063</first> <second> <count>1</count> <item_version>0</item_version> <item>87</item> </second> </item> <item> <first>1068</first> <second> <count>1</count> <item_version>0</item_version> <item>96</item> </second> </item> <item> <first>1073</first> <second> <count>1</count> <item_version>0</item_version> <item>93</item> </second> </item> <item> <first>1078</first> <second> <count>1</count> <item_version>0</item_version> <item>102</item> </second> </item> <item> <first>1083</first> <second> <count>1</count> <item_version>0</item_version> <item>99</item> </second> </item> <item> <first>1088</first> <second> <count>1</count> <item_version>0</item_version> <item>108</item> </second> </item> <item> <first>1093</first> <second> <count>1</count> <item_version>0</item_version> <item>105</item> </second> </item> <item> <first>1098</first> <second> <count>1</count> <item_version>0</item_version> <item>114</item> </second> </item> <item> <first>1103</first> <second> <count>1</count> <item_version>0</item_version> <item>111</item> </second> </item> <item> <first>1108</first> <second> <count>1</count> <item_version>0</item_version> <item>120</item> </second> </item> <item> <first>1113</first> <second> <count>1</count> <item_version>0</item_version> <item>117</item> </second> </item> <item> <first>1118</first> <second> <count>1</count> <item_version>0</item_version> <item>126</item> </second> </item> <item> <first>1123</first> <second> <count>1</count> <item_version>0</item_version> <item>132</item> </second> </item> <item> <first>1128</first> <second> <count>1</count> <item_version>0</item_version> <item>123</item> </second> </item> <item> <first>1133</first> <second> <count>1</count> <item_version>0</item_version> <item>138</item> </second> </item> <item> <first>1138</first> <second> <count>1</count> <item_version>0</item_version> <item>144</item> </second> </item> <item> <first>1143</first> <second> <count>1</count> <item_version>0</item_version> <item>129</item> </second> </item> <item> <first>1148</first> <second> <count>1</count> <item_version>0</item_version> <item>150</item> </second> </item> <item> <first>1153</first> <second> <count>1</count> <item_version>0</item_version> <item>156</item> </second> </item> <item> <first>1158</first> <second> <count>1</count> <item_version>0</item_version> <item>135</item> </second> </item> <item> <first>1163</first> <second> <count>1</count> <item_version>0</item_version> <item>157</item> </second> </item> <item> <first>1168</first> <second> <count>1</count> <item_version>0</item_version> <item>162</item> </second> </item> <item> <first>1173</first> <second> <count>1</count> <item_version>0</item_version> <item>168</item> </second> </item> <item> <first>1178</first> <second> <count>1</count> <item_version>0</item_version> <item>141</item> </second> </item> <item> <first>1183</first> <second> <count>1</count> <item_version>0</item_version> <item>175</item> </second> </item> <item> <first>1188</first> <second> <count>1</count> <item_version>0</item_version> <item>182</item> </second> </item> <item> <first>1193</first> <second> <count>1</count> <item_version>0</item_version> <item>147</item> </second> </item> <item> <first>1198</first> <second> <count>1</count> <item_version>0</item_version> <item>173</item> </second> </item> <item> <first>1203</first> <second> <count>1</count> <item_version>0</item_version> <item>189</item> </second> </item> <item> <first>1208</first> <second> <count>1</count> <item_version>0</item_version> <item>196</item> </second> </item> <item> <first>1213</first> <second> <count>1</count> <item_version>0</item_version> <item>153</item> </second> </item> <item> <first>1218</first> <second> <count>1</count> <item_version>0</item_version> <item>180</item> </second> </item> <item> <first>1223</first> <second> <count>1</count> <item_version>0</item_version> <item>187</item> </second> </item> <item> <first>1228</first> <second> <count>1</count> <item_version>0</item_version> <item>203</item> </second> </item> <item> <first>1233</first> <second> <count>1</count> <item_version>0</item_version> <item>210</item> </second> </item> <item> <first>1238</first> <second> <count>1</count> <item_version>0</item_version> <item>159</item> </second> </item> <item> <first>1243</first> <second> <count>1</count> <item_version>0</item_version> <item>194</item> </second> </item> <item> <first>1248</first> <second> <count>1</count> <item_version>0</item_version> <item>201</item> </second> </item> <item> <first>1253</first> <second> <count>1</count> <item_version>0</item_version> <item>217</item> </second> </item> <item> <first>1258</first> <second> <count>1</count> <item_version>0</item_version> <item>165</item> </second> </item> <item> <first>1263</first> <second> <count>1</count> <item_version>0</item_version> <item>208</item> </second> </item> <item> <first>1268</first> <second> <count>1</count> <item_version>0</item_version> <item>215</item> </second> </item> <item> <first>1273</first> <second> <count>1</count> <item_version>0</item_version> <item>222</item> </second> </item> </dp_reg_nodes> <dp_regname_nodes> <count>69</count> <item_version>0</item_version> <item> <first>acc_0_loc_assign_1_reg_1043</first> <second> <count>1</count> <item_version>0</item_version> <item>75</item> </second> </item> <item> <first>acc_0_loc_assign_2_reg_963</first> <second> <count>1</count> <item_version>0</item_version> <item>20</item> </second> </item> <item> <first>acc_0_loc_reg_1128</first> <second> <count>1</count> <item_version>0</item_version> <item>123</item> </second> </item> <item> <first>acc_1_loc_assign_1_reg_1053</first> <second> <count>1</count> <item_version>0</item_version> <item>81</item> </second> </item> <item> <first>acc_1_loc_assign_2_reg_973</first> <second> <count>1</count> <item_version>0</item_version> <item>27</item> </second> </item> <item> <first>acc_1_loc_reg_1143</first> <second> <count>1</count> <item_version>0</item_version> <item>129</item> </second> </item> <item> <first>acc_2_loc_assign_1_reg_1063</first> <second> <count>1</count> <item_version>0</item_version> <item>87</item> </second> </item> <item> <first>acc_2_loc_assign_2_reg_983</first> <second> <count>1</count> <item_version>0</item_version> <item>34</item> </second> </item> <item> <first>acc_2_loc_reg_1158</first> <second> <count>1</count> <item_version>0</item_version> <item>135</item> </second> </item> <item> <first>acc_3_loc_assign_1_reg_1073</first> <second> <count>1</count> <item_version>0</item_version> <item>93</item> </second> </item> <item> <first>acc_3_loc_assign_2_reg_993</first> <second> <count>1</count> <item_version>0</item_version> <item>41</item> </second> </item> <item> <first>acc_3_loc_reg_1178</first> <second> <count>1</count> <item_version>0</item_version> <item>141</item> </second> </item> <item> <first>acc_4_loc_assign_1_reg_1083</first> <second> <count>1</count> <item_version>0</item_version> <item>99</item> </second> </item> <item> <first>acc_4_loc_assign_2_reg_1003</first> <second> <count>1</count> <item_version>0</item_version> <item>48</item> </second> </item> <item> <first>acc_4_loc_reg_1193</first> <second> <count>1</count> <item_version>0</item_version> <item>147</item> </second> </item> <item> <first>acc_5_loc_assign_1_reg_1093</first> <second> <count>1</count> <item_version>0</item_version> <item>105</item> </second> </item> <item> <first>acc_5_loc_assign_2_reg_1013</first> <second> <count>1</count> <item_version>0</item_version> <item>55</item> </second> </item> <item> <first>acc_5_loc_reg_1213</first> <second> <count>1</count> <item_version>0</item_version> <item>153</item> </second> </item> <item> <first>acc_6_loc_assign_1_reg_1103</first> <second> <count>1</count> <item_version>0</item_version> <item>111</item> </second> </item> <item> <first>acc_6_loc_assign_2_reg_1023</first> <second> <count>1</count> <item_version>0</item_version> <item>62</item> </second> </item> <item> <first>acc_6_loc_reg_1238</first> <second> <count>1</count> <item_version>0</item_version> <item>159</item> </second> </item> <item> <first>acc_7_loc_assign_1_reg_1113</first> <second> <count>1</count> <item_version>0</item_version> <item>117</item> </second> </item> <item> <first>acc_7_loc_assign_2_reg_1033</first> <second> <count>1</count> <item_version>0</item_version> <item>69</item> </second> </item> <item> <first>acc_7_loc_reg_1258</first> <second> <count>1</count> <item_version>0</item_version> <item>165</item> </second> </item> <item> <first>d_i_addr_10_reg_1048</first> <second> <count>1</count> <item_version>0</item_version> <item>84</item> </second> </item> <item> <first>d_i_addr_11_reg_1058</first> <second> <count>1</count> <item_version>0</item_version> <item>90</item> </second> </item> <item> <first>d_i_addr_12_reg_1068</first> <second> <count>1</count> <item_version>0</item_version> <item>96</item> </second> </item> <item> <first>d_i_addr_13_reg_1078</first> <second> <count>1</count> <item_version>0</item_version> <item>102</item> </second> </item> <item> <first>d_i_addr_14_reg_1088</first> <second> <count>1</count> <item_version>0</item_version> <item>108</item> </second> </item> <item> <first>d_i_addr_15_reg_1098</first> <second> <count>1</count> <item_version>0</item_version> <item>114</item> </second> </item> <item> <first>d_i_addr_16_reg_1108</first> <second> <count>1</count> <item_version>0</item_version> <item>120</item> </second> </item> <item> <first>d_i_addr_17_reg_1118</first> <second> <count>1</count> <item_version>0</item_version> <item>126</item> </second> </item> <item> <first>d_i_addr_18_reg_1123</first> <second> <count>1</count> <item_version>0</item_version> <item>132</item> </second> </item> <item> <first>d_i_addr_19_reg_1133</first> <second> <count>1</count> <item_version>0</item_version> <item>138</item> </second> </item> <item> <first>d_i_addr_1_reg_958</first> <second> <count>1</count> <item_version>0</item_version> <item>24</item> </second> </item> <item> <first>d_i_addr_20_reg_1138</first> <second> <count>1</count> <item_version>0</item_version> <item>144</item> </second> </item> <item> <first>d_i_addr_21_reg_1148</first> <second> <count>1</count> <item_version>0</item_version> <item>150</item> </second> </item> <item> <first>d_i_addr_22_reg_1153</first> <second> <count>1</count> <item_version>0</item_version> <item>156</item> </second> </item> <item> <first>d_i_addr_23_reg_1168</first> <second> <count>1</count> <item_version>0</item_version> <item>162</item> </second> </item> <item> <first>d_i_addr_24_reg_1173</first> <second> <count>1</count> <item_version>0</item_version> <item>168</item> </second> </item> <item> <first>d_i_addr_25_reg_1183</first> <second> <count>1</count> <item_version>0</item_version> <item>175</item> </second> </item> <item> <first>d_i_addr_26_reg_1188</first> <second> <count>1</count> <item_version>0</item_version> <item>182</item> </second> </item> <item> <first>d_i_addr_27_reg_1203</first> <second> <count>1</count> <item_version>0</item_version> <item>189</item> </second> </item> <item> <first>d_i_addr_28_reg_1208</first> <second> <count>1</count> <item_version>0</item_version> <item>196</item> </second> </item> <item> <first>d_i_addr_29_reg_1228</first> <second> <count>1</count> <item_version>0</item_version> <item>203</item> </second> </item> <item> <first>d_i_addr_2_reg_968</first> <second> <count>1</count> <item_version>0</item_version> <item>31</item> </second> </item> <item> <first>d_i_addr_30_reg_1233</first> <second> <count>1</count> <item_version>0</item_version> <item>210</item> </second> </item> <item> <first>d_i_addr_31_reg_1253</first> <second> <count>1</count> <item_version>0</item_version> <item>217</item> </second> </item> <item> <first>d_i_addr_3_reg_978</first> <second> <count>1</count> <item_version>0</item_version> <item>38</item> </second> </item> <item> <first>d_i_addr_4_reg_988</first> <second> <count>1</count> <item_version>0</item_version> <item>45</item> </second> </item> <item> <first>d_i_addr_5_reg_998</first> <second> <count>1</count> <item_version>0</item_version> <item>52</item> </second> </item> <item> <first>d_i_addr_6_reg_1008</first> <second> <count>1</count> <item_version>0</item_version> <item>59</item> </second> </item> <item> <first>d_i_addr_7_reg_1018</first> <second> <count>1</count> <item_version>0</item_version> <item>66</item> </second> </item> <item> <first>d_i_addr_8_reg_1028</first> <second> <count>1</count> <item_version>0</item_version> <item>72</item> </second> </item> <item> <first>d_i_addr_9_reg_1038</first> <second> <count>1</count> <item_version>0</item_version> <item>78</item> </second> </item> <item> <first>d_i_addr_reg_953</first> <second> <count>1</count> <item_version>0</item_version> <item>17</item> </second> </item> <item> <first>d_i_load_22_reg_1163</first> <second> <count>1</count> <item_version>0</item_version> <item>157</item> </second> </item> <item> <first>reg_408</first> <second> <count>21</count> <item_version>0</item_version> <item>18</item> <item>25</item> <item>32</item> <item>39</item> <item>46</item> <item>53</item> <item>60</item> <item>67</item> <item>73</item> <item>79</item> <item>85</item> <item>91</item> <item>97</item> <item>103</item> <item>109</item> <item>115</item> <item>121</item> <item>127</item> <item>139</item> <item>163</item> <item>218</item> </second> </item> <item> <first>reg_412</first> <second> <count>4</count> <item_version>0</item_version> <item>133</item> <item>151</item> <item>190</item> <item>204</item> </second> </item> <item> <first>reg_417</first> <second> <count>4</count> <item_version>0</item_version> <item>145</item> <item>176</item> <item>197</item> <item>211</item> </second> </item> <item> <first>reg_422</first> <second> <count>2</count> <item_version>0</item_version> <item>169</item> <item>183</item> </second> </item> <item> <first>tmp_25_reg_1198</first> <second> <count>1</count> <item_version>0</item_version> <item>173</item> </second> </item> <item> <first>tmp_26_reg_1218</first> <second> <count>1</count> <item_version>0</item_version> <item>180</item> </second> </item> <item> <first>tmp_27_reg_1223</first> <second> <count>1</count> <item_version>0</item_version> <item>187</item> </second> </item> <item> <first>tmp_28_reg_1243</first> <second> <count>1</count> <item_version>0</item_version> <item>194</item> </second> </item> <item> <first>tmp_29_reg_1248</first> <second> <count>1</count> <item_version>0</item_version> <item>201</item> </second> </item> <item> <first>tmp_30_reg_1263</first> <second> <count>1</count> <item_version>0</item_version> <item>208</item> </second> </item> <item> <first>tmp_31_reg_1268</first> <second> <count>1</count> <item_version>0</item_version> <item>215</item> </second> </item> <item> <first>tmp_32_reg_1273</first> <second> <count>1</count> <item_version>0</item_version> <item>222</item> </second> </item> </dp_regname_nodes> <dp_reg_phi> <count>0</count> <item_version>0</item_version> </dp_reg_phi> <dp_regname_phi> <count>0</count> <item_version>0</item_version> </dp_regname_phi> <dp_port_io_nodes class_id="52" tracking_level="0" version="0"> <count>3</count> <item_version>0</item_version> <item class_id="53" tracking_level="0" version="0"> <first>d_i(p0)</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>load</first> <second> <count>50</count> <item_version>0</item_version> <item>18</item> <item>18</item> <item>25</item> <item>25</item> <item>32</item> <item>32</item> <item>39</item> <item>39</item> <item>46</item> <item>46</item> <item>53</item> <item>53</item> <item>60</item> <item>60</item> <item>67</item> <item>67</item> <item>73</item> <item>73</item> <item>79</item> <item>79</item> <item>85</item> <item>85</item> <item>91</item> <item>91</item> <item>97</item> <item>97</item> <item>103</item> <item>103</item> <item>109</item> <item>109</item> <item>115</item> <item>115</item> <item>121</item> <item>121</item> <item>127</item> <item>127</item> <item>139</item> <item>139</item> <item>151</item> <item>151</item> <item>163</item> <item>163</item> <item>176</item> <item>176</item> <item>190</item> <item>190</item> <item>204</item> <item>204</item> <item>218</item> <item>218</item> </second> </item> </second> </item> <item> <first>d_i(p1)</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>load</first> <second> <count>14</count> <item_version>0</item_version> <item>133</item> <item>133</item> <item>145</item> <item>145</item> <item>157</item> <item>157</item> <item>169</item> <item>169</item> <item>183</item> <item>183</item> <item>197</item> <item>197</item> <item>211</item> <item>211</item> </second> </item> </second> </item> <item> <first>d_o</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>write</first> <second> <count>32</count> <item_version>0</item_version> <item>22</item> <item>29</item> <item>36</item> <item>43</item> <item>50</item> <item>57</item> <item>64</item> <item>71</item> <item>77</item> <item>83</item> <item>89</item> <item>95</item> <item>101</item> <item>107</item> <item>113</item> <item>119</item> <item>125</item> <item>131</item> <item>137</item> <item>143</item> <item>149</item> <item>155</item> <item>161</item> <item>167</item> <item>174</item> <item>181</item> <item>188</item> <item>195</item> <item>202</item> <item>209</item> <item>216</item> <item>223</item> </second> </item> </second> </item> </dp_port_io_nodes> <port2core class_id="54" tracking_level="0" version="0"> <count>2</count> <item_version>0</item_version> <item class_id="55" tracking_level="0" version="0"> <first>1</first> <second>FSL</second> </item> <item> <first>2</first> <second>RAM_2P_BRAM</second> </item> </port2core> <node2core> <count>0</count> <item_version>0</item_version> </node2core> </syndb> </boost_serialization>
----------------------------------------------------------------------- -- awa-blogs-tests -- Unit tests for blogs module -- Copyright (C) 2017, 2018, 2019, 2020 Stephane Carrez -- Written by Stephane Carrez (Stephane.Carrez@gmail.com) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- with Util.Test_Caller; with ASF.Requests.Mockup; with ASF.Responses.Mockup; with ASF.Tests; with AWA.Tests.Helpers.Users; package body AWA.Blogs.Tests is use Ada.Strings.Unbounded; use AWA.Tests; package Caller is new Util.Test_Caller (Test, "Blogs.Beans"); procedure Add_Tests (Suite : in Util.Tests.Access_Test_Suite) is begin Caller.Add_Test (Suite, "Test AWA.Blogs.Beans.List_Post (Anonymous)", Test_Anonymous_Access'Access); Caller.Add_Test (Suite, "Test AWA.Blogs.Beans.Create_Blog", Test_Create_Blog'Access); Caller.Add_Test (Suite, "Test AWA.Blogs.Beans.Update_Post", Test_Update_Post'Access); Caller.Add_Test (Suite, "Test AWA.Blogs.Beans.List_Post (Admin)", Test_Admin_List_Posts'Access); Caller.Add_Test (Suite, "Test AWA.Blogs.Beans.List_Comments (Admin)", Test_Admin_List_Comments'Access); Caller.Add_Test (Suite, "Test AWA.Blogs.Beans.Stats (Admin)", Test_Admin_Blog_Stats'Access); Caller.Add_Test (Suite, "Test AWA.Blogs.Beans.Update_Post (Publish_Date)", Test_Update_Publish_Date'Access); end Add_Tests; -- ------------------------------ -- Get some access on the blog as anonymous users. -- ------------------------------ procedure Verify_Anonymous (T : in out Test; Post : in String) is Request : ASF.Requests.Mockup.Request; Reply : ASF.Responses.Mockup.Response; begin ASF.Tests.Do_Get (Request, Reply, "/blogs/view.html", "blog-view.html"); ASF.Tests.Assert_Contains (T, "Blog posts", Reply, "Blog view page is invalid"); ASF.Tests.Do_Get (Request, Reply, "/blogs/tagged.html?tag=test", "blog-tagged.html"); ASF.Tests.Assert_Contains (T, "Tag - test", Reply, "Blog tag page is invalid"); ASF.Tests.Do_Get (Request, Reply, "/blogs/post.html?post=missing", "blog-missing.html"); ASF.Tests.Assert_Matches (T, "The post you are looking for does not exist", Reply, "Blog post missing page is invalid", ASF.Responses.SC_NOT_FOUND); if Post = "" then return; end if; ASF.Tests.Do_Get (Request, Reply, "/blogs/post.html?post=" & Post, "blog-post.html"); ASF.Tests.Assert_Matches (T, ".*The blog post.*content.*", Reply, "Blog post page is invalid" ); end Verify_Anonymous; -- ------------------------------ -- Test access to the blog as anonymous user. -- ------------------------------ procedure Test_Anonymous_Access (T : in out Test) is begin T.Verify_Anonymous (""); end Test_Anonymous_Access; -- ------------------------------ -- Test creation of blog by simulating web requests. -- ------------------------------ procedure Test_Create_Blog (T : in out Test) is Request : ASF.Requests.Mockup.Request; Reply : ASF.Responses.Mockup.Response; Uuid : constant String := Util.Tests.Get_Uuid; begin AWA.Tests.Helpers.Users.Login ("test-wiki@test.com", Request); ASF.Tests.Do_Get (Request, Reply, "/blogs/admin/create-blog.html", "create-blog-get.html"); T.Assert (Reply.Get_Status = ASF.Responses.SC_OK, "Invalid response after getting blog creation page"); ASF.Tests.Assert_Matches (T, "<dl id=.title.*<dt><label for=.title.*" & "<dd><input type=.text.*", Reply, "Blog post admin page is missing input field"); Request.Set_Parameter ("title", "The Blog Title"); Request.Set_Parameter ("create-blog", "1"); Request.Set_Parameter ("create", "1"); ASF.Tests.Do_Post (Request, Reply, "/blogs/admin/create-blog.html", "create-blog.html"); T.Assert (Reply.Get_Status = ASF.Responses.SC_MOVED_TEMPORARILY, "Invalid response after blog creation"); declare Ident : constant String := Helpers.Extract_Redirect (Reply, "/asfunit/blogs/admin/create.html?id="); begin Util.Tests.Assert_Matches (T, "^[0-9]+$", Ident, "Invalid blog identifier in the response"); T.Blog_Ident := To_Unbounded_String (Ident); Request.Set_Parameter ("post-blog-id", Ident); Request.Set_Parameter ("post", "1"); Request.Set_Parameter ("post-title", "Post title"); Request.Set_Parameter ("text", "The blog post content."); Request.Set_Parameter ("uri", Uuid); Request.Set_Parameter ("save", "1"); Request.Set_Parameter ("post-status", "1"); Request.Set_Parameter ("allow-comment", "0"); Request.Set_Parameter ("post-format", "dotclear"); ASF.Tests.Do_Post (Request, Reply, "/blogs/admin/create.html", "create-post.html"); T.Post_Ident := Helpers.Extract_Redirect (Reply, "/asfunit/blogs/admin/" & Ident & "/preview/"); Util.Tests.Assert_Matches (T, "^[0-9]+$", To_String (T.Post_Ident), "Invalid post identifier in the response"); end; -- Check public access to the post. T.Post_Uri := To_Unbounded_String (Uuid); T.Verify_Anonymous (Uuid); end Test_Create_Blog; -- ------------------------------ -- Test updating a post by simulating web requests. -- ------------------------------ procedure Test_Update_Post (T : in out Test) is Request : ASF.Requests.Mockup.Request; Reply : ASF.Responses.Mockup.Response; Uuid : constant String := Util.Tests.Get_Uuid; Ident : constant String := To_String (T.Blog_Ident); Post_Ident : Unbounded_String; begin AWA.Tests.Helpers.Users.Login ("test-wiki@test.com", Request); Request.Set_Parameter ("post-blog-id", Ident); Request.Set_Parameter ("post-id", To_String (T.Post_Ident)); Request.Set_Parameter ("post", "1"); Request.Set_Parameter ("post-title", "New post title"); Request.Set_Parameter ("text", "The blog post new content."); Request.Set_Parameter ("uri", Uuid); Request.Set_Parameter ("save", "1"); Request.Set_Parameter ("post-status", "POST_PUBLISHED"); Request.Set_Parameter ("post-format", "dotclear"); Request.Set_Parameter ("allow-comment", "0"); ASF.Tests.Do_Post (Request, Reply, "/blogs/admin/edit.html", "edit-post.html"); Post_Ident := Helpers.Extract_Redirect (Reply, "/asfunit/blogs/admin/" & Ident & "/preview/"); Util.Tests.Assert_Equals (T, To_String (T.Post_Ident), To_String (Post_Ident), "Invalid post identifier returned after post update"); T.Verify_Anonymous (Uuid); end Test_Update_Post; -- ------------------------------ -- Test updating the publication date by simulating web requests. -- ------------------------------ procedure Test_Update_Publish_Date (T : in out Test) is Request : ASF.Requests.Mockup.Request; Reply : ASF.Responses.Mockup.Response; Uuid : constant String := Util.Tests.Get_Uuid; Ident : constant String := To_String (T.Blog_Ident); Post_Ident : Unbounded_String; begin AWA.Tests.Helpers.Users.Login ("test-wiki@test.com", Request); Request.Set_Parameter ("post_id", To_String (T.Post_Ident)); Request.Set_Parameter ("blog_id", Ident); ASF.Tests.Do_Get (Request, Reply, "/blogs/admin/edit.html", "edit-post-form.html"); Request.Set_Parameter ("post-blog-id", Ident); Request.Set_Parameter ("post-id", To_String (T.Post_Ident)); Request.Set_Parameter ("post", "1"); Request.Set_Parameter ("post-title", "New post title"); Request.Set_Parameter ("text", "The blog post new content."); Request.Set_Parameter ("uri", Uuid); Request.Set_Parameter ("save", "POST_PUBLISHED"); Request.Set_Parameter ("post-format", "dotclear"); Request.Set_Parameter ("post-status", "1"); Request.Set_Parameter ("allow-comment", "0"); Request.Set_Parameter ("publish-date", ""); ASF.Tests.Do_Post (Request, Reply, "/blogs/admin/edit.html", "edit-post.html"); Post_Ident := Helpers.Extract_Redirect (Reply, "/asfunit/blogs/admin/" & Ident & "/preview/"); Util.Tests.Assert_Equals (T, To_String (T.Post_Ident), To_String (Post_Ident), "Invalid post identifier returned after post update"); T.Verify_Anonymous (Uuid); end Test_Update_Publish_Date; -- ------------------------------ -- Test listing the blog posts. -- ------------------------------ procedure Test_Admin_List_Posts (T : in out Test) is Request : ASF.Requests.Mockup.Request; Reply : ASF.Responses.Mockup.Response; Ident : constant String := To_String (T.Blog_Ident); begin AWA.Tests.Helpers.Users.Login ("test-wiki@test.com", Request); ASF.Tests.Do_Get (Request, Reply, "/blogs/admin/list.html?id=" & Ident, "blog-list.html"); ASF.Tests.Assert_Contains (T, "blog-post-list-header", Reply, "Blog admin page is invalid"); end Test_Admin_List_Posts; -- ------------------------------ -- Test listing the blog comments. -- ------------------------------ procedure Test_Admin_List_Comments (T : in out Test) is Request : ASF.Requests.Mockup.Request; Reply : ASF.Responses.Mockup.Response; Ident : constant String := To_String (T.Blog_Ident); begin AWA.Tests.Helpers.Users.Login ("test-wiki@test.com", Request); ASF.Tests.Do_Get (Request, Reply, "/blogs/admin/list-comments.html?id=" & Ident, "blog-list-comments.html"); ASF.Tests.Assert_Contains (T, "blog-comment-list-header", Reply, "Blog admin comments page is invalid"); end Test_Admin_List_Comments; -- ------------------------------ -- Test getting the JSON blog stats (for graphs). -- ------------------------------ procedure Test_Admin_Blog_Stats (T : in out Test) is Request : ASF.Requests.Mockup.Request; Reply : ASF.Responses.Mockup.Response; Ident : constant String := To_String (T.Blog_Ident); begin AWA.Tests.Helpers.Users.Login ("test-wiki@test.com", Request); ASF.Tests.Do_Get (Request, Reply, "/blogs/admin/" & Ident & "/stats", "blog-stats.html"); ASF.Tests.Assert_Contains (T, "data", Reply, "Blog admin stats page is invalid"); end Test_Admin_Blog_Stats; end AWA.Blogs.Tests;
-- SPDX-License-Identifier: Apache-2.0 -- -- Copyright (c) 2014 Felix Krause <contact@flyx.org> -- Copyright (c) 2016 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 Interfaces.C.Pointers; package GL.Types.Pointers is pragma Preelaborate; -- Pointer types (for use with data transfer functions) package Byte_Pointers is new Interfaces.C.Pointers (Size, Byte, Byte_Array, Byte'Last); package Short_Pointers is new Interfaces.C.Pointers (Size, Short, Short_Array, Short'Last); package Int_Pointers is new Interfaces.C.Pointers (Size, Int, Int_Array, Int'Last); package UByte_Pointers is new Interfaces.C.Pointers (Size, UByte, UByte_Array, UByte'Last); package UShort_Pointers is new Interfaces.C.Pointers (Size, UShort, UShort_Array, UShort'Last); package UInt_Pointers is new Interfaces.C.Pointers (Size, UInt, UInt_Array, UInt'Last); package Half_Pointers is new Interfaces.C.Pointers (Size, Half, Half_Array, 0); package Single_Pointers is new Interfaces.C.Pointers (Size, Single, Single_Array, 0.0); package Double_Pointers is new Interfaces.C.Pointers (Size, Double, Double_Array, 0.0); type String_Access is not null access constant String; type String_Array is array (Positive range <>) of String_Access; type UByte_Array_Access is access UByte_Array; end GL.Types.Pointers;
----------------------------------------------------------------------- -- asf-lifecycles-invoke -- Invoke application phase -- Copyright (C) 2010 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. ----------------------------------------------------------------------- -- The <b>ASF.Lifecycles.Invoke</b> package defines the behavior -- of the invoke application phase. package ASF.Lifecycles.Invoke is -- ------------------------------ -- Invoke application controller -- ------------------------------ type Invoke_Controller is new Phase_Controller with null record; -- Execute the invoke application phase. overriding procedure Execute (Controller : in Invoke_Controller; Context : in out ASF.Contexts.Faces.Faces_Context'Class); end ASF.Lifecycles.Invoke;
-- This spec has been automatically generated from STM32L4x6.svd pragma Restrictions (No_Elaboration_Code); pragma Ada_2012; pragma Style_Checks (Off); with HAL; with System; package STM32_SVD.Flash is pragma Preelaborate; --------------- -- Registers -- --------------- subtype ACR_LATENCY_Field is HAL.UInt3; -- Access control register type ACR_Register is record -- Latency LATENCY : ACR_LATENCY_Field := 16#0#; -- unspecified Reserved_3_7 : HAL.UInt5 := 16#0#; -- Prefetch enable PRFTEN : Boolean := False; -- Instruction cache enable ICEN : Boolean := True; -- Data cache enable DCEN : Boolean := True; -- Instruction cache reset ICRST : Boolean := False; -- Data cache reset DCRST : Boolean := False; -- Flash Power-down mode during Low-power run mode RUN_PD : Boolean := False; -- Flash Power-down mode during Low-power sleep mode SLEEP_PD : Boolean := False; -- unspecified Reserved_15_31 : HAL.UInt17 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for ACR_Register use record LATENCY at 0 range 0 .. 2; Reserved_3_7 at 0 range 3 .. 7; PRFTEN at 0 range 8 .. 8; ICEN at 0 range 9 .. 9; DCEN at 0 range 10 .. 10; ICRST at 0 range 11 .. 11; DCRST at 0 range 12 .. 12; RUN_PD at 0 range 13 .. 13; SLEEP_PD at 0 range 14 .. 14; Reserved_15_31 at 0 range 15 .. 31; end record; -- Status register type SR_Register is record -- End of operation EOP : Boolean := False; -- Operation error OPERR : Boolean := False; -- unspecified Reserved_2_2 : HAL.Bit := 16#0#; -- Programming error PROGERR : Boolean := False; -- Write protected error WRPERR : Boolean := False; -- Programming alignment error PGAERR : Boolean := False; -- Size error SIZERR : Boolean := False; -- Programming sequence error PGSERR : Boolean := False; -- Fast programming data miss error MISERR : Boolean := False; -- Fast programming error FASTERR : Boolean := False; -- unspecified Reserved_10_13 : HAL.UInt4 := 16#0#; -- PCROP read error RDERR : Boolean := False; -- Option validity error OPTVERR : Boolean := False; -- Read-only. Busy BSY : 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 SR_Register use record EOP at 0 range 0 .. 0; OPERR at 0 range 1 .. 1; Reserved_2_2 at 0 range 2 .. 2; PROGERR at 0 range 3 .. 3; WRPERR at 0 range 4 .. 4; PGAERR at 0 range 5 .. 5; SIZERR at 0 range 6 .. 6; PGSERR at 0 range 7 .. 7; MISERR at 0 range 8 .. 8; FASTERR at 0 range 9 .. 9; Reserved_10_13 at 0 range 10 .. 13; RDERR at 0 range 14 .. 14; OPTVERR at 0 range 15 .. 15; BSY at 0 range 16 .. 16; Reserved_17_31 at 0 range 17 .. 31; end record; subtype CR_PNB_Field is HAL.UInt8; -- Flash control register type CR_Register is record -- Programming PG : Boolean := False; -- Page erase PER : Boolean := False; -- Bank 1 Mass erase MER1 : Boolean := False; -- Page number PNB : CR_PNB_Field := 16#0#; -- Bank erase BKER : Boolean := False; -- unspecified Reserved_12_14 : HAL.UInt3 := 16#0#; -- Bank 2 Mass erase MER2 : Boolean := False; -- Start START : Boolean := False; -- Options modification start OPTSTRT : Boolean := False; -- Fast programming FSTPG : Boolean := False; -- unspecified Reserved_19_23 : HAL.UInt5 := 16#0#; -- End of operation interrupt enable EOPIE : Boolean := False; -- Error interrupt enable ERRIE : Boolean := False; -- PCROP read error interrupt enable RDERRIE : Boolean := False; -- Force the option byte loading OBL_LAUNCH : Boolean := False; -- unspecified Reserved_28_29 : HAL.UInt2 := 16#0#; -- Options Lock OPTLOCK : Boolean := True; -- FLASH_CR Lock LOCK : Boolean := True; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for CR_Register use record PG at 0 range 0 .. 0; PER at 0 range 1 .. 1; MER1 at 0 range 2 .. 2; PNB at 0 range 3 .. 10; BKER at 0 range 11 .. 11; Reserved_12_14 at 0 range 12 .. 14; MER2 at 0 range 15 .. 15; START at 0 range 16 .. 16; OPTSTRT at 0 range 17 .. 17; FSTPG at 0 range 18 .. 18; Reserved_19_23 at 0 range 19 .. 23; EOPIE at 0 range 24 .. 24; ERRIE at 0 range 25 .. 25; RDERRIE at 0 range 26 .. 26; OBL_LAUNCH at 0 range 27 .. 27; Reserved_28_29 at 0 range 28 .. 29; OPTLOCK at 0 range 30 .. 30; LOCK at 0 range 31 .. 31; end record; subtype ECCR_ADDR_ECC_Field is HAL.UInt19; -- Flash ECC register type ECCR_Register is record -- Read-only. ECC fail address ADDR_ECC : ECCR_ADDR_ECC_Field := 16#0#; -- Read-only. ECC fail bank BK_ECC : Boolean := False; -- Read-only. System Flash ECC fail SYSF_ECC : Boolean := False; -- unspecified Reserved_21_23 : HAL.UInt3 := 16#0#; -- ECC correction interrupt enable ECCIE : Boolean := False; -- unspecified Reserved_25_29 : HAL.UInt5 := 16#0#; -- ECC correction ECCC : Boolean := False; -- ECC detection ECCD : Boolean := False; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for ECCR_Register use record ADDR_ECC at 0 range 0 .. 18; BK_ECC at 0 range 19 .. 19; SYSF_ECC at 0 range 20 .. 20; Reserved_21_23 at 0 range 21 .. 23; ECCIE at 0 range 24 .. 24; Reserved_25_29 at 0 range 25 .. 29; ECCC at 0 range 30 .. 30; ECCD at 0 range 31 .. 31; end record; subtype OPTR_RDP_Field is HAL.UInt8; subtype OPTR_BOR_LEV_Field is HAL.UInt3; -- Flash option register type OPTR_Register is record -- Read protection level RDP : OPTR_RDP_Field := 16#0#; -- BOR reset Level BOR_LEV : OPTR_BOR_LEV_Field := 16#0#; -- unspecified Reserved_11_11 : HAL.Bit := 16#0#; -- nRST_STOP nRST_STOP : Boolean := False; -- nRST_STDBY nRST_STDBY : Boolean := False; -- unspecified Reserved_14_15 : HAL.UInt2 := 16#0#; -- Independent watchdog selection IDWG_SW : Boolean := False; -- Independent watchdog counter freeze in Stop mode IWDG_STOP : Boolean := False; -- Independent watchdog counter freeze in Standby mode IWDG_STDBY : Boolean := False; -- Window watchdog selection WWDG_SW : Boolean := False; -- Dual-bank boot BFB2 : Boolean := False; -- Dual-Bank on 512 KB or 256 KB Flash memory devices DUALBANK : Boolean := False; -- unspecified Reserved_22_22 : HAL.Bit := 16#0#; -- Boot configuration nBOOT1 : Boolean := False; -- SRAM2 parity check enable SRAM2_PE : Boolean := False; -- SRAM2 Erase when system reset SRAM2_RST : Boolean := False; -- unspecified Reserved_26_31 : HAL.UInt6 := 16#3C#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for OPTR_Register use record RDP at 0 range 0 .. 7; BOR_LEV at 0 range 8 .. 10; Reserved_11_11 at 0 range 11 .. 11; nRST_STOP at 0 range 12 .. 12; nRST_STDBY at 0 range 13 .. 13; Reserved_14_15 at 0 range 14 .. 15; IDWG_SW at 0 range 16 .. 16; IWDG_STOP at 0 range 17 .. 17; IWDG_STDBY at 0 range 18 .. 18; WWDG_SW at 0 range 19 .. 19; BFB2 at 0 range 20 .. 20; DUALBANK at 0 range 21 .. 21; Reserved_22_22 at 0 range 22 .. 22; nBOOT1 at 0 range 23 .. 23; SRAM2_PE at 0 range 24 .. 24; SRAM2_RST at 0 range 25 .. 25; Reserved_26_31 at 0 range 26 .. 31; end record; subtype PCROP1SR_PCROP1_STRT_Field is HAL.UInt16; -- Flash Bank 1 PCROP Start address register type PCROP1SR_Register is record -- Bank 1 PCROP area start offset PCROP1_STRT : PCROP1SR_PCROP1_STRT_Field := 16#0#; -- unspecified Reserved_16_31 : HAL.UInt16 := 16#FFFF#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for PCROP1SR_Register use record PCROP1_STRT at 0 range 0 .. 15; Reserved_16_31 at 0 range 16 .. 31; end record; subtype PCROP1ER_PCROP1_END_Field is HAL.UInt16; -- Flash Bank 1 PCROP End address register type PCROP1ER_Register is record -- Bank 1 PCROP area end offset PCROP1_END : PCROP1ER_PCROP1_END_Field := 16#0#; -- unspecified Reserved_16_30 : HAL.UInt15 := 16#FFF#; -- PCROP area preserved when RDP level decreased PCROP_RDP : Boolean := False; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for PCROP1ER_Register use record PCROP1_END at 0 range 0 .. 15; Reserved_16_30 at 0 range 16 .. 30; PCROP_RDP at 0 range 31 .. 31; end record; subtype WRP1AR_WRP1A_STRT_Field is HAL.UInt8; subtype WRP1AR_WRP1A_END_Field is HAL.UInt8; -- Flash Bank 1 WRP area A address register type WRP1AR_Register is record -- Bank 1 WRP first area start offset WRP1A_STRT : WRP1AR_WRP1A_STRT_Field := 16#0#; -- unspecified Reserved_8_15 : HAL.UInt8 := 16#FF#; -- Bank 1 WRP first area A end offset WRP1A_END : WRP1AR_WRP1A_END_Field := 16#0#; -- unspecified Reserved_24_31 : HAL.UInt8 := 16#FF#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for WRP1AR_Register use record WRP1A_STRT at 0 range 0 .. 7; Reserved_8_15 at 0 range 8 .. 15; WRP1A_END at 0 range 16 .. 23; Reserved_24_31 at 0 range 24 .. 31; end record; subtype WRP1BR_WRP1B_END_Field is HAL.UInt8; subtype WRP1BR_WRP1B_STRT_Field is HAL.UInt8; -- Flash Bank 1 WRP area B address register type WRP1BR_Register is record -- Bank 1 WRP second area B start offset WRP1B_END : WRP1BR_WRP1B_END_Field := 16#0#; -- unspecified Reserved_8_15 : HAL.UInt8 := 16#FF#; -- Bank 1 WRP second area B end offset WRP1B_STRT : WRP1BR_WRP1B_STRT_Field := 16#0#; -- unspecified Reserved_24_31 : HAL.UInt8 := 16#FF#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for WRP1BR_Register use record WRP1B_END at 0 range 0 .. 7; Reserved_8_15 at 0 range 8 .. 15; WRP1B_STRT at 0 range 16 .. 23; Reserved_24_31 at 0 range 24 .. 31; end record; subtype PCROP2SR_PCROP2_STRT_Field is HAL.UInt16; -- Flash Bank 2 PCROP Start address register type PCROP2SR_Register is record -- Bank 2 PCROP area start offset PCROP2_STRT : PCROP2SR_PCROP2_STRT_Field := 16#0#; -- unspecified Reserved_16_31 : HAL.UInt16 := 16#FFFF#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for PCROP2SR_Register use record PCROP2_STRT at 0 range 0 .. 15; Reserved_16_31 at 0 range 16 .. 31; end record; subtype PCROP2ER_PCROP2_END_Field is HAL.UInt16; -- Flash Bank 2 PCROP End address register type PCROP2ER_Register is record -- Bank 2 PCROP area end offset PCROP2_END : PCROP2ER_PCROP2_END_Field := 16#0#; -- unspecified Reserved_16_31 : HAL.UInt16 := 16#FFFF#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for PCROP2ER_Register use record PCROP2_END at 0 range 0 .. 15; Reserved_16_31 at 0 range 16 .. 31; end record; subtype WRP2AR_WRP2A_STRT_Field is HAL.UInt8; subtype WRP2AR_WRP2A_END_Field is HAL.UInt8; -- Flash Bank 2 WRP area A address register type WRP2AR_Register is record -- Bank 2 WRP first area A start offset WRP2A_STRT : WRP2AR_WRP2A_STRT_Field := 16#0#; -- unspecified Reserved_8_15 : HAL.UInt8 := 16#FF#; -- Bank 2 WRP first area A end offset WRP2A_END : WRP2AR_WRP2A_END_Field := 16#0#; -- unspecified Reserved_24_31 : HAL.UInt8 := 16#FF#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for WRP2AR_Register use record WRP2A_STRT at 0 range 0 .. 7; Reserved_8_15 at 0 range 8 .. 15; WRP2A_END at 0 range 16 .. 23; Reserved_24_31 at 0 range 24 .. 31; end record; subtype WRP2BR_WRP2B_STRT_Field is HAL.UInt8; subtype WRP2BR_WRP2B_END_Field is HAL.UInt8; -- Flash Bank 2 WRP area B address register type WRP2BR_Register is record -- Bank 2 WRP second area B start offset WRP2B_STRT : WRP2BR_WRP2B_STRT_Field := 16#0#; -- unspecified Reserved_8_15 : HAL.UInt8 := 16#FF#; -- Bank 2 WRP second area B end offset WRP2B_END : WRP2BR_WRP2B_END_Field := 16#0#; -- unspecified Reserved_24_31 : HAL.UInt8 := 16#FF#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for WRP2BR_Register use record WRP2B_STRT at 0 range 0 .. 7; Reserved_8_15 at 0 range 8 .. 15; WRP2B_END at 0 range 16 .. 23; Reserved_24_31 at 0 range 24 .. 31; end record; ----------------- -- Peripherals -- ----------------- -- Flash type FLASH_Peripheral is record -- Access control register ACR : aliased ACR_Register; -- Power down key register PDKEYR : aliased HAL.UInt32; -- Flash key register KEYR : aliased HAL.UInt32; -- Option byte key register OPTKEYR : aliased HAL.UInt32; -- Status register SR : aliased SR_Register; -- Flash control register CR : aliased CR_Register; -- Flash ECC register ECCR : aliased ECCR_Register; -- Flash option register OPTR : aliased OPTR_Register; -- Flash Bank 1 PCROP Start address register PCROP1SR : aliased PCROP1SR_Register; -- Flash Bank 1 PCROP End address register PCROP1ER : aliased PCROP1ER_Register; -- Flash Bank 1 WRP area A address register WRP1AR : aliased WRP1AR_Register; -- Flash Bank 1 WRP area B address register WRP1BR : aliased WRP1BR_Register; -- Flash Bank 2 PCROP Start address register PCROP2SR : aliased PCROP2SR_Register; -- Flash Bank 2 PCROP End address register PCROP2ER : aliased PCROP2ER_Register; -- Flash Bank 2 WRP area A address register WRP2AR : aliased WRP2AR_Register; -- Flash Bank 2 WRP area B address register WRP2BR : aliased WRP2BR_Register; end record with Volatile; for FLASH_Peripheral use record ACR at 16#0# range 0 .. 31; PDKEYR at 16#4# range 0 .. 31; KEYR at 16#8# range 0 .. 31; OPTKEYR at 16#C# range 0 .. 31; SR at 16#10# range 0 .. 31; CR at 16#14# range 0 .. 31; ECCR at 16#18# range 0 .. 31; OPTR at 16#20# range 0 .. 31; PCROP1SR at 16#24# range 0 .. 31; PCROP1ER at 16#28# range 0 .. 31; WRP1AR at 16#2C# range 0 .. 31; WRP1BR at 16#30# range 0 .. 31; PCROP2SR at 16#44# range 0 .. 31; PCROP2ER at 16#48# range 0 .. 31; WRP2AR at 16#4C# range 0 .. 31; WRP2BR at 16#50# range 0 .. 31; end record; -- Flash FLASH_Periph : aliased FLASH_Peripheral with Import, Address => System'To_Address (16#40022000#); end STM32_SVD.Flash;
package Memory_Analyzer is function Count (Size : Integer; File : String; Var : String) return Boolean; end Memory_Analyzer;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- G N A T . T R A C E B A C K . S Y M B O L I C -- -- -- -- S p e c -- -- -- -- Copyright (C) 1999-2014, AdaCore -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- Run-time symbolic traceback support -- See file s-trasym.ads for full documentation of the interface with System.Traceback.Symbolic; package GNAT.Traceback.Symbolic renames System.Traceback.Symbolic;
-- Copyright 2004-2019 Free Software Foundation, Inc. -- -- This program is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- the Free Software Foundation; either version 3 of the License, or -- (at your option) any later version. -- -- This program is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- GNU General Public License for more details. -- -- You should have received a copy of the GNU General Public License -- along with this program. If not, see <http://www.gnu.org/licenses/>. package Bar is type Empty is null record; type Void_Star is access all Empty; procedure Do_Nothing (E : Void_Star); end Bar;
-- SPDX-FileCopyrightText: 2020 Max Reznik <reznikmm@gmail.com> -- -- SPDX-License-Identifier: MIT ---------------------------------------------------------------- with Ada.Containers.Vectors; with League.Strings; with League.String_Vectors; with Markdown.Link_Registers; package Markdown.Inline_Parsers is type Annotation_Kind is (Soft_Line_Break, Emphasis, Strong, Link, Code_Span, Open_HTML_Tag, Close_HTML_Tag, HTML_Comment, HTML_Processing_Instruction, HTML_Declaration, HTML_CDATA); type HTML_Attribute is record Name : League.Strings.Universal_String; Value : League.String_Vectors.Universal_String_Vector; -- An empty vector means no value for the attribute end record; package Attr_Vectors is new Ada.Containers.Vectors (Positive, HTML_Attribute); type Annotation (Kind : Annotation_Kind := Annotation_Kind'First) is record From : Positive; To : Natural; case Kind is when Emphasis | Strong | Link => case Kind is when Link => Destination : League.Strings.Universal_String; Title : League.String_Vectors.Universal_String_Vector; when others => null; end case; when Soft_Line_Break | Code_Span => null; when Open_HTML_Tag | Close_HTML_Tag => Tag : League.Strings.Universal_String; case Kind is when Open_HTML_Tag => Attr : Attr_Vectors.Vector; Is_Empty : Boolean; when others => null; end case; when HTML_Comment => HTML_Comment : League.String_Vectors.Universal_String_Vector; when HTML_Processing_Instruction => HTML_PI : League.String_Vectors.Universal_String_Vector; when HTML_Declaration => HTML_Decl : League.String_Vectors.Universal_String_Vector; when HTML_CDATA => HTML_CDATA : League.String_Vectors.Universal_String_Vector; end case; end record; package Annotation_Vectors is new Ada.Containers.Vectors (Positive, Annotation); type Annotated_Text is record Plain_Text : League.Strings.Universal_String; Annotation : Annotation_Vectors.Vector; end record; function Parse (Register : Markdown.Link_Registers.Link_Register'Class; Lines : League.String_Vectors.Universal_String_Vector) return Annotated_Text; private type Position is record Line : Positive; Column : Natural; end record; function "+" (Cursor : Position; Value : Integer) return Position is ((Cursor.Line, Cursor.Column + Value)); function "<" (Left, Right : Position) return Boolean is (Left.Line < Right.Line or (Left.Line = Right.Line and Left.Column < Right.Column)); function "<=" (Left, Right : Position) return Boolean is (Left < Right or Left = Right); function ">" (Left, Right : Position) return Boolean is (Left.Line > Right.Line or (Left.Line = Right.Line and Left.Column > Right.Column)); package Plain_Texts is type Plain_Text is tagged limited private; procedure Initialize (Self : in out Plain_Text'Class; Text : League.String_Vectors.Universal_String_Vector; From : Position := (1, 1); To : Position := (Positive'Last, Positive'Last)); procedure Initialize (Self : in out Plain_Text'Class; Text : Plain_Text'Class; From : Position; To : Position := (Positive'Last, Positive'Last)); function First (Self : Plain_Text'Class) return Position; function Last (Self : Plain_Text'Class) return Position; function Line (Self : Plain_Text'Class; From : Position) return League.Strings.Universal_String; function Line (Self : Plain_Text'Class; Index : Positive) return League.Strings.Universal_String; function Lines (Self : Plain_Text'Class) return Positive; pragma Unreferenced (Lines); procedure Step (Self : Plain_Text'Class; Value : Natural; Cursor : in out Position); function Join (Self : Plain_Text'Class; From : Position; Char : Wide_Wide_Character) return League.Strings.Universal_String; private type Plain_Text is tagged limited record Data : League.String_Vectors.Universal_String_Vector; From : Position; To : Position; end record; end Plain_Texts; type Inline_Span is record From : Position; To : Position; end record; type Optional_Inline_State (Is_Set : Boolean := False) is record case Is_Set is when True => Span : Inline_Span; Value : Annotated_Text; when False => null; end case; end record; end Markdown.Inline_Parsers;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- S Y S T E M . I M G _ U T I L -- -- -- -- S p e c -- -- -- -- Copyright (C) 2020-2021, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- -- -- -- -- -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- This package provides some common utilities used by the s-imgxxx files package System.Img_Util is pragma Pure; Max_Real_Image_Length : constant := 5200; -- If Exp is set to zero and Aft is set to Text_IO.Field'Last (i.e., 255) -- then Long_Long_Float'Last generates an image whose length is slightly -- less than 5200. procedure Set_Decimal_Digits (Digs : in out String; NDigs : Natural; S : out String; P : in out Natural; Scale : Integer; Fore : Natural; Aft : Natural; Exp : Natural); -- Sets the image of Digs (1 .. NDigs), which is a string of decimal digits -- preceded by either a minus sign or a space, i.e. the integer image of -- the value in units of delta if this is for a decimal fixed point type -- with the given Scale, or the integer image of the value converted to an -- implicit decimal fixed point type with the given Scale if this is for an -- ordinary fixed point type, starting at S (P + 1), updating P to point to -- the last character stored. The caller promises that the buffer is large -- enough and therefore no check is made for it. Constraint_Error will not -- necessarily be raised if the requirement is violated since it is valid -- to compile this unit with checks off. The Fore, Aft and Exp values can -- be set to any valid values for the case of use by Text_IO.Decimal_IO or -- Text_IO.Fixed_IO. Note that there is no leading space stored. The call -- may destroy the value in Digs, which is why Digs is in-out (this happens -- if rounding is required). type Floating_Invalid_Value is (Minus_Infinity, Infinity, Not_A_Number); procedure Set_Floating_Invalid_Value (V : Floating_Invalid_Value; S : out String; P : in out Natural; Fore : Natural; Aft : Natural; Exp : Natural); -- Sets the image of a floating-point invalid value, starting at S (P + 1), -- updating P to point to the last character stored. The caller promises -- that the buffer is large enough and therefore no check is made for it. -- Constraint_Error will not necessarily be raised if the requirement is -- violated since it is valid to compile this unit with checks off. end System.Img_Util;
-- { dg-do compile } -- { dg-options "-O -gnatn -Winline" } with Inline6_Pkg; use Inline6_Pkg; procedure Inline6 is begin Test (0); end;
------------------------------------------------------------------------------ -- -- -- GNAT LIBRARY COMPONENTS -- -- -- -- ADA.CONTAINERS.HASH_TABLES.GENERIC_KEYS -- -- -- -- S p e c -- -- -- -- Copyright (C) 2004-2009, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- -- -- -- -- -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- This unit was originally developed by Matthew J Heaney. -- ------------------------------------------------------------------------------ -- Hash_Table_Type is used to implement hashed containers. This package -- declares hash-table operations that depend on keys. generic with package HT_Types is new Generic_Hash_Table_Types (<>); use HT_Types; with function Next (Node : Node_Access) return Node_Access; with procedure Set_Next (Node : Node_Access; Next : Node_Access); type Key_Type (<>) is limited private; with function Hash (Key : Key_Type) return Hash_Type; with function Equivalent_Keys (Key : Key_Type; Node : Node_Access) return Boolean; package Ada.Containers.Hash_Tables.Generic_Keys is pragma Preelaborate; function Index (HT : Hash_Table_Type; Key : Key_Type) return Hash_Type; pragma Inline (Index); -- Returns the bucket number (array index value) for the given key procedure Delete_Key_Sans_Free (HT : in out Hash_Table_Type; Key : Key_Type; X : out Node_Access); -- Removes the node (if any) with the given key from the hash table, -- without deallocating it. Program_Error is raised if the hash -- table is busy. function Find (HT : Hash_Table_Type; Key : Key_Type) return Node_Access; -- Returns the node (if any) corresponding to the given key generic with function New_Node (Next : Node_Access) return Node_Access; procedure Generic_Conditional_Insert (HT : in out Hash_Table_Type; Key : Key_Type; Node : out Node_Access; Inserted : out Boolean); -- Attempts to insert a new node with the given key into the hash table. -- If a node with that key already exists in the table, then that node -- is returned and Inserted returns False. Otherwise New_Node is called -- to allocate a new node, and Inserted returns True. Program_Error is -- raised if the hash table is busy. generic with function Hash (Node : Node_Access) return Hash_Type; with procedure Assign (Node : Node_Access; Key : Key_Type); procedure Generic_Replace_Element (HT : in out Hash_Table_Type; Node : Node_Access; Key : Key_Type); -- Assigns Key to Node, possibly changing its equivalence class. If Node -- is in the same equivalence class as Key (that is, it's already in the -- bucket implied by Key), then if the hash table is locked then -- Program_Error is raised; otherwise Assign is called to assign Key to -- Node. If Node is in a different bucket from Key, then Program_Error is -- raised if the hash table is busy. Otherwise it Assigns Key to Node and -- moves the Node from its current bucket to the bucket implied by Key. -- Note that it is never proper to assign to Node a key value already -- in the map, and so if Key is equivalent to some other node then -- Program_Error is raised. end Ada.Containers.Hash_Tables.Generic_Keys;
----------------------------------------------------------------------- -- awa-applications -- Ada Web Application -- Copyright (C) 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018 Stephane Carrez -- Written by Stephane Carrez (Stephane.Carrez@gmail.com) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- with Ada.IO_Exceptions; with ADO.Sessions.Sources; with ADO.Configs; with EL.Contexts.Default; with Util.Files; with Util.Log.Loggers; with Security.Policies; with ASF.Server; with ASF.Servlets; with AWA.Services.Contexts; with AWA.Components.Factory; with AWA.Applications.Factory; with AWA.Applications.Configs; with AWA.Helpers.Selectors; with AWA.Permissions.Services; with AWA.Permissions.Beans; package body AWA.Applications is Log : constant Util.Log.Loggers.Logger := Util.Log.Loggers.Create ("AWA.Applications"); -- ------------------------------ -- Initialize the application -- ------------------------------ overriding procedure Initialize (App : in out Application; Conf : in ASF.Applications.Config; Factory : in out ASF.Applications.Main.Application_Factory'Class) is Ctx : AWA.Services.Contexts.Service_Context; begin Log.Info ("Initializing application"); Ctx.Set_Context (App'Unchecked_Access, null); AWA.Applications.Factory.Set_Application (Factory, App'Unchecked_Access); ASF.Applications.Main.Application (App).Initialize (Conf, Factory); -- Load the application configuration before any module. Application'Class (App).Load_Configuration (App.Get_Config (P_Config_File.P)); -- Register the application modules and load their configuration. Application'Class (App).Initialize_Modules; -- Load the plugin application configuration after the module are configured. Application'Class (App).Load_Configuration (App.Get_Config (P_Plugin_Config_File.P)); end Initialize; -- ------------------------------ -- Initialize the application configuration properties. Properties defined in <b>Conf</b> -- are expanded by using the EL expression resolver. -- ------------------------------ overriding procedure Initialize_Config (App : in out Application; Conf : in out ASF.Applications.Config) is Connection : ADO.Sessions.Sources.Data_Source; begin Log.Info ("Initializing configuration"); if Conf.Get ("app.modules.dir", "") = "" then Conf.Set ("app.modules.dir", "#{fn:composePath(app_search_dirs,'config')}"); end if; if Conf.Get ("bundle.dir", "") = "" then Conf.Set ("bundle.dir", "#{fn:composePath(app_search_dirs,'bundles')}"); end if; if Conf.Get ("ado.queries.paths", "") = "" then Conf.Set ("ado.queries.paths", "#{fn:composePath(app_search_dirs,'db')}"); end if; ADO.Configs.Initialize (Conf); ASF.Applications.Main.Application (App).Initialize_Config (Conf); Connection.Set_Connection (Conf.Get (P_Database.P)); Connection.Set_Property ("ado.queries.paths", Conf.Get ("ado.queries.paths", "")); Connection.Set_Property ("ado.queries.load", Conf.Get ("ado.queries.load", "")); App.DB_Factory.Create (Connection); App.DB_Factory.Set_Audit_Manager (App.Audits'Unchecked_Access); App.Audits.Initialize (App'Unchecked_Access); App.Events.Initialize (App'Unchecked_Access); AWA.Modules.Initialize (App.Modules, Conf); -- Use a specific error message when the NO_PERMISSION exception is raised. App.Get_Exception_Handler.Set_Message ("AWA.PERMISSIONS.NO_PERMISSION", "layout.exception_no_permission"); App.Register_Class ("AWA.Helpers.Selectors.Select_List_Bean", AWA.Helpers.Selectors.Create_Select_List_Bean'Access); App.Register_Class ("AWA.Permissions.Beans.Permission_Bean", AWA.Permissions.Beans.Create_Permission_Bean'Access); end Initialize_Config; -- ------------------------------ -- Initialize the servlets provided by the application. -- This procedure is called by <b>Initialize</b>. -- It should register the application servlets. -- ------------------------------ overriding procedure Initialize_Servlets (App : in out Application) is begin Log.Info ("Initializing application servlets"); ASF.Applications.Main.Application (App).Initialize_Servlets; end Initialize_Servlets; -- ------------------------------ -- Initialize the filters provided by the application. -- This procedure is called by <b>Initialize</b>. -- It should register the application filters. -- ------------------------------ overriding procedure Initialize_Filters (App : in out Application) is begin Log.Info ("Initializing application filters"); ASF.Applications.Main.Application (App).Initialize_Filters; end Initialize_Filters; -- ------------------------------ -- Initialize the ASF components provided by the application. -- This procedure is called by <b>Initialize</b>. -- It should register the component factories used by the application. -- ------------------------------ overriding procedure Initialize_Components (App : in out Application) is procedure Register_Functions is new ASF.Applications.Main.Register_Functions (AWA.Permissions.Services.Set_Functions); begin Log.Info ("Initializing application components"); ASF.Applications.Main.Application (App).Initialize_Components; App.Add_Components (AWA.Components.Factory.Definition); Register_Functions (App); end Initialize_Components; -- ------------------------------ -- Read the application configuration file <b>awa.xml</b>. This is called after the servlets -- and filters have been registered in the application but before the module registration. -- ------------------------------ procedure Load_Configuration (App : in out Application; Files : in String) is procedure Load_Config (File : in String; Done : out Boolean); Paths : constant String := App.Get_Config (P_Module_Dir.P); Ctx : aliased EL.Contexts.Default.Default_Context; procedure Load_Config (File : in String; Done : out Boolean) is Path : constant String := Util.Files.Find_File_Path (File, Paths); begin Done := False; AWA.Applications.Configs.Read_Configuration (App, Path, Ctx'Unchecked_Access, True); exception when Ada.IO_Exceptions.Name_Error => Log.Warn ("Application configuration file '{0}' does not exist", Path); end Load_Config; begin Util.Files.Iterate_Path (Files, Load_Config'Access); end Load_Configuration; -- ------------------------------ -- Initialize the AWA modules provided by the application. -- This procedure is called by <b>Initialize</b>. -- It should register the modules used by the application. -- ------------------------------ procedure Initialize_Modules (App : in out Application) is begin null; end Initialize_Modules; -- ------------------------------ -- Start the application. This is called by the server container when the server is started. -- ------------------------------ overriding procedure Start (App : in out Application) is Manager : constant Security.Policies.Policy_Manager_Access := App.Get_Security_Manager; begin -- Start the security manager. AWA.Permissions.Services.Permission_Manager'Class (Manager.all).Start; -- Start the event service. App.Events.Start; -- Start the application. ASF.Applications.Main.Application (App).Start; -- Dump the route and filters to help in configuration issues. App.Dump_Routes (Util.Log.INFO_LEVEL); end Start; -- ------------------------------ -- Close the application. -- ------------------------------ overriding procedure Close (App : in out Application) is begin App.Events.Stop; ASF.Applications.Main.Application (App).Close; end Close; -- ------------------------------ -- Register the module in the application -- ------------------------------ procedure Register (App : in Application_Access; Module : access AWA.Modules.Module'Class; Name : in String; URI : in String := "") is begin App.Register (Module.all'Unchecked_Access, Name, URI); end Register; -- ------------------------------ -- Get the database connection for reading -- ------------------------------ function Get_Session (App : Application) return ADO.Sessions.Session is begin return App.DB_Factory.Get_Session; end Get_Session; -- ------------------------------ -- Get the database connection for writing -- ------------------------------ function Get_Master_Session (App : Application) return ADO.Sessions.Master_Session is begin return App.DB_Factory.Get_Master_Session; end Get_Master_Session; -- ------------------------------ -- Find the module with the given name -- ------------------------------ function Find_Module (App : in Application; Name : in String) return AWA.Modules.Module_Access is begin return AWA.Modules.Find_By_Name (App.Modules, Name); end Find_Module; -- ------------------------------ -- Register the module in the application -- ------------------------------ procedure Register (App : in out Application; Module : in AWA.Modules.Module_Access; Name : in String; URI : in String := "") is begin AWA.Modules.Register (App.Modules'Unchecked_Access, App'Unchecked_Access, Module, Name, URI); end Register; -- ------------------------------ -- Send the event in the application event queues. -- ------------------------------ procedure Send_Event (App : in Application; Event : in AWA.Events.Module_Event'Class) is begin App.Events.Send (Event); end Send_Event; -- ------------------------------ -- Execute the <tt>Process</tt> procedure with the event manager used by the application. -- ------------------------------ procedure Do_Event_Manager (App : in out Application; Process : access procedure (Events : in out AWA.Events.Services.Event_Manager)) is begin Process (App.Events); end Do_Event_Manager; -- ------------------------------ -- Initialize the parser represented by <b>Parser</b> to recognize the configuration -- that are specific to the plugins that have been registered so far. -- ------------------------------ procedure Initialize_Parser (App : in out Application'Class; Parser : in out Util.Serialize.IO.Parser'Class) is procedure Process (Module : in out AWA.Modules.Module'Class); procedure Process (Module : in out AWA.Modules.Module'Class) is begin Module.Initialize_Parser (Parser); end Process; begin AWA.Modules.Iterate (App.Modules, Process'Access); end Initialize_Parser; -- ------------------------------ -- Get the current application from the servlet context or service context. -- ------------------------------ function Current return Application_Access is use type AWA.Services.Contexts.Service_Context_Access; Ctx : constant AWA.Services.Contexts.Service_Context_Access := AWA.Services.Contexts.Current; begin if Ctx /= null then return Ctx.Get_Application; end if; -- If there is no service context, look in the servlet current context. declare use type ASF.Servlets.Servlet_Registry_Access; Ctx : constant ASF.Servlets.Servlet_Registry_Access := ASF.Server.Current; begin if Ctx = null then Log.Warn ("There is no service context"); return null; end if; if not (Ctx.all in AWA.Applications.Application'Class) then Log.Warn ("The servlet context is not an application"); return null; end if; return AWA.Applications.Application'Class (Ctx.all)'Access; end; end Current; end AWA.Applications;
------------------------------------------------------------------------------- -- Copyright (c) 2016 Daniel King -- -- Permission is hereby granted, free of charge, to any person obtaining a -- copy of this software and associated documentation files (the "Software"), -- to deal in the Software without restriction, including without limitation -- the rights to use, copy, modify, merge, publish, distribute, sublicense, -- and/or sell copies of the Software, and to permit persons to whom the -- Software is furnished to do so, subject to the following conditions: -- -- The above copyright notice and this permission notice shall be included in -- all copies or substantial portions of the Software. -- -- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -- FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -- DEALINGS IN THE SOFTWARE. ------------------------------------------------------------------------------- with DW1000.Generic_RO_Register_Driver; with DW1000.Generic_WO_Register_Driver; with DW1000.Generic_RW_Register_Driver; with DW1000.Register_Types; with DW1000.Types; pragma Elaborate_All (DW1000.Generic_RO_Register_Driver); pragma Elaborate_All (DW1000.Generic_WO_Register_Driver); pragma Elaborate_All (DW1000.Generic_RW_Register_Driver); -- This package defines register driver instances for each of the DW1000 -- device registers to allow for typed reading and writing each register -- (or sub-register). -- -- Each register is typed, using the corresponding type defined in the package -- DW1000.Register_Types. These types allow for easy manipulation for the -- register's fields. -- -- Below is an example of modifying the receive and transmit channels from -- the CHAN_CTRL register (package names omitted for clarity): -- declare -- Reg : CHAN_CTRL_Type; -- begin -- CHAN_CTRL.Read(Reg); -- Reg.RX_CHAN := 5; -- Reg.TX_CHAN := 5; -- CHAN_CTRL.Write(Reg); -- end; package DW1000.Registers with SPARK_Mode => On is ---------------------------------------------------------------------------- -- Register IDs DEV_ID_Reg_ID : constant Types.Bits_6 := 16#00#; EUI_Reg_ID : constant Types.Bits_6 := 16#01#; PANADR_Reg_ID : constant Types.Bits_6 := 16#03#; SYS_CFG_Reg_ID : constant Types.Bits_6 := 16#04#; SYS_TIME_Reg_ID : constant Types.Bits_6 := 16#06#; TX_FCTRL_Reg_ID : constant Types.Bits_6 := 16#08#; TX_BUFFER_Reg_ID : constant Types.Bits_6 := 16#09#; DX_TIME_Reg_ID : constant Types.Bits_6 := 16#0A#; RX_FWTO_Reg_ID : constant Types.Bits_6 := 16#0C#; SYS_CTRL_Reg_ID : constant Types.Bits_6 := 16#0D#; SYS_MASK_Reg_ID : constant Types.Bits_6 := 16#0E#; SYS_STATUS_Reg_ID : constant Types.Bits_6 := 16#0F#; RX_FINFO_Reg_ID : constant Types.Bits_6 := 16#10#; RX_BUFFER_Reg_ID : constant Types.Bits_6 := 16#11#; RX_FQUAL_Reg_ID : constant Types.Bits_6 := 16#12#; RX_TTCKI_Reg_ID : constant Types.Bits_6 := 16#13#; RX_TTCKO_Reg_ID : constant Types.Bits_6 := 16#14#; RX_TIME_Reg_ID : constant Types.Bits_6 := 16#15#; TX_TIME_Reg_ID : constant Types.Bits_6 := 16#17#; TX_ANTD_Reg_ID : constant Types.Bits_6 := 16#18#; SYS_STATE_Reg_ID : constant Types.Bits_6 := 16#19#; ACK_RESP_T_Reg_ID : constant Types.Bits_6 := 16#1A#; RX_SNIFF_Reg_ID : constant Types.Bits_6 := 16#1D#; TX_POWER_Reg_ID : constant Types.Bits_6 := 16#1E#; CHAN_CTRL_Reg_ID : constant Types.Bits_6 := 16#1F#; USR_SFD_Reg_ID : constant Types.Bits_6 := 16#21#; AGC_CTRL_Reg_ID : constant Types.Bits_6 := 16#23#; EXT_SYNC_Reg_ID : constant Types.Bits_6 := 16#24#; ACC_MEM_Reg_ID : constant Types.Bits_6 := 16#25#; GPIO_CTRL_Reg_ID : constant Types.Bits_6 := 16#26#; DRX_CONF_Reg_ID : constant Types.Bits_6 := 16#27#; RF_CONF_Reg_ID : constant Types.Bits_6 := 16#28#; TX_CAL_Reg_ID : constant Types.Bits_6 := 16#2A#; FS_CTRL_Reg_ID : constant Types.Bits_6 := 16#2B#; AON_Reg_ID : constant Types.Bits_6 := 16#2C#; OTP_IF_Reg_ID : constant Types.Bits_6 := 16#2D#; LDE_CTRL_Reg_ID : constant Types.Bits_6 := 16#2E#; DIG_DIAG_Reg_ID : constant Types.Bits_6 := 16#2F#; PMSC_Reg_ID : constant Types.Bits_6 := 16#36#; ---------------------------------------------------------------------------- -- Sub-Register IDs AGC_CTRL1_Sub_Reg_ID : constant Types.Bits_15 := 16#02#; AGC_TUNE1_Sub_Reg_ID : constant Types.Bits_15 := 16#04#; AGC_TUNE2_Sub_Reg_ID : constant Types.Bits_15 := 16#0C#; AGC_TUNE3_Sub_Reg_ID : constant Types.Bits_15 := 16#12#; AGC_STAT1_Sub_Reg_ID : constant Types.Bits_15 := 16#1E#; EC_CTRL_Sub_Reg_ID : constant Types.Bits_15 := 16#00#; EC_RXTC_Sub_Reg_ID : constant Types.Bits_15 := 16#04#; EC_GOLP_Sub_Reg_ID : constant Types.Bits_15 := 16#08#; GPIO_MODE_Sub_Reg_ID : constant Types.Bits_15 := 16#00#; GPIO_DIR_Sub_Reg_ID : constant Types.Bits_15 := 16#08#; GPIO_DOUT_Sub_Reg_ID : constant Types.Bits_15 := 16#0C#; GPIO_IRQE_Sub_Reg_ID : constant Types.Bits_15 := 16#10#; GPIO_ISEN_Sub_Reg_ID : constant Types.Bits_15 := 16#14#; GPIO_IMODE_Sub_Reg_ID : constant Types.Bits_15 := 16#18#; GPIO_IBES_Sub_Reg_ID : constant Types.Bits_15 := 16#1C#; GPIO_ICLR_Sub_Reg_ID : constant Types.Bits_15 := 16#20#; GPIO_IDBE_Sub_Reg_ID : constant Types.Bits_15 := 16#24#; GPIO_RAW_Sub_Reg_ID : constant Types.Bits_15 := 16#28#; DRX_TUNE0b_Sub_Reg_ID : constant Types.Bits_15 := 16#02#; DRX_TUNE1a_Sub_Reg_ID : constant Types.Bits_15 := 16#04#; DRX_TUNE1b_Sub_Reg_ID : constant Types.Bits_15 := 16#06#; DRX_TUNE2_Sub_Reg_ID : constant Types.Bits_15 := 16#08#; DRX_SFDTOC_Sub_Reg_ID : constant Types.Bits_15 := 16#20#; DRX_PRETOC_Sub_Reg_ID : constant Types.Bits_15 := 16#24#; DRX_TUNE4H_Sub_Reg_ID : constant Types.Bits_15 := 16#26#; RXPACC_NOSAT_Sub_Reg_ID : constant Types.Bits_15 := 16#2C#; RF_CONF_Sub_Reg_ID : constant Types.Bits_15 := 16#00#; RF_RXCTRLH_Sub_Reg_ID : constant Types.Bits_15 := 16#0B#; RF_TXCTRL_Sub_Reg_ID : constant Types.Bits_15 := 16#0C#; RF_STATUS_Sub_Reg_ID : constant Types.Bits_15 := 16#2C#; LDOTUNE_Sub_Reg_ID : constant Types.Bits_15 := 16#30#; TC_SARC_Sub_Reg_ID : constant Types.Bits_15 := 16#00#; TC_SARL_Sub_Reg_ID : constant Types.Bits_15 := 16#03#; TC_SARW_Sub_Reg_ID : constant Types.Bits_15 := 16#06#; TC_PG_CTRL_Sub_Reg_ID : constant Types.Bits_15 := 16#08#; TC_PG_STATUS_Sub_Reg_ID : constant Types.Bits_15 := 16#09#; TC_PGDELAY_Sub_Reg_ID : constant Types.Bits_15 := 16#0B#; TC_PGTEST_Sub_Reg_ID : constant Types.Bits_15 := 16#0C#; FS_PLLCFG_Sub_Reg_ID : constant Types.Bits_15 := 16#07#; FS_PLLTUNE_Sub_Reg_ID : constant Types.Bits_15 := 16#0B#; FS_XTALT_Sub_Reg_ID : constant Types.Bits_15 := 16#0E#; AON_WCFG_Sub_Reg_ID : constant Types.Bits_15 := 16#00#; AON_CTRL_Sub_Reg_ID : constant Types.Bits_15 := 16#02#; AON_RDAT_Sub_Reg_ID : constant Types.Bits_15 := 16#03#; AON_ADDR_Sub_Reg_ID : constant Types.Bits_15 := 16#04#; AON_CFG0_Sub_Reg_ID : constant Types.Bits_15 := 16#06#; AON_CFG1_Sub_Reg_ID : constant Types.Bits_15 := 16#0A#; OTP_WDAT_Sub_Reg_ID : constant Types.Bits_15 := 16#00#; OTP_ADDR_Sub_Reg_ID : constant Types.Bits_15 := 16#04#; OTP_CTRL_Sub_Reg_ID : constant Types.Bits_15 := 16#06#; OTP_STAT_Sub_Reg_ID : constant Types.Bits_15 := 16#08#; OTP_RDAT_Sub_Reg_ID : constant Types.Bits_15 := 16#0A#; OTP_SRDAT_Sub_Reg_ID : constant Types.Bits_15 := 16#0E#; OTP_SF_Sub_Reg_ID : constant Types.Bits_15 := 16#12#; LDE_THRESH_Sub_Reg_ID : constant Types.Bits_15 := 16#0000#; LDE_CFG1_Sub_Reg_ID : constant Types.Bits_15 := 16#0806#; LDE_PPINDX_Sub_Reg_ID : constant Types.Bits_15 := 16#1000#; LDE_PPAMPL_Sub_Reg_ID : constant Types.Bits_15 := 16#1002#; LDE_RXANTD_Sub_Reg_ID : constant Types.Bits_15 := 16#1804#; LDE_CFG2_Sub_Reg_ID : constant Types.Bits_15 := 16#1806#; LDE_REPC_Sub_Reg_ID : constant Types.Bits_15 := 16#2804#; EVC_CTRL_Sub_Reg_ID : constant Types.Bits_15 := 16#00#; EVC_PHE_Sub_Reg_ID : constant Types.Bits_15 := 16#04#; EVC_RSE_Sub_Reg_ID : constant Types.Bits_15 := 16#06#; EVC_FCG_Sub_Reg_ID : constant Types.Bits_15 := 16#08#; EVC_FCE_Sub_Reg_ID : constant Types.Bits_15 := 16#0A#; EVC_FFR_Sub_Reg_ID : constant Types.Bits_15 := 16#0C#; EVC_OVR_Sub_Reg_ID : constant Types.Bits_15 := 16#0E#; EVC_STO_Sub_Reg_ID : constant Types.Bits_15 := 16#10#; EVC_PTO_Sub_Reg_ID : constant Types.Bits_15 := 16#12#; EVC_FWTO_Sub_Reg_ID : constant Types.Bits_15 := 16#14#; EVC_TXFS_Sub_Reg_ID : constant Types.Bits_15 := 16#16#; EVC_HPW_Sub_Reg_ID : constant Types.Bits_15 := 16#18#; EVC_TPW_Sub_Reg_ID : constant Types.Bits_15 := 16#1A#; DIAG_TMC_Sub_Reg_ID : constant Types.Bits_15 := 16#24#; PMSC_CTRL0_Sub_Reg_ID : constant Types.Bits_15 := 16#00#; PMSC_CTRL1_Sub_Reg_ID : constant Types.Bits_15 := 16#04#; PMSC_SNOZT_Sub_Reg_ID : constant Types.Bits_15 := 16#0C#; PMSC_TXFSEQ_Sub_Reg_ID : constant Types.Bits_15 := 16#26#; PMSC_LEDC_Sub_Reg_ID : constant Types.Bits_15 := 16#28#; ---------------------------------------------------------------------------- -- Register Definitions package DEV_ID is new DW1000.Generic_RO_Register_Driver (Register_Type => DW1000.Register_Types.DEV_ID_Type, Register_ID => DEV_ID_Reg_ID); package EUI is new DW1000.Generic_RW_Register_Driver (Register_Type => DW1000.Register_Types.EUI_Type, Register_ID => EUI_Reg_ID); package PANADR is new DW1000.Generic_RW_Register_Driver (Register_Type => DW1000.Register_Types.PANADR_Type, Register_ID => PANADR_Reg_ID); package SYS_CFG is new DW1000.Generic_RW_Register_Driver (Register_Type => DW1000.Register_Types.SYS_CFG_Type, Register_ID => SYS_CFG_Reg_ID); package SYS_TIME is new DW1000.Generic_RO_Register_Driver (Register_Type => DW1000.Register_Types.SYS_TIME_Type, Register_ID => SYS_TIME_Reg_ID); package TX_FCTRL is new DW1000.Generic_RW_Register_Driver (Register_Type => DW1000.Register_Types.TX_FCTRL_Type, Register_ID => TX_FCTRL_Reg_ID); package TX_BUFFER is new DW1000.Generic_WO_Register_Driver (Register_Type => DW1000.Register_Types.TX_BUFFER_Type, Register_ID => TX_BUFFER_Reg_ID); package DX_TIME is new DW1000.Generic_RW_Register_Driver (Register_Type => DW1000.Register_Types.DX_TIME_Type, Register_ID => DX_TIME_Reg_ID); package RX_FWTO is new DW1000.Generic_RW_Register_Driver (Register_Type => DW1000.Register_Types.RX_FWTO_Type, Register_ID => RX_FWTO_Reg_ID); package SYS_CTRL is new DW1000.Generic_RW_Register_Driver (Register_Type => DW1000.Register_Types.SYS_CTRL_Type, Register_ID => SYS_CTRL_Reg_ID); package SYS_MASK is new DW1000.Generic_RW_Register_Driver (Register_Type => DW1000.Register_Types.SYS_MASK_Type, Register_ID => SYS_MASK_Reg_ID); package SYS_STATUS is new DW1000.Generic_RW_Register_Driver (Register_Type => DW1000.Register_Types.SYS_STATUS_Type, Register_ID => SYS_STATUS_Reg_ID); package RX_FINFO is new DW1000.Generic_RO_Register_Driver (Register_Type => DW1000.Register_Types.RX_FINFO_Type, Register_ID => RX_FINFO_Reg_ID); package RX_BUFFER is new DW1000.Generic_RO_Register_Driver (Register_Type => DW1000.Register_Types.RX_BUFFER_Type, Register_ID => RX_BUFFER_Reg_ID); package RX_FQUAL is new DW1000.Generic_RO_Register_Driver (Register_Type => DW1000.Register_Types.RX_FQUAL_Type, Register_ID => RX_FQUAL_Reg_ID); package RX_TTCKI is new DW1000.Generic_RO_Register_Driver (Register_Type => DW1000.Register_Types.RX_TTCKI_Type, Register_ID => RX_TTCKI_Reg_ID); package RX_TTCKO is new DW1000.Generic_RO_Register_Driver (Register_Type => DW1000.Register_Types.RX_TTCKO_Type, Register_ID => RX_TTCKO_Reg_ID); package RX_TIME is new DW1000.Generic_RO_Register_Driver (Register_Type => DW1000.Register_Types.RX_TIME_Type, Register_ID => RX_TIME_Reg_ID); package TX_TIME is new DW1000.Generic_RO_Register_Driver (Register_Type => DW1000.Register_Types.TX_TIME_Type, Register_ID => TX_TIME_Reg_ID); package TX_ANTD is new DW1000.Generic_RW_Register_Driver (Register_Type => DW1000.Register_Types.TX_ANTD_Type, Register_ID => TX_ANTD_Reg_ID); package SYS_STATE is new DW1000.Generic_RO_Register_Driver (Register_Type => DW1000.Register_Types.SYS_STATUS_Type, Register_ID => SYS_STATE_Reg_ID); package ACK_RESP_T is new DW1000.Generic_RW_Register_Driver (Register_Type => DW1000.Register_Types.ACK_RESP_T_Type, Register_ID => ACK_RESP_T_Reg_ID); package RX_SNIFF is new DW1000.Generic_RW_Register_Driver (Register_Type => DW1000.Register_Types.RX_SNIFF_Type, Register_ID => RX_SNIFF_Reg_ID); package TX_POWER is new DW1000.Generic_RW_Register_Driver (Register_Type => DW1000.Register_Types.TX_POWER_Type, Register_ID => TX_POWER_Reg_ID); package CHAN_CTRL is new DW1000.Generic_RW_Register_Driver (Register_Type => DW1000.Register_Types.CHAN_CTRL_Type, Register_ID => CHAN_CTRL_Reg_ID); package USR_SFD is new DW1000.Generic_RW_Register_Driver (Register_Type => DW1000.Register_Types.USR_SFD_Type, Register_ID => USR_SFD_Reg_ID); package AGC_CTRL1 is new DW1000.Generic_RW_Register_Driver (Register_Type => DW1000.Register_Types.AGC_CTRL1_Type, Register_ID => AGC_CTRL_Reg_ID, Sub_Register => AGC_CTRL1_Sub_Reg_ID); package AGC_TUNE1 is new DW1000.Generic_RW_Register_Driver (Register_Type => DW1000.Register_Types.AGC_TUNE1_Type, Register_ID => AGC_CTRL_Reg_ID, Sub_Register => AGC_CTRL1_Sub_Reg_ID); package AGC_TUNE2 is new DW1000.Generic_RW_Register_Driver (Register_Type => DW1000.Register_Types.AGC_TUNE2_Type, Register_ID => AGC_CTRL_Reg_ID, Sub_Register => AGC_TUNE2_Sub_Reg_ID); package AGC_TUNE3 is new DW1000.Generic_RW_Register_Driver (Register_Type => DW1000.Register_Types.AGC_TUNE3_Type, Register_ID => AGC_CTRL_Reg_ID, Sub_Register => AGC_TUNE3_Sub_Reg_ID); package AGC_STAT1 is new DW1000.Generic_RO_Register_Driver (Register_Type => DW1000.Register_Types.AGC_STAT1_Type, Register_ID => AGC_CTRL_Reg_ID, Sub_Register => AGC_STAT1_Sub_Reg_ID); package EC_CTRL is new DW1000.Generic_RW_Register_Driver (Register_Type => DW1000.Register_Types.EC_CTRL_Type, Register_ID => EXT_SYNC_Reg_ID, Sub_Register => EC_CTRL_Sub_Reg_ID); package EC_RXTC is new DW1000.Generic_RO_Register_Driver (Register_Type => DW1000.Register_Types.EC_RXTC_Type, Register_ID => EXT_SYNC_Reg_ID, Sub_Register => EC_RXTC_Sub_Reg_ID); package EC_GOLP is new DW1000.Generic_RO_Register_Driver (Register_Type => DW1000.Register_Types.EC_GOLP_Type, Register_ID => EXT_SYNC_Reg_ID, Sub_Register => EC_GOLP_Sub_Reg_ID); package ACC_MEM is new DW1000.Generic_RO_Register_Driver (Register_Type => DW1000.Register_Types.ACC_MEM_Type, Register_ID => ACC_MEM_Reg_ID); package GPIO_MODE is new DW1000.Generic_RW_Register_Driver (Register_Type => DW1000.Register_Types.GPIO_MODE_Type, Register_ID => GPIO_CTRL_Reg_ID, Sub_Register => GPIO_MODE_Sub_Reg_ID); package GPIO_DIR is new DW1000.Generic_RW_Register_Driver (Register_Type => DW1000.Register_Types.GPIO_DIR_Type, Register_ID => GPIO_CTRL_Reg_ID, Sub_Register => GPIO_DIR_Sub_Reg_ID); package GPIO_DOUT is new DW1000.Generic_RW_Register_Driver (Register_Type => DW1000.Register_Types.GPIO_DOUT_Type, Register_ID => GPIO_CTRL_Reg_ID, Sub_Register => GPIO_DOUT_Sub_Reg_ID); package GPIO_IRQE is new DW1000.Generic_RW_Register_Driver (Register_Type => DW1000.Register_Types.GPIO_IRQE_Type, Register_ID => GPIO_CTRL_Reg_ID, Sub_Register => GPIO_IRQE_Sub_Reg_ID); package GPIO_ISEN is new DW1000.Generic_RW_Register_Driver (Register_Type => DW1000.Register_Types.GPIO_ISEN_Type, Register_ID => GPIO_CTRL_Reg_ID, Sub_Register => GPIO_ISEN_Sub_Reg_ID); package GPIO_IMODE is new DW1000.Generic_RW_Register_Driver (Register_Type => DW1000.Register_Types.GPIO_IMODE_Type, Register_ID => GPIO_CTRL_Reg_ID, Sub_Register => GPIO_IMODE_Sub_Reg_ID); package GPIO_IBES is new DW1000.Generic_RW_Register_Driver (Register_Type => DW1000.Register_Types.GPIO_IBES_Type, Register_ID => GPIO_CTRL_Reg_ID, Sub_Register => GPIO_IBES_Sub_Reg_ID); package GPIO_ICLR is new DW1000.Generic_RW_Register_Driver (Register_Type => DW1000.Register_Types.GPIO_ICLR_Type, Register_ID => GPIO_CTRL_Reg_ID, Sub_Register => GPIO_ICLR_Sub_Reg_ID); package GPIO_IDBE is new DW1000.Generic_RW_Register_Driver (Register_Type => DW1000.Register_Types.GPIO_IDBE_Type, Register_ID => GPIO_CTRL_Reg_ID, Sub_Register => GPIO_IDBE_Sub_Reg_ID); package GPIO_RAW is new DW1000.Generic_RO_Register_Driver (Register_Type => DW1000.Register_Types.GPIO_RAW_Type, Register_ID => GPIO_CTRL_Reg_ID, Sub_Register => GPIO_RAW_Sub_Reg_ID); package DRX_TUNE0b is new DW1000.Generic_RW_Register_Driver (Register_Type => DW1000.Register_Types.DRX_TUNE0b_Type, Register_ID => DRX_CONF_Reg_ID, Sub_Register => DRX_TUNE0b_Sub_Reg_ID); package DRX_TUNE1a is new DW1000.Generic_RW_Register_Driver (Register_Type => DW1000.Register_Types.DRX_TUNE1a_Type, Register_ID => DRX_CONF_Reg_ID, Sub_Register => DRX_TUNE1a_Sub_Reg_ID); package DRX_TUNE1b is new DW1000.Generic_RW_Register_Driver (Register_Type => DW1000.Register_Types.DRX_TUNE1b_Type, Register_ID => DRX_CONF_Reg_ID, Sub_Register => DRX_TUNE1b_Sub_Reg_ID); package DRX_TUNE2 is new DW1000.Generic_RW_Register_Driver (Register_Type => DW1000.Register_Types.DRX_TUNE2_Type, Register_ID => DRX_CONF_Reg_ID, Sub_Register => DRX_TUNE2_Sub_Reg_ID); package DRX_SFDTOC is new DW1000.Generic_RW_Register_Driver (Register_Type => DW1000.Register_Types.DRX_SFDTOC_Type, Register_ID => DRX_CONF_Reg_ID, Sub_Register => DRX_SFDTOC_Sub_Reg_ID); package DRX_PRETOC is new DW1000.Generic_RW_Register_Driver (Register_Type => DW1000.Register_Types.DRX_PRETOC_Type, Register_ID => DRX_CONF_Reg_ID, Sub_Register => DRX_PRETOC_Sub_Reg_ID); package DRX_TUNE4H is new DW1000.Generic_RW_Register_Driver (Register_Type => DW1000.Register_Types.DRX_TUNE4H_Type, Register_ID => DRX_CONF_Reg_ID, Sub_Register => DRX_TUNE4H_Sub_Reg_ID); package RXPACC_NOSAT is new DW1000.Generic_RO_Register_Driver (Register_Type => DW1000.Register_Types.RXPACC_NOSAT_Type, Register_ID => DRX_CONF_Reg_ID, Sub_Register => RXPACC_NOSAT_Sub_Reg_ID); package RF_CONF is new DW1000.Generic_RW_Register_Driver (Register_Type => DW1000.Register_Types.RF_CONF_Type, Register_ID => RF_CONF_Reg_ID, Sub_Register => RF_CONF_Sub_Reg_ID); package RF_RXCTRLH is new DW1000.Generic_RW_Register_Driver (Register_Type => DW1000.Register_Types.RF_RXCTRLH_Type, Register_ID => RF_CONF_Reg_ID, Sub_Register => RF_RXCTRLH_Sub_Reg_ID); package RF_TXCTRL is new DW1000.Generic_RW_Register_Driver (Register_Type => DW1000.Register_Types.RF_TXCTRL_Type, Register_ID => RF_CONF_Reg_ID, Sub_Register => RF_TXCTRL_Sub_Reg_ID); package RF_STATUS is new DW1000.Generic_RO_Register_Driver (Register_Type => DW1000.Register_Types.RF_STATUS_Type, Register_ID => RF_CONF_Reg_ID, Sub_Register => RF_STATUS_Sub_Reg_ID); package LDOTUNE is new DW1000.Generic_RW_Register_Driver (Register_Type => DW1000.Register_Types.LDOTUNE_Type, Register_ID => RF_CONF_Reg_ID, Sub_Register => LDOTUNE_Sub_Reg_ID); package TC_SARC is new DW1000.Generic_RW_Register_Driver (Register_Type => DW1000.Register_Types.TC_SARC_Type, Register_ID => TX_CAL_Reg_ID, Sub_Register => TC_SARC_Sub_Reg_ID); package TC_SARL is new DW1000.Generic_RO_Register_Driver (Register_Type => DW1000.Register_Types.TC_SARL_Type, Register_ID => TX_CAL_Reg_ID, Sub_Register => TC_SARL_Sub_Reg_ID); package TC_SARW is new DW1000.Generic_RO_Register_Driver (Register_Type => DW1000.Register_Types.TC_SARW_Type, Register_ID => TX_CAL_Reg_ID, Sub_Register => TC_SARW_Sub_Reg_ID); package TC_PG_CTRL is new DW1000.Generic_RO_Register_Driver (Register_Type => DW1000.Register_Types.TC_PG_CTRL_Type, Register_ID => TX_CAL_Reg_ID, Sub_Register => TC_PG_CTRL_Sub_Reg_ID); package TC_PG_STATUS is new DW1000.Generic_RW_Register_Driver (Register_Type => DW1000.Register_Types.TC_PG_STATUS_Type, Register_ID => TX_CAL_Reg_ID, Sub_Register => TC_PG_STATUS_Sub_Reg_ID); package TC_PGDELAY is new DW1000.Generic_RW_Register_Driver (Register_Type => DW1000.Register_Types.TC_PGDELAY_Type, Register_ID => TX_CAL_Reg_ID, Sub_Register => TC_PGDELAY_Sub_Reg_ID); package TC_PGTEST is new DW1000.Generic_RW_Register_Driver (Register_Type => DW1000.Register_Types.TC_PGTEST_Type, Register_ID => TX_CAL_Reg_ID, Sub_Register => TC_PGTEST_Sub_Reg_ID); package FS_PLLCFG is new DW1000.Generic_RW_Register_Driver (Register_Type => DW1000.Register_Types.FS_PLLCFG_Type, Register_ID => FS_CTRL_Reg_ID, Sub_Register => FS_PLLCFG_Sub_Reg_ID); package FS_PLLTUNE is new DW1000.Generic_RW_Register_Driver (Register_Type => DW1000.Register_Types.FS_PLLTUNE_Type, Register_ID => FS_CTRL_Reg_ID, Sub_Register => FS_PLLTUNE_Sub_Reg_ID); package FS_XTALT is new DW1000.Generic_RW_Register_Driver (Register_Type => DW1000.Register_Types.FS_XTALT_Type, Register_ID => FS_CTRL_Reg_ID, Sub_Register => FS_XTALT_Sub_Reg_ID); package AON_WCFG is new DW1000.Generic_RW_Register_Driver (Register_Type => DW1000.Register_Types.AON_WCFG_Type, Register_ID => AON_Reg_ID, Sub_Register => AON_WCFG_Sub_Reg_ID); package AON_CTRL is new DW1000.Generic_RW_Register_Driver (Register_Type => DW1000.Register_Types.AON_CTRL_Type, Register_ID => AON_Reg_ID, Sub_Register => AON_CTRL_Sub_Reg_ID); package AON_RDAT is new DW1000.Generic_RW_Register_Driver (Register_Type => DW1000.Register_Types.AON_RDAT_Type, Register_ID => AON_Reg_ID, Sub_Register => AON_RDAT_Sub_Reg_ID); package AON_ADDR is new DW1000.Generic_RW_Register_Driver (Register_Type => DW1000.Register_Types.AON_ADDR_Type, Register_ID => AON_Reg_ID, Sub_Register => AON_ADDR_Sub_Reg_ID); package AON_CFG0 is new DW1000.Generic_RW_Register_Driver (Register_Type => DW1000.Register_Types.AON_CFG0_Type, Register_ID => AON_Reg_ID, Sub_Register => AON_CFG0_Sub_Reg_ID); package AON_CFG1 is new DW1000.Generic_RW_Register_Driver (Register_Type => DW1000.Register_Types.AON_CFG1_Type, Register_ID => AON_Reg_ID, Sub_Register => AON_CFG1_Sub_Reg_ID); package OTP_WDAT is new DW1000.Generic_RW_Register_Driver (Register_Type => DW1000.Register_Types.OTP_WDAT_Type, Register_ID => OTP_IF_Reg_ID, Sub_Register => OTP_WDAT_Sub_Reg_ID); package OTP_ADDR is new DW1000.Generic_RW_Register_Driver (Register_Type => DW1000.Register_Types.OTP_ADDR_Type, Register_ID => OTP_IF_Reg_ID, Sub_Register => OTP_ADDR_Sub_Reg_ID); package OTP_CTRL is new DW1000.Generic_RW_Register_Driver (Register_Type => DW1000.Register_Types.OTP_CTRL_Type, Register_ID => OTP_IF_Reg_ID, Sub_Register => OTP_CTRL_Sub_Reg_ID); package OTP_STAT is new DW1000.Generic_RW_Register_Driver (Register_Type => DW1000.Register_Types.OTP_STAT_Type, Register_ID => OTP_IF_Reg_ID, Sub_Register => OTP_STAT_Sub_Reg_ID); package OTP_RDAT is new DW1000.Generic_RO_Register_Driver (Register_Type => DW1000.Register_Types.OTP_RDAT_Type, Register_ID => OTP_IF_Reg_ID, Sub_Register => OTP_RDAT_Sub_Reg_ID); package OTP_SRDAT is new DW1000.Generic_RW_Register_Driver (Register_Type => DW1000.Register_Types.OTP_SRDAT_Type, Register_ID => OTP_IF_Reg_ID, Sub_Register => OTP_SRDAT_Sub_Reg_ID); package OTP_SF is new DW1000.Generic_RW_Register_Driver (Register_Type => DW1000.Register_Types.OTP_SF_Type, Register_ID => OTP_IF_Reg_ID, Sub_Register => OTP_SF_Sub_Reg_ID); package LDE_THRESH is new DW1000.Generic_RO_Register_Driver (Register_Type => DW1000.Register_Types.LDE_THRESH_Type, Register_ID => LDE_CTRL_Reg_ID, Sub_Register => LDE_THRESH_Sub_Reg_ID); package LDE_CFG1 is new DW1000.Generic_RW_Register_Driver (Register_Type => DW1000.Register_Types.LDE_CFG1_Type, Register_ID => LDE_CTRL_Reg_ID, Sub_Register => LDE_CFG1_Sub_Reg_ID); package LDE_PPINDX is new DW1000.Generic_RO_Register_Driver (Register_Type => DW1000.Register_Types.LDE_PPINDX_Type, Register_ID => LDE_CTRL_Reg_ID, Sub_Register => LDE_PPINDX_Sub_Reg_ID); package LDE_PPAMPL is new DW1000.Generic_RO_Register_Driver (Register_Type => DW1000.Register_Types.LDE_PPAMPL_Type, Register_ID => LDE_CTRL_Reg_ID, Sub_Register => LDE_PPAMPL_Sub_Reg_ID); package LDE_RXANTD is new DW1000.Generic_RW_Register_Driver (Register_Type => DW1000.Register_Types.LDE_RXANTD_Type, Register_ID => LDE_CTRL_Reg_ID, Sub_Register => LDE_RXANTD_Sub_Reg_ID); package LDE_CFG2 is new DW1000.Generic_RW_Register_Driver (Register_Type => DW1000.Register_Types.LDE_CFG2_Type, Register_ID => LDE_CTRL_Reg_ID, Sub_Register => LDE_CFG2_Sub_Reg_ID); package LDE_REPC is new DW1000.Generic_RW_Register_Driver (Register_Type => DW1000.Register_Types.LDE_REPC_Type, Register_ID => LDE_CTRL_Reg_ID, Sub_Register => LDE_REPC_Sub_Reg_ID); package EVC_CTRL is new DW1000.Generic_RW_Register_Driver (Register_Type => DW1000.Register_Types.EVC_CTRL_Type, Register_ID => DIG_DIAG_Reg_ID, Sub_Register => EVC_CTRL_Sub_Reg_ID); package EVC_PHE is new DW1000.Generic_RO_Register_Driver (Register_Type => DW1000.Register_Types.EVC_PHE_Type, Register_ID => DIG_DIAG_Reg_ID, Sub_Register => EVC_PHE_Sub_Reg_ID); package EVC_RSE is new DW1000.Generic_RO_Register_Driver (Register_Type => DW1000.Register_Types.EVC_RSE_Type, Register_ID => DIG_DIAG_Reg_ID, Sub_Register => EVC_RSE_Sub_Reg_ID); package EVC_FCG is new DW1000.Generic_RO_Register_Driver (Register_Type => DW1000.Register_Types.EVC_FCG_Type, Register_ID => DIG_DIAG_Reg_ID, Sub_Register => EVC_FCG_Sub_Reg_ID); package EVC_FCE is new DW1000.Generic_RO_Register_Driver (Register_Type => DW1000.Register_Types.EVC_FCE_Type, Register_ID => DIG_DIAG_Reg_ID, Sub_Register => EVC_FCE_Sub_Reg_ID); package EVC_FFR is new DW1000.Generic_RO_Register_Driver (Register_Type => DW1000.Register_Types.EVC_FFR_Type, Register_ID => DIG_DIAG_Reg_ID, Sub_Register => EVC_FFR_Sub_Reg_ID); package EVC_OVR is new DW1000.Generic_RO_Register_Driver (Register_Type => DW1000.Register_Types.EVC_OVR_Type, Register_ID => DIG_DIAG_Reg_ID, Sub_Register => EVC_OVR_Sub_Reg_ID); package EVC_STO is new DW1000.Generic_RO_Register_Driver (Register_Type => DW1000.Register_Types.EVC_STO_Type, Register_ID => DIG_DIAG_Reg_ID, Sub_Register => EVC_STO_Sub_Reg_ID); package EVC_PTO is new DW1000.Generic_RO_Register_Driver (Register_Type => DW1000.Register_Types.EVC_PTO_Type, Register_ID => DIG_DIAG_Reg_ID, Sub_Register => EVC_PTO_Sub_Reg_ID); package EVC_FWTO is new DW1000.Generic_RO_Register_Driver (Register_Type => DW1000.Register_Types.EVC_FWTO_Type, Register_ID => DIG_DIAG_Reg_ID, Sub_Register => EVC_FWTO_Sub_Reg_ID); package EVC_TXFS is new DW1000.Generic_RO_Register_Driver (Register_Type => DW1000.Register_Types.EVC_TXFS_Type, Register_ID => DIG_DIAG_Reg_ID, Sub_Register => EVC_TXFS_Sub_Reg_ID); package EVC_HPW is new DW1000.Generic_RO_Register_Driver (Register_Type => DW1000.Register_Types.EVC_HPW_Type, Register_ID => DIG_DIAG_Reg_ID, Sub_Register => EVC_HPW_Sub_Reg_ID); package EVC_TPW is new DW1000.Generic_RO_Register_Driver (Register_Type => DW1000.Register_Types.EVC_TPW_Type, Register_ID => DIG_DIAG_Reg_ID, Sub_Register => EVC_TPW_Sub_Reg_ID); package DIAG_TMC is new DW1000.Generic_RW_Register_Driver (Register_Type => DW1000.Register_Types.DIAG_TMC_Type, Register_ID => DIG_DIAG_Reg_ID, Sub_Register => DIAG_TMC_Sub_Reg_ID); package PMSC_CTRL0 is new DW1000.Generic_RW_Register_Driver (Register_Type => DW1000.Register_Types.PMSC_CTRL0_Type, Register_ID => PMSC_Reg_ID, Sub_Register => PMSC_CTRL0_Sub_Reg_ID); package PMSC_CTRL1 is new DW1000.Generic_RW_Register_Driver (Register_Type => DW1000.Register_Types.PMSC_CTRL1_Type, Register_ID => PMSC_Reg_ID, Sub_Register => PMSC_CTRL1_Sub_Reg_ID); package PMSC_SNOZT is new DW1000.Generic_RW_Register_Driver (Register_Type => DW1000.Register_Types.PMSC_SNOZT_Type, Register_ID => PMSC_Reg_ID, Sub_Register => PMSC_SNOZT_Sub_Reg_ID); package PMSC_TXFSEQ is new DW1000.Generic_RW_Register_Driver (Register_Type => DW1000.Register_Types.PMSC_TXFSEQ_Type, Register_ID => PMSC_Reg_ID, Sub_Register => PMSC_TXFSEQ_Sub_Reg_ID); package PMSC_LEDC is new DW1000.Generic_RW_Register_Driver (Register_Type => DW1000.Register_Types.PMSC_LEDC_Type, Register_ID => PMSC_Reg_ID, Sub_Register => PMSC_LEDC_Sub_Reg_ID); end DW1000.Registers;
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> <!DOCTYPE boost_serialization> <boost_serialization signature="serialization::archive" version="14"> <syndb class_id="0" tracking_level="0" version="0"> <userIPLatency>-1</userIPLatency> <userIPName></userIPName> <cdfg class_id="1" tracking_level="1" version="0" object_id="_0"> <name>call_1</name> <ret_bitwidth>0</ret_bitwidth> <ports class_id="2" tracking_level="0" version="0"> <count>2</count> <item_version>0</item_version> <item class_id="3" tracking_level="1" version="0" object_id="_1"> <Value class_id="4" tracking_level="0" version="0"> <Obj class_id="5" tracking_level="0" version="0"> <type>1</type> <id>1</id> <name>in_stream_V_value_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo class_id="6" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>in_stream.V.value.V</originalName> <rtlName></rtlName> <coreName>FIFO_SRL</coreName> </Obj> <bitwidth>32</bitwidth> </Value> <direction>0</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs class_id="7" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_2"> <Value> <Obj> <type>1</type> <id>2</id> <name>out_stream_V_value_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>out_stream.V.value.V</originalName> <rtlName></rtlName> <coreName>FIFO_SRL</coreName> </Obj> <bitwidth>128</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> </ports> <nodes class_id="8" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="9" tracking_level="1" version="0" object_id="_3"> <Value> <Obj> <type>0</type> <id>8</id> <name>slice_stream_V_value</name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</fileDirectory> <lineNumber>172</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item class_id="10" tracking_level="0" version="0"> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</first> <second class_id="11" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="12" tracking_level="0" version="0"> <first class_id="13" tracking_level="0" version="0"> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>172</second> </item> </second> </item> </inlineStackInfo> <originalName>slice_stream.V.value.V</originalName> <rtlName></rtlName> <coreName>FIFO_SRL</coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>17</item> </oprand_edges> <opcode>alloca</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_4"> <Value> <Obj> <type>0</type> <id>12</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>19</item> <item>20</item> <item>21</item> </oprand_edges> <opcode>call</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_5"> <Value> <Obj> <type>0</type> <id>13</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>5</count> <item_version>0</item_version> <item>23</item> <item>24</item> <item>25</item> <item>135</item> <item>136</item> </oprand_edges> <opcode>call</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_6"> <Value> <Obj> <type>0</type> <id>14</id> <name></name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</fileDirectory> <lineNumber>219</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>219</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>0</count> <item_version>0</item_version> </oprand_edges> <opcode>ret</opcode> <m_Display>0</m_Display> </item> </nodes> <consts class_id="15" tracking_level="0" version="0"> <count>3</count> <item_version>0</item_version> <item class_id="16" tracking_level="1" version="0" object_id="_7"> <Value> <Obj> <type>2</type> <id>16</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_8"> <Value> <Obj> <type>2</type> <id>18</id> <name>call_Loop_LB2D_buf_p_1</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <const_type>6</const_type> <content>&lt;constant:call_Loop_LB2D_buf_p.1&gt;</content> </item> <item class_id_reference="16" object_id="_9"> <Value> <Obj> <type>2</type> <id>22</id> <name>call_Loop_LB2D_shift_1</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <const_type>6</const_type> <content>&lt;constant:call_Loop_LB2D_shift.1&gt;</content> </item> </consts> <blocks class_id="17" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="18" tracking_level="1" version="0" object_id="_10"> <Obj> <type>3</type> <id>15</id> <name>call.1</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>4</count> <item_version>0</item_version> <item>8</item> <item>12</item> <item>13</item> <item>14</item> </node_objs> </item> </blocks> <edges class_id="19" tracking_level="0" version="0"> <count>9</count> <item_version>0</item_version> <item class_id="20" tracking_level="1" version="0" object_id="_11"> <id>17</id> <edge_type>1</edge_type> <source_obj>16</source_obj> <sink_obj>8</sink_obj> </item> <item class_id_reference="20" object_id="_12"> <id>19</id> <edge_type>1</edge_type> <source_obj>18</source_obj> <sink_obj>12</sink_obj> </item> <item class_id_reference="20" object_id="_13"> <id>20</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>12</sink_obj> </item> <item class_id_reference="20" object_id="_14"> <id>21</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>12</sink_obj> </item> <item class_id_reference="20" object_id="_15"> <id>23</id> <edge_type>1</edge_type> <source_obj>22</source_obj> <sink_obj>13</sink_obj> </item> <item class_id_reference="20" object_id="_16"> <id>24</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>13</sink_obj> </item> <item class_id_reference="20" object_id="_17"> <id>25</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>13</sink_obj> </item> <item class_id_reference="20" object_id="_18"> <id>135</id> <edge_type>4</edge_type> <source_obj>12</source_obj> <sink_obj>13</sink_obj> </item> <item class_id_reference="20" object_id="_19"> <id>136</id> <edge_type>4</edge_type> <source_obj>12</source_obj> <sink_obj>13</sink_obj> </item> </edges> </cdfg> <cdfg_regions class_id="21" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="22" tracking_level="1" version="0" object_id="_20"> <mId>1</mId> <mTag>call.1</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>15</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>2071917</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>1</mIsDfPipe> <mDfPipe class_id="23" tracking_level="1" version="0" object_id="_21"> <port_list class_id="24" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </port_list> <process_list class_id="25" tracking_level="0" version="0"> <count>2</count> <item_version>0</item_version> <item class_id="26" tracking_level="1" version="0" object_id="_22"> <type>0</type> <name>call_Loop_LB2D_buf_p_1_U0</name> <ssdmobj_id>12</ssdmobj_id> <pins class_id="27" tracking_level="0" version="0"> <count>2</count> <item_version>0</item_version> <item class_id="28" tracking_level="1" version="0" object_id="_23"> <port class_id="29" tracking_level="1" version="0" object_id="_24"> <name>in_stream_V_value_V</name> <dir>0</dir> <type>0</type> </port> <inst class_id="30" tracking_level="1" version="0" object_id="_25"> <type>0</type> <name>call_Loop_LB2D_buf_p_1_U0</name> <ssdmobj_id>12</ssdmobj_id> </inst> </item> <item class_id_reference="28" object_id="_26"> <port class_id_reference="29" object_id="_27"> <name>slice_stream_V_value_V</name> <dir>0</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_25"></inst> </item> </pins> </item> <item class_id_reference="26" object_id="_28"> <type>0</type> <name>call_Loop_LB2D_shift_1_U0</name> <ssdmobj_id>13</ssdmobj_id> <pins> <count>2</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_29"> <port class_id_reference="29" object_id="_30"> <name>slice_stream_V_value_V</name> <dir>0</dir> <type>0</type> </port> <inst class_id_reference="30" object_id="_31"> <type>0</type> <name>call_Loop_LB2D_shift_1_U0</name> <ssdmobj_id>13</ssdmobj_id> </inst> </item> <item class_id_reference="28" object_id="_32"> <port class_id_reference="29" object_id="_33"> <name>out_stream_V_value_V</name> <dir>0</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_31"></inst> </item> </pins> </item> </process_list> <channel_list class_id="31" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="32" tracking_level="1" version="0" object_id="_34"> <type>1</type> <name>slice_stream_V_value</name> <ssdmobj_id>8</ssdmobj_id> <ctype>0</ctype> <depth>1</depth> <bitwidth>64</bitwidth> <source class_id_reference="28" object_id="_35"> <port class_id_reference="29" object_id="_36"> <name>in</name> <dir>3</dir> <type>0</type> </port> <inst class_id_reference="30" object_id_reference="_25"></inst> </source> <sink class_id_reference="28" object_id="_37"> <port class_id_reference="29" object_id="_38"> <name>out</name> <dir>3</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_31"></inst> </sink> </item> </channel_list> <net_list class_id="33" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </net_list> </mDfPipe> </item> </cdfg_regions> <fsm class_id="34" tracking_level="1" version="0" object_id="_39"> <states class_id="35" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="36" tracking_level="1" version="0" object_id="_40"> <id>1</id> <operations class_id="37" tracking_level="0" version="0"> <count>2</count> <item_version>0</item_version> <item class_id="38" tracking_level="1" version="0" object_id="_41"> <id>8</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_42"> <id>12</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="36" object_id="_43"> <id>2</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="38" object_id="_44"> <id>12</id> <stage>1</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="36" object_id="_45"> <id>3</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="38" object_id="_46"> <id>13</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="36" object_id="_47"> <id>4</id> <operations> <count>10</count> <item_version>0</item_version> <item class_id_reference="38" object_id="_48"> <id>3</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_49"> <id>4</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_50"> <id>5</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_51"> <id>6</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_52"> <id>7</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_53"> <id>9</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_54"> <id>10</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_55"> <id>11</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_56"> <id>13</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="38" object_id="_57"> <id>14</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> </states> <transitions class_id="39" tracking_level="0" version="0"> <count>3</count> <item_version>0</item_version> <item class_id="40" tracking_level="1" version="0" object_id="_58"> <inState>1</inState> <outState>2</outState> <condition class_id="41" tracking_level="0" version="0"> <id>0</id> <sop class_id="42" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="43" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="40" object_id="_59"> <inState>2</inState> <outState>3</outState> <condition> <id>1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="40" object_id="_60"> <inState>3</inState> <outState>4</outState> <condition> <id>2</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> </transitions> </fsm> <res class_id="-1"></res> <node_label_latency class_id="45" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="46" tracking_level="0" version="0"> <first>8</first> <second class_id="47" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>12</first> <second> <first>0</first> <second>1</second> </second> </item> <item> <first>13</first> <second> <first>2</first> <second>1</second> </second> </item> <item> <first>14</first> <second> <first>3</first> <second>0</second> </second> </item> </node_label_latency> <bblk_ent_exit class_id="48" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="49" tracking_level="0" version="0"> <first>15</first> <second class_id="50" tracking_level="0" version="0"> <first>0</first> <second>3</second> </second> </item> </bblk_ent_exit> <regions class_id="51" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="52" tracking_level="1" version="0" object_id="_61"> <region_name>call.1</region_name> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>15</item> </basic_blocks> <nodes> <count>12</count> <item_version>0</item_version> <item>3</item> <item>4</item> <item>5</item> <item>6</item> <item>7</item> <item>8</item> <item>9</item> <item>10</item> <item>11</item> <item>12</item> <item>13</item> <item>14</item> </nodes> <anchor_node>-1</anchor_node> <region_type>16</region_type> <interval>0</interval> <pipe_depth>0</pipe_depth> </item> </regions> <dp_fu_nodes class_id="53" tracking_level="0" version="0"> <count>3</count> <item_version>0</item_version> <item class_id="54" tracking_level="0" version="0"> <first>36</first> <second> <count>1</count> <item_version>0</item_version> <item>8</item> </second> </item> <item> <first>40</first> <second> <count>2</count> <item_version>0</item_version> <item>12</item> <item>12</item> </second> </item> <item> <first>47</first> <second> <count>2</count> <item_version>0</item_version> <item>13</item> <item>13</item> </second> </item> </dp_fu_nodes> <dp_fu_nodes_expression class_id="56" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="57" tracking_level="0" version="0"> <first>slice_stream_V_value_fu_36</first> <second> <count>1</count> <item_version>0</item_version> <item>8</item> </second> </item> </dp_fu_nodes_expression> <dp_fu_nodes_module> <count>2</count> <item_version>0</item_version> <item> <first>grp_call_Loop_LB2D_buf_p_1_fu_40</first> <second> <count>2</count> <item_version>0</item_version> <item>12</item> <item>12</item> </second> </item> <item> <first>grp_call_Loop_LB2D_shift_1_fu_47</first> <second> <count>2</count> <item_version>0</item_version> <item>13</item> <item>13</item> </second> </item> </dp_fu_nodes_module> <dp_fu_nodes_io> <count>0</count> <item_version>0</item_version> </dp_fu_nodes_io> <return_ports> <count>0</count> <item_version>0</item_version> </return_ports> <dp_mem_port_nodes class_id="58" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_mem_port_nodes> <dp_reg_nodes> <count>1</count> <item_version>0</item_version> <item> <first>54</first> <second> <count>1</count> <item_version>0</item_version> <item>8</item> </second> </item> </dp_reg_nodes> <dp_regname_nodes> <count>1</count> <item_version>0</item_version> <item> <first>slice_stream_V_value_reg_54</first> <second> <count>1</count> <item_version>0</item_version> <item>8</item> </second> </item> </dp_regname_nodes> <dp_reg_phi> <count>0</count> <item_version>0</item_version> </dp_reg_phi> <dp_regname_phi> <count>0</count> <item_version>0</item_version> </dp_regname_phi> <dp_port_io_nodes class_id="59" tracking_level="0" version="0"> <count>2</count> <item_version>0</item_version> <item class_id="60" tracking_level="0" version="0"> <first>in_stream_V_value_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>call</first> <second> <count>1</count> <item_version>0</item_version> <item>12</item> </second> </item> </second> </item> <item> <first>out_stream_V_value_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>call</first> <second> <count>1</count> <item_version>0</item_version> <item>13</item> </second> </item> </second> </item> </dp_port_io_nodes> <port2core class_id="61" tracking_level="0" version="0"> <count>2</count> <item_version>0</item_version> <item class_id="62" tracking_level="0" version="0"> <first>1</first> <second>FIFO_SRL</second> </item> <item> <first>2</first> <second>FIFO_SRL</second> </item> </port2core> <node2core> <count>1</count> <item_version>0</item_version> <item> <first>8</first> <second>FIFO_SRL</second> </item> </node2core> </syndb> </boost_serialization>
----------------------------------------------------------------------- -- EL.Beans.Tests - Testsuite for EL.Beans -- Copyright (C) 2011 Stephane Carrez -- Written by Stephane Carrez (Stephane.Carrez@gmail.com) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- with Util.Tests; package EL.Beans.Tests is procedure Add_Tests (Suite : in Util.Tests.Access_Test_Suite); type Test is new Util.Tests.Test with null record; -- Test Add_Parameter procedure Test_Add_Parameter (T : in out Test); -- Test the Initialize procedure with a set of expressions procedure Test_Initialize (T : in out Test); end EL.Beans.Tests;
-- C52103R.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 LENGTHS MUST MATCH IN ARRAY AND SLICE ASSIGNMENTS. -- MORE SPECIFICALLY, TEST THAT ARRAY ASSIGNMENTS WITH MATCHING -- LENGTHS DO NOT CAUSE CONSTRAINT_ERROR TO BE RAISED AND -- ARE PERFORMED CORRECTLY. -- (OVERLAPS BETWEEN THE OPERANDS OF THE ASSIGNMENT STATEMENT -- ARE TREATED ELSWEWHERE.) -- THIS IS THE THIRD FILE IN -- DIVISION D : NULL LENGTHS NOT DETERMINABLE STATICALLY. -- RM 07/20/81 -- SPS 2/18/83 WITH REPORT; PROCEDURE C52103R IS USE REPORT ; BEGIN TEST( "C52103R" , "CHECK THAT IN ARRAY ASSIGNMENTS AND IN SLICE" & " ASSIGNMENTS THE LENGTHS MUST MATCH" ); -- ( EACH DIVISION COMPRISES 3 FILES, -- COVERING RESPECTIVELY THE FIRST -- 3 , NEXT 2 , AND LAST 3 OF THE 8 -- SELECTIONS FOR THE DIVISION.) ------------------------------------------------------------------- -- (7) UNSLICED OBJECTS OF THE PREDEFINED TYPE 'STRING' (BY -- THEMSELVES). DECLARE ARR71 : STRING( IDENT_INT(1)..IDENT_INT(0) ) := "" ; ARR72 : STRING( IDENT_INT(5)..IDENT_INT(4) ) ; BEGIN -- STRING ASSIGNMENT: ARR72 := ARR71 ; -- CHECKING THE VALUES AFTER THE STRING ASSIGNMENT: IF ARR72 /= "" THEN FAILED( "STRING ASSIGNMENT NOT CORRECT (7)" ); END IF; EXCEPTION WHEN OTHERS => FAILED( "EXCEPTION RAISED - SUBTEST 7" ); END ; ------------------------------------------------------------------- -- (8) SLICED OBJECTS OF THE PREDEFINED TYPE 'STRING' , WITH -- STRING LITERALS. -- DECLARE ARR82 : STRING( IDENT_INT(5)..IDENT_INT(9) ) ; BEGIN -- INITIALIZATION OF LHS ARRAY: ARR82( IDENT_INT(5)..IDENT_INT(9) ) := "QUINC" ; -- STRING LITERAL ASSIGNMENT: ARR82( IDENT_INT(5)..IDENT_INT(9) ) ( IDENT_INT(6)..IDENT_INT(9) ) ( IDENT_INT(6)..IDENT_INT(5) ) := "" ; -- CHECKING THE VALUES AFTER THE SLICE ASSIGNMENT: IF ARR82 /= "QUINC" OR ARR82( IDENT_INT(5)..IDENT_INT(9) ) /= "QUINC" THEN FAILED( "SLICE ASSIGNMENT NOT CORRECT (8)" ); END IF; EXCEPTION WHEN OTHERS => FAILED( "EXCEPTION RAISED - SUBTEST 8" ); END ; ------------------------------------------------------------------- -- (9) SLICED OBJECTS OF THE PREDEFINED TYPE 'STRING' (BY -- THEMSELVES). -- DECLARE SUBTYPE TA92 IS STRING( IDENT_INT(5)..IDENT_INT(9) ) ; ARR91 : STRING( IDENT_INT(1)..IDENT_INT(5) ) := "ABCDE" ; ARR92 : TA92 ; BEGIN -- INITIALIZATION OF LHS ARRAY: ARR92( IDENT_INT(5)..IDENT_INT(9) ) := "QUINC" ; -- STRING SLICE ASSIGNMENT: ARR92( IDENT_INT(5)..IDENT_INT(9) ) ( IDENT_INT(6)..IDENT_INT(9) ) ( IDENT_INT(8)..IDENT_INT(7) ) := ARR91 ( IDENT_INT(1)..IDENT_INT(5) ) ( IDENT_INT(5)..IDENT_INT(4) ) ; -- CHECKING THE VALUES AFTER THE SLICE ASSIGNMENT: IF ARR92 /= "QUINC" OR ARR92( IDENT_INT(5)..IDENT_INT(9) ) /= "QUINC" THEN FAILED( "SLICE ASSIGNMENT NOT CORRECT (9)" ); END IF; EXCEPTION WHEN OTHERS => FAILED( "EXCEPTION RAISED - SUBTEST 9" ); END ; ------------------------------------------------------------------- RESULT ; END C52103R;
-- Copyright 2008 Free Software Foundation, Inc. -- -- This program is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- the Free Software Foundation; either version 3 of the License, or -- (at your option) any later version. -- -- This program is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- GNU General Public License for more details. -- -- You should have received a copy of the GNU General Public License -- along with this program. If not, see <http://www.gnu.org/licenses/>. with System; package Pck is procedure Do_Nothing (A : System.Address); end Pck;
------------------------------------------------------------------------------ -- -- -- 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;
-- SPDX-License-Identifier: Apache-2.0 -- -- Copyright (c) 2016 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 Orka.Scenes.Generic_Scene_Trees; with Orka.Transforms.Singles.Matrices; package Orka.Scenes.Singles.Trees is new Orka.Scenes.Generic_Scene_Trees (Orka.Transforms.Singles.Matrices); pragma Preelaborate (Orka.Scenes.Singles.Trees);
----------------------------------------------------------- -- This program asks the user to enter a character, -- preferably a 'c' or a 't'. The resultant behavior -- (conditional or timed) depends on the character entered -- and the time it is entered. -- Taken from http://www.cs.uni.edu//~mccormic/AdaEssentials/select_statement.htm ----------------------------------------------------------- with Text_IO; use Text_IO; procedure IO_Test2 is Ch : Character; begin -- Caller executable part Put_Line("Enter c or t (Conditional or Timed)"); Get(Ch); if Ch = 'c' then -- Conditional Entry Call null; elsif Ch = 't' then -- Timed Entry Call Put_Line("Timed call withdrawn"); else Put_Line("Invalid Input"); end if; end IO_Test2;
-- This spec has been automatically generated from FE310.svd pragma Restrictions (No_Elaboration_Code); pragma Ada_2012; pragma Style_Checks (Off); with HAL; with System; package FE310_SVD.PRIC is pragma Preelaborate; --------------- -- Registers -- --------------- subtype HFROSCCFG_DIV_Field is HAL.UInt6; subtype HFROSCCFG_TRIM_Field is HAL.UInt5; -- HF Ring Oscillator Configuration Register. type HFROSCCFG_Register is record DIV : HFROSCCFG_DIV_Field := 16#0#; -- unspecified Reserved_6_15 : HAL.UInt10 := 16#0#; TRIM : HFROSCCFG_TRIM_Field := 16#0#; -- unspecified Reserved_21_29 : HAL.UInt9 := 16#0#; ENABLE : Boolean := False; READY : Boolean := False; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for HFROSCCFG_Register use record DIV at 0 range 0 .. 5; Reserved_6_15 at 0 range 6 .. 15; TRIM at 0 range 16 .. 20; Reserved_21_29 at 0 range 21 .. 29; ENABLE at 0 range 30 .. 30; READY at 0 range 31 .. 31; end record; -- HF Crystal Oscillator Configuration Register. type HFXOSCCFG_Register is record -- unspecified Reserved_0_29 : HAL.UInt30 := 16#0#; ENABLE : Boolean := False; READY : Boolean := False; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for HFXOSCCFG_Register use record Reserved_0_29 at 0 range 0 .. 29; ENABLE at 0 range 30 .. 30; READY at 0 range 31 .. 31; end record; subtype PLLCFG_R_Field is HAL.UInt3; subtype PLLCFG_F_Field is HAL.UInt6; subtype PLLCFG_Q_Field is HAL.UInt2; type PLLCFG_SEL_Field is ( -- The HFROSCCLK directly drives HFCLK. Internal, -- Drive the final HFCLK with PLL output, bypassed or otherwise. Pll) with Size => 1; for PLLCFG_SEL_Field use (Internal => 0, Pll => 1); type PLLCFG_REFSEL_Field is ( -- Internal Oscillator. Internal, -- Crystal OScillator. Crystal) with Size => 1; for PLLCFG_REFSEL_Field use (Internal => 0, Crystal => 1); -- PLL Configuration Register. type PLLCFG_Register is record R : PLLCFG_R_Field := 16#0#; -- unspecified Reserved_3_3 : HAL.Bit := 16#0#; F : PLLCFG_F_Field := 16#0#; Q : PLLCFG_Q_Field := 16#0#; -- unspecified Reserved_12_15 : HAL.UInt4 := 16#0#; SEL : PLLCFG_SEL_Field := FE310_SVD.PRIC.Internal; REFSEL : PLLCFG_REFSEL_Field := FE310_SVD.PRIC.Internal; BYPASS : Boolean := False; -- unspecified Reserved_19_30 : HAL.UInt12 := 16#0#; LOCK : Boolean := False; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for PLLCFG_Register use record R at 0 range 0 .. 2; Reserved_3_3 at 0 range 3 .. 3; F at 0 range 4 .. 9; Q at 0 range 10 .. 11; Reserved_12_15 at 0 range 12 .. 15; SEL at 0 range 16 .. 16; REFSEL at 0 range 17 .. 17; BYPASS at 0 range 18 .. 18; Reserved_19_30 at 0 range 19 .. 30; LOCK at 0 range 31 .. 31; end record; subtype PLLOUTDIV_DIV_Field is HAL.UInt6; -- PLL Output Divider Register. type PLLOUTDIV_Register is record DIV : PLLOUTDIV_DIV_Field := 16#0#; -- unspecified Reserved_6_7 : HAL.UInt2 := 16#0#; DIV_BY_1 : Boolean := False; -- unspecified Reserved_9_31 : HAL.UInt23 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for PLLOUTDIV_Register use record DIV at 0 range 0 .. 5; Reserved_6_7 at 0 range 6 .. 7; DIV_BY_1 at 0 range 8 .. 8; Reserved_9_31 at 0 range 9 .. 31; end record; ----------------- -- Peripherals -- ----------------- -- Power, Reset, Clock, Interrupt. type PRIC_Peripheral is record -- HF Ring Oscillator Configuration Register. HFROSCCFG : aliased HFROSCCFG_Register; -- HF Crystal Oscillator Configuration Register. HFXOSCCFG : aliased HFXOSCCFG_Register; -- PLL Configuration Register. PLLCFG : aliased PLLCFG_Register; -- PLL Output Divider Register. PLLOUTDIV : aliased PLLOUTDIV_Register; end record with Volatile; for PRIC_Peripheral use record HFROSCCFG at 16#0# range 0 .. 31; HFXOSCCFG at 16#4# range 0 .. 31; PLLCFG at 16#8# range 0 .. 31; PLLOUTDIV at 16#C# range 0 .. 31; end record; -- Power, Reset, Clock, Interrupt. PRIC_Periph : aliased PRIC_Peripheral with Import, Address => System'To_Address (16#10008000#); end FE310_SVD.PRIC;
-- SPDX-License-Identifier: Apache-2.0 -- -- Copyright (c) 2016 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 System; with Orka.Rendering.Buffers.Pointers; package body Orka.Rendering.Buffers is function Create_Buffer (Flags : Storage_Bits; Kind : Types.Element_Type; Length : Natural) return Buffer is Bytes : Natural; Storage_Length : Natural; Storage_Kind : GL.Types.Numeric_Type; begin return Result : Buffer (Kind => Kind) do case Kind is -- Composite types when Single_Vector_Type => Storage_Length := Length * 4; Storage_Kind := Single_Type; when Double_Vector_Type => Storage_Length := Length * 4; Storage_Kind := Double_Type; when Single_Matrix_Type => Storage_Length := Length * 16; Storage_Kind := Single_Type; when Double_Matrix_Type => Storage_Length := Length * 16; Storage_Kind := Double_Type; when Arrays_Command_Type => Bytes := Indirect.Arrays_Indirect_Command'Size / System.Storage_Unit; Storage_Length := Length * Bytes; Storage_Kind := Byte_Type; when Elements_Command_Type => Bytes := Indirect.Elements_Indirect_Command'Size / System.Storage_Unit; Storage_Length := Length * Bytes; Storage_Kind := Byte_Type; when Dispatch_Command_Type => Bytes := Indirect.Dispatch_Indirect_Command'Size / System.Storage_Unit; Storage_Length := Length * Bytes; Storage_Kind := Byte_Type; -- Numeric types when others => Storage_Length := Length; Storage_Kind := Convert (Kind); end case; Result.Buffer.Allocate_Storage (Long (Storage_Length), Storage_Kind, Flags); Result.Length := Length; end return; end Create_Buffer; ----------------------------------------------------------------------------- function Create_Buffer (Flags : Storage_Bits; Data : Half_Array) return Buffer is begin return Result : Buffer (Kind => Half_Type) do Pointers.Half.Allocate_And_Load_From_Data (Result.Buffer, Data, Flags); Result.Length := Data'Length; end return; end Create_Buffer; function Create_Buffer (Flags : Storage_Bits; Data : Single_Array) return Buffer is begin return Result : Buffer (Kind => Single_Type) do Pointers.Single.Allocate_And_Load_From_Data (Result.Buffer, Data, Flags); Result.Length := Data'Length; end return; end Create_Buffer; function Create_Buffer (Flags : Storage_Bits; Data : Double_Array) return Buffer is begin return Result : Buffer (Kind => Double_Type) do Pointers.Double.Allocate_And_Load_From_Data (Result.Buffer, Data, Flags); Result.Length := Data'Length; end return; end Create_Buffer; function Create_Buffer (Flags : Storage_Bits; Data : Int_Array) return Buffer is begin return Result : Buffer (Kind => Int_Type) do Pointers.Int.Allocate_And_Load_From_Data (Result.Buffer, Data, Flags); Result.Length := Data'Length; end return; end Create_Buffer; function Create_Buffer (Flags : Storage_Bits; Data : UInt_Array) return Buffer is begin return Result : Buffer (Kind => UInt_Type) do Pointers.UInt.Allocate_And_Load_From_Data (Result.Buffer, Data, Flags); Result.Length := Data'Length; end return; end Create_Buffer; function Create_Buffer (Flags : Storage_Bits; Data : Orka.Types.Singles.Vector4_Array) return Buffer is begin return Result : Buffer (Kind => Single_Vector_Type) do Pointers.Single_Vector4.Allocate_And_Load_From_Data (Result.Buffer, Data, Flags); Result.Length := Data'Length; end return; end Create_Buffer; function Create_Buffer (Flags : Storage_Bits; Data : Orka.Types.Singles.Matrix4_Array) return Buffer is begin return Result : Buffer (Kind => Single_Matrix_Type) do Pointers.Single_Matrix4.Allocate_And_Load_From_Data (Result.Buffer, Data, Flags); Result.Length := Data'Length; end return; end Create_Buffer; function Create_Buffer (Flags : Storage_Bits; Data : Orka.Types.Doubles.Vector4_Array) return Buffer is begin return Result : Buffer (Kind => Double_Vector_Type) do Pointers.Double_Vector4.Allocate_And_Load_From_Data (Result.Buffer, Data, Flags); Result.Length := Data'Length; end return; end Create_Buffer; function Create_Buffer (Flags : Storage_Bits; Data : Orka.Types.Doubles.Matrix4_Array) return Buffer is begin return Result : Buffer (Kind => Double_Matrix_Type) do Pointers.Double_Matrix4.Allocate_And_Load_From_Data (Result.Buffer, Data, Flags); Result.Length := Data'Length; end return; end Create_Buffer; function Create_Buffer (Flags : Storage_Bits; Data : Indirect.Arrays_Indirect_Command_Array) return Buffer is begin return Result : Buffer (Kind => Arrays_Command_Type) do Pointers.Arrays_Command.Allocate_And_Load_From_Data (Result.Buffer, Data, Flags); Result.Length := Data'Length; end return; end Create_Buffer; function Create_Buffer (Flags : Storage_Bits; Data : Indirect.Elements_Indirect_Command_Array) return Buffer is begin return Result : Buffer (Kind => Elements_Command_Type) do Pointers.Elements_Command.Allocate_And_Load_From_Data (Result.Buffer, Data, Flags); Result.Length := Data'Length; end return; end Create_Buffer; function Create_Buffer (Flags : Storage_Bits; Data : Indirect.Dispatch_Indirect_Command_Array) return Buffer is begin return Result : Buffer (Kind => Dispatch_Command_Type) do Pointers.Dispatch_Command.Allocate_And_Load_From_Data (Result.Buffer, Data, Flags); Result.Length := Data'Length; end return; end Create_Buffer; ----------------------------------------------------------------------------- overriding function Length (Object : Buffer) return Natural is (Object.Length); overriding procedure Bind (Object : Buffer; Target : Indexed_Buffer_Target; Index : Natural) is begin case Target is when Uniform => GL.Objects.Buffers.Uniform_Buffer.Bind_Base (Object.Buffer, Index); when Shader_Storage => GL.Objects.Buffers.Shader_Storage_Buffer.Bind_Base (Object.Buffer, Index); when Atomic_Counter => GL.Objects.Buffers.Atomic_Counter_Buffer.Bind_Base (Object.Buffer, Index); end case; end Bind; overriding procedure Bind (Object : Buffer; Target : Buffer_Target) is begin case Target is when Index => GL.Objects.Buffers.Element_Array_Buffer.Bind (Object.Buffer); when Dispatch_Indirect => GL.Objects.Buffers.Dispatch_Indirect_Buffer.Bind (Object.Buffer); when Draw_Indirect => GL.Objects.Buffers.Draw_Indirect_Buffer.Bind (Object.Buffer); when Parameter => GL.Objects.Buffers.Parameter_Buffer.Bind (Object.Buffer); when Pixel_Pack => GL.Objects.Buffers.Pixel_Pack_Buffer.Bind (Object.Buffer); when Pixel_Unpack => GL.Objects.Buffers.Pixel_Unpack_Buffer.Bind (Object.Buffer); when Query => GL.Objects.Buffers.Query_Buffer.Bind (Object.Buffer); end case; end Bind; ----------------------------------------------------------------------------- procedure Set_Data (Object : Buffer; Data : Half_Array; Offset : Natural := 0) is begin Pointers.Half.Set_Sub_Data (Object.Buffer, Int (Offset), Data); end Set_Data; procedure Set_Data (Object : Buffer; Data : Single_Array; Offset : Natural := 0) is begin Pointers.Single.Set_Sub_Data (Object.Buffer, Int (Offset), Data); end Set_Data; procedure Set_Data (Object : Buffer; Data : Double_Array; Offset : Natural := 0) is begin Pointers.Double.Set_Sub_Data (Object.Buffer, Int (Offset), Data); end Set_Data; procedure Set_Data (Object : Buffer; Data : Int_Array; Offset : Natural := 0) is begin Pointers.Int.Set_Sub_Data (Object.Buffer, Int (Offset), Data); end Set_Data; procedure Set_Data (Object : Buffer; Data : UInt_Array; Offset : Natural := 0) is begin Pointers.UInt.Set_Sub_Data (Object.Buffer, Int (Offset), Data); end Set_Data; procedure Set_Data (Object : Buffer; Data : Orka.Types.Singles.Vector4_Array; Offset : Natural := 0) is begin Pointers.Single_Vector4.Set_Sub_Data (Object.Buffer, Int (Offset), Data); end Set_Data; procedure Set_Data (Object : Buffer; Data : Orka.Types.Singles.Matrix4_Array; Offset : Natural := 0) is begin Pointers.Single_Matrix4.Set_Sub_Data (Object.Buffer, Int (Offset), Data); end Set_Data; procedure Set_Data (Object : Buffer; Data : Orka.Types.Doubles.Vector4_Array; Offset : Natural := 0) is begin Pointers.Double_Vector4.Set_Sub_Data (Object.Buffer, Int (Offset), Data); end Set_Data; procedure Set_Data (Object : Buffer; Data : Orka.Types.Doubles.Matrix4_Array; Offset : Natural := 0) is begin Pointers.Double_Matrix4.Set_Sub_Data (Object.Buffer, Int (Offset), Data); end Set_Data; procedure Set_Data (Object : Buffer; Data : Indirect.Arrays_Indirect_Command_Array; Offset : Natural := 0) is begin Pointers.Arrays_Command.Set_Sub_Data (Object.Buffer, Int (Offset), Data); end Set_Data; procedure Set_Data (Object : Buffer; Data : Indirect.Elements_Indirect_Command_Array; Offset : Natural := 0) is begin Pointers.Elements_Command.Set_Sub_Data (Object.Buffer, Int (Offset), Data); end Set_Data; procedure Set_Data (Object : Buffer; Data : Indirect.Dispatch_Indirect_Command_Array; Offset : Natural := 0) is begin Pointers.Dispatch_Command.Set_Sub_Data (Object.Buffer, Int (Offset), Data); end Set_Data; ----------------------------------------------------------------------------- procedure Get_Data (Object : Buffer; Data : in out Half_Array; Offset : Natural := 0) is begin Pointers.Half.Get_Sub_Data (Object.Buffer, Int (Offset), Data); end Get_Data; procedure Get_Data (Object : Buffer; Data : in out Single_Array; Offset : Natural := 0) is begin Pointers.Single.Get_Sub_Data (Object.Buffer, Int (Offset), Data); end Get_Data; procedure Get_Data (Object : Buffer; Data : in out Double_Array; Offset : Natural := 0) is begin Pointers.Double.Get_Sub_Data (Object.Buffer, Int (Offset), Data); end Get_Data; procedure Get_Data (Object : Buffer; Data : in out Int_Array; Offset : Natural := 0) is begin Pointers.Int.Get_Sub_Data (Object.Buffer, Int (Offset), Data); end Get_Data; procedure Get_Data (Object : Buffer; Data : in out UInt_Array; Offset : Natural := 0) is begin Pointers.UInt.Get_Sub_Data (Object.Buffer, Int (Offset), Data); end Get_Data; ----------------------------------------------------------------------------- procedure Get_Data (Object : Buffer; Data : in out Orka.Types.Singles.Vector4_Array; Offset : Natural := 0) is begin Pointers.Single_Vector4.Get_Sub_Data (Object.Buffer, Int (Offset), Data); end Get_Data; procedure Get_Data (Object : Buffer; Data : in out Orka.Types.Singles.Matrix4_Array; Offset : Natural := 0) is begin Pointers.Single_Matrix4.Get_Sub_Data (Object.Buffer, Int (Offset), Data); end Get_Data; procedure Get_Data (Object : Buffer; Data : in out Orka.Types.Doubles.Vector4_Array; Offset : Natural := 0) is begin Pointers.Double_Vector4.Get_Sub_Data (Object.Buffer, Int (Offset), Data); end Get_Data; procedure Get_Data (Object : Buffer; Data : in out Orka.Types.Doubles.Matrix4_Array; Offset : Natural := 0) is begin Pointers.Double_Matrix4.Get_Sub_Data (Object.Buffer, Int (Offset), Data); end Get_Data; ----------------------------------------------------------------------------- procedure Clear_Data (Object : Buffer; Data : Int_Array) is Length : constant Size := Size (Object.Length); Data_Array : Int_Array := (if Data'Length = 1 and Data (Data'First) = 0 then Data (1 .. 0) else Data); begin Pointers.Int.Clear_Sub_Data (Object.Buffer, Int_Type, 0, Length, Data_Array); end Clear_Data; procedure Clear_Data (Object : Buffer; Data : UInt_Array) is Length : constant Size := Size (Object.Length); Data_Array : UInt_Array := (if Data'Length = 1 and Data (Data'First) = 0 then Data (1 .. 0) else Data); begin Pointers.UInt.Clear_Sub_Data (Object.Buffer, UInt_Type, 0, Length, Data_Array); end Clear_Data; procedure Clear_Data (Object : Buffer; Data : Single_Array) is Length : constant Size := Size (Object.Length); Data_Array : Single_Array := (if Data'Length = 1 and Data (Data'First) = 0.0 then Data (1 .. 0) else Data); begin Pointers.Single.Clear_Sub_Data (Object.Buffer, Single_Type, 0, Length, Data_Array); end Clear_Data; procedure Clear_Data (Object : Buffer; Data : Orka.Types.Singles.Vector4) is Length : constant Size := Size (if Object.Kind = Single_Vector_Type then Object.Length * 4 else Object.Length); Data_Array : Single_Array := (Data (X), Data (Y), Data (Z), Data (W)); begin Pointers.Single.Clear_Sub_Data (Object.Buffer, Single_Type, 0, Length, Data_Array); end Clear_Data; ----------------------------------------------------------------------------- procedure Copy_Data (Object : Buffer; Target : Buffer) is use Orka.Types; Length : constant Size := Size (Object.Length); begin case Object.Kind is -- Numeric types when UByte_Type => Pointers.UByte.Copy_Sub_Data (Object.Buffer, Target.Buffer, 0, 0, Length); when UShort_Type => Pointers.UShort.Copy_Sub_Data (Object.Buffer, Target.Buffer, 0, 0, Length); when UInt_Type => Pointers.UInt.Copy_Sub_Data (Object.Buffer, Target.Buffer, 0, 0, Length); when Byte_Type => Pointers.Byte.Copy_Sub_Data (Object.Buffer, Target.Buffer, 0, 0, Length); when Short_Type => Pointers.Short.Copy_Sub_Data (Object.Buffer, Target.Buffer, 0, 0, Length); when Int_Type => Pointers.Int.Copy_Sub_Data (Object.Buffer, Target.Buffer, 0, 0, Length); when Half_Type => Pointers.Half.Copy_Sub_Data (Object.Buffer, Target.Buffer, 0, 0, Length); when Single_Type => Pointers.Single.Copy_Sub_Data (Object.Buffer, Target.Buffer, 0, 0, Length); when Double_Type => Pointers.Double.Copy_Sub_Data (Object.Buffer, Target.Buffer, 0, 0, Length); -- Composite types when Single_Vector_Type => Pointers.Single_Vector4.Copy_Sub_Data (Object.Buffer, Target.Buffer, 0, 0, Length); when Double_Vector_Type => Pointers.Double_Vector4.Copy_Sub_Data (Object.Buffer, Target.Buffer, 0, 0, Length); when Single_Matrix_Type => Pointers.Single_Matrix4.Copy_Sub_Data (Object.Buffer, Target.Buffer, 0, 0, Length); when Double_Matrix_Type => Pointers.Double_Matrix4.Copy_Sub_Data (Object.Buffer, Target.Buffer, 0, 0, Length); when Arrays_Command_Type => Pointers.Arrays_Command.Copy_Sub_Data (Object.Buffer, Target.Buffer, 0, 0, Length); when Elements_Command_Type => Pointers.Elements_Command.Copy_Sub_Data (Object.Buffer, Target.Buffer, 0, 0, Length); when Dispatch_Command_Type => Pointers.Dispatch_Command.Copy_Sub_Data (Object.Buffer, Target.Buffer, 0, 0, Length); end case; end Copy_Data; end Orka.Rendering.Buffers;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- S Y S T E M . P A C K _ 5 6 -- -- -- -- S p e c -- -- -- -- Copyright (C) 1992-2005, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 2, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING. If not, write -- -- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, -- -- Boston, MA 02110-1301, USA. -- -- -- -- As a special exception, if other files instantiate generics from this -- -- unit, or you link this unit with other files to produce an executable, -- -- this unit does not by itself cause the resulting executable to be -- -- covered by the GNU General Public License. This exception does not -- -- however invalidate any other reasons why the executable file might be -- -- covered by the GNU Public License. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- Handling of packed arrays with Component_Size = 56 package System.Pack_56 is pragma Preelaborate; Bits : constant := 56; type Bits_56 is mod 2 ** Bits; for Bits_56'Size use Bits; function Get_56 (Arr : System.Address; N : Natural) return Bits_56; -- Arr is the address of the packed array, N is the zero-based -- subscript. This element is extracted and returned. procedure Set_56 (Arr : System.Address; N : Natural; E : Bits_56); -- Arr is the address of the packed array, N is the zero-based -- subscript. This element is set to the given value. function GetU_56 (Arr : System.Address; N : Natural) return Bits_56; -- Arr is the address of the packed array, N is the zero-based -- subscript. This element is extracted and returned. This version -- is used when Arr may represent an unaligned address. procedure SetU_56 (Arr : System.Address; N : Natural; E : Bits_56); -- Arr is the address of the packed array, N is the zero-based -- subscript. This element is set to the given value. This version -- is used when Arr may represent an unaligned address end System.Pack_56;
with Ada.Interrupts.Names; use Ada.Interrupts.Names; with STM32_SVD.EXTI; package STM32GD.EXTI is type External_Line_Number is (EXTI_Line_0, EXTI_Line_1, EXTI_Line_2, EXTI_Line_3, EXTI_Line_4, EXTI_Line_5, EXTI_Line_6, EXTI_Line_7, EXTI_Line_8, EXTI_Line_9, EXTI_Line_10, EXTI_Line_11, EXTI_Line_12, EXTI_Line_13, EXTI_Line_14, EXTI_Line_15, EXTI_Line_16, EXTI_Line_17, EXTI_Line_18, EXTI_Line_19, EXTI_Line_20, EXTI_Line_21, EXTI_Line_22); for External_Line_Number use (EXTI_Line_0 => 0, EXTI_Line_1 => 1, EXTI_Line_2 => 2, EXTI_Line_3 => 3, EXTI_Line_4 => 4, EXTI_Line_5 => 5, EXTI_Line_6 => 6, EXTI_Line_7 => 7, EXTI_Line_8 => 8, EXTI_Line_9 => 9, EXTI_Line_10 => 10, EXTI_Line_11 => 11, EXTI_Line_12 => 12, EXTI_Line_13 => 13, EXTI_Line_14 => 14, EXTI_Line_15 => 15, EXTI_Line_16 => 16, EXTI_Line_17 => 17, EXTI_Line_18 => 18, EXTI_Line_19 => 19, EXTI_Line_20 => 20, EXTI_Line_21 => 21, EXTI_Line_22 => 22); subtype EXTI_Line_Type is Integer range 0 .. 22; type External_Triggers is (Interrupt_Rising_Edge, Interrupt_Falling_Edge, Interrupt_Rising_Falling_Edge, Event_Rising_Edge, Event_Falling_Edge, Event_Rising_Falling_Edge); type EXTI_IRQ_Status is array (0 .. 22) of Boolean; subtype Interrupt_Triggers is External_Triggers range Interrupt_Rising_Edge .. Interrupt_Rising_Falling_Edge; subtype Event_Triggers is External_Triggers range Event_Rising_Edge .. Event_Rising_Falling_Edge; procedure Enable_External_Interrupt (Line : External_Line_Number; Trigger : Interrupt_Triggers) with Inline; procedure Disable_External_Interrupt (Line : External_Line_Number) with Inline; procedure Enable_External_Event (Line : External_Line_Number; Trigger : Event_Triggers) with Inline; procedure Disable_External_Event (Line : External_Line_Number) with Inline; procedure Generate_SWI (Line : External_Line_Number) with Inline; function External_Interrupt_Pending (Line : External_Line_Number) return Boolean with Inline; procedure Clear_External_Interrupt (Line : External_Line_Number) with Inline; protected IRQ_Handler is entry Wait; procedure Cancel; function Status (Line : External_Line_Number) return Boolean; procedure Reset_Status (Line : External_Line_Number); procedure Handler; pragma Attach_Handler (Handler, EXTI0_1); pragma Attach_Handler (Handler, EXTI2_3); pragma Attach_Handler (Handler, EXTI4_15); private EXTI_Status : STM32_SVD.EXTI.PR_Field; Cancelled : Boolean; Triggered : Boolean; end IRQ_Handler; end STM32GD.EXTI;
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Ada Modeling Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2010-2017, Vadim Godunko <vgodunko@gmail.com> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ -- This file is generated, don't edit it. ------------------------------------------------------------------------------ with Matreshka.Internals.Strings; package AMF.Internals.Tables.CMOF_String_Data_02 is -- "association" MS_0200 : aliased Matreshka.Internals.Strings.Shared_String := (Capacity => 15, Unused => 11, Length => 11, Value => (16#0061#, 16#0073#, 16#0073#, 16#006F#, 16#0063#, 16#0069#, 16#0061#, 16#0074#, 16#0069#, 16#006F#, 16#006E#, others => 16#0000#), others => <>); end AMF.Internals.Tables.CMOF_String_Data_02;
-- Copyright 2008-2015 Free Software Foundation, Inc. -- -- This program is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- the Free Software Foundation; either version 3 of the License, or -- (at your option) any later version. -- -- This program is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- GNU General Public License for more details. -- -- You should have received a copy of the GNU General Public License -- along with this program. If not, see <http://www.gnu.org/licenses/>. package body Pck is procedure Call_Me (D : in out Data) is begin if D.One > D.Two then D.Three := D.Four; end if; end Call_Me; end Pck;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- G N A T . E X C E P T I O N _ T R A C E S -- -- -- -- B o d y -- -- -- -- Copyright (C) 2000-2020, AdaCore -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- This package does not require a body, since it is a package renaming. We -- provide a dummy file containing a No_Body pragma so that previous versions -- of the body (which did exist) will not interfere. pragma No_Body;
package body Test_Unknown.Write is File_Name : constant String := "tmp/test-unknown-write.sf"; procedure Initialize (T : in out Test) is begin Set_Name (T, "Test_Unknown.Write"); Ahven.Framework.Add_Test_Routine (T, Check_Types'Access, "unknownSubtypes read written"); Ahven.Framework.Add_Test_Routine (T, Check_Fields_A'Access, "a: all fields are self-references"); Ahven.Framework.Add_Test_Routine (T, Check_Fields_C'Access, "c: all fields are self-references"); end Initialize; procedure Set_Up (T : in out Test) is State : access Skill_State := new Skill_State; begin Skill.Read (State, "resources/localBasePoolStartIndex.sf"); Skill.Write (State, File_Name); end Set_Up; procedure Tear_Down (T : in out Test) is begin Ada.Directories.Delete_File (File_Name); end Tear_Down; procedure Check_Types (T : in out Ahven.Framework.Test_Case'Class) is use Ada.Characters.Handling; use Ada.Strings.Fixed; use Ada.Tags; State : access Skill_State := new Skill_State; begin Skill.Read (State, File_Name); declare Types : constant String := "aaaaaaaaaaacc"; begin for I in Types'Range loop declare Object : Skill_Type'Class := Get_A (State, I).all; C : Character := To_Lower (Expanded_Name (Object'Tag)(9)); begin Ahven.Assert (Types (I) = C, "index " & Trim (I'Img, Ada.Strings.Left)); end; end loop; end; end Check_Types; procedure Check_Fields_A (T : in out Ahven.Framework.Test_Case'Class) is use Ada.Strings.Fixed; State : access Skill_State := new Skill_State; begin Skill.Read (State, File_Name); for I in 1 .. As_Size (State) loop declare X : A_Type_Access := Get_A (State, I); begin Ahven.Assert (X = X.Get_A, "index " & Trim (I'Img, Ada.Strings.Left)); end; end loop; end Check_Fields_A; procedure Check_Fields_C (T : in out Ahven.Framework.Test_Case'Class) is use Ada.Strings.Fixed; State : access Skill_State := new Skill_State; begin Skill.Read (State, File_Name); for I in 1 .. Cs_Size (State) loop declare X : C_Type_Access := Get_C (State, I); begin Ahven.Assert (X = X.Get_C, "index " & Trim (I'Img, Ada.Strings.Left)); end; end loop; end Check_Fields_C; end Test_Unknown.Write;
------------------------------------------------------------------------------ -- -- -- Copyright (C) 2020, AdaCore -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions are -- -- met: -- -- 1. Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- 2. Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in -- -- the documentation and/or other materials provided with the -- -- distribution. -- -- 3. Neither the name of the copyright holder nor the names of its -- -- contributors may be used to endorse or promote products derived -- -- from this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -- -- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -- -- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -- -- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -- -- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -- -- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ with HAL.I2C; use HAL.I2C; with HAL; use HAL; package SAM.SERCOM.I2C is type I2C_Device is new SERCOM_Device and HAL.I2C.I2C_Port with private; procedure Configure (This : in out I2C_Device; Baud : UInt8) with Pre => not This.Enabled and then not This.Configured, Post => not This.Enabled and then This.Configured; -- Configure SERCOM in I2C Master mode. -- DMA -- function Data_Address (This : I2C_Device) return System.Address; -- return the address of the data register for DMA transfer configuration ------------- -- HAL.I2C -- ------------- overriding procedure Master_Transmit (This : in out I2C_Device; Addr : I2C_Address; Data : I2C_Data; Status : out I2C_Status; Timeout : Natural := 1000); overriding procedure Master_Receive (This : in out I2C_Device; Addr : I2C_Address; Data : out I2C_Data; Status : out I2C_Status; Timeout : Natural := 1000); overriding procedure Mem_Write (This : in out I2C_Device; Addr : I2C_Address; Mem_Addr : UInt16; Mem_Addr_Size : I2C_Memory_Address_Size; Data : I2C_Data; Status : out I2C_Status; Timeout : Natural := 1000); overriding procedure Mem_Read (This : in out I2C_Device; Addr : I2C_Address; Mem_Addr : UInt16; Mem_Addr_Size : I2C_Memory_Address_Size; Data : out I2C_Data; Status : out I2C_Status; Timeout : Natural := 1000); private type I2C_Device is new SERCOM_Device and HAL.I2C.I2C_Port with record Do_Stop_Sequence : Boolean := True; end record; procedure Wait_Sync (This : in out I2C_Device); procedure Wait_Bus (This : in out I2C_Device); function Send_Addr (This : in out I2C_Device; Addr : UInt11) return I2C_Status; procedure Cmd_Stop (This : in out I2C_Device); procedure Cmd_Read (This : in out I2C_Device); procedure Cmd_Nack (This : in out I2C_Device); function Bus_Status (This : I2C_Device) return I2C_Status; end SAM.SERCOM.I2C;
with Arduino_Nano_33_Ble_Sense.IOs; with HCSR04; procedure Main is Testing_Sensor_Echo : constant Arduino_Nano_33_Ble_Sense.IOs.Pin_Id := 44; Testing_Sensor_Trig : constant Arduino_Nano_33_Ble_Sense.IOs.Pin_Id := 43; Distance_Value : Float; begin loop Distance_Value := HCSR04.Distance(Testing_Sensor_Trig, Testing_Sensor_Echo); end loop; end Main;
-- -- Copyright (c) 2015, John Leimon <jleimon@gmail.com> -- -- 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. -- pragma Ada_2005; pragma Style_Checks (Off); with Interfaces.C; use Interfaces.C; with libio_h; with stdarg_h; with x86_64_linux_gnu_bits_types_h; with uG_config_h; with Interfaces.C.Strings; with System; with stddef_h; package stdio_h is -- unsupported macro: BUFSIZ _IO_BUFSIZ -- unsupported macro: SEEK_SET 0 -- unsupported macro: SEEK_CUR 1 -- unsupported macro: SEEK_END 2 -- unsupported macro: SEEK_DATA 3 -- unsupported macro: SEEK_HOLE 4 -- unsupported macro: P_tmpdir "/tmp" -- unsupported macro: stdin stdin -- unsupported macro: stdout stdout -- unsupported macro: stderr stderr -- arg-macro: procedure getc (_fp) -- _IO_getc (_fp) -- arg-macro: procedure putc (_ch, _fp) -- _IO_putc (_ch, _fp) subtype FILE is libio_h.u_IO_FILE; subtype uu_FILE is libio_h.u_IO_FILE; subtype va_list is stdarg_h.uu_gnuc_va_list; -- /usr/include/stdio.h:79 subtype off_t is x86_64_linux_gnu_bits_types_h.uu_off_t; -- /usr/include/stdio.h:90 subtype off64_t is x86_64_linux_gnu_bits_types_h.uu_off64_t; -- /usr/include/stdio.h:97 subtype ssize_t is x86_64_linux_gnu_bits_types_h.uu_ssize_t; -- /usr/include/stdio.h:102 subtype fpos_t is uG_config_h.u_G_fpos_t; subtype fpos64_t is uG_config_h.u_G_fpos64_t; stdin : access libio_h.u_IO_FILE; -- /usr/include/stdio.h:168 pragma Import (C, stdin, "stdin"); stdout : access libio_h.u_IO_FILE; -- /usr/include/stdio.h:169 pragma Import (C, stdout, "stdout"); stderr : access libio_h.u_IO_FILE; -- /usr/include/stdio.h:170 pragma Import (C, stderr, "stderr"); function remove (uu_filename : Interfaces.C.Strings.chars_ptr) return int; -- /usr/include/stdio.h:178 pragma Import (C, remove, "remove"); function rename (uu_old : Interfaces.C.Strings.chars_ptr; uu_new : Interfaces.C.Strings.chars_ptr) return int; -- /usr/include/stdio.h:180 pragma Import (C, rename, "rename"); function renameat (uu_oldfd : int; uu_old : Interfaces.C.Strings.chars_ptr; uu_newfd : int; uu_new : Interfaces.C.Strings.chars_ptr) return int; -- /usr/include/stdio.h:185 pragma Import (C, renameat, "renameat"); function tmpfile return access FILE; -- /usr/include/stdio.h:195 pragma Import (C, tmpfile, "tmpfile"); function tmpfile64 return access FILE; -- /usr/include/stdio.h:205 pragma Import (C, tmpfile64, "tmpfile64"); function tmpnam (uu_s : Interfaces.C.Strings.chars_ptr) return Interfaces.C.Strings.chars_ptr; -- /usr/include/stdio.h:209 pragma Import (C, tmpnam, "tmpnam"); function tmpnam_r (uu_s : Interfaces.C.Strings.chars_ptr) return Interfaces.C.Strings.chars_ptr; -- /usr/include/stdio.h:215 pragma Import (C, tmpnam_r, "tmpnam_r"); function tempnam (uu_dir : Interfaces.C.Strings.chars_ptr; uu_pfx : Interfaces.C.Strings.chars_ptr) return Interfaces.C.Strings.chars_ptr; -- /usr/include/stdio.h:227 pragma Import (C, tempnam, "tempnam"); function fclose (uu_stream : access FILE) return int; -- /usr/include/stdio.h:237 pragma Import (C, fclose, "fclose"); function fflush (uu_stream : access FILE) return int; -- /usr/include/stdio.h:242 pragma Import (C, fflush, "fflush"); function fflush_unlocked (uu_stream : access FILE) return int; -- /usr/include/stdio.h:252 pragma Import (C, fflush_unlocked, "fflush_unlocked"); function fcloseall return int; -- /usr/include/stdio.h:262 pragma Import (C, fcloseall, "fcloseall"); function fopen (uu_filename : Interfaces.C.Strings.chars_ptr; uu_modes : Interfaces.C.Strings.chars_ptr) return access FILE; -- /usr/include/stdio.h:272 pragma Import (C, fopen, "fopen"); function freopen (uu_filename : Interfaces.C.Strings.chars_ptr; uu_modes : Interfaces.C.Strings.chars_ptr; uu_stream : access FILE) return access FILE; -- /usr/include/stdio.h:278 pragma Import (C, freopen, "freopen"); function fopen64 (uu_filename : Interfaces.C.Strings.chars_ptr; uu_modes : Interfaces.C.Strings.chars_ptr) return access FILE; -- /usr/include/stdio.h:297 pragma Import (C, fopen64, "fopen64"); function freopen64 (uu_filename : Interfaces.C.Strings.chars_ptr; uu_modes : Interfaces.C.Strings.chars_ptr; uu_stream : access FILE) return access FILE; -- /usr/include/stdio.h:299 pragma Import (C, freopen64, "freopen64"); function fdopen (uu_fd : int; uu_modes : Interfaces.C.Strings.chars_ptr) return access FILE; -- /usr/include/stdio.h:306 pragma Import (C, fdopen, "fdopen"); function fopencookie (uu_magic_cookie : System.Address; uu_modes : Interfaces.C.Strings.chars_ptr; uu_io_funcs : libio_h.u_IO_cookie_io_functions_t) return access FILE; -- /usr/include/stdio.h:312 pragma Import (C, fopencookie, "fopencookie"); function fmemopen (uu_s : System.Address; uu_len : stddef_h.size_t; uu_modes : Interfaces.C.Strings.chars_ptr) return access FILE; -- /usr/include/stdio.h:319 pragma Import (C, fmemopen, "fmemopen"); function open_memstream (uu_bufloc : System.Address; uu_sizeloc : access stddef_h.size_t) return access FILE; -- /usr/include/stdio.h:325 pragma Import (C, open_memstream, "open_memstream"); procedure setbuf (uu_stream : access FILE; uu_buf : Interfaces.C.Strings.chars_ptr); -- /usr/include/stdio.h:332 pragma Import (C, setbuf, "setbuf"); function setvbuf (uu_stream : access FILE; uu_buf : Interfaces.C.Strings.chars_ptr; uu_modes : int; uu_n : stddef_h.size_t) return int; -- /usr/include/stdio.h:336 pragma Import (C, setvbuf, "setvbuf"); procedure setbuffer (uu_stream : access FILE; uu_buf : Interfaces.C.Strings.chars_ptr; uu_size : stddef_h.size_t); -- /usr/include/stdio.h:343 pragma Import (C, setbuffer, "setbuffer"); procedure setlinebuf (uu_stream : access FILE); -- /usr/include/stdio.h:347 pragma Import (C, setlinebuf, "setlinebuf"); function fprintf (uu_stream : access FILE; uu_format : Interfaces.C.Strings.chars_ptr -- , ... ) return int; -- /usr/include/stdio.h:356 pragma Import (C, fprintf, "fprintf"); function printf (uu_format : Interfaces.C.Strings.chars_ptr -- , ... ) return int; -- /usr/include/stdio.h:362 pragma Import (C, printf, "printf"); function sprintf (uu_s : Interfaces.C.Strings.chars_ptr; uu_format : Interfaces.C.Strings.chars_ptr -- , ... ) return int; -- /usr/include/stdio.h:364 pragma Import (C, sprintf, "sprintf"); function vfprintf (uu_s : access FILE; uu_format : Interfaces.C.Strings.chars_ptr; uu_arg : access System.Address) return int; -- /usr/include/stdio.h:371 pragma Import (C, vfprintf, "vfprintf"); function vprintf (uu_format : Interfaces.C.Strings.chars_ptr; uu_arg : access System.Address) return int; -- /usr/include/stdio.h:377 pragma Import (C, vprintf, "vprintf"); function vsprintf (uu_s : Interfaces.C.Strings.chars_ptr; uu_format : Interfaces.C.Strings.chars_ptr; uu_arg : access System.Address) return int; -- /usr/include/stdio.h:379 pragma Import (C, vsprintf, "vsprintf"); function snprintf (uu_s : Interfaces.C.Strings.chars_ptr; uu_maxlen : stddef_h.size_t; uu_format : Interfaces.C.Strings.chars_ptr -- , ... ) return int; -- /usr/include/stdio.h:386 pragma Import (C, snprintf, "snprintf"); function vsnprintf (uu_s : Interfaces.C.Strings.chars_ptr; uu_maxlen : stddef_h.size_t; uu_format : Interfaces.C.Strings.chars_ptr; uu_arg : access System.Address) return int; -- /usr/include/stdio.h:390 pragma Import (C, vsnprintf, "vsnprintf"); function vasprintf (uu_ptr : System.Address; uu_f : Interfaces.C.Strings.chars_ptr; uu_arg : access System.Address) return int; -- /usr/include/stdio.h:399 pragma Import (C, vasprintf, "vasprintf"); function asprintf (uu_ptr : System.Address; uu_fmt : Interfaces.C.Strings.chars_ptr -- , ... ) return int; -- /usr/include/stdio.h:405 pragma Import (C, asprintf, "asprintf"); function vdprintf (uu_fd : int; uu_fmt : Interfaces.C.Strings.chars_ptr; uu_arg : access System.Address) return int; -- /usr/include/stdio.h:412 pragma Import (C, vdprintf, "vdprintf"); function dprintf (uu_fd : int; uu_fmt : Interfaces.C.Strings.chars_ptr -- , ... ) return int; -- /usr/include/stdio.h:415 pragma Import (C, dprintf, "dprintf"); function fscanf (uu_stream : access FILE; uu_format : Interfaces.C.Strings.chars_ptr -- , ... ) return int; -- /usr/include/stdio.h:425 pragma Import (C, fscanf, "fscanf"); function scanf (uu_format : Interfaces.C.Strings.chars_ptr -- , ... ) return int; -- /usr/include/stdio.h:431 pragma Import (C, scanf, "scanf"); function sscanf (uu_s : Interfaces.C.Strings.chars_ptr; uu_format : Interfaces.C.Strings.chars_ptr -- , ... ) return int; -- /usr/include/stdio.h:433 pragma Import (C, sscanf, "sscanf"); function vfscanf (uu_s : access FILE; uu_format : Interfaces.C.Strings.chars_ptr; uu_arg : access System.Address) return int; -- /usr/include/stdio.h:471 pragma Import (C, vfscanf, "vfscanf"); function vscanf (uu_format : Interfaces.C.Strings.chars_ptr; uu_arg : access System.Address) return int; -- /usr/include/stdio.h:479 pragma Import (C, vscanf, "vscanf"); function vsscanf (uu_s : Interfaces.C.Strings.chars_ptr; uu_format : Interfaces.C.Strings.chars_ptr; uu_arg : access System.Address) return int; -- /usr/include/stdio.h:483 pragma Import (C, vsscanf, "vsscanf"); function fgetc (uu_stream : access FILE) return int; -- /usr/include/stdio.h:531 pragma Import (C, fgetc, "fgetc"); function getc (uu_stream : access FILE) return int; -- /usr/include/stdio.h:532 pragma Import (C, getc, "getc"); function getchar return int; -- /usr/include/stdio.h:538 pragma Import (C, getchar, "getchar"); function getc_unlocked (uu_stream : access FILE) return int; -- /usr/include/stdio.h:550 pragma Import (C, getc_unlocked, "getc_unlocked"); function getchar_unlocked return int; -- /usr/include/stdio.h:551 pragma Import (C, getchar_unlocked, "getchar_unlocked"); function fgetc_unlocked (uu_stream : access FILE) return int; -- /usr/include/stdio.h:561 pragma Import (C, fgetc_unlocked, "fgetc_unlocked"); function fputc (uu_c : int; uu_stream : access FILE) return int; -- /usr/include/stdio.h:573 pragma Import (C, fputc, "fputc"); function putc (uu_c : int; uu_stream : access FILE) return int; -- /usr/include/stdio.h:574 pragma Import (C, putc, "putc"); function putchar (uu_c : int) return int; -- /usr/include/stdio.h:580 pragma Import (C, putchar, "putchar"); function fputc_unlocked (uu_c : int; uu_stream : access FILE) return int; -- /usr/include/stdio.h:594 pragma Import (C, fputc_unlocked, "fputc_unlocked"); function putc_unlocked (uu_c : int; uu_stream : access FILE) return int; -- /usr/include/stdio.h:602 pragma Import (C, putc_unlocked, "putc_unlocked"); function putchar_unlocked (uu_c : int) return int; -- /usr/include/stdio.h:603 pragma Import (C, putchar_unlocked, "putchar_unlocked"); function getw (uu_stream : access FILE) return int; -- /usr/include/stdio.h:610 pragma Import (C, getw, "getw"); function putw (uu_w : int; uu_stream : access FILE) return int; -- /usr/include/stdio.h:613 pragma Import (C, putw, "putw"); function fgets (uu_s : Interfaces.C.Strings.chars_ptr; uu_n : int; uu_stream : access FILE) return Interfaces.C.Strings.chars_ptr; -- /usr/include/stdio.h:622 pragma Import (C, fgets, "fgets"); function gets (uu_s : Interfaces.C.Strings.chars_ptr) return Interfaces.C.Strings.chars_ptr; -- /usr/include/stdio.h:638 pragma Import (C, gets, "gets"); function fgets_unlocked (uu_s : Interfaces.C.Strings.chars_ptr; uu_n : int; uu_stream : access FILE) return Interfaces.C.Strings.chars_ptr; -- /usr/include/stdio.h:649 pragma Import (C, fgets_unlocked, "fgets_unlocked"); function getdelim (uu_lineptr : System.Address; uu_n : access stddef_h.size_t; uu_delimiter : int; uu_stream : access FILE) return x86_64_linux_gnu_bits_types_h.uu_ssize_t; -- /usr/include/stdio.h:668 pragma Import (C, getdelim, "getdelim"); function getline (uu_lineptr : System.Address; uu_n : access stddef_h.size_t; uu_stream : access FILE) return x86_64_linux_gnu_bits_types_h.uu_ssize_t; -- /usr/include/stdio.h:678 pragma Import (C, getline, "getline"); function fputs (uu_s : Interfaces.C.Strings.chars_ptr; uu_stream : access FILE) return int; -- /usr/include/stdio.h:689 pragma Import (C, fputs, "fputs"); function puts (uu_s : Interfaces.C.Strings.chars_ptr) return int; -- /usr/include/stdio.h:695 pragma Import (C, puts, "puts"); function ungetc (uu_c : int; uu_stream : access FILE) return int; -- /usr/include/stdio.h:702 pragma Import (C, ungetc, "ungetc"); function fread (uu_ptr : System.Address; uu_size : stddef_h.size_t; uu_n : stddef_h.size_t; uu_stream : access FILE) return stddef_h.size_t; -- /usr/include/stdio.h:709 pragma Import (C, fread, "fread"); function fwrite (uu_ptr : System.Address; uu_size : stddef_h.size_t; uu_n : stddef_h.size_t; uu_s : access FILE) return stddef_h.size_t; -- /usr/include/stdio.h:715 pragma Import (C, fwrite, "fwrite"); function fputs_unlocked (uu_s : Interfaces.C.Strings.chars_ptr; uu_stream : access FILE) return int; -- /usr/include/stdio.h:726 pragma Import (C, fputs_unlocked, "fputs_unlocked"); function fread_unlocked (uu_ptr : System.Address; uu_size : stddef_h.size_t; uu_n : stddef_h.size_t; uu_stream : access FILE) return stddef_h.size_t; -- /usr/include/stdio.h:737 pragma Import (C, fread_unlocked, "fread_unlocked"); function fwrite_unlocked (uu_ptr : System.Address; uu_size : stddef_h.size_t; uu_n : stddef_h.size_t; uu_stream : access FILE) return stddef_h.size_t; -- /usr/include/stdio.h:739 pragma Import (C, fwrite_unlocked, "fwrite_unlocked"); function fseek (uu_stream : access FILE; uu_off : long; uu_whence : int) return int; -- /usr/include/stdio.h:749 pragma Import (C, fseek, "fseek"); function ftell (uu_stream : access FILE) return long; -- /usr/include/stdio.h:754 pragma Import (C, ftell, "ftell"); procedure rewind (uu_stream : access FILE); -- /usr/include/stdio.h:759 pragma Import (C, rewind, "rewind"); function fseeko (uu_stream : access FILE; uu_off : x86_64_linux_gnu_bits_types_h.uu_off_t; uu_whence : int) return int; -- /usr/include/stdio.h:773 pragma Import (C, fseeko, "fseeko"); function ftello (uu_stream : access FILE) return x86_64_linux_gnu_bits_types_h.uu_off_t; -- /usr/include/stdio.h:778 pragma Import (C, ftello, "ftello"); function fgetpos (uu_stream : access FILE; uu_pos : access fpos_t) return int; -- /usr/include/stdio.h:798 pragma Import (C, fgetpos, "fgetpos"); function fsetpos (uu_stream : access FILE; uu_pos : System.Address) return int; -- /usr/include/stdio.h:803 pragma Import (C, fsetpos, "fsetpos"); function fseeko64 (uu_stream : access FILE; uu_off : x86_64_linux_gnu_bits_types_h.uu_off64_t; uu_whence : int) return int; -- /usr/include/stdio.h:818 pragma Import (C, fseeko64, "fseeko64"); function ftello64 (uu_stream : access FILE) return x86_64_linux_gnu_bits_types_h.uu_off64_t; -- /usr/include/stdio.h:819 pragma Import (C, ftello64, "ftello64"); function fgetpos64 (uu_stream : access FILE; uu_pos : access fpos64_t) return int; -- /usr/include/stdio.h:820 pragma Import (C, fgetpos64, "fgetpos64"); function fsetpos64 (uu_stream : access FILE; uu_pos : System.Address) return int; -- /usr/include/stdio.h:821 pragma Import (C, fsetpos64, "fsetpos64"); procedure clearerr (uu_stream : access FILE); -- /usr/include/stdio.h:826 pragma Import (C, clearerr, "clearerr"); function feof (uu_stream : access FILE) return int; -- /usr/include/stdio.h:828 pragma Import (C, feof, "feof"); function ferror (uu_stream : access FILE) return int; -- /usr/include/stdio.h:830 pragma Import (C, ferror, "ferror"); procedure clearerr_unlocked (uu_stream : access FILE); -- /usr/include/stdio.h:835 pragma Import (C, clearerr_unlocked, "clearerr_unlocked"); function feof_unlocked (uu_stream : access FILE) return int; -- /usr/include/stdio.h:836 pragma Import (C, feof_unlocked, "feof_unlocked"); function ferror_unlocked (uu_stream : access FILE) return int; -- /usr/include/stdio.h:837 pragma Import (C, ferror_unlocked, "ferror_unlocked"); procedure perror (uu_s : Interfaces.C.Strings.chars_ptr); -- /usr/include/stdio.h:846 pragma Import (C, perror, "perror"); function fileno (uu_stream : access FILE) return int; -- /usr/include/stdio.h:858 pragma Import (C, fileno, "fileno"); function fileno_unlocked (uu_stream : access FILE) return int; -- /usr/include/stdio.h:863 pragma Import (C, fileno_unlocked, "fileno_unlocked"); function popen (uu_command : Interfaces.C.Strings.chars_ptr; uu_modes : Interfaces.C.Strings.chars_ptr) return access FILE; -- /usr/include/stdio.h:873 pragma Import (C, popen, "popen"); function pclose (uu_stream : access FILE) return int; -- /usr/include/stdio.h:879 pragma Import (C, pclose, "pclose"); function ctermid (uu_s : Interfaces.C.Strings.chars_ptr) return Interfaces.C.Strings.chars_ptr; -- /usr/include/stdio.h:885 pragma Import (C, ctermid, "ctermid"); function cuserid (uu_s : Interfaces.C.Strings.chars_ptr) return Interfaces.C.Strings.chars_ptr; -- /usr/include/stdio.h:891 pragma Import (C, cuserid, "cuserid"); -- skipped empty struct obstack function obstack_printf (uu_obstack : System.Address; uu_format : Interfaces.C.Strings.chars_ptr -- , ... ) return int; -- /usr/include/stdio.h:899 pragma Import (C, obstack_printf, "obstack_printf"); function obstack_vprintf (uu_obstack : System.Address; uu_format : Interfaces.C.Strings.chars_ptr; uu_args : access System.Address) return int; -- /usr/include/stdio.h:902 pragma Import (C, obstack_vprintf, "obstack_vprintf"); procedure flockfile (uu_stream : access FILE); -- /usr/include/stdio.h:913 pragma Import (C, flockfile, "flockfile"); function ftrylockfile (uu_stream : access FILE) return int; -- /usr/include/stdio.h:917 pragma Import (C, ftrylockfile, "ftrylockfile"); procedure funlockfile (uu_stream : access FILE); -- /usr/include/stdio.h:920 pragma Import (C, funlockfile, "funlockfile"); end stdio_h;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- G N A T . S I G N A L S -- -- -- -- B o d y -- -- -- -- Copyright (C) 2003-2005, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 2, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING. If not, write -- -- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, -- -- Boston, MA 02110-1301, USA. -- -- -- -- As a special exception, if other files instantiate generics from this -- -- unit, or you link this unit with other files to produce an executable, -- -- this unit does not by itself cause the resulting executable to be -- -- covered by the GNU General Public License. This exception does not -- -- however invalidate any other reasons why the executable file might be -- -- covered by the GNU Public License. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ with System.Interrupts; package body GNAT.Signals is package SI renames System.Interrupts; ------------------ -- Block_Signal -- ------------------ procedure Block_Signal (Signal : Ada.Interrupts.Interrupt_ID) is begin SI.Block_Interrupt (SI.Interrupt_ID (Signal)); end Block_Signal; ---------------- -- Is_Blocked -- ---------------- function Is_Blocked (Signal : Ada.Interrupts.Interrupt_ID) return Boolean is begin return SI.Is_Blocked (SI.Interrupt_ID (Signal)); end Is_Blocked; -------------------- -- Unblock_Signal -- -------------------- procedure Unblock_Signal (Signal : Ada.Interrupts.Interrupt_ID) is begin SI.Unblock_Interrupt (SI.Interrupt_ID (Signal)); end Unblock_Signal; end GNAT.Signals;
-- C43204C.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 ARRAY AGGREGATE WITH AN OTHERS CHOICE CAN APPEAR -- (AND BOUNDS ARE DETERMINED CORRECTLY) AS AN ACTUAL PARAMETER OF -- A GENERIC INSTANTIATION WHEN THE GENERIC FORMAL PARAMETER IS -- CONSTRAINED. -- HISTORY: -- JET 08/15/88 CREATED ORIGINAL TEST. WITH REPORT; USE REPORT; PROCEDURE C43204C IS TYPE ARR10 IS ARRAY(IDENT_INT(1)..IDENT_INT(0)) OF INTEGER; TYPE ARR11 IS ARRAY(INTEGER RANGE -3..3) OF INTEGER; TYPE ARR12 IS ARRAY(IDENT_INT(-3)..IDENT_INT(3)) OF INTEGER; TYPE ARR20 IS ARRAY(IDENT_INT(1)..IDENT_INT(0), IDENT_INT(0)..IDENT_INT(-1)) OF INTEGER; TYPE ARR21 IS ARRAY(INTEGER RANGE -1..1, INTEGER RANGE -1..1) OF INTEGER; TYPE ARR22 IS ARRAY(IDENT_INT(-1)..IDENT_INT(1), IDENT_INT(-1)..IDENT_INT(1)) OF INTEGER; TYPE ARR23 IS ARRAY(INTEGER'(-1)..1, IDENT_INT(-1)..IDENT_INT(1)) OF INTEGER; GENERIC A : ARR10; PROCEDURE GPROC10; GENERIC A : ARR11; PROCEDURE GPROC11; GENERIC A : ARR12; PROCEDURE GPROC12; GENERIC A : ARR20; PROCEDURE GPROC20; GENERIC A : ARR21; PROCEDURE GPROC21 (C : INTEGER); GENERIC A : ARR22; PROCEDURE GPROC22; GENERIC A : ARR23; PROCEDURE GPROC23; PROCEDURE GPROC10 IS BEGIN IF A'LENGTH /= IDENT_INT(0) THEN FAILED ("PROC10 ARRAY IS NOT NULL"); END IF; END GPROC10; PROCEDURE GPROC11 IS BEGIN IF A'LENGTH /= IDENT_INT(7) OR A'FIRST /= IDENT_INT(-3) OR A'LAST /= IDENT_INT(3) THEN FAILED ("INCORRECT LENGTH IN PROC11"); END IF; FOR I IN IDENT_INT(-3)..IDENT_INT(3) LOOP IF IDENT_INT(A(I)) /= 1 THEN FAILED ("INCORRECT VALUE OF COMPONENT " & INTEGER'IMAGE(I) & ", PROC11"); END IF; END LOOP; END GPROC11; PROCEDURE GPROC12 IS BEGIN IF A'LENGTH /= IDENT_INT(7) THEN FAILED ("INCORRECT LENGTH IN PROC12"); END IF; FOR I IN IDENT_INT(-3)..IDENT_INT(3) LOOP IF IDENT_INT(A(I)) /= 2 THEN FAILED ("INCORRECT VALUE OF COMPONENT " & INTEGER'IMAGE(I) & ", PROC12"); END IF; END LOOP; END GPROC12; PROCEDURE GPROC20 IS BEGIN IF A'LENGTH(1) /= IDENT_INT(0) OR A'LENGTH(2) /= IDENT_INT(0) THEN FAILED ("GPROC20 ARRAY IS NOT NULL"); END IF; END GPROC20; PROCEDURE GPROC21 (C : INTEGER) IS BEGIN FOR I IN INTEGER'(-1)..1 LOOP FOR J IN INTEGER'(-1)..1 LOOP IF IDENT_INT(A(I,J)) /= C THEN FAILED ("INCORRECT VALUE OF COMPONENT (" & INTEGER'IMAGE(I) & "," & INTEGER'IMAGE(J) & "), GPROC21 CALL " & "NUMBER" & INTEGER'IMAGE(C)); END IF; END LOOP; END LOOP; END GPROC21; PROCEDURE GPROC22 IS BEGIN FOR I IN INTEGER'(-1)..1 LOOP FOR J IN INTEGER'(-1)..1 LOOP IF IDENT_INT(A(I,J)) /= 3 THEN FAILED ("INCORRECT VALUE OF COMPONENT (" & INTEGER'IMAGE(I) & "," & INTEGER'IMAGE(J) & "), GPROC22"); END IF; END LOOP; END LOOP; END GPROC22; PROCEDURE GPROC23 IS BEGIN FOR I IN INTEGER'(-1)..1 LOOP FOR J IN INTEGER'(-1)..1 LOOP IF IDENT_INT(A(I,J)) /= 4 THEN FAILED ("INCORRECT VALUE OF COMPONENT (" & INTEGER'IMAGE(I) & "," & INTEGER'IMAGE(J) & "), GPROC23"); END IF; END LOOP; END LOOP; END GPROC23; PROCEDURE PROC11 IS NEW GPROC11((1,1,1, OTHERS => 1)); PROCEDURE PROC12 IS NEW GPROC12((OTHERS => 2)); PROCEDURE PROC10 IS NEW GPROC10((OTHERS => 3)); PROCEDURE PROC21 IS NEW GPROC21(((1,1,1), OTHERS => (1,1,1))); PROCEDURE PROC22 IS NEW GPROC21(((2,OTHERS => 2), (2,OTHERS => 2), (2,2,OTHERS => 2))); PROCEDURE PROC23 IS NEW GPROC22((OTHERS => (OTHERS => 3))); PROCEDURE PROC24 IS NEW GPROC23((OTHERS => (4,4,4))); PROCEDURE PROC20 IS NEW GPROC20((OTHERS => (OTHERS => 5))); BEGIN TEST ("C43204C", "CHECK THAT AN ARRAY AGGREGATE WITH AN OTHERS " & "CHOICE CAN APPEAR (AND BOUNDS ARE DETERMINED " & "CORRECTLY) AS AN ACTUAL PARAMETER OF A " & "SUBPROGRAM CALL WHEN THE FORMAL PARAMETER IS " & "CONSTRAINED"); PROC11; PROC12; PROC10; PROC21(1); PROC22(2); PROC23; PROC24; PROC20; RESULT; END C43204C;
-- This file is covered by the Internet Software Consortium (ISC) License -- Reference: ../../License.txt with AdaBase.Connection.Base.SQLite; with AdaBase.Bindings.SQLite; with Ada.Containers.Vectors; package AdaBase.Statement.Base.SQLite is package ACS renames AdaBase.Connection.Base.SQLite; package BND renames AdaBase.Bindings.SQLite; package AC renames Ada.Containers; type SQLite_statement (type_of_statement : Stmt_Type; log_handler : ALF.LogFacility_access; sqlite_conn : ACS.SQLite_Connection_Access; initial_sql : SQL_Access; con_error_mode : Error_Modes; con_case_mode : Case_Modes; con_max_blob : BLOB_Maximum) is new Base_Statement and AIS.iStatement with private; type SQLite_statement_access is access all SQLite_statement; overriding function column_count (Stmt : SQLite_statement) return Natural; overriding function last_insert_id (Stmt : SQLite_statement) return Trax_ID; overriding function last_sql_state (Stmt : SQLite_statement) return SQL_State; overriding function last_driver_code (Stmt : SQLite_statement) return Driver_Codes; overriding function last_driver_message (Stmt : SQLite_statement) return String; overriding procedure discard_rest (Stmt : out SQLite_statement); overriding function execute (Stmt : out SQLite_statement) return Boolean; overriding function execute (Stmt : out SQLite_statement; parameters : String; delimiter : Character := '|') return Boolean; overriding function rows_returned (Stmt : SQLite_statement) return Affected_Rows; overriding function column_name (Stmt : SQLite_statement; index : Positive) return String; overriding function column_table (Stmt : SQLite_statement; index : Positive) return String; overriding function column_native_type (Stmt : SQLite_statement; index : Positive) return field_types; overriding function fetch_next (Stmt : out SQLite_statement) return ARS.Datarow; overriding function fetch_all (Stmt : out SQLite_statement) return ARS.Datarow_Set; overriding function fetch_bound (Stmt : out SQLite_statement) return Boolean; overriding procedure fetch_next_set (Stmt : out SQLite_statement; data_present : out Boolean; data_fetched : out Boolean); private type column_info is record table : CT.Text; field_name : CT.Text; field_type : field_types; null_possible : Boolean; sqlite_type : BND.enum_field_types; end record; type sqlite_canvas is record buffer_binary : BND.ICS.char_array_access := null; buffer_text : BND.ICS.chars_ptr := BND.ICS.Null_Ptr; end record; type step_result_type is (unset, data_pulled, progam_complete, error_seen); package VColumns is new AC.Vectors (Index_Type => Positive, Element_Type => column_info); package VCanvas is new AC.Vectors (Index_Type => Positive, Element_Type => sqlite_canvas); type SQLite_statement (type_of_statement : Stmt_Type; log_handler : ALF.LogFacility_access; sqlite_conn : ACS.SQLite_Connection_Access; initial_sql : SQL_Access; con_error_mode : Error_Modes; con_case_mode : Case_Modes; con_max_blob : BLOB_Maximum) is new Base_Statement and AIS.iStatement with record stmt_handle : aliased BND.sqlite3_stmt_Access := null; step_result : step_result_type := unset; assign_counter : Natural := 0; num_columns : Natural := 0; column_info : VColumns.Vector; bind_canvas : VCanvas.Vector; sql_final : SQL_Access; end record; procedure log_problem (statement : SQLite_statement; category : Log_Category; message : String; pull_codes : Boolean := False; break : Boolean := False); procedure initialize (Object : in out SQLite_statement); procedure Adjust (Object : in out SQLite_statement); procedure finalize (Object : in out SQLite_statement); procedure scan_column_information (Stmt : out SQLite_statement); procedure reclaim_canvas (Stmt : out SQLite_statement); function seems_like_bit_string (candidate : CT.Text) return Boolean; function private_execute (Stmt : out SQLite_statement) return Boolean; function construct_bind_slot (Stmt : SQLite_statement; marker : Positive) return sqlite_canvas; procedure free_binary is new Ada.Unchecked_Deallocation (BND.IC.char_array, BND.ICS.char_array_access); end AdaBase.Statement.Base.SQLite;
-- Detect GNAT version with ada.exceptions; with ada.strings.fixed; with ada.strings.bounded; with ada.strings; with ada.text_io; with gnat.compiler_version; procedure ver_gnat is package ex renames ada.exceptions; package io renames ada.text_io; package str renames ada.strings; package str_fixed renames ada.strings.fixed; package version_strings is new ada.strings.bounded.generic_bounded_length (16); package ver is new gnat.compiler_version; parse_error : exception; subtype version_name_t is version_strings.bounded_string; procedure version_parse (version_raw : string; version_name : out version_name_t; version_major : out integer; version_minor : out integer; version_patch : out integer) is version_tmp : string := version_raw; fsf_prefix : constant string := "GNAT Version: "; gpl_prefix : constant string := "GPL "; -- does the version string have a non-numeric prefix? function have_prefix (str : string) return boolean is char : constant character := str (str'first); begin return (char < '0') or (char > '9'); end have_prefix; -- find first non numeric character in string procedure first_non_numeric (str : string; position : out positive; found : out boolean) is begin for index in str'range loop declare char : constant character := str (index); begin if (char < '0') or (char > '9') then position := index; found := true; return; end if; end; end loop; found := false; end first_non_numeric; -- remove GNAT version prefix if necessary procedure remove_prefix (version : in out string; prefix : string; removed : out boolean) is begin if version'length >= prefix'length then if version (version'first .. prefix'length) = prefix then str_fixed.delete (version, version'first, prefix'length); removed := true; return; end if; end if; removed := false; end remove_prefix; -- expects strings of the form "N.N.N" procedure parse_fsf is str_tmp : string := version_tmp; begin -- consume major declare dot : constant integer := str_fixed.index (str_tmp, "."); begin version_major := integer'value (str_tmp (str_tmp'first .. dot - 1)); str_fixed.delete (str_tmp, str_tmp'first, dot); end; -- consume minor declare dot : constant integer := str_fixed.index (str_tmp, "."); begin version_minor := integer'value (str_tmp (str_tmp'first .. dot - 1)); str_fixed.delete (str_tmp, str_tmp'first, dot); end; -- consume patch declare found : boolean; position : positive; begin first_non_numeric (str_tmp, position, found); if found then version_patch := integer'value (str_tmp (str_tmp'first .. position - 1)); end if; end; exception when others => raise parse_error with "error parsing FSF version string"; end parse_fsf; -- expects strings of the form "YYYY (YYYYMMDD)" eg. "2008 (20080521)" procedure parse_gpl is year : constant string := version_tmp (version_tmp'first .. str_fixed.index (version_tmp, " ")); begin version_major := integer'value (year); exception when others => raise parse_error with "error parsing GPL version string"; end parse_gpl; removed : boolean; begin version_name := version_strings.to_bounded_string ("GNAT"); version_major := 0; version_minor := 0; version_patch := 0; -- FSF GNAT appears to have no prefix on some platforms if have_prefix (version_tmp) then remove_prefix (version_tmp, fsf_prefix, removed); if removed then version_name := version_strings.to_bounded_string ("GNAT_FSF"); parse_fsf; return; end if; remove_prefix (version_tmp, gpl_prefix, removed); if removed then version_name := version_strings.to_bounded_string ("GNAT_GPL"); parse_gpl; return; end if; else version_name := version_strings.to_bounded_string ("GNAT_FSF"); parse_fsf; return; end if; end version_parse; function to_string (num : integer) return string is begin return str_fixed.trim (integer'image (num), str.left); end to_string; -- data ver_input : constant string := ver.version; ver_name : version_name_t; ver_major : integer; ver_minor : integer; ver_patch : integer; begin -- catch parse errors begin version_parse (ver_input, ver_name, ver_major, ver_minor, ver_patch); exception when e: parse_error => io.put_line (io.current_error, "error: " & ex.exception_message (e)); end; io.put_line ("SYSDEP_ADA_TYPE_" & version_strings.to_string (ver_name) & " " & to_string (ver_major) & "." & to_string (ver_minor) & "." & to_string (ver_patch)); end ver_gnat;
procedure Puzzle_13 is begin null; end Puzzle_13;
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- E X P _ C H 8 -- -- -- -- S p e c -- -- -- -- Copyright (C) 1992-2011, 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. -- -- -- ------------------------------------------------------------------------------ -- Expand routines for chapter 8 constructs with Types; use Types; package Exp_Ch8 is procedure Expand_N_Exception_Renaming_Declaration (N : Node_Id); procedure Expand_N_Object_Renaming_Declaration (N : Node_Id); procedure Expand_N_Package_Renaming_Declaration (N : Node_Id); procedure Expand_N_Subprogram_Renaming_Declaration (N : Node_Id); end Exp_Ch8;
------------------------------------------------------------------------------ -- -- -- Copyright (C) 2015, AdaCore -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions are -- -- met: -- -- 1. Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- 2. Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in -- -- the documentation and/or other materials provided with the -- -- distribution. -- -- 3. Neither the name of STMicroelectronics nor the names of its -- -- contributors may be used to endorse or promote products derived -- -- from this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -- -- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -- -- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -- -- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -- -- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -- -- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- -- -- -- This file is based on: -- -- -- -- @file stm32f4xx_hal_spi.c -- -- @author MCD Application Team -- -- @version V1.1.0 -- -- @date 19-June-2014 -- -- @brief SPI HAL module driver. -- -- -- -- COPYRIGHT(c) 2014 STMicroelectronics -- ------------------------------------------------------------------------------ with STM32.Device; use STM32.Device; package body STM32.SPI.DMA is procedure Configure_DMA (Controller : access DMA_Controller; Channel : DMA_Channel_Selector; Data_Width : DMA_Data_Transfer_Widths); procedure Configure_DMA (Controller : access DMA_Controller; Channel : DMA_Channel_Selector; Data_Width : DMA_Data_Transfer_Widths) is Config : DMA_Channel_Configuration; begin -- See app note AN4187 Table 3 for this configuration (other than the -- channel number). It works, although it looks counterintuitive. Config.Channel := Channel_1; -- arbitrary Config.Direction := Memory_To_Peripheral; Config.Memory_Data_Format := Data_Width; Config.Peripheral_Data_Format := Bytes; Config.Increment_Peripheral_Address := False; Config.Increment_Memory_Address := True; Config.Operation_Mode := Normal_Mode; Config.Priority := Priority_Very_High; Config.FIFO_Enabled := False; Config.Memory_Burst_Size := Memory_Burst_Single; Config.Peripheral_Burst_Size := Peripheral_Burst_Single; Config.CS := 1; Configure (Controller.all, Channel, Config); end Configure_DMA; procedure Transmit_DMA (This : in out SPI_Port; Controller : access DMA_Controller; Channel : DMA_Channel_Selector; Outgoing : HAL.SPI.SPI_Data_8b) is Data_Width : DMA_Data_Transfer_Widths := Bytes; begin Configure_DMA (Controller, Channel, Data_Width); -- We configure the unit each time to ensure the data width is right. Clear_All_Status (Controller.all, Channel); -- Ensure previous calls or other use hasn't set any status flags. Start_Transfer_with_Interrupts (Controller.all, Channel, Source => Outgoing'Address, Destination => This.Periph.DR'Address, Data_Count => Outgoing'Length, Enabled_Interrupts => (Transfer_Complete_Interrupt => True, others => False)); end Transmit_DMA; end STM32.SPI.DMA;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- S Y S T E M . F L O A T _ C O N T R O L -- -- -- -- B o d y -- -- -- -- Copyright (C) 2011-2020, AdaCore -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- This implementation does nothing and can be used when the floating point -- unit is fully under control. package body System.Float_Control is ----------- -- Reset -- ----------- procedure Reset is begin null; end Reset; end System.Float_Control;
------------------------------------------------------------------------------------------------------------------------ -- Copyright © 2019, Luke A. Guest -- -- See LICENCE file. ------------------------------------------------------------------------------------------------------------------------ -- Internet time (RFC3339) shared library. ------------------------------------------------------------------------------------------------------------------------ with Ada.Calendar; with Ada.Calendar.Formatting; with Ada.Calendar.Time_Zones; with Ada.Strings.UTF_Encoding; -- with Ada.Text_IO.Text_Streams; package Net_Times is -- type Net_Time is private; package Strings renames Ada.Strings; package UTF renames Strings.UTF_Encoding; package Cal renames Ada.Calendar; package Formatting renames Cal.Formatting; package TZ renames Cal.Time_Zones; type Net_Time is record Year : Cal.Year_Number; Month : Cal.Month_Number; Day : Cal.Day_Number; Hour : Formatting.Hour_Number; Minute : Formatting.Minute_Number; Second : Formatting.Second_Number; Sub_Second : Formatting.Second_Duration; Time_Zone : TZ.Time_Offset; TZ_Valid : Boolean; end record; function Is_Well_Formed (Time : in UTF.UTF_String) return Boolean; function Image (Time : in Cal.Time) return UTF.UTF_String; function Image (Time : in Net_Time) return UTF.UTF_String; function Value (Time : in UTF.UTF_String) return Cal.Time; -- function Parse (Stream : in Ada.Text_IO.Text_Streams.Stream_Access) return Ada.Strings.UTF_Encoding.UTF_String; -- function To_Time (Self : in Net_Time) return Ada.Calendar.Time; -- function To_Net_Time (Time : in Ada.Calendar.Time) return Net_Time; -- private -- type Net_Time is -- record -- Year : Cal.Year_Number; -- Month : Cal.Month_Number; -- Day : Cal.Day_Number; -- Hour : Formatting.Hour_Number; -- Minute : Formatting.Minute_Number; -- Second : Formatting.Second_Number; -- Sub_Second : Formatting.Second_Duration; -- Time_Zone : TZ.Time_Offset; -- end record; end Net_Times;
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- S Y S T E M . S T A N D A R D _ L I B R A R Y -- -- -- -- S p e c -- -- -- -- Copyright (C) 1992-2020, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- SweetAda SFP cutted-down version -- ------------------------------------------------------------------------------ -- This package is included in all programs. It contains declarations that -- are required to be part of every Ada program. A special mechanism is -- required to ensure that these are loaded, since it may be the case in -- some programs that the only references to these required packages are -- from C code or from code generated directly by Gigi, and in both cases -- the binder is not aware of such references. -- System.Standard_Library also includes data that must be present in every -- program, in particular data for all the standard exceptions, and also some -- subprograms that must be present in every program. -- The binder unconditionally includes s-stalib.ali, which ensures that this -- package and the packages it references are included in all Ada programs, -- together with the included data. pragma Compiler_Unit_Warning; -- with Ada.Unchecked_Conversion; package System.Standard_Library is -- Historical note: pragma Preelaborate was surrounded by a pair of pragma -- Warnings (Off/On) to circumvent a bootstrap issue. pragma Preelaborate; ------------------------------------- -- Exception Declarations and Data -- ------------------------------------- type Raise_Action is access procedure; pragma Favor_Top_Level (Raise_Action); -- A pointer to a procedure used in the Raise_Hook field type Exception_Data; type Exception_Data_Ptr is access all Exception_Data; -- An equivalent of Exception_Id that is public -- The following record defines the underlying representation of exceptions -- WARNING: Any changes to this may need to be reflected in the following -- locations in the compiler and runtime code: -- 1. The Internal_Exception routine in s-exctab.adb -- 2. The processing in gigi that tests Not_Handled_By_Others -- 3. Expand_N_Exception_Declaration in Exp_Ch11 -- 4. The construction of the exception type in Cstand type Exception_Data is record Not_Handled_By_Others : Boolean; -- Normally set False, indicating that the exception is handled in the -- usual way by others (i.e. an others handler handles the exception). -- Set True to indicate that this exception is not caught by others -- handlers, but must be explicitly named in a handler. This latter -- setting is currently used by the Abort_Signal. Lang : Character; -- A character indicating the language raising the exception. -- Set to "A" for exceptions defined by an Ada program. -- Set to "C" for imported C++ exceptions. Name_Length : Natural; -- Length of fully expanded name of exception Full_Name : System.Address; -- Fully expanded name of exception, null terminated -- You can use To_Ptr to convert this to a string. HTable_Ptr : Exception_Data_Ptr; -- Hash table pointer used to link entries together in the hash table -- built (by Register_Exception in s-exctab.adb) for converting between -- identities and names. Foreign_Data : Address; -- Data for imported exceptions. Not used in the Ada case. This -- represents the address of the RTTI for the C++ case. Raise_Hook : Raise_Action; -- This field can be used to place a "hook" on an exception. If the -- value is non-null, then it points to a procedure which is called -- whenever the exception is raised. This call occurs immediately, -- before any other actions taken by the raise (and in particular -- before any unwinding of the stack occurs). end record; -- Definitions for standard predefined exceptions defined in Standard, -- Why are the NULs necessary here, seems like they should not be -- required, since Gigi is supposed to add a Nul to each name ??? Constraint_Error_Name : constant String := "CONSTRAINT_ERROR" & ASCII.NUL; Program_Error_Name : constant String := "PROGRAM_ERROR" & ASCII.NUL; Storage_Error_Name : constant String := "STORAGE_ERROR" & ASCII.NUL; Tasking_Error_Name : constant String := "TASKING_ERROR" & ASCII.NUL; Abort_Signal_Name : constant String := "_ABORT_SIGNAL" & ASCII.NUL; Numeric_Error_Name : constant String := "NUMERIC_ERROR" & ASCII.NUL; -- This is used only in the Ada 83 case, but it is not worth having a -- separate version of s-stalib.ads for use in Ada 83 mode. Constraint_Error_Def : aliased Exception_Data := (Not_Handled_By_Others => False, Lang => 'A', Name_Length => Constraint_Error_Name'Length, Full_Name => Constraint_Error_Name'Address, HTable_Ptr => null, Foreign_Data => Null_Address, Raise_Hook => null); Numeric_Error_Def : aliased Exception_Data := (Not_Handled_By_Others => False, Lang => 'A', Name_Length => Numeric_Error_Name'Length, Full_Name => Numeric_Error_Name'Address, HTable_Ptr => null, Foreign_Data => Null_Address, Raise_Hook => null); Program_Error_Def : aliased Exception_Data := (Not_Handled_By_Others => False, Lang => 'A', Name_Length => Program_Error_Name'Length, Full_Name => Program_Error_Name'Address, HTable_Ptr => null, Foreign_Data => Null_Address, Raise_Hook => null); Storage_Error_Def : aliased Exception_Data := (Not_Handled_By_Others => False, Lang => 'A', Name_Length => Storage_Error_Name'Length, Full_Name => Storage_Error_Name'Address, HTable_Ptr => null, Foreign_Data => Null_Address, Raise_Hook => null); Tasking_Error_Def : aliased Exception_Data := (Not_Handled_By_Others => False, Lang => 'A', Name_Length => Tasking_Error_Name'Length, Full_Name => Tasking_Error_Name'Address, HTable_Ptr => null, Foreign_Data => Null_Address, Raise_Hook => null); Abort_Signal_Def : aliased Exception_Data := (Not_Handled_By_Others => True, Lang => 'A', Name_Length => Abort_Signal_Name'Length, Full_Name => Abort_Signal_Name'Address, HTable_Ptr => null, Foreign_Data => Null_Address, Raise_Hook => null); pragma Export (C, Constraint_Error_Def, "constraint_error"); pragma Export (C, Numeric_Error_Def, "numeric_error"); pragma Export (C, Program_Error_Def, "program_error"); pragma Export (C, Storage_Error_Def, "storage_error"); pragma Export (C, Tasking_Error_Def, "tasking_error"); pragma Export (C, Abort_Signal_Def, "_abort_signal"); -- Binder variables main_priority : Integer with Export, External_Name => "__gl_main_priority"; time_slice_val : Integer with Export, External_Name => "__gl_time_slice_val"; wc_encoding : Integer with Export, External_Name => "__gl_wc_encoding"; locking_policy : Integer with Export, External_Name => "__gl_locking_policy"; queuing_policy : Integer with Export, External_Name => "__gl_queuing_policy"; task_dispatching_policy : Integer with Export, External_Name => "__gl_task_dispatching_policy"; priority_specific_dispatching : Integer with Export, External_Name => "__gl_priority_specific_dispatching"; num_specific_dispatching : Integer with Export, External_Name => "__gl_num_specific_dispatching"; main_cpu : Integer with Export, External_Name => "__gl_main_cpu"; interrupt_states : Integer with Export, External_Name => "__gl_interrupt_states"; num_interrupt_states : Integer with Export, External_Name => "__gl_num_interrupt_states"; unreserve_all_interrupts : Integer with Export, External_Name => "__gl_unreserve_all_interrupts"; detect_blocking : Integer with Export, External_Name => "__gl_detect_blocking"; default_stack_size : Integer with Export, External_Name => "__gl_default_stack_size"; procedure GNAT_Initialize is null with Export, External_Name => "__gnat_initialize"; procedure GNAT_Finalize is null with Export, External_Name => "__gnat_finalize"; procedure GNAT_Runtime_Initialize is null with Export, External_Name => "__gnat_runtime_initialize"; procedure GNAT_Runtime_Finalize is null with Export, External_Name => "__gnat_runtime_finalize"; procedure Adafinal is null; end System.Standard_Library;
-- Copyright 2019-2021 Free Software Foundation, Inc. -- -- This program is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- the Free Software Foundation; either version 3 of the License, or -- (at your option) any later version. -- -- This program is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- GNU General Public License for more details. -- -- You should have received a copy of the GNU General Public License -- along with this program. If not, see <http://www.gnu.org/licenses/>. package Pck is procedure Do_Nothing (A : String); end Pck;
----------------------------------------------------------------------- -- util-http-clients -- HTTP Clients -- Copyright (C) 2011, 2012, 2015, 2017, 2020 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.Finalization; with Util.Streams.Texts; with Util.Serialize.IO.Form; with Util.Http.Cookies; -- == Client == -- The <tt>Util.Http.Clients</tt> package defines a set of API for an HTTP client to send -- requests to an HTTP server. -- -- === GET request === -- To retrieve a content using the HTTP GET operation, a client instance must be created. -- The response is returned in a specific object that must therefore be declared: -- -- Http : Util.Http.Clients.Client; -- Response : Util.Http.Clients.Response; -- -- Before invoking the GET operation, the client can setup a number of HTTP headers. -- -- Http.Add_Header ("X-Requested-By", "wget"); -- -- The GET operation is performed when the <tt>Get</tt> procedure is called: -- -- Http.Get ("http://www.google.com", Response); -- -- Once the response is received, the <tt>Response</tt> object contains the status of the -- HTTP response, the HTTP reply headers and the body. A response header can be obtained -- by using the <tt>Get_Header</tt> function and the body using <tt>Get_Body</tt>: -- -- Body : constant String := Response.Get_Body; -- package Util.Http.Clients is Connection_Error : exception; type Form_Data is limited new Util.Serialize.IO.Form.Output_Stream with private; procedure Initialize (Form : in out Form_Data; Size : in Positive); -- ------------------------------ -- Http response -- ------------------------------ -- The <b>Response</b> type represents a response returned by an HTTP request. type Response is limited new Abstract_Response with private; -- Returns a boolean indicating whether the named response header has already -- been set. overriding function Contains_Header (Reply : in Response; Name : in String) return Boolean; -- Returns the value of the specified response header as a String. If the response -- did not include a header of the specified name, this method returns null. -- If there are multiple headers with the same name, this method returns the -- first head in the request. The header name is case insensitive. You can use -- this method with any response header. overriding function Get_Header (Reply : in Response; Name : in String) return String; -- Sets a message header with the given name and value. If the header had already -- been set, the new value overwrites the previous one. The containsHeader -- method can be used to test for the presence of a header before setting its value. overriding procedure Set_Header (Reply : in out Response; Name : in String; Value : in String); -- Adds a request header with the given name and value. -- This method allows request headers to have multiple values. overriding procedure Add_Header (Reply : in out Response; Name : in String; Value : in String); -- Iterate over the response headers and executes the <b>Process</b> procedure. overriding procedure Iterate_Headers (Reply : in Response; Process : not null access procedure (Name : in String; Value : in String)); -- Get the response body as a string. overriding function Get_Body (Reply : in Response) return String; -- Get the response status code. overriding function Get_Status (Reply : in Response) return Natural; -- ------------------------------ -- Http client -- ------------------------------ -- The <b>Client</b> type allows to execute HTTP GET/POST requests. type Client is limited new Abstract_Request with private; type Client_Access is access all Client; -- Returns a boolean indicating whether the named response header has already -- been set. overriding function Contains_Header (Request : in Client; Name : in String) return Boolean; -- Returns the value of the specified request header as a String. If the request -- did not include a header of the specified name, this method returns null. -- If there are multiple headers with the same name, this method returns the -- first head in the request. The header name is case insensitive. You can use -- this method with any response header. overriding function Get_Header (Request : in Client; Name : in String) return String; -- Sets a header with the given name and value. If the header had already -- been set, the new value overwrites the previous one. The containsHeader -- method can be used to test for the presence of a header before setting its value. overriding procedure Set_Header (Request : in out Client; Name : in String; Value : in String); -- Adds a header with the given name and value. -- This method allows headers to have multiple values. overriding procedure Add_Header (Request : in out Client; Name : in String; Value : in String); -- Iterate over the request headers and executes the <b>Process</b> procedure. overriding procedure Iterate_Headers (Request : in Client; Process : not null access procedure (Name : in String; Value : in String)); -- Removes all headers with the given name. procedure Remove_Header (Request : in out Client; Name : in String); -- Adds the specified cookie to the request. This method can be called multiple -- times to set more than one cookie. procedure Add_Cookie (Http : in out Client; Cookie : in Util.Http.Cookies.Cookie); -- Set the timeout for the connection. procedure Set_Timeout (Request : in out Client; Timeout : in Duration); -- Execute an http GET request on the given URL. Additional request parameters, -- cookies and headers should have been set on the client object. procedure Get (Request : in out Client; URL : in String; Reply : out Response'Class); -- Execute an http POST request on the given URL. The post data is passed in <b>Data</b>. -- Additional request cookies and headers should have been set on the client object. procedure Post (Request : in out Client; URL : in String; Data : in String; Reply : out Response'Class); procedure Post (Request : in out Client; URL : in String; Data : in Form_Data'Class; Reply : out Response'Class); -- Execute an http PUT request on the given URL. The post data is passed in <b>Data</b>. -- Additional request cookies and headers should have been set on the client object. procedure Put (Request : in out Client; URL : in String; Data : in String; Reply : out Response'Class); -- Execute an http PATCH request on the given URL. The post data is passed in <b>Data</b>. -- Additional request cookies and headers should have been set on the client object. procedure Patch (Request : in out Client; URL : in String; Data : in String; Reply : out Response'Class); -- Execute a http DELETE request on the given URL. procedure Delete (Request : in out Client; URL : in String; Reply : out Response'Class); -- Execute an http HEAD request on the given URL. Additional request parameters, -- cookies and headers should have been set on the client object. procedure Head (Request : in out Client; URL : in String; Reply : out Response'Class); -- Execute an http OPTIONS request on the given URL. Additional request parameters, -- cookies and headers should have been set on the client object. procedure Options (Request : in out Client; URL : in String; Reply : out Response'Class); private subtype Http_Request is Abstract_Request; subtype Http_Request_Access is Abstract_Request_Access; subtype Http_Response is Abstract_Response; subtype Http_Response_Access is Abstract_Response_Access; type Http_Manager is interface; type Http_Manager_Access is access all Http_Manager'Class; procedure Create (Manager : in Http_Manager; Http : in out Client'Class) is abstract; procedure Do_Get (Manager : in Http_Manager; Http : in Client'Class; URI : in String; Reply : out Response'Class) is abstract; procedure Do_Head (Manager : in Http_Manager; Http : in Client'Class; URI : in String; Reply : out Response'Class) is abstract; procedure Do_Post (Manager : in Http_Manager; Http : in Client'Class; URI : in String; Data : in String; Reply : out Response'Class) is abstract; procedure Do_Put (Manager : in Http_Manager; Http : in Client'Class; URI : in String; Data : in String; Reply : out Response'Class) is abstract; procedure Do_Patch (Manager : in Http_Manager; Http : in Client'Class; URI : in String; Data : in String; Reply : out Response'Class) is abstract; procedure Do_Delete (Manager : in Http_Manager; Http : in Client'Class; URI : in String; Reply : out Response'Class) is abstract; procedure Do_Options (Manager : in Http_Manager; Http : in Client'Class; URI : in String; Reply : out Response'Class) is abstract; -- Set the timeout for the connection. procedure Set_Timeout (Manager : in Http_Manager; Http : in Client'Class; Timeout : in Duration) is abstract; Default_Http_Manager : Http_Manager_Access; type Response is limited new Ada.Finalization.Limited_Controlled and Abstract_Response with record Delegate : Abstract_Response_Access; end record; -- Free the resource used by the response. overriding procedure Finalize (Reply : in out Response); type Client is limited new Ada.Finalization.Limited_Controlled and Abstract_Request with record Manager : Http_Manager_Access; Delegate : Http_Request_Access; end record; -- Initialize the client overriding procedure Initialize (Http : in out Client); overriding procedure Finalize (Http : in out Client); type Form_Data is limited new Util.Serialize.IO.Form.Output_Stream with record Buffer : aliased Util.Streams.Texts.Print_Stream; end record; end Util.Http.Clients;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- A D A . S T R I N G S . W I D E _ W I D E _ U N B O U N D E D . A U X -- -- -- -- B o d y -- -- -- -- Copyright (C) 1992-2005, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 2, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING. If not, write -- -- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, -- -- Boston, MA 02110-1301, USA. -- -- -- -- As a special exception, if other files instantiate generics from this -- -- unit, or you link this unit with other files to produce an executable, -- -- this unit does not by itself cause the resulting executable to be -- -- covered by the GNU General Public License. This exception does not -- -- however invalidate any other reasons why the executable file might be -- -- covered by the GNU Public License. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ package body Ada.Strings.Wide_Wide_Unbounded.Aux is -------------------- -- Get_Wide_Wide_String -- --------------------- procedure Get_Wide_Wide_String (U : Unbounded_Wide_Wide_String; S : out Wide_Wide_String_Access; L : out Natural) is begin S := U.Reference; L := U.Last; end Get_Wide_Wide_String; --------------------- -- Set_Wide_Wide_String -- --------------------- procedure Set_Wide_Wide_String (UP : in out Unbounded_Wide_Wide_String; S : Wide_Wide_String) is begin if S'Length > UP.Last then Finalize (UP); UP.Reference := new Wide_Wide_String (1 .. S'Length); end if; UP.Reference (1 .. S'Length) := S; UP.Last := S'Length; end Set_Wide_Wide_String; procedure Set_Wide_Wide_String (UP : in out Unbounded_Wide_Wide_String; S : Wide_Wide_String_Access) is begin Finalize (UP); UP.Reference := S; UP.Last := UP.Reference'Length; end Set_Wide_Wide_String; end Ada.Strings.Wide_Wide_Unbounded.Aux;
AcceptedWhileDraining = false Activity = "Idle" AddressV1 = "{[ p=\"primary\"; a=\"10.0.0.3\"; port=36347; n=\"Internet\"; alias=\"gthain.localdomain\"; spid=\"startd_888024_2e07\"; noUDP=true; ], [ p=\"IPv4\"; a=\"10.0.0.3\"; port=36347; n=\"Internet\"; alias=\"gthain.localdomain\"; spid=\"startd_888024_2e07\"; noUDP=true; ]}" Arch = "X86_64" AuthenticatedIdentity = "condor@family" AuthenticationMethod = "FAMILY" CanHibernate = true ClockDay = 0 ClockMin = 980 COLLECTOR_HOST_STRING = "gthain.localdomain:0" CondorLoadAvg = 0.0 CondorPlatform = "$CondorPlatform: X86_64-Fedora_33 $" CondorVersion = "$CondorVersion: 8.9.12 Mar 14 2021 BuildID: UW_development RC $" ConsoleIdle = 0 CpuBusy = ((LoadAvg - CondorLoadAvg) >= 0.5) CpuBusyTime = 4 CpuCacheSize = 8192 CpuFamily = 6 CpuIsBusy = true CpuModelNumber = 142 Cpus = 1 CurrentRank = 0.0 DaemonCoreDutyCycle = 0.01588477356833562 DaemonLastReconfigTime = 1615756825 DaemonShutdown = time() - DaemonStartTime > 1500 DaemonStartTime = 1615756825 DetectedCpus = 8 DetectedMemory = 15661 Disk = 16190387 EnteredCurrentActivity = 1615756829 EnteredCurrentState = 1615756829 ExpectedMachineGracefulDrainingBadput = 0 ExpectedMachineGracefulDrainingCompletion = 1615756825 ExpectedMachineQuickDrainingBadput = 0 ExpectedMachineQuickDrainingCompletion = 1615756825 FileSystemDomain = "gthain.localdomain" has_avx = true has_avx2 = true has_sse4_1 = true has_sse4_2 = true has_ssse3 = true HasFileTransfer = true HasIOProxy = true HasJICLocalConfig = true HasJICLocalStdin = true HasJobDeferral = true HasJobTransferPlugins = true HasMPI = true HasPerFileEncryption = true HasReconnect = true HasSelfCheckpointTransfers = true HasSingularity = true HasTDP = true HasTransferInputRemaps = true HasUserNamespaces = true HasVM = false HibernationLevel = 0 HibernationState = "NONE" HibernationSupportedStates = "S3,S4,S5" IsLocalStartd = false IsWakeAble = false IsWakeOnLanEnabled = false IsWakeOnLanSupported = false JobPreemptions = 0 JobRankPreemptions = 0 JobStarts = 1 JobUserPrioPreemptions = 0 KeyboardIdle = 0 LastBenchmark = 0 LastFetchWorkCompleted = 0 LastFetchWorkSpawned = 0 LastHeardFrom = 1615756829 LoadAvg = 0.59 Machine = "gthain.localdomain" MachineMaxVacateTime = 10 * 60 MachineResources = "Cpus Memory Disk Swap" MaxJobRetirementTime = 0 Memory = 1957 MonitorSelfAge = 1 MonitorSelfCPUUsage = 1.0 MonitorSelfImageSize = 26716 MonitorSelfRegisteredSocketCount = 0 MonitorSelfResidentSetSize = 12836 MonitorSelfSecuritySessions = 10 MonitorSelfTime = 1615756825 MyAddress = "<10.0.0.3:36347?addrs=10.0.0.3-36347&alias=gthain.localdomain&noUDP&sock=startd_888024_2e07>" MyCurrentTime = 1615756829 MyType = "Machine" Name = "slot1@gthain.localdomain" NextFetchWorkDelay = -1 NumPids = 0 OpSys = "LINUX" OpSysAndVer = "Fedora33" OpSysLegacy = "LINUX" OpSysLongName = "Fedora release 33 (Thirty Three)" OpSysMajorVer = 33 OpSysName = "Fedora" OpSysShortName = "Fedora" OpSysVer = 3300 Rank = 0.0 RecentDaemonCoreDutyCycle = 0.01588477356833562 RecentJobPreemptions = 0 RecentJobRankPreemptions = 0 RecentJobStarts = 1 RecentJobUserPrioPreemptions = 0 Requirements = START RetirementTimeRemaining = 0 SingularityVersion = "singularity version 3.7.1-1.fc33" SlotID = 1 SlotType = "Static" SlotTypeID = 0 SlotWeight = Cpus Start = true StartdIpAddr = "<10.0.0.3:36347?addrs=10.0.0.3-36347&alias=gthain.localdomain&noUDP&sock=startd_888024_2e07>" StarterAbilityList = "HasVM,HasMPI,HasFileTransfer,HasJobDeferral,HasSingularity,HasJobTransferPlugins,HasPerFileEncryption,HasReconnect,HasTDP,HasJICLocalStdin,HasTransferInputRemaps,HasSelfCheckpointTransfers,HasJICLocalConfig" State = "Unclaimed" SubnetMask = "255.255.255.0" TargetType = "Job" TimeToLive = 2147483647 TotalCondorLoadAvg = 0.0 TotalCpus = 8.0 TotalDisk = 129523096 TotalLoadAvg = 0.54 TotalMemory = 15661 TotalSlotCpus = 1 TotalSlotDisk = 16190387.0 TotalSlotMemory = 1957 TotalSlots = 8 TotalTimeUnclaimedIdle = 4 TotalVirtualMemory = 28313600 UidDomain = "gthain.localdomain" Unhibernate = MY.MachineLastMatchTime =!= undefined UpdateSequenceNumber = 5 UpdatesHistory = "00000000000000000000000000000000" UpdatesLost = 0 UpdatesSequenced = 4 UpdatesTotal = 5 UtsnameMachine = "x86_64" UtsnameNodename = "gthain.localdomain" UtsnameRelease = "5.10.21-200.fc33.x86_64" UtsnameSysname = "Linux" UtsnameVersion = "#1 SMP Mon Mar 8 00:24:40 UTC 2021" VirtualMemory = 3539200 WakeOnLanEnabledFlags = "NONE" WakeOnLanSupportedFlags = "NONE" AcceptedWhileDraining = false Activity = "Idle" AddressV1 = "{[ p=\"primary\"; a=\"10.0.0.3\"; port=36347; n=\"Internet\"; alias=\"gthain.localdomain\"; spid=\"startd_888024_2e07\"; noUDP=true; ], [ p=\"IPv4\"; a=\"10.0.0.3\"; port=36347; n=\"Internet\"; alias=\"gthain.localdomain\"; spid=\"startd_888024_2e07\"; noUDP=true; ]}" Arch = "X86_64" AuthenticatedIdentity = "condor@family" AuthenticationMethod = "FAMILY" CanHibernate = true ClockDay = 0 ClockMin = 980 COLLECTOR_HOST_STRING = "gthain.localdomain:0" CondorLoadAvg = 0.0 CondorPlatform = "$CondorPlatform: X86_64-Fedora_33 $" CondorVersion = "$CondorVersion: 8.9.12 Mar 14 2021 BuildID: UW_development RC $" ConsoleIdle = 0 CpuBusy = ((LoadAvg - CondorLoadAvg) >= 0.5) CpuBusyTime = 0 CpuCacheSize = 8192 CpuFamily = 6 CpuIsBusy = false CpuModelNumber = 142 Cpus = 1 CurrentRank = 0.0 DaemonCoreDutyCycle = 0.0 DaemonLastReconfigTime = 1615756825 DaemonShutdown = time() - DaemonStartTime > 1500 DaemonStartTime = 1615756825 DetectedCpus = 8 DetectedMemory = 15661 Disk = 16190387 EnteredCurrentActivity = 1615756825 EnteredCurrentState = 1615756825 ExpectedMachineGracefulDrainingBadput = 0 ExpectedMachineGracefulDrainingCompletion = 1615756825 ExpectedMachineQuickDrainingBadput = 0 ExpectedMachineQuickDrainingCompletion = 1615756825 FileSystemDomain = "gthain.localdomain" HardwareAddress = "40:ec:99:82:52:b2" has_avx = true has_avx2 = true has_sse4_1 = true has_sse4_2 = true has_ssse3 = true HasFileTransfer = true HasIOProxy = true HasJICLocalConfig = true HasJICLocalStdin = true HasJobDeferral = true HasJobTransferPlugins = true HasMPI = true HasPerFileEncryption = true HasReconnect = true HasSelfCheckpointTransfers = true HasSingularity = true HasTDP = true HasTransferInputRemaps = true HasUserNamespaces = true HasVM = false HibernationLevel = 0 HibernationState = "NONE" HibernationSupportedStates = "S3,S4,S5" IsLocalStartd = false IsWakeAble = false IsWakeOnLanEnabled = false IsWakeOnLanSupported = false JobPreemptions = 0 JobRankPreemptions = 0 JobStarts = 0 JobUserPrioPreemptions = 0 KeyboardIdle = 0 LastBenchmark = 0 LastFetchWorkCompleted = 0 LastFetchWorkSpawned = 0 LastHeardFrom = 1615756825 LoadAvg = 0.0 Machine = "gthain.localdomain" MachineMaxVacateTime = 10 * 60 MachineResources = "Cpus Memory Disk Swap" MaxJobRetirementTime = 0 Memory = 1957 MonitorSelfAge = 1 MonitorSelfCPUUsage = 1.0 MonitorSelfImageSize = 26716 MonitorSelfRegisteredSocketCount = 0 MonitorSelfResidentSetSize = 12836 MonitorSelfSecuritySessions = 10 MonitorSelfTime = 1615756825 MyAddress = "<10.0.0.3:36347?addrs=10.0.0.3-36347&alias=gthain.localdomain&noUDP&sock=startd_888024_2e07>" MyCurrentTime = 1615756825 MyType = "Machine" Name = "slot2@gthain.localdomain" NextFetchWorkDelay = -1 NumPids = 0 OpSys = "LINUX" OpSysAndVer = "Fedora33" OpSysLegacy = "LINUX" OpSysLongName = "Fedora release 33 (Thirty Three)" OpSysMajorVer = 33 OpSysName = "Fedora" OpSysShortName = "Fedora" OpSysVer = 3300 Rank = 0.0 RecentDaemonCoreDutyCycle = 0.0 RecentJobPreemptions = 0 RecentJobRankPreemptions = 0 RecentJobStarts = 0 RecentJobUserPrioPreemptions = 0 Requirements = START RetirementTimeRemaining = 0 SingularityVersion = "singularity version 3.7.1-1.fc33" SlotID = 2 SlotType = "Static" SlotTypeID = 0 SlotWeight = Cpus Start = true StartdIpAddr = "<10.0.0.3:36347?addrs=10.0.0.3-36347&alias=gthain.localdomain&noUDP&sock=startd_888024_2e07>" StarterAbilityList = "HasVM,HasMPI,HasFileTransfer,HasJobDeferral,HasSingularity,HasJobTransferPlugins,HasPerFileEncryption,HasReconnect,HasTDP,HasJICLocalStdin,HasTransferInputRemaps,HasSelfCheckpointTransfers,HasJICLocalConfig" State = "Unclaimed" SubnetMask = "255.255.255.0" TargetType = "Job" TimeToLive = 2147483647 TotalCondorLoadAvg = 0.0 TotalCpus = 8.0 TotalDisk = 129523096 TotalLoadAvg = 0.59 TotalMemory = 15661 TotalSlotCpus = 1 TotalSlotDisk = 16190387.0 TotalSlotMemory = 1957 TotalSlots = 8 TotalVirtualMemory = 28313600 UidDomain = "gthain.localdomain" Unhibernate = MY.MachineLastMatchTime =!= undefined UpdateSequenceNumber = 1 UpdatesHistory = "00000000000000000000000000000000" UpdatesLost = 0 UpdatesSequenced = 0 UpdatesTotal = 1 UtsnameMachine = "x86_64" UtsnameNodename = "gthain.localdomain" UtsnameRelease = "5.10.21-200.fc33.x86_64" UtsnameSysname = "Linux" UtsnameVersion = "#1 SMP Mon Mar 8 00:24:40 UTC 2021" VirtualMemory = 3539200 WakeOnLanEnabledFlags = "NONE" WakeOnLanSupportedFlags = "NONE" AcceptedWhileDraining = false Activity = "Idle" AddressV1 = "{[ p=\"primary\"; a=\"10.0.0.3\"; port=36347; n=\"Internet\"; alias=\"gthain.localdomain\"; spid=\"startd_888024_2e07\"; noUDP=true; ], [ p=\"IPv4\"; a=\"10.0.0.3\"; port=36347; n=\"Internet\"; alias=\"gthain.localdomain\"; spid=\"startd_888024_2e07\"; noUDP=true; ]}" Arch = "X86_64" AuthenticatedIdentity = "condor@family" AuthenticationMethod = "FAMILY" CanHibernate = true ClockDay = 0 ClockMin = 980 COLLECTOR_HOST_STRING = "gthain.localdomain:0" CondorLoadAvg = 0.0 CondorPlatform = "$CondorPlatform: X86_64-Fedora_33 $" CondorVersion = "$CondorVersion: 8.9.12 Mar 14 2021 BuildID: UW_development RC $" ConsoleIdle = 0 CpuBusy = ((LoadAvg - CondorLoadAvg) >= 0.5) CpuBusyTime = 0 CpuCacheSize = 8192 CpuFamily = 6 CpuIsBusy = false CpuModelNumber = 142 Cpus = 1 CurrentRank = 0.0 DaemonCoreDutyCycle = 0.0 DaemonLastReconfigTime = 1615756825 DaemonShutdown = time() - DaemonStartTime > 1500 DaemonStartTime = 1615756825 DetectedCpus = 8 DetectedMemory = 15661 Disk = 16190387 EnteredCurrentActivity = 1615756825 EnteredCurrentState = 1615756825 ExpectedMachineGracefulDrainingBadput = 0 ExpectedMachineGracefulDrainingCompletion = 1615756825 ExpectedMachineQuickDrainingBadput = 0 ExpectedMachineQuickDrainingCompletion = 1615756825 FileSystemDomain = "gthain.localdomain" HardwareAddress = "40:ec:99:82:52:b2" has_avx = true has_avx2 = true has_sse4_1 = true has_sse4_2 = true has_ssse3 = true HasFileTransfer = true HasIOProxy = true HasJICLocalConfig = true HasJICLocalStdin = true HasJobDeferral = true HasJobTransferPlugins = true HasMPI = true HasPerFileEncryption = true HasReconnect = true HasSelfCheckpointTransfers = true HasSingularity = true HasTDP = true HasTransferInputRemaps = true HasUserNamespaces = true HasVM = false HibernationLevel = 0 HibernationState = "NONE" HibernationSupportedStates = "S3,S4,S5" IsLocalStartd = false IsWakeAble = false IsWakeOnLanEnabled = false IsWakeOnLanSupported = false JobPreemptions = 0 JobRankPreemptions = 0 JobStarts = 0 JobUserPrioPreemptions = 0 KeyboardIdle = 0 LastBenchmark = 0 LastFetchWorkCompleted = 0 LastFetchWorkSpawned = 0 LastHeardFrom = 1615756825 LoadAvg = 0.0 Machine = "gthain.localdomain" MachineMaxVacateTime = 10 * 60 MachineResources = "Cpus Memory Disk Swap" MaxJobRetirementTime = 0 Memory = 1957 MonitorSelfAge = 1 MonitorSelfCPUUsage = 1.0 MonitorSelfImageSize = 26716 MonitorSelfRegisteredSocketCount = 0 MonitorSelfResidentSetSize = 12836 MonitorSelfSecuritySessions = 10 MonitorSelfTime = 1615756825 MyAddress = "<10.0.0.3:36347?addrs=10.0.0.3-36347&alias=gthain.localdomain&noUDP&sock=startd_888024_2e07>" MyCurrentTime = 1615756825 MyType = "Machine" Name = "slot3@gthain.localdomain" NextFetchWorkDelay = -1 NumPids = 0 OpSys = "LINUX" OpSysAndVer = "Fedora33" OpSysLegacy = "LINUX" OpSysLongName = "Fedora release 33 (Thirty Three)" OpSysMajorVer = 33 OpSysName = "Fedora" OpSysShortName = "Fedora" OpSysVer = 3300 Rank = 0.0 RecentDaemonCoreDutyCycle = 0.0 RecentJobPreemptions = 0 RecentJobRankPreemptions = 0 RecentJobStarts = 0 RecentJobUserPrioPreemptions = 0 Requirements = START RetirementTimeRemaining = 0 SingularityVersion = "singularity version 3.7.1-1.fc33" SlotID = 3 SlotType = "Static" SlotTypeID = 0 SlotWeight = Cpus Start = true StartdIpAddr = "<10.0.0.3:36347?addrs=10.0.0.3-36347&alias=gthain.localdomain&noUDP&sock=startd_888024_2e07>" StarterAbilityList = "HasVM,HasMPI,HasFileTransfer,HasJobDeferral,HasSingularity,HasJobTransferPlugins,HasPerFileEncryption,HasReconnect,HasTDP,HasJICLocalStdin,HasTransferInputRemaps,HasSelfCheckpointTransfers,HasJICLocalConfig" State = "Unclaimed" SubnetMask = "255.255.255.0" TargetType = "Job" TimeToLive = 2147483647 TotalCondorLoadAvg = 0.0 TotalCpus = 8.0 TotalDisk = 129523096 TotalLoadAvg = 0.59 TotalMemory = 15661 TotalSlotCpus = 1 TotalSlotDisk = 16190387.0 TotalSlotMemory = 1957 TotalSlots = 8 TotalVirtualMemory = 28313600 UidDomain = "gthain.localdomain" Unhibernate = MY.MachineLastMatchTime =!= undefined UpdateSequenceNumber = 1 UpdatesHistory = "00000000000000000000000000000000" UpdatesLost = 0 UpdatesSequenced = 0 UpdatesTotal = 1 UtsnameMachine = "x86_64" UtsnameNodename = "gthain.localdomain" UtsnameRelease = "5.10.21-200.fc33.x86_64" UtsnameSysname = "Linux" UtsnameVersion = "#1 SMP Mon Mar 8 00:24:40 UTC 2021" VirtualMemory = 3539200 WakeOnLanEnabledFlags = "NONE" WakeOnLanSupportedFlags = "NONE" AcceptedWhileDraining = false Activity = "Idle" AddressV1 = "{[ p=\"primary\"; a=\"10.0.0.3\"; port=36347; n=\"Internet\"; alias=\"gthain.localdomain\"; spid=\"startd_888024_2e07\"; noUDP=true; ], [ p=\"IPv4\"; a=\"10.0.0.3\"; port=36347; n=\"Internet\"; alias=\"gthain.localdomain\"; spid=\"startd_888024_2e07\"; noUDP=true; ]}" Arch = "X86_64" AuthenticatedIdentity = "condor@family" AuthenticationMethod = "FAMILY" CanHibernate = true ClockDay = 0 ClockMin = 980 COLLECTOR_HOST_STRING = "gthain.localdomain:0" CondorLoadAvg = 0.0 CondorPlatform = "$CondorPlatform: X86_64-Fedora_33 $" CondorVersion = "$CondorVersion: 8.9.12 Mar 14 2021 BuildID: UW_development RC $" ConsoleIdle = 0 CpuBusy = ((LoadAvg - CondorLoadAvg) >= 0.5) CpuBusyTime = 0 CpuCacheSize = 8192 CpuFamily = 6 CpuIsBusy = false CpuModelNumber = 142 Cpus = 1 CurrentRank = 0.0 DaemonCoreDutyCycle = 0.0 DaemonLastReconfigTime = 1615756825 DaemonShutdown = time() - DaemonStartTime > 1500 DaemonStartTime = 1615756825 DetectedCpus = 8 DetectedMemory = 15661 Disk = 16190387 EnteredCurrentActivity = 1615756825 EnteredCurrentState = 1615756825 ExpectedMachineGracefulDrainingBadput = 0 ExpectedMachineGracefulDrainingCompletion = 1615756825 ExpectedMachineQuickDrainingBadput = 0 ExpectedMachineQuickDrainingCompletion = 1615756825 FileSystemDomain = "gthain.localdomain" HardwareAddress = "40:ec:99:82:52:b2" has_avx = true has_avx2 = true has_sse4_1 = true has_sse4_2 = true has_ssse3 = true HasFileTransfer = true HasIOProxy = true HasJICLocalConfig = true HasJICLocalStdin = true HasJobDeferral = true HasJobTransferPlugins = true HasMPI = true HasPerFileEncryption = true HasReconnect = true HasSelfCheckpointTransfers = true HasSingularity = true HasTDP = true HasTransferInputRemaps = true HasUserNamespaces = true HasVM = false HibernationLevel = 0 HibernationState = "NONE" HibernationSupportedStates = "S3,S4,S5" IsLocalStartd = false IsWakeAble = false IsWakeOnLanEnabled = false IsWakeOnLanSupported = false JobPreemptions = 0 JobRankPreemptions = 0 JobStarts = 0 JobUserPrioPreemptions = 0 KeyboardIdle = 0 LastBenchmark = 0 LastFetchWorkCompleted = 0 LastFetchWorkSpawned = 0 LastHeardFrom = 1615756825 LoadAvg = 0.0 Machine = "gthain.localdomain" MachineMaxVacateTime = 10 * 60 MachineResources = "Cpus Memory Disk Swap" MaxJobRetirementTime = 0 Memory = 1957 MonitorSelfAge = 1 MonitorSelfCPUUsage = 1.0 MonitorSelfImageSize = 26716 MonitorSelfRegisteredSocketCount = 0 MonitorSelfResidentSetSize = 12836 MonitorSelfSecuritySessions = 10 MonitorSelfTime = 1615756825 MyAddress = "<10.0.0.3:36347?addrs=10.0.0.3-36347&alias=gthain.localdomain&noUDP&sock=startd_888024_2e07>" MyCurrentTime = 1615756825 MyType = "Machine" Name = "slot4@gthain.localdomain" NextFetchWorkDelay = -1 NumPids = 0 OpSys = "LINUX" OpSysAndVer = "Fedora33" OpSysLegacy = "LINUX" OpSysLongName = "Fedora release 33 (Thirty Three)" OpSysMajorVer = 33 OpSysName = "Fedora" OpSysShortName = "Fedora" OpSysVer = 3300 Rank = 0.0 RecentDaemonCoreDutyCycle = 0.0 RecentJobPreemptions = 0 RecentJobRankPreemptions = 0 RecentJobStarts = 0 RecentJobUserPrioPreemptions = 0 Requirements = START RetirementTimeRemaining = 0 SingularityVersion = "singularity version 3.7.1-1.fc33" SlotID = 4 SlotType = "Static" SlotTypeID = 0 SlotWeight = Cpus Start = true StartdIpAddr = "<10.0.0.3:36347?addrs=10.0.0.3-36347&alias=gthain.localdomain&noUDP&sock=startd_888024_2e07>" StarterAbilityList = "HasVM,HasMPI,HasFileTransfer,HasJobDeferral,HasSingularity,HasJobTransferPlugins,HasPerFileEncryption,HasReconnect,HasTDP,HasJICLocalStdin,HasTransferInputRemaps,HasSelfCheckpointTransfers,HasJICLocalConfig" State = "Unclaimed" SubnetMask = "255.255.255.0" TargetType = "Job" TimeToLive = 2147483647 TotalCondorLoadAvg = 0.0 TotalCpus = 8.0 TotalDisk = 129523096 TotalLoadAvg = 0.59 TotalMemory = 15661 TotalSlotCpus = 1 TotalSlotDisk = 16190387.0 TotalSlotMemory = 1957 TotalSlots = 8 TotalVirtualMemory = 28313600 UidDomain = "gthain.localdomain" Unhibernate = MY.MachineLastMatchTime =!= undefined UpdateSequenceNumber = 1 UpdatesHistory = "00000000000000000000000000000000" UpdatesLost = 0 UpdatesSequenced = 0 UpdatesTotal = 1 UtsnameMachine = "x86_64" UtsnameNodename = "gthain.localdomain" UtsnameRelease = "5.10.21-200.fc33.x86_64" UtsnameSysname = "Linux" UtsnameVersion = "#1 SMP Mon Mar 8 00:24:40 UTC 2021" VirtualMemory = 3539200 WakeOnLanEnabledFlags = "NONE" WakeOnLanSupportedFlags = "NONE" AcceptedWhileDraining = false Activity = "Idle" AddressV1 = "{[ p=\"primary\"; a=\"10.0.0.3\"; port=36347; n=\"Internet\"; alias=\"gthain.localdomain\"; spid=\"startd_888024_2e07\"; noUDP=true; ], [ p=\"IPv4\"; a=\"10.0.0.3\"; port=36347; n=\"Internet\"; alias=\"gthain.localdomain\"; spid=\"startd_888024_2e07\"; noUDP=true; ]}" Arch = "X86_64" AuthenticatedIdentity = "condor@family" AuthenticationMethod = "FAMILY" CanHibernate = true ClockDay = 0 ClockMin = 980 COLLECTOR_HOST_STRING = "gthain.localdomain:0" CondorLoadAvg = 0.0 CondorPlatform = "$CondorPlatform: X86_64-Fedora_33 $" CondorVersion = "$CondorVersion: 8.9.12 Mar 14 2021 BuildID: UW_development RC $" ConsoleIdle = 0 CpuBusy = ((LoadAvg - CondorLoadAvg) >= 0.5) CpuBusyTime = 0 CpuCacheSize = 8192 CpuFamily = 6 CpuIsBusy = false CpuModelNumber = 142 Cpus = 1 CurrentRank = 0.0 DaemonCoreDutyCycle = 0.0 DaemonLastReconfigTime = 1615756825 DaemonShutdown = time() - DaemonStartTime > 1500 DaemonStartTime = 1615756825 DetectedCpus = 8 DetectedMemory = 15661 Disk = 16190387 EnteredCurrentActivity = 1615756825 EnteredCurrentState = 1615756825 ExpectedMachineGracefulDrainingBadput = 0 ExpectedMachineGracefulDrainingCompletion = 1615756825 ExpectedMachineQuickDrainingBadput = 0 ExpectedMachineQuickDrainingCompletion = 1615756825 FileSystemDomain = "gthain.localdomain" HardwareAddress = "40:ec:99:82:52:b2" has_avx = true has_avx2 = true has_sse4_1 = true has_sse4_2 = true has_ssse3 = true HasFileTransfer = true HasIOProxy = true HasJICLocalConfig = true HasJICLocalStdin = true HasJobDeferral = true HasJobTransferPlugins = true HasMPI = true HasPerFileEncryption = true HasReconnect = true HasSelfCheckpointTransfers = true HasSingularity = true HasTDP = true HasTransferInputRemaps = true HasUserNamespaces = true HasVM = false HibernationLevel = 0 HibernationState = "NONE" HibernationSupportedStates = "S3,S4,S5" IsLocalStartd = false IsWakeAble = false IsWakeOnLanEnabled = false IsWakeOnLanSupported = false JobPreemptions = 0 JobRankPreemptions = 0 JobStarts = 0 JobUserPrioPreemptions = 0 KeyboardIdle = 0 LastBenchmark = 0 LastFetchWorkCompleted = 0 LastFetchWorkSpawned = 0 LastHeardFrom = 1615756825 LoadAvg = 0.0 Machine = "gthain.localdomain" MachineMaxVacateTime = 10 * 60 MachineResources = "Cpus Memory Disk Swap" MaxJobRetirementTime = 0 Memory = 1957 MonitorSelfAge = 1 MonitorSelfCPUUsage = 1.0 MonitorSelfImageSize = 26716 MonitorSelfRegisteredSocketCount = 0 MonitorSelfResidentSetSize = 12836 MonitorSelfSecuritySessions = 10 MonitorSelfTime = 1615756825 MyAddress = "<10.0.0.3:36347?addrs=10.0.0.3-36347&alias=gthain.localdomain&noUDP&sock=startd_888024_2e07>" MyCurrentTime = 1615756825 MyType = "Machine" Name = "slot5@gthain.localdomain" NextFetchWorkDelay = -1 NumPids = 0 OpSys = "LINUX" OpSysAndVer = "Fedora33" OpSysLegacy = "LINUX" OpSysLongName = "Fedora release 33 (Thirty Three)" OpSysMajorVer = 33 OpSysName = "Fedora" OpSysShortName = "Fedora" OpSysVer = 3300 Rank = 0.0 RecentDaemonCoreDutyCycle = 0.0 RecentJobPreemptions = 0 RecentJobRankPreemptions = 0 RecentJobStarts = 0 RecentJobUserPrioPreemptions = 0 Requirements = START RetirementTimeRemaining = 0 SingularityVersion = "singularity version 3.7.1-1.fc33" SlotID = 5 SlotType = "Static" SlotTypeID = 0 SlotWeight = Cpus Start = true StartdIpAddr = "<10.0.0.3:36347?addrs=10.0.0.3-36347&alias=gthain.localdomain&noUDP&sock=startd_888024_2e07>" StarterAbilityList = "HasVM,HasMPI,HasFileTransfer,HasJobDeferral,HasSingularity,HasJobTransferPlugins,HasPerFileEncryption,HasReconnect,HasTDP,HasJICLocalStdin,HasTransferInputRemaps,HasSelfCheckpointTransfers,HasJICLocalConfig" State = "Unclaimed" SubnetMask = "255.255.255.0" TargetType = "Job" TimeToLive = 2147483647 TotalCondorLoadAvg = 0.0 TotalCpus = 8.0 TotalDisk = 129523096 TotalLoadAvg = 0.59 TotalMemory = 15661 TotalSlotCpus = 1 TotalSlotDisk = 16190387.0 TotalSlotMemory = 1957 TotalSlots = 8 TotalVirtualMemory = 28313600 UidDomain = "gthain.localdomain" Unhibernate = MY.MachineLastMatchTime =!= undefined UpdateSequenceNumber = 1 UpdatesHistory = "00000000000000000000000000000000" UpdatesLost = 0 UpdatesSequenced = 0 UpdatesTotal = 1 UtsnameMachine = "x86_64" UtsnameNodename = "gthain.localdomain" UtsnameRelease = "5.10.21-200.fc33.x86_64" UtsnameSysname = "Linux" UtsnameVersion = "#1 SMP Mon Mar 8 00:24:40 UTC 2021" VirtualMemory = 3539200 WakeOnLanEnabledFlags = "NONE" WakeOnLanSupportedFlags = "NONE" AcceptedWhileDraining = false Activity = "Idle" AddressV1 = "{[ p=\"primary\"; a=\"10.0.0.3\"; port=36347; n=\"Internet\"; alias=\"gthain.localdomain\"; spid=\"startd_888024_2e07\"; noUDP=true; ], [ p=\"IPv4\"; a=\"10.0.0.3\"; port=36347; n=\"Internet\"; alias=\"gthain.localdomain\"; spid=\"startd_888024_2e07\"; noUDP=true; ]}" Arch = "X86_64" AuthenticatedIdentity = "condor@family" AuthenticationMethod = "FAMILY" CanHibernate = true ClockDay = 0 ClockMin = 980 COLLECTOR_HOST_STRING = "gthain.localdomain:0" CondorLoadAvg = 0.0 CondorPlatform = "$CondorPlatform: X86_64-Fedora_33 $" CondorVersion = "$CondorVersion: 8.9.12 Mar 14 2021 BuildID: UW_development RC $" ConsoleIdle = 0 CpuBusy = ((LoadAvg - CondorLoadAvg) >= 0.5) CpuBusyTime = 0 CpuCacheSize = 8192 CpuFamily = 6 CpuIsBusy = false CpuModelNumber = 142 Cpus = 1 CurrentRank = 0.0 DaemonCoreDutyCycle = 0.0 DaemonLastReconfigTime = 1615756825 DaemonShutdown = time() - DaemonStartTime > 1500 DaemonStartTime = 1615756825 DetectedCpus = 8 DetectedMemory = 15661 Disk = 16190387 EnteredCurrentActivity = 1615756825 EnteredCurrentState = 1615756825 ExpectedMachineGracefulDrainingBadput = 0 ExpectedMachineGracefulDrainingCompletion = 1615756825 ExpectedMachineQuickDrainingBadput = 0 ExpectedMachineQuickDrainingCompletion = 1615756825 FileSystemDomain = "gthain.localdomain" HardwareAddress = "40:ec:99:82:52:b2" has_avx = true has_avx2 = true has_sse4_1 = true has_sse4_2 = true has_ssse3 = true HasFileTransfer = true HasIOProxy = true HasJICLocalConfig = true HasJICLocalStdin = true HasJobDeferral = true HasJobTransferPlugins = true HasMPI = true HasPerFileEncryption = true HasReconnect = true HasSelfCheckpointTransfers = true HasSingularity = true HasTDP = true HasTransferInputRemaps = true HasUserNamespaces = true HasVM = false HibernationLevel = 0 HibernationState = "NONE" HibernationSupportedStates = "S3,S4,S5" IsLocalStartd = false IsWakeAble = false IsWakeOnLanEnabled = false IsWakeOnLanSupported = false JobPreemptions = 0 JobRankPreemptions = 0 JobStarts = 0 JobUserPrioPreemptions = 0 KeyboardIdle = 0 LastBenchmark = 0 LastFetchWorkCompleted = 0 LastFetchWorkSpawned = 0 LastHeardFrom = 1615756825 LoadAvg = 0.0 Machine = "gthain.localdomain" MachineMaxVacateTime = 10 * 60 MachineResources = "Cpus Memory Disk Swap" MaxJobRetirementTime = 0 Memory = 1957 MonitorSelfAge = 1 MonitorSelfCPUUsage = 1.0 MonitorSelfImageSize = 26716 MonitorSelfRegisteredSocketCount = 0 MonitorSelfResidentSetSize = 12836 MonitorSelfSecuritySessions = 10 MonitorSelfTime = 1615756825 MyAddress = "<10.0.0.3:36347?addrs=10.0.0.3-36347&alias=gthain.localdomain&noUDP&sock=startd_888024_2e07>" MyCurrentTime = 1615756825 MyType = "Machine" Name = "slot6@gthain.localdomain" NextFetchWorkDelay = -1 NumPids = 0 OpSys = "LINUX" OpSysAndVer = "Fedora33" OpSysLegacy = "LINUX" OpSysLongName = "Fedora release 33 (Thirty Three)" OpSysMajorVer = 33 OpSysName = "Fedora" OpSysShortName = "Fedora" OpSysVer = 3300 Rank = 0.0 RecentDaemonCoreDutyCycle = 0.0 RecentJobPreemptions = 0 RecentJobRankPreemptions = 0 RecentJobStarts = 0 RecentJobUserPrioPreemptions = 0 Requirements = START RetirementTimeRemaining = 0 SingularityVersion = "singularity version 3.7.1-1.fc33" SlotID = 6 SlotType = "Static" SlotTypeID = 0 SlotWeight = Cpus Start = true StartdIpAddr = "<10.0.0.3:36347?addrs=10.0.0.3-36347&alias=gthain.localdomain&noUDP&sock=startd_888024_2e07>" StarterAbilityList = "HasVM,HasMPI,HasFileTransfer,HasJobDeferral,HasSingularity,HasJobTransferPlugins,HasPerFileEncryption,HasReconnect,HasTDP,HasJICLocalStdin,HasTransferInputRemaps,HasSelfCheckpointTransfers,HasJICLocalConfig" State = "Unclaimed" SubnetMask = "255.255.255.0" TargetType = "Job" TimeToLive = 2147483647 TotalCondorLoadAvg = 0.0 TotalCpus = 8.0 TotalDisk = 129523096 TotalLoadAvg = 0.59 TotalMemory = 15661 TotalSlotCpus = 1 TotalSlotDisk = 16190387.0 TotalSlotMemory = 1957 TotalSlots = 8 TotalVirtualMemory = 28313600 UidDomain = "gthain.localdomain" Unhibernate = MY.MachineLastMatchTime =!= undefined UpdateSequenceNumber = 1 UpdatesHistory = "00000000000000000000000000000000" UpdatesLost = 0 UpdatesSequenced = 0 UpdatesTotal = 1 UtsnameMachine = "x86_64" UtsnameNodename = "gthain.localdomain" UtsnameRelease = "5.10.21-200.fc33.x86_64" UtsnameSysname = "Linux" UtsnameVersion = "#1 SMP Mon Mar 8 00:24:40 UTC 2021" VirtualMemory = 3539200 WakeOnLanEnabledFlags = "NONE" WakeOnLanSupportedFlags = "NONE" AcceptedWhileDraining = false Activity = "Idle" AddressV1 = "{[ p=\"primary\"; a=\"10.0.0.3\"; port=36347; n=\"Internet\"; alias=\"gthain.localdomain\"; spid=\"startd_888024_2e07\"; noUDP=true; ], [ p=\"IPv4\"; a=\"10.0.0.3\"; port=36347; n=\"Internet\"; alias=\"gthain.localdomain\"; spid=\"startd_888024_2e07\"; noUDP=true; ]}" Arch = "X86_64" AuthenticatedIdentity = "condor@family" AuthenticationMethod = "FAMILY" CanHibernate = true ClockDay = 0 ClockMin = 980 COLLECTOR_HOST_STRING = "gthain.localdomain:0" CondorLoadAvg = 0.0 CondorPlatform = "$CondorPlatform: X86_64-Fedora_33 $" CondorVersion = "$CondorVersion: 8.9.12 Mar 14 2021 BuildID: UW_development RC $" ConsoleIdle = 0 CpuBusy = ((LoadAvg - CondorLoadAvg) >= 0.5) CpuBusyTime = 0 CpuCacheSize = 8192 CpuFamily = 6 CpuIsBusy = false CpuModelNumber = 142 Cpus = 1 CurrentRank = 0.0 DaemonCoreDutyCycle = 0.0 DaemonLastReconfigTime = 1615756825 DaemonShutdown = time() - DaemonStartTime > 1500 DaemonStartTime = 1615756825 DetectedCpus = 8 DetectedMemory = 15661 Disk = 16190387 EnteredCurrentActivity = 1615756825 EnteredCurrentState = 1615756825 ExpectedMachineGracefulDrainingBadput = 0 ExpectedMachineGracefulDrainingCompletion = 1615756825 ExpectedMachineQuickDrainingBadput = 0 ExpectedMachineQuickDrainingCompletion = 1615756825 FileSystemDomain = "gthain.localdomain" HardwareAddress = "40:ec:99:82:52:b2" has_avx = true has_avx2 = true has_sse4_1 = true has_sse4_2 = true has_ssse3 = true HasFileTransfer = true HasIOProxy = true HasJICLocalConfig = true HasJICLocalStdin = true HasJobDeferral = true HasJobTransferPlugins = true HasMPI = true HasPerFileEncryption = true HasReconnect = true HasSelfCheckpointTransfers = true HasSingularity = true HasTDP = true HasTransferInputRemaps = true HasUserNamespaces = true HasVM = false HibernationLevel = 0 HibernationState = "NONE" HibernationSupportedStates = "S3,S4,S5" IsLocalStartd = false IsWakeAble = false IsWakeOnLanEnabled = false IsWakeOnLanSupported = false JobPreemptions = 0 JobRankPreemptions = 0 JobStarts = 0 JobUserPrioPreemptions = 0 KeyboardIdle = 0 LastBenchmark = 0 LastFetchWorkCompleted = 0 LastFetchWorkSpawned = 0 LastHeardFrom = 1615756825 LoadAvg = 0.0 Machine = "gthain.localdomain" MachineMaxVacateTime = 10 * 60 MachineResources = "Cpus Memory Disk Swap" MaxJobRetirementTime = 0 Memory = 1957 MonitorSelfAge = 1 MonitorSelfCPUUsage = 1.0 MonitorSelfImageSize = 26716 MonitorSelfRegisteredSocketCount = 0 MonitorSelfResidentSetSize = 12836 MonitorSelfSecuritySessions = 10 MonitorSelfTime = 1615756825 MyAddress = "<10.0.0.3:36347?addrs=10.0.0.3-36347&alias=gthain.localdomain&noUDP&sock=startd_888024_2e07>" MyCurrentTime = 1615756825 MyType = "Machine" Name = "slot7@gthain.localdomain" NextFetchWorkDelay = -1 NumPids = 0 OpSys = "LINUX" OpSysAndVer = "Fedora33" OpSysLegacy = "LINUX" OpSysLongName = "Fedora release 33 (Thirty Three)" OpSysMajorVer = 33 OpSysName = "Fedora" OpSysShortName = "Fedora" OpSysVer = 3300 Rank = 0.0 RecentDaemonCoreDutyCycle = 0.0 RecentJobPreemptions = 0 RecentJobRankPreemptions = 0 RecentJobStarts = 0 RecentJobUserPrioPreemptions = 0 Requirements = START RetirementTimeRemaining = 0 SingularityVersion = "singularity version 3.7.1-1.fc33" SlotID = 7 SlotType = "Static" SlotTypeID = 0 SlotWeight = Cpus Start = true StartdIpAddr = "<10.0.0.3:36347?addrs=10.0.0.3-36347&alias=gthain.localdomain&noUDP&sock=startd_888024_2e07>" StarterAbilityList = "HasVM,HasMPI,HasFileTransfer,HasJobDeferral,HasSingularity,HasJobTransferPlugins,HasPerFileEncryption,HasReconnect,HasTDP,HasJICLocalStdin,HasTransferInputRemaps,HasSelfCheckpointTransfers,HasJICLocalConfig" State = "Unclaimed" SubnetMask = "255.255.255.0" TargetType = "Job" TimeToLive = 2147483647 TotalCondorLoadAvg = 0.0 TotalCpus = 8.0 TotalDisk = 129523096 TotalLoadAvg = 0.59 TotalMemory = 15661 TotalSlotCpus = 1 TotalSlotDisk = 16190387.0 TotalSlotMemory = 1957 TotalSlots = 8 TotalVirtualMemory = 28313600 UidDomain = "gthain.localdomain" Unhibernate = MY.MachineLastMatchTime =!= undefined UpdateSequenceNumber = 1 UpdatesHistory = "00000000000000000000000000000000" UpdatesLost = 0 UpdatesSequenced = 0 UpdatesTotal = 1 UtsnameMachine = "x86_64" UtsnameNodename = "gthain.localdomain" UtsnameRelease = "5.10.21-200.fc33.x86_64" UtsnameSysname = "Linux" UtsnameVersion = "#1 SMP Mon Mar 8 00:24:40 UTC 2021" VirtualMemory = 3539200 WakeOnLanEnabledFlags = "NONE" WakeOnLanSupportedFlags = "NONE" AcceptedWhileDraining = false Activity = "Idle" AddressV1 = "{[ p=\"primary\"; a=\"10.0.0.3\"; port=36347; n=\"Internet\"; alias=\"gthain.localdomain\"; spid=\"startd_888024_2e07\"; noUDP=true; ], [ p=\"IPv4\"; a=\"10.0.0.3\"; port=36347; n=\"Internet\"; alias=\"gthain.localdomain\"; spid=\"startd_888024_2e07\"; noUDP=true; ]}" Arch = "X86_64" AuthenticatedIdentity = "condor@family" AuthenticationMethod = "FAMILY" CanHibernate = true ClockDay = 0 ClockMin = 980 COLLECTOR_HOST_STRING = "gthain.localdomain:0" CondorLoadAvg = 0.0 CondorPlatform = "$CondorPlatform: X86_64-Fedora_33 $" CondorVersion = "$CondorVersion: 8.9.12 Mar 14 2021 BuildID: UW_development RC $" ConsoleIdle = 0 CpuBusy = ((LoadAvg - CondorLoadAvg) >= 0.5) CpuBusyTime = 0 CpuCacheSize = 8192 CpuFamily = 6 CpuIsBusy = false CpuModelNumber = 142 Cpus = 1 CurrentRank = 0.0 DaemonCoreDutyCycle = 0.0 DaemonLastReconfigTime = 1615756825 DaemonShutdown = time() - DaemonStartTime > 1500 DaemonStartTime = 1615756825 DetectedCpus = 8 DetectedMemory = 15661 Disk = 16190387 EnteredCurrentActivity = 1615756825 EnteredCurrentState = 1615756825 ExpectedMachineGracefulDrainingBadput = 0 ExpectedMachineGracefulDrainingCompletion = 1615756825 ExpectedMachineQuickDrainingBadput = 0 ExpectedMachineQuickDrainingCompletion = 1615756825 FileSystemDomain = "gthain.localdomain" HardwareAddress = "40:ec:99:82:52:b2" has_avx = true has_avx2 = true has_sse4_1 = true has_sse4_2 = true has_ssse3 = true HasFileTransfer = true HasIOProxy = true HasJICLocalConfig = true HasJICLocalStdin = true HasJobDeferral = true HasJobTransferPlugins = true HasMPI = true HasPerFileEncryption = true HasReconnect = true HasSelfCheckpointTransfers = true HasSingularity = true HasTDP = true HasTransferInputRemaps = true HasUserNamespaces = true HasVM = false HibernationLevel = 0 HibernationState = "NONE" HibernationSupportedStates = "S3,S4,S5" IsLocalStartd = false IsWakeAble = false IsWakeOnLanEnabled = false IsWakeOnLanSupported = false JobPreemptions = 0 JobRankPreemptions = 0 JobStarts = 0 JobUserPrioPreemptions = 0 KeyboardIdle = 0 LastBenchmark = 0 LastFetchWorkCompleted = 0 LastFetchWorkSpawned = 0 LastHeardFrom = 1615756825 LoadAvg = 0.0 Machine = "gthain.localdomain" MachineMaxVacateTime = 10 * 60 MachineResources = "Cpus Memory Disk Swap" MaxJobRetirementTime = 0 Memory = 1957 MonitorSelfAge = 1 MonitorSelfCPUUsage = 1.0 MonitorSelfImageSize = 26716 MonitorSelfRegisteredSocketCount = 0 MonitorSelfResidentSetSize = 12836 MonitorSelfSecuritySessions = 10 MonitorSelfTime = 1615756825 MyAddress = "<10.0.0.3:36347?addrs=10.0.0.3-36347&alias=gthain.localdomain&noUDP&sock=startd_888024_2e07>" MyCurrentTime = 1615756825 MyType = "Machine" Name = "slot8@gthain.localdomain" NextFetchWorkDelay = -1 NumPids = 0 OpSys = "LINUX" OpSysAndVer = "Fedora33" OpSysLegacy = "LINUX" OpSysLongName = "Fedora release 33 (Thirty Three)" OpSysMajorVer = 33 OpSysName = "Fedora" OpSysShortName = "Fedora" OpSysVer = 3300 Rank = 0.0 RecentDaemonCoreDutyCycle = 0.0 RecentJobPreemptions = 0 RecentJobRankPreemptions = 0 RecentJobStarts = 0 RecentJobUserPrioPreemptions = 0 Requirements = START RetirementTimeRemaining = 0 SingularityVersion = "singularity version 3.7.1-1.fc33" SlotID = 8 SlotType = "Static" SlotTypeID = 0 SlotWeight = Cpus Start = true StartdIpAddr = "<10.0.0.3:36347?addrs=10.0.0.3-36347&alias=gthain.localdomain&noUDP&sock=startd_888024_2e07>" StarterAbilityList = "HasVM,HasMPI,HasFileTransfer,HasJobDeferral,HasSingularity,HasJobTransferPlugins,HasPerFileEncryption,HasReconnect,HasTDP,HasJICLocalStdin,HasTransferInputRemaps,HasSelfCheckpointTransfers,HasJICLocalConfig" State = "Unclaimed" SubnetMask = "255.255.255.0" TargetType = "Job" TimeToLive = 2147483647 TotalCondorLoadAvg = 0.0 TotalCpus = 8.0 TotalDisk = 129523096 TotalLoadAvg = 0.59 TotalMemory = 15661 TotalSlotCpus = 1 TotalSlotDisk = 16190387.0 TotalSlotMemory = 1957 TotalSlots = 8 TotalVirtualMemory = 28313600 UidDomain = "gthain.localdomain" Unhibernate = MY.MachineLastMatchTime =!= undefined UpdateSequenceNumber = 1 UpdatesHistory = "00000000000000000000000000000000" UpdatesLost = 0 UpdatesSequenced = 0 UpdatesTotal = 1 UtsnameMachine = "x86_64" UtsnameNodename = "gthain.localdomain" UtsnameRelease = "5.10.21-200.fc33.x86_64" UtsnameSysname = "Linux" UtsnameVersion = "#1 SMP Mon Mar 8 00:24:40 UTC 2021" VirtualMemory = 3539200 WakeOnLanEnabledFlags = "NONE" WakeOnLanSupportedFlags = "NONE"
package SP with Pure is Version : constant String := "0.0.5"; end SP;
------------------------------------------------------------------------------ -- -- -- Copyright © AdaCore and other contributors, 2018-2020 -- -- See https://github.com/AdaCore/Ada_Drivers_Library/graphs/contributors -- -- for more information -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions are -- -- met: -- -- 1. Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- 2. Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in -- -- the documentation and/or other materials provided with the -- -- distribution. -- -- 3. Neither the name of the copyright holder nor the names of its -- -- contributors may be used to endorse or promote products derived -- -- from this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -- -- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -- -- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -- -- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -- -- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -- -- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ with NRF52_DK.Buttons; use NRF52_DK.Buttons; with NRF52_DK.LEDs; use NRF52_DK.LEDs; with NRF52_DK.Time; procedure Main is begin Initialize_LEDs; loop Turn_Off (LED1); Turn_Off (LED2); Turn_Off (LED3); Turn_Off (LED4); if NRF52_DK.Buttons.State (Button_1) = Pressed then Turn_On (LED1); end if; if NRF52_DK.Buttons.State (Button_2) = Pressed then Turn_On (LED2); end if; if NRF52_DK.Buttons.State (Button_3) = Pressed then Turn_On (LED3); end if; if NRF52_DK.Buttons.State (Button_4) = Pressed then Turn_On (LED4); end if; NRF52_DK.Time.Delay_Ms (200); end loop; end Main;
-- Copyright (C) 2019 Thierry Rascle <thierr26@free.fr> -- MIT license. Please refer to the LICENSE file. function Apsepp_Test_Node_Barrier.Create_Test_Reporter (Barrier : Test_Node_Barrier_Access; Char_Name_Image : Char_Name_Image_Func; Tag_To_Char : Tag_To_Char_Func) return Test_Reporter_W_Barrier;
-- -- Jan & Uwe R. Zimmer, Australia, July 2011 -- with GL, GL.Materials, GLOBE_3D.Math; package body Arrow_P is -- Pretty output: FALSE use GL, GL.Materials, GLOBE_3D, GLOBE_3D.Math; -- begin Separator # 1 -- VRML: [# triangle mesh -- ] matos_1 : constant Material_type := ( ambient => (0.0, 0.0, 0.0, 1.0), specular => (0.0, 0.0, 0.0, 1.0), diffuse => (1.0, 1.0, 1.0, 1.0), emission => (0.0, 0.0, 0.0, 1.0), shininess => 128.0 ); coord_1 : constant Point_3D_array := ((3.0, 5.0, -3.0), -- VRML: [# coord point 0 -- ] (-2.142857, 5.0, -2.142857), (-1.285714, 5.0, -2.142857), (-0.428571, 5.0, -2.142857), (0.428571, 5.0, -2.142857), (1.285714, 5.0, -2.142857), (2.142857, 5.0, -2.142857), (-2.142857, 5.0, -1.285714), (-1.285714, 5.0, -1.285714), (-0.428571, 5.0, -1.285714), (0.428571, 5.0, -1.285714), (1.285714, 5.0, -1.285714), (2.142857, 5.0, -1.285714), (-2.142857, 5.0, -0.428571), (-1.285714, 5.0, -0.428571), (1.285714, 5.0, -0.428571), (2.142857, 5.0, -0.428571), (-2.142857, 5.0, 0.428571), (-1.285714, 5.0, 0.428571), (1.285714, 5.0, 0.428571), (2.142857, 5.0, 0.428571), (-2.142857, 5.0, 1.285714), (-1.285714, 5.0, 1.285714), (-0.428571, 5.0, 1.285714), (0.428571, 5.0, 1.285714), (1.285714, 5.0, 1.285714), -- VRML: [# coord point 25 -- ] (2.142857, 5.0, 1.285714), (-2.142857, 5.0, 2.142857), (-1.285714, 5.0, 2.142857), (-0.428571, 5.0, 2.142857), (0.428571, 5.0, 2.142857), (1.285714, 5.0, 2.142857), (2.142857, 5.0, 2.142857), (-3.0, 5.0, -3.0), (-3.0, 5.0, -2.4), (-3.0, 5.0, -1.8), (-3.0, 5.0, -1.2), (-3.0, 5.0, -0.6), (-3.0, 5.0, 0.0), (-3.0, 5.0, 0.6), (-3.0, 5.0, 1.2), (-3.0, 5.0, 1.8), (-3.0, 5.0, 2.4), (3.0, 5.0, 3.0), (3.0, 5.0, 2.4), (3.0, 5.0, 1.8), (3.0, 5.0, 1.2), (3.0, 5.0, 0.6), (3.0, 5.0, 0.0), (3.0, 5.0, -0.6), (3.0, 5.0, -1.2), -- VRML: [# coord point 50 -- ] (3.0, 5.0, -1.8), (3.0, 5.0, -2.4), (2.4, 5.0, -3.0), (1.8, 5.0, -3.0), (1.2, 5.0, -3.0), (0.6, 5.0, -3.0), (0.0, 5.0, -3.0), (-0.6, 5.0, -3.0), (-1.2, 5.0, -3.0), (-1.8, 5.0, -3.0), (-2.4, 5.0, -3.0), (-3.0, 5.0, 3.0), (-2.4, 5.0, 3.0), (-1.8, 5.0, 3.0), (-1.2, 5.0, 3.0), (-0.6, 5.0, 3.0), (0.0, 5.0, 3.0), (0.6, 5.0, 3.0), (1.2, 5.0, 3.0), (1.8, 5.0, 3.0), (2.4, 5.0, 3.0), (1.0, 5.0, 1.0), (0.5, 5.0, 1.0), (-0.0, 5.0, 1.0), (-0.5, 5.0, 1.0), -- VRML: [# coord point 75 -- ] (-1.0, 5.0, 1.0), (1.0, 5.0, -1.0), (1.0, 5.0, -0.5), (1.0, 5.0, -0.0), (1.0, 5.0, 0.5), (-1.0, 5.0, -1.0), (-0.5, 5.0, -1.0), (-0.0, 5.0, -1.0), (0.5, 5.0, -1.0), (-1.0, 5.0, 0.5), (-1.0, 5.0, 0.0), (-1.0, 5.0, -0.5), (0.0, 0.0, 0.0), (0.0, 0.0, 0.0), (-3.0, 5.0, -3.0), (-3.0, 5.0, 3.0), (-1.5, 2.5, -1.5), (-3.0, 5.0, -2.4), (-3.0, 5.0, -1.8), (-3.0, 5.0, -1.2), (-3.0, 5.0, -0.6), (-3.0, 5.0, 0.0), (-3.0, 5.0, 0.6), (-3.0, 5.0, 1.2), (-3.0, 5.0, 1.8), -- VRML: [# coord point 100 -- ] (-3.0, 5.0, 2.4), (-1.5, 2.5, 1.5), (0.0, 0.0, 0.0), (0.0, 0.0, 0.0), (3.0, 5.0, -3.0), (3.0, 5.0, 3.0), (1.5, 2.5, -1.5), (3.0, 5.0, -2.4), (3.0, 5.0, -1.8), (3.0, 5.0, -1.2), (3.0, 5.0, -0.6), (3.0, 5.0, 0.0), (3.0, 5.0, 0.6), (3.0, 5.0, 1.2), (3.0, 5.0, 1.8), (3.0, 5.0, 2.4), (1.5, 2.5, 1.5), (0.0, 0.0, 0.0), (0.0, 0.0, 0.0), (1.5, 2.5, -1.5), (-3.0, 5.0, -3.0), (3.0, 5.0, -3.0), (-1.5, 2.5, -1.5), (-2.4, 5.0, -3.0), (-1.8, 5.0, -3.0), -- VRML: [# coord point 125 -- ] (-1.2, 5.0, -3.0), (-0.6, 5.0, -3.0), (0.0, 5.0, -3.0), (0.6, 5.0, -3.0), (1.2, 5.0, -3.0), (1.8, 5.0, -3.0), (2.4, 5.0, -3.0), (0.0, 0.0, 0.0), (0.0, 0.0, 0.0), (-3.0, 5.0, 3.0), (3.0, 5.0, 3.0), (-1.5, 2.5, 1.5), (1.5, 2.5, 1.5), (-2.4, 5.0, 3.0), (-1.8, 5.0, 3.0), (-1.2, 5.0, 3.0), (-0.6, 5.0, 3.0), (0.0, 5.0, 3.0), (0.6, 5.0, 3.0), (1.2, 5.0, 3.0), (1.8, 5.0, 3.0), (2.4, 5.0, 3.0), (-1.0, 9.0, 1.0), (-1.0, 9.0, -1.0), (1.0, 9.0, 1.0), -- VRML: [# coord point 150 -- ] (1.0, 9.0, -1.0), (-1.0, 5.0, 1.0), (-1.0, 9.0, 1.0), (1.0, 9.0, 1.0), (-0.5, 5.0, 1.0), (-0.0, 5.0, 1.0), (0.5, 5.0, 1.0), (1.0, 5.0, 1.0), (1.0, 9.0, 1.0), (1.0, 5.0, -1.0), (1.0, 9.0, -1.0), (1.0, 5.0, 1.0), (1.0, 5.0, 0.5), (1.0, 5.0, -0.0), (1.0, 5.0, -0.5), (1.0, 9.0, -1.0), (-1.0, 5.0, -1.0), (-1.0, 9.0, -1.0), (1.0, 5.0, -1.0), (0.5, 5.0, -1.0), (-0.0, 5.0, -1.0), (-0.5, 5.0, -1.0), (-1.0, 5.0, -1.0), (-1.0, 9.0, -1.0), (-1.0, 9.0, 1.0), -- VRML: [# coord point 175 -- ] (-1.0, 5.0, -0.5), (-1.0, 5.0, 0.0), (-1.0, 5.0, 0.5), (-1.0, 5.0, 1.0) -- 180 ); -- VRML: [# 180 vertices -- ] -- begin Separator # 2 -- VRML: [#triangle mesh -- ] idx_2 : constant Idx_4_array_array := ((9, 3, 2, 0), -- VRML: [# triangle 0 -- ] (9, 2, 8, 0), (10, 4, 3, 0), (10, 3, 9, 0), (11, 5, 4, 0), (11, 4, 10, 0), (12, 6, 5, 0), (12, 5, 11, 0), (13, 7, 6, 0), (13, 6, 12, 0), (15, 9, 8, 0), (15, 8, 14, 0), (17, 13, 12, 0), (17, 12, 16, 0), (19, 15, 14, 0), (19, 14, 18, 0), (21, 17, 16, 0), (21, 16, 20, 0), (23, 19, 18, 0), (23, 18, 22, 0), (27, 21, 20, 0), (27, 20, 26, 0), (29, 23, 22, 0), (29, 22, 28, 0), (30, 24, 23, 0), (30, 23, 29, 0), -- VRML: [# triangle 25 -- ] (31, 25, 24, 0), (31, 24, 30, 0), (32, 26, 25, 0), (32, 25, 31, 0), (33, 27, 26, 0), (33, 26, 32, 0), (35, 62, 34, 0), (2, 35, 36, 0), (62, 35, 2, 0), (61, 62, 2, 0), (3, 60, 61, 0), (3, 59, 60, 0), (58, 59, 4, 0), (3, 4, 59, 0), (4, 5, 58, 0), (3, 61, 2, 0), (36, 8, 2, 0), (8, 38, 14, 0), (39, 14, 38, 0), (37, 38, 8, 0), (37, 8, 36, 0), (84, 10, 83, 0), (82, 83, 10, 0), (88, 82, 15, 0), (9, 15, 82, 0), -- VRML: [# triangle 50 -- ] (82, 10, 9, 0), (87, 88, 15, 0), (10, 84, 11, 0), (6, 56, 57, 0), (57, 5, 6, 0), (5, 57, 58, 0), (55, 56, 6, 0), (7, 54, 55, 0), (53, 1, 54, 0), (52, 53, 7, 0), (54, 7, 53, 0), (7, 13, 52, 0), (7, 55, 6, 0), (78, 16, 12, 0), (78, 12, 11, 0), (79, 16, 78, 0), (78, 11, 85, 0), (80, 16, 79, 0), (51, 13, 50, 0), (17, 50, 13, 0), (52, 13, 51, 0), (21, 49, 17, 0), (50, 17, 49, 0), (80, 20, 16, 0), (85, 11, 84, 0), -- VRML: [# triangle 75 -- ] (40, 18, 39, 0), (22, 40, 41, 0), (42, 22, 41, 0), (18, 40, 22, 0), (86, 87, 19, 0), (19, 87, 15, 0), (77, 86, 19, 0), (77, 24, 76, 0), (19, 23, 77, 0), (23, 24, 77, 0), (39, 18, 14, 0), (43, 28, 42, 0), (64, 43, 63, 0), (28, 43, 64, 0), (65, 28, 64, 0), (67, 30, 29, 0), (29, 65, 66, 0), (29, 66, 67, 0), (65, 29, 28, 0), (68, 30, 67, 0), (42, 28, 22, 0), (75, 76, 24, 0), (20, 81, 73, 0), (25, 74, 75, 0), (25, 75, 24, 0), -- VRML: [# triangle 100 -- ] (73, 74, 25, 0), (26, 73, 25, 0), (48, 21, 27, 0), (49, 21, 48, 0), (47, 48, 27, 0), (46, 47, 27, 0), (26, 20, 73, 0), (81, 20, 80, 0), (69, 32, 31, 0), (31, 68, 69, 0), (32, 69, 70, 0), (71, 32, 70, 0), (45, 46, 33, 0), (33, 46, 27, 0), (72, 45, 33, 0), (33, 71, 72, 0), (45, 72, 44, 0), (71, 33, 32, 0), (31, 30, 68, 0), (94, 91, 93, 0), (103, 93, 90, 0), (103, 98, 93, 0), (93, 95, 94, 0), (95, 93, 96, 0), (93, 97, 96, 0), -- VRML: [# triangle 125 -- ] (103, 99, 98, 0), (93, 98, 97, 0), (103, 101, 100, 0), (103, 92, 102, 0), (103, 102, 101, 0), (103, 100, 99, 0), (109, 108, 106, 0), (118, 105, 108, 0), (118, 108, 113, 0), (108, 109, 110, 0), (110, 111, 108, 0), (108, 111, 112, 0), (118, 113, 114, 0), (108, 112, 113, 0), (118, 115, 116, 0), (118, 117, 107, 0), (118, 116, 117, 0), (118, 114, 115, 0), (125, 124, 122, 0), (121, 120, 124, 0), (121, 124, 129, 0), (124, 125, 126, 0), (126, 127, 124, 0), (124, 127, 128, 0), (121, 129, 130, 0), -- VRML: [# triangle 150 -- ] (124, 128, 129, 0), (121, 131, 132, 0), (121, 133, 123, 0), (121, 132, 133, 0), (121, 130, 131, 0), (139, 138, 134, 0), (140, 136, 138, 0), (139, 144, 138, 0), (138, 141, 140, 0), (141, 138, 142, 0), (138, 143, 142, 0), (139, 145, 144, 0), (138, 144, 143, 0), (139, 147, 146, 0), (139, 137, 148, 0), (139, 148, 147, 0), (139, 146, 145, 0), (151, 150, 149, 0), (150, 151, 152, 0), (154, 153, 156, 0), (157, 154, 156, 0), (155, 157, 158, 0), (158, 159, 155, 0), (154, 157, 155, 0), (160, 163, 164, 0), -- VRML: [# triangle 175 -- ] (165, 160, 164, 0), (162, 165, 166, 0), (166, 161, 162, 0), (160, 165, 162, 0), (167, 170, 171, 0), (172, 167, 171, 0), (169, 172, 173, 0), (173, 168, 169, 0), (167, 172, 169, 0), (175, 174, 177, 0), (178, 175, 177, 0), (176, 178, 179, 0), (179, 180, 176, 0), (175, 178, 176, 0) -- 190 ); -- VRML: [# 190 triangles -- ] -- last index now: 0 -- end Separator # 2 -- VRML: [#triangle mesh -- ] -- last index now: 0 -- end Separator # 2 -- VRML: [# triangle mesh -- ] procedure Create ( object : in out GLOBE_3D.p_Object_3D; object_scale : GLOBE_3D.Real; centre : GLOBE_3D.Point_3D ) is face_0 : Face_type; -- takes defaults values begin object := new Object_3D (Max_points => 180, Max_faces => 190); object.all.Centre := centre; Set_name (object.all, "insect_body"); face_0.skin := material_only; face_0.material := VRML_Defaults; -- Creating separator # 1 if Almost_zero (object_scale - 1.0) then object.all.Point (1 .. 180) := coord_1; else for p in 1 .. 180 loop object.all.Point (0 + p) := object_scale * coord_1 (p); end loop; end if; face_0.material := matos_1; -- Creating separator # 2 for f in 1 .. 190 loop face_0.P := idx_2 (f); object.all.face (0 + f) := face_0; end loop; end Create; end Arrow_P; -- Converted by Wrl2Ada