CombinedText
stringlengths
4
3.42M
------------------------------------------------------------------------------ -- -- -- GNAT RUNTIME COMPONENTS -- -- -- -- S Y S T E M . P A C K _ 0 5 -- -- -- -- S p e c -- -- -- -- $Revision$ -- -- -- Copyright (C) 1992-1999 Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 2, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING. If not, write -- -- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, -- -- MA 02111-0507, 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 = 5 package System.Pack_05 is pragma Preelaborate (Pack_05); Bits : constant := 5; type Bits_05 is mod 2 ** Bits; for Bits_05'Size use Bits; function Get_05 (Arr : System.Address; N : Natural) return Bits_05; -- Arr is the address of the packed array, N is the zero-based -- subscript. This element is extracted and returned. procedure Set_05 (Arr : System.Address; N : Natural; E : Bits_05); -- Arr is the address of the packed array, N is the zero-based -- subscript. This element is set to the given value. end System.Pack_05;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- A D A . A S S E R T I O N S -- -- -- -- S p e c -- -- -- -- This specification is derived from the Ada Reference Manual for use with -- -- GNAT. In accordance with the copyright of that document, you can freely -- -- copy and modify this specification, provided that if you redistribute a -- -- modified version, any changes that you have made are clearly indicated. -- -- -- ------------------------------------------------------------------------------ -- We do a with of System.Assertions to get hold of the exception (following -- the specific RM permission that lets' Assertion_Error being a renaming). -- The suppression of Warnings stops the warning about bad categorization. pragma Warnings (Off); with System.Assertions; pragma Warnings (On); package Ada.Assertions is pragma Pure (Assertions); Assertion_Error : exception renames System.Assertions.Assert_Failure; -- This is the renaming that is allowed by 11.4.2(24). Note that the -- Exception_Name will refer to the one in System.Assertions (see -- AARM-11.4.1(12.b)). procedure Assert (Check : Boolean); procedure Assert (Check : Boolean; Message : String); end Ada.Assertions;
-- This file is generated by SWIG. Please do not modify by hand. -- with Interfaces.C; with Interfaces.C; with Interfaces.C.Pointers; package xcb.xcb_glx_get_histogram_cookie_t is -- Item -- type Item is record sequence : aliased Interfaces.C.unsigned; end record; -- Item_Array -- type Item_Array is array (Interfaces.C .size_t range <>) of aliased xcb.xcb_glx_get_histogram_cookie_t .Item; -- Pointer -- package C_Pointers is new Interfaces.C.Pointers (Index => Interfaces.C.size_t, Element => xcb.xcb_glx_get_histogram_cookie_t.Item, Element_Array => xcb.xcb_glx_get_histogram_cookie_t.Item_Array, Default_Terminator => (others => <>)); subtype Pointer is C_Pointers.Pointer; -- Pointer_Array -- type Pointer_Array is array (Interfaces.C .size_t range <>) of aliased xcb.xcb_glx_get_histogram_cookie_t .Pointer; -- Pointer_Pointer -- package C_Pointer_Pointers is new Interfaces.C.Pointers (Index => Interfaces.C.size_t, Element => xcb.xcb_glx_get_histogram_cookie_t.Pointer, Element_Array => xcb.xcb_glx_get_histogram_cookie_t.Pointer_Array, Default_Terminator => null); subtype Pointer_Pointer is C_Pointer_Pointers.Pointer; end xcb.xcb_glx_get_histogram_cookie_t;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- S Y S T E M . M A N T I S S A -- -- -- -- B o d y -- -- -- -- Copyright (C) 1996-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 System.Mantissa is -------------------- -- Mantissa_Value -- -------------------- function Mantissa_Value (First, Last : Integer) return Natural is Result : Natural := 0; Val : Integer := Integer'Max (abs First - 1, abs Last); -- Note: First-1 allows for twos complement largest neg number begin while Val /= 0 loop Val := Val / 2; Result := Result + 1; end loop; return Result; end Mantissa_Value; end System.Mantissa;
-- Shoot'n'loot -- Copyright (c) 2020 Fabien Chouteau with Game_Assets.Tileset; with Game_Assets.Tileset_Collisions; with Game_Assets.Misc_Objects; with GESTE_Config; use GESTE_Config; with GESTE.Tile_Bank; with GESTE.Sprite.Animated; with Sound; package body Monsters is package Item renames Game_Assets.Misc_Objects.Item; Tile_Bank : aliased GESTE.Tile_Bank.Instance (Game_Assets.Tileset.Tiles'Access, Game_Assets.Tileset_Collisions.Tiles'Access, Game_Assets.Palette'Access); Empty_Tile : constant GESTE_Config.Tile_Index := Item.Empty_Tile.Tile_Id; type Monster_Rec is record Sprite : aliased GESTE.Sprite.Animated.Instance (Tile_Bank'Access, GESTE_Config.No_Tile); Origin : GESTE.Pix_Point; Pos : GESTE.Pix_Point; Alive : Boolean := False; Going_Right : Boolean := True; Offset : Natural := 0; end record; Monster_Array : array (1 .. Max_Nbr_Of_Monsters) of Monster_Rec; Last_Monster : Natural := 0; Nbr_Killed : Natural := 0; Anim_Step_Duration : constant := 10; Monster_Animation : aliased constant GESTE.Sprite.Animated.Animation_Array := ((Item.M1.Tile_Id, Anim_Step_Duration), (Item.M2.Tile_Id, Anim_Step_Duration), (Item.M3.Tile_Id, Anim_Step_Duration), (Item.M4.Tile_Id, Anim_Step_Duration), (Item.M5.Tile_Id, Anim_Step_Duration), (Item.M6.Tile_Id, Anim_Step_Duration), (Item.M7.Tile_Id, Anim_Step_Duration)); ---------- -- Init -- ---------- procedure Init (Objects : Object_Array) is begin Last_Monster := 0; Nbr_Killed := 0; for Monster of Objects loop Last_Monster := Last_Monster + 1; declare M : Monster_Rec renames Monster_Array (Last_Monster); begin M.Sprite.Set_Animation (Monster_Animation'Access, Looping => True); M.Alive := True; M.Origin := (Integer (Monster.X), Integer (Monster.Y) - 8); M.Pos := M.Origin; M.Sprite.Move (M.Origin); GESTE.Add (M.Sprite'Access, 2); end; end loop; end Init; --------------- -- Check_Hit -- --------------- function Check_Hit (Pt : GESTE.Pix_Point; Lethal : Boolean) return Boolean is begin for M of Monster_Array (Monster_Array'First .. Last_Monster) loop if M.Alive and then Pt.X in M.Pos.X .. M.Pos.X + Tile_Size and then Pt.Y in M.Pos.Y .. M.Pos.Y + Tile_Size then if Lethal then -- Replace the monster by an empty tile to erase it from the -- screen. M.Sprite.Set_Animation (GESTE.Sprite.Animated.No_Animation, Looping => False); M.Sprite.Set_Tile (Empty_Tile); M.Alive := False; Nbr_Killed := Nbr_Killed + 1; Sound.Play_Monster_Dead; end if; return True; end if; end loop; return False; end Check_Hit; ---------------- -- All_Killed -- ---------------- function All_Killed return Boolean is (Nbr_Killed = Last_Monster); ------------ -- Update -- ------------ procedure Update is begin for M of Monster_Array (Monster_Array'First .. Last_Monster) loop if M.Alive then M.Sprite.Signal_Frame; M.Pos := (M.Origin.X + M.Offset / 5, M.Origin.Y); M.Sprite.Move (M.Pos); if M.Going_Right then if M.Offset >= GESTE_Config.Tile_Size * 2 * 5 then M.Going_Right := False; else M.Offset := M.Offset + 1; end if; else if M.Offset = 0 then M.Going_Right := True; else M.Offset := M.Offset - 1; end if; end if; end if; end loop; end Update; end Monsters;
------------------------------------------------------------------------------- -- This file is part of libsparkcrypto. -- -- Copyright (C) 2012, Stefan Berghofer -- Copyright (C) 2012, secunet Security Networks AG -- 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 author nor the names of its contributors may be -- used to endorse or promote products derived from this software without -- specific prior written permission. -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -- AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -- ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS -- BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -- CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -- SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -- INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -- CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -- ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -- POSSIBILITY OF SUCH DAMAGE. ------------------------------------------------------------------------------- package body LSC.Internal.EC_Signature is pragma Warnings (Off, """V"" may be referenced before it has a value"); procedure Extract (X : in Bignum.Big_Int; X_First : in Natural; X_Last : in Natural; Z : in Bignum.Big_Int; Z_First : in Natural; V : out Bignum.Big_Int; V_First : in Natural; M : in Bignum.Big_Int; M_First : in Natural; M_Inv : in Types.Word32; RM : in Bignum.Big_Int; RM_First : in Natural; N : in Bignum.Big_Int; N_First : in Natural; N_Inv : in Types.Word32; RN : in Bignum.Big_Int; RN_First : in Natural) with Depends => (V =>+ (V_First, X, X_First, X_Last, Z, Z_First, M, M_First, M_Inv, RM, RM_First, N, N_First, N_Inv, RN, RN_First)), Pre => X_First in X'Range and then X_Last in X'Range and then X_First < X_Last and then X_Last - X_First < EC.Max_Coord_Length and then Z_First in Z'Range and then Z_First + (X_Last - X_First) in Z'Range and then V_First in V'Range and then V_First + (X_Last - X_First) in V'Range and then M_First in M'Range and then M_First + (X_Last - X_First) in M'Range and then RM_First in RM'Range and then RM_First + (X_Last - X_First) in RM'Range and then N_First in N'Range and then N_First + (X_Last - X_First) in N'Range and then RN_First in RN'Range and then RN_First + (X_Last - X_First) in RN'Range and then Bignum.Num_Of_Big_Int (X, X_First, X_Last - X_First + 1) < Bignum.Num_Of_Big_Int (M, M_First, X_Last - X_First + 1) and then Bignum.Num_Of_Big_Int (Z, Z_First, X_Last - X_First + 1) < Bignum.Num_Of_Big_Int (M, M_First, X_Last - X_First + 1) and then Math_Int.From_Word32 (1) < Bignum.Num_Of_Big_Int (M, M_First, X_Last - X_First + 1) and then 1 + M_Inv * M (M_First) = 0 and then Math_Int.From_Word32 (1) < Bignum.Num_Of_Big_Int (N, N_First, X_Last - X_First + 1) and then 1 + N_Inv * N (N_First) = 0 and then Bignum.Num_Of_Big_Int (RM, RM_First, X_Last - X_First + 1) = Bignum.Base ** (Math_Int.From_Integer (2) * Math_Int.From_Integer (X_Last - X_First + 1)) mod Bignum.Num_Of_Big_Int (M, M_First, X_Last - X_First + 1) and then Bignum.Num_Of_Big_Int (RN, RN_First, X_Last - X_First + 1) = Bignum.Base ** (Math_Int.From_Integer (2) * Math_Int.From_Integer (X_Last - X_First + 1)) mod Bignum.Num_Of_Big_Int (N, N_First, X_Last - X_First + 1), Post => Bignum.Num_Of_Big_Int (V, V_First, X_Last - X_First + 1) < Bignum.Num_Of_Big_Int (N, N_First, X_Last - X_First + 1); procedure Extract (X : in Bignum.Big_Int; X_First : in Natural; X_Last : in Natural; Z : in Bignum.Big_Int; Z_First : in Natural; V : out Bignum.Big_Int; V_First : in Natural; M : in Bignum.Big_Int; M_First : in Natural; M_Inv : in Types.Word32; RM : in Bignum.Big_Int; RM_First : in Natural; N : in Bignum.Big_Int; N_First : in Natural; N_Inv : in Types.Word32; RN : in Bignum.Big_Int; RN_First : in Natural) is L : Natural; H : EC.Coord; begin L := X_Last - X_First; EC.Invert (Z, Z_First, Z_First + L, H, H'First, RM, RM_First, M, M_First, M_Inv); Bignum.Mont_Mult (V, V_First, V_First + L, X, X_First, H, H'First, M, M_First, M_Inv); Bignum.Mont_Mult (H, H'First, H'First + L, V, V_First, EC.One, EC.One'First, N, N_First, N_Inv); Bignum.Mont_Mult (V, V_First, V_First + L, H, H'First, RN, RN_First, N, N_First, N_Inv); end Extract; pragma Warnings (On, """V"" may be referenced before it has a value"); ---------------------------------------------------------------------------- procedure Sign (Sign1 : out Bignum.Big_Int; Sign1_First : in Natural; Sign1_Last : in Natural; Sign2 : out Bignum.Big_Int; Sign2_First : in Natural; Hash : in Bignum.Big_Int; Hash_First : in Natural; Rand : in Bignum.Big_Int; Rand_First : in Natural; T : in Signature_Type; Priv : in Bignum.Big_Int; Priv_First : in Natural; BX : in Bignum.Big_Int; BX_First : in Natural; BY : in Bignum.Big_Int; BY_First : in Natural; A : in Bignum.Big_Int; A_First : in Natural; M : in Bignum.Big_Int; M_First : in Natural; M_Inv : in Types.Word32; RM : in Bignum.Big_Int; RM_First : in Natural; N : in Bignum.Big_Int; N_First : in Natural; N_Inv : in Types.Word32; RN : in Bignum.Big_Int; RN_First : in Natural; Success : out Boolean) is L : Natural; X, Y, Z, PrivR, H1, H2, H3 : EC.Coord; begin L := Sign1_Last - Sign1_First; Bignum.Mont_Mult (H1, H1'First, H1'First + L, Hash, Hash_First, EC.One, EC.One'First, N, N_First, N_Inv); Bignum.Mont_Mult (H3, H3'First, H3'First + L, H1, H1'First, RN, RN_First, N, N_First, N_Inv); pragma Warnings (Off, "unused assignment to ""Y"""); EC.Point_Mult (X1 => BX, X1_First => BX_First, X1_Last => BX_First + L, Y1 => BY, Y1_First => BY_First, Z1 => EC.One, Z1_First => EC.One'First, E => Rand, E_First => Rand_First, E_Last => Rand_First + L, X2 => X, X2_First => X'First, Y2 => Y, Y2_First => Y'First, Z2 => Z, Z2_First => Z'First, A => A, A_First => A_First, M => M, M_First => M_First, M_Inv => M_Inv); pragma Warnings (On, "unused assignment to ""Y"""); Extract (X, X'First, X'First + L, Z, Z'First, Sign1, Sign1_First, M, M_First, M_Inv, RM, RM_First, N, N_First, N_Inv, RN, RN_First); Bignum.Mont_Mult (PrivR, PrivR'First, PrivR'First + L, Priv, Priv_First, RN, RN_First, N, N_First, N_Inv); case T is when ECDSA => Bignum.Mont_Mult (H1, H1'First, H1'First + L, PrivR, PrivR'First, Sign1, Sign1_First, N, N_First, N_Inv); Bignum.Mod_Add_Inplace (H1, H1'First, H1'First + L, H3, H3'First, N, N_First); EC.Invert (Rand, Rand_First, Rand_First + L, H2, H2'First, RN, RN_First, N, N_First, N_Inv); Bignum.Mont_Mult (Sign2, Sign2_First, Sign2_First + L, H1, H1'First, H2, H2'First, N, N_First, N_Inv); when ECGDSA => Bignum.Mont_Mult (H1, H1'First, H1'First + L, Rand, Rand_First, RN, RN_First, N, N_First, N_Inv); Bignum.Mont_Mult (H2, H2'First, H2'First + L, H1, H1'First, Sign1, Sign1_First, N, N_First, N_Inv); Bignum.Mod_Sub_Inplace (H2, H2'First, H2'First + L, H3, H3'First, N, N_First); Bignum.Mont_Mult (Sign2, Sign2_First, Sign2_First + L, H2, H2'First, PrivR, PrivR'First, N, N_First, N_Inv); end case; Success := not Bignum.Is_Zero (Sign1, Sign1_First, Sign1_Last) and then not Bignum.Is_Zero (Sign2, Sign2_First, Sign2_First + L); end Sign; ---------------------------------------------------------------------------- function Verify (Sign1 : Bignum.Big_Int; Sign1_First : Natural; Sign1_Last : Natural; Sign2 : Bignum.Big_Int; Sign2_First : Natural; Hash : Bignum.Big_Int; Hash_First : Natural; T : Signature_Type; PubX : Bignum.Big_Int; PubX_First : Natural; PubY : Bignum.Big_Int; PubY_First : Natural; BX : Bignum.Big_Int; BX_First : Natural; BY : Bignum.Big_Int; BY_First : Natural; A : Bignum.Big_Int; A_First : Natural; M : Bignum.Big_Int; M_First : Natural; M_Inv : Types.Word32; RM : Bignum.Big_Int; RM_First : Natural; N : Bignum.Big_Int; N_First : Natural; N_Inv : Types.Word32; RN : Bignum.Big_Int; RN_First : Natural) return Boolean is L : Natural; Result : Boolean; H1, H2, H, X, Y, Z, V : EC.Coord; begin L := Sign1_Last - Sign1_First; if not Bignum.Is_Zero (Sign1, Sign1_First, Sign1_Last) and then Bignum.Less (Sign1, Sign1_First, Sign1_Last, N, N_First) and then not Bignum.Is_Zero (Sign2, Sign2_First, Sign2_First + L) and then Bignum.Less (Sign2, Sign2_First, Sign2_First + L, N, N_First) then case T is when ECDSA => EC.Invert (Sign2, Sign2_First, Sign2_First + L, H, H'First, RN, RN_First, N, N_First, N_Inv); Bignum.Mont_Mult (H2, H2'First, H2'First + L, Sign1, Sign1_First, H, H'First, N, N_First, N_Inv); when ECGDSA => EC.Invert (Sign1, Sign1_First, Sign1_Last, H, H'First, RN, RN_First, N, N_First, N_Inv); Bignum.Mont_Mult (H2, H2'First, H2'First + L, Sign2, Sign2_First, H, H'First, N, N_First, N_Inv); end case; Bignum.Mont_Mult (H1, H1'First, H1'First + L, Hash, Hash_First, H, H'First, N, N_First, N_Inv); pragma Warnings (Off, "unused assignment to ""Y"""); EC.Two_Point_Mult (X1 => BX, X1_First => BX_First, X1_Last => BX_First + L, Y1 => BY, Y1_First => BY_First, Z1 => EC.One, Z1_First => EC.One'First, E1 => H1, E1_First => H1'First, E1_Last => H1'First + L, X2 => PubX, X2_First => PubX_First, Y2 => PubY, Y2_First => PubY_First, Z2 => EC.One, Z2_First => EC.One'First, E2 => H2, E2_First => H2'First, X3 => X, X3_First => X'First, Y3 => Y, Y3_First => Y'First, Z3 => Z, Z3_First => Z'First, A => A, A_First => A_First, M => M, M_First => M_First, M_Inv => M_Inv); pragma Warnings (On, "unused assignment to ""Y"""); Extract (X, X'First, X'First + L, Z, Z'First, V, V'First, M, M_First, M_Inv, RM, RM_First, N, N_First, N_Inv, RN, RN_First); Result := Bignum.Equal (Sign1, Sign1_First, Sign1_Last, V, V'First); else Result := False; end if; return Result; end Verify; end LSC.Internal.EC_Signature;
M:brazo_robotico
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- S Y S T E M . S T O R A G E _ E L E M E N T S -- -- -- -- S p e c -- -- -- -- Copyright (C) 2002-2009, 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 implementation dependent sections of this file. -- -- -- -- 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. -- -- -- ------------------------------------------------------------------------------ -- Warning: declarations in this package are ambiguous with respect to the -- extra declarations that can be introduced into System using Extend_System. -- It is a good idea to avoid use clauses for this package! pragma Compiler_Unit; package System.Storage_Elements is pragma Pure; -- Note that we take advantage of the implementation permission to make -- this unit Pure instead of Preelaborable; see RM 13.7.1(15). In Ada 2005, -- this is Pure in any case (AI-362). -- We also add the pragma Pure_Function to the operations in this package, -- because otherwise functions with parameters derived from Address are -- treated as non-pure by the back-end (see exp_ch6.adb). This is because -- in many cases such a parameter is used to hide read/out access to -- objects, and it would be unsafe to treat such functions as pure. type Storage_Offset is range -(2 ** (Integer'(Standard'Address_Size) - 1)) .. +(2 ** (Integer'(Standard'Address_Size) - 1)) - Long_Long_Integer'(1); -- Note: the reason for the Long_Long_Integer qualification here is to -- avoid a bogus ambiguity when this unit is analyzed in an rtsfind -- context. It may be possible to remove this in the future, but it is -- certainly harmless in any case ??? subtype Storage_Count is Storage_Offset range 0 .. Storage_Offset'Last; type Storage_Element is mod 2 ** Storage_Unit; for Storage_Element'Size use Storage_Unit; pragma Universal_Aliasing (Storage_Element); -- This type is used by the expander to implement aggregate copy type Storage_Array is array (Storage_Offset range <>) of aliased Storage_Element; for Storage_Array'Component_Size use Storage_Unit; -- Address arithmetic function "+" (Left : Address; Right : Storage_Offset) return Address; pragma Convention (Intrinsic, "+"); pragma Inline_Always ("+"); pragma Pure_Function ("+"); function "+" (Left : Storage_Offset; Right : Address) return Address; pragma Convention (Intrinsic, "+"); pragma Inline_Always ("+"); pragma Pure_Function ("+"); function "-" (Left : Address; Right : Storage_Offset) return Address; pragma Convention (Intrinsic, "-"); pragma Inline_Always ("-"); pragma Pure_Function ("-"); function "-" (Left, Right : Address) return Storage_Offset; pragma Convention (Intrinsic, "-"); pragma Inline_Always ("-"); pragma Pure_Function ("-"); function "mod" (Left : Address; Right : Storage_Offset) return Storage_Offset; pragma Convention (Intrinsic, "mod"); pragma Inline_Always ("mod"); pragma Pure_Function ("mod"); -- Conversion to/from integers type Integer_Address is mod Memory_Size; function To_Address (Value : Integer_Address) return Address; pragma Convention (Intrinsic, To_Address); pragma Inline_Always (To_Address); pragma Pure_Function (To_Address); function To_Integer (Value : Address) return Integer_Address; pragma Convention (Intrinsic, To_Integer); pragma Inline_Always (To_Integer); pragma Pure_Function (To_Integer); end System.Storage_Elements;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- A D A . S T R E A M S . S T R E A M _ I O -- -- -- -- S p e c -- -- -- -- Copyright (C) 1992-2006, 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 2, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING. If not, write -- -- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, -- -- Boston, MA 02110-1301, USA. -- -- -- -- As a special exception, if other files instantiate generics from this -- -- unit, or you link this unit with other files to produce an executable, -- -- this unit does not by itself cause the resulting executable to be -- -- covered by the GNU General Public License. This exception does not -- -- however invalidate any other reasons why the executable file might be -- -- covered by the GNU Public License. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ with Ada.IO_Exceptions; with System.File_Control_Block; package Ada.Streams.Stream_IO is type Stream_Access is access all Root_Stream_Type'Class; type File_Type is limited private; type File_Mode is (In_File, Out_File, Append_File); -- The following representation clause allows the use of unchecked -- conversion for rapid translation between the File_Mode type -- used in this package and System.File_IO. for File_Mode use (In_File => 0, -- System.File_IO.File_Mode'Pos (In_File) Out_File => 2, -- System.File_IO.File_Mode'Pos (Out_File) Append_File => 3); -- System.File_IO.File_Mode'Pos (Append_File) type Count is new Stream_Element_Offset range 0 .. Stream_Element_Offset'Last; subtype Positive_Count is Count range 1 .. Count'Last; -- Index into file, in stream elements --------------------- -- File Management -- --------------------- procedure Create (File : in out File_Type; Mode : File_Mode := Out_File; Name : String := ""; Form : String := ""); procedure Open (File : in out File_Type; Mode : File_Mode; Name : String; Form : String := ""); procedure Close (File : in out File_Type); procedure Delete (File : in out File_Type); procedure Reset (File : in out File_Type; Mode : File_Mode); procedure Reset (File : in out File_Type); function Mode (File : File_Type) return File_Mode; function Name (File : File_Type) return String; function Form (File : File_Type) return String; function Is_Open (File : File_Type) return Boolean; function End_Of_File (File : File_Type) return Boolean; function Stream (File : File_Type) return Stream_Access; ----------------------------- -- Input-Output Operations -- ----------------------------- procedure Read (File : File_Type; Item : out Stream_Element_Array; Last : out Stream_Element_Offset; From : Positive_Count); procedure Read (File : File_Type; Item : out Stream_Element_Array; Last : out Stream_Element_Offset); procedure Write (File : File_Type; Item : Stream_Element_Array; To : Positive_Count); procedure Write (File : File_Type; Item : Stream_Element_Array); ---------------------------------------- -- Operations on Position within File -- ---------------------------------------- procedure Set_Index (File : File_Type; To : Positive_Count); function Index (File : File_Type) return Positive_Count; function Size (File : File_Type) return Count; procedure Set_Mode (File : in out File_Type; Mode : File_Mode); -- Note: The parameter file is IN OUT in the RM, but this is clearly -- an oversight, and was intended to be IN, see AI95-00057. procedure Flush (File : File_Type); ---------------- -- Exceptions -- ---------------- Status_Error : exception renames IO_Exceptions.Status_Error; Mode_Error : exception renames IO_Exceptions.Mode_Error; Name_Error : exception renames IO_Exceptions.Name_Error; Use_Error : exception renames IO_Exceptions.Use_Error; Device_Error : exception renames IO_Exceptions.Device_Error; End_Error : exception renames IO_Exceptions.End_Error; Data_Error : exception renames IO_Exceptions.Data_Error; private package FCB renames System.File_Control_Block; ----------------------------- -- Stream_IO Control Block -- ----------------------------- type Operation is (Op_Read, Op_Write, Op_Other); -- Type used to record last operation (to optimize sequential operations) type Stream_AFCB is new FCB.AFCB with record Index : Count := 1; -- Current Index value File_Size : Stream_Element_Offset := -1; -- Cached value of File_Size, so that we do not keep recomputing it -- when not necessary (otherwise End_Of_File becomes gruesomely slow). -- A value of minus one means that there is no cached value. Last_Op : Operation := Op_Other; -- Last operation performed on file, used to avoid unnecessary -- repositioning between successive read or write operations. Update_Mode : Boolean := False; -- Set if the mode is changed from write to read or vice versa. -- Indicates that the file has been reopened in update mode. end record; type File_Type is access all Stream_AFCB; function AFCB_Allocate (Control_Block : Stream_AFCB) return FCB.AFCB_Ptr; procedure AFCB_Close (File : access Stream_AFCB); procedure AFCB_Free (File : access Stream_AFCB); procedure Read (File : in out Stream_AFCB; Item : out Ada.Streams.Stream_Element_Array; Last : out Ada.Streams.Stream_Element_Offset); -- Read operation used when Stream_IO file is treated directly as Stream procedure Write (File : in out Stream_AFCB; Item : Ada.Streams.Stream_Element_Array); -- Write operation used when Stream_IO file is treated directly as Stream end Ada.Streams.Stream_IO;
------------------------------------------------------------------------------ -- -- -- Copyright (C) 2017-2018, Universidad Politécnica de Madrid -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions are -- -- met: -- -- 1. Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- 2. Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in -- -- the documentation and/or other materials provided with the -- -- distribution. -- -- 3. Neither the name of the copyright holder nor the names of its -- -- contributors may be used to endorse or promote products derived -- -- from this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -- -- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -- -- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -- -- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -- -- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -- -- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- Main procedure of toy ground station system - text terminal version -- Compile with native compiler with TTC; -- TheTM_Receiver package contains the telemetry reception subsystem -- with TC_Sender; -- The GS_TC package contains the telecommand transmission subsystem with User_Interface; -- User interface with System; procedure GS_Terminal is pragma Priority (System.Priority'Last); begin -- initialize components User_Interface.Init; TTC.Init; -- TC_Sender.Init; loop null; end loop; end GS_Terminal;
--////////////////////////////////////////////////////////// -- SFML - Simple and Fast Multimedia Library -- Copyright (C) 2007-2015 Laurent Gomila (laurent@sfml-dev.org) -- This software is provided 'as-is', without any express or implied warranty. -- In no event will the authors be held liable for any damages arising from the use of this software. -- Permission is granted to anyone to use this software for any purpose, -- including commercial applications, and to alter it and redistribute it freely, -- subject to the following restrictions: -- 1. The origin of this software must not be misrepresented; -- you must not claim that you wrote the original software. -- If you use this software in a product, an acknowledgment -- in the product documentation would be appreciated but is not required. -- 2. Altered source versions must be plainly marked as such, -- and must not be misrepresented as being the original software. -- 3. This notice may not be removed or altered from any source distribution. --////////////////////////////////////////////////////////// --////////////////////////////////////////////////////////// with Sf.Network.IpAddress; with Sf.System.Time; package Sf.Network.Ftp is --////////////////////////////////////////////////////////// --////////////////////////////////////////////////////////// --////////////////////////////////////////////////////////// --////////////////////////////////////////////////////////// --////////////////////////////////////////////////////////// --/ @brief Enumeration of transfer modes --/ --////////////////////////////////////////////////////////// --/< Binary mode (file is transfered as a sequence of bytes) --/< Text mode using ASCII encoding --/< Text mode using EBCDIC encoding type sfFtpTransferMode is (sfFtpBinary, sfFtpAscii, sfFtpEbcdic); --////////////////////////////////////////////////////////// --/ @brief Status codes possibly returned by a FTP response --/ --////////////////////////////////////////////////////////// -- 1xx: the requested action is being initiated, -- expect another reply before proceeding with a new command --/< Restart marker reply --/< Service ready in N minutes --/< Data connection already opened, transfer starting --/< File status ok, about to open data connection -- 2xx: the requested action has been successfully completed --/< Command ok --/< Command not implemented --/< System status, or system help reply --/< Directory status --/< File status --/< Help message --/< NAME system type, where NAME is an official system name from the list in the Assigned Numbers document --/< Service ready for new user --/< Service closing control connection --/< Data connection open, no transfer in progress --/< Closing data connection, requested file action successful --/< Entering passive mode --/< User logged in, proceed. Logged out if appropriate --/< Requested file action ok --/< PATHNAME created -- 3xx: the command has been accepted, but the requested action -- is dormant, pending receipt of further information --/< User name ok, need password --/< Need account for login --/< Requested file action pending further information -- 4xx: the command was not accepted and the requested action did not take place, -- but the error condition is temporary and the action may be requested again --/< Service not available, closing control connection --/< Can't open data connection --/< Connection closed, transfer aborted --/< Requested file action not taken --/< Requested action aborted, local error in processing --/< Requested action not taken; insufficient storage space in system, file unavailable -- 5xx: the command was not accepted and -- the requested action did not take place --/< Syntax error, command unrecognized --/< Syntax error in parameters or arguments --/< Command not implemented --/< Bad sequence of commands --/< Command not implemented for that parameter --/< Not logged in --/< Need account for storing files --/< Requested action not taken, file unavailable --/< Requested action aborted, page type unknown --/< Requested file action aborted, exceeded storage allocation --/< Requested action not taken, file name not allowed -- 10xx: SFML custom codes --/< Response is not a valid FTP one --/< Connection with server failed --/< Connection with server closed --/< Invalid file to upload / download subtype sfFtpStatus is sfUint32; sfFtpRestartMarkerReply : constant sfFtpStatus := 110; sfFtpServiceReadySoon : constant sfFtpStatus := 120; sfFtpDataConnectionAlreadyOpened : constant sfFtpStatus := 125; sfFtpOpeningDataConnection : constant sfFtpStatus := 150; sfFtpOk : constant sfFtpStatus := 200; sfFtpPointlessCommand : constant sfFtpStatus := 202; sfFtpSystemStatus : constant sfFtpStatus := 211; sfFtpDirectoryStatus : constant sfFtpStatus := 212; sfFtpFileStatus : constant sfFtpStatus := 213; sfFtpHelpMessage : constant sfFtpStatus := 214; sfFtpSystemType : constant sfFtpStatus := 215; sfFtpServiceReady : constant sfFtpStatus := 220; sfFtpClosingConnection : constant sfFtpStatus := 221; sfFtpDataConnectionOpened : constant sfFtpStatus := 225; sfFtpClosingDataConnection : constant sfFtpStatus := 226; sfFtpEnteringPassiveMode : constant sfFtpStatus := 227; sfFtpLoggedIn : constant sfFtpStatus := 230; sfFtpFileActionOk : constant sfFtpStatus := 250; sfFtpDirectoryOk : constant sfFtpStatus := 257; sfFtpNeedPassword : constant sfFtpStatus := 331; sfFtpNeedAccountToLogIn : constant sfFtpStatus := 332; sfFtpNeedInformation : constant sfFtpStatus := 350; sfFtpServiceUnavailable : constant sfFtpStatus := 421; sfFtpDataConnectionUnavailable : constant sfFtpStatus := 425; sfFtpTransferAborted : constant sfFtpStatus := 426; sfFtpFileActionAborted : constant sfFtpStatus := 450; sfFtpLocalError : constant sfFtpStatus := 451; sfFtpInsufficientStorageSpace : constant sfFtpStatus := 452; sfFtpCommandUnknown : constant sfFtpStatus := 500; sfFtpParametersUnknown : constant sfFtpStatus := 501; sfFtpCommandNotImplemented : constant sfFtpStatus := 502; sfFtpBadCommandSequence : constant sfFtpStatus := 503; sfFtpParameterNotImplemented : constant sfFtpStatus := 504; sfFtpNotLoggedIn : constant sfFtpStatus := 530; sfFtpNeedAccountToStore : constant sfFtpStatus := 532; sfFtpFileUnavailable : constant sfFtpStatus := 550; sfFtpPageTypeUnknown : constant sfFtpStatus := 551; sfFtpNotEnoughMemory : constant sfFtpStatus := 552; sfFtpFilenameNotAllowed : constant sfFtpStatus := 553; sfFtpInvalidResponse : constant sfFtpStatus := 1000; sfFtpConnectionFailed : constant sfFtpStatus := 1001; sfFtpConnectionClosed : constant sfFtpStatus := 1002; sfFtpInvalidFile : constant sfFtpStatus := 1003; package ListingResponse is --////////////////////////////////////////////////////////// --/ @brief Destroy a FTP listing response --/ --/ @param ftpListingResponse Ftp listing response to destroy --/ --////////////////////////////////////////////////////////// procedure destroy (ftpListingResponse : sfFtpListingResponse_Ptr); --////////////////////////////////////////////////////////// --/ @brief Check if a FTP listing response status code means a success --/ --/ This function is defined for convenience, it is --/ equivalent to testing if the status code is < 400. --/ --/ @param ftpListingResponse Ftp listing response --/ --/ @return sfTrue if the status is a success, sfFalse if it is a failure --/ --////////////////////////////////////////////////////////// function isOk (ftpListingResponse : sfFtpListingResponse_Ptr) return sfBool; --////////////////////////////////////////////////////////// --/ @brief Get the status code of a FTP listing response --/ --/ @param ftpListingResponse Ftp listing response --/ --/ @return Status code --/ --////////////////////////////////////////////////////////// function getStatus (ftpListingResponse : sfFtpListingResponse_Ptr) return sfFtpStatus; --////////////////////////////////////////////////////////// --/ @brief Get the full message contained in a FTP listing response --/ --/ @param ftpListingResponse Ftp listing response --/ --/ @return The response message --/ --////////////////////////////////////////////////////////// function getMessage (ftpListingResponse : sfFtpListingResponse_Ptr) return String; --////////////////////////////////////////////////////////// --/ @brief Return the number of directory/file names contained in a FTP listing response --/ --/ @param ftpListingResponse Ftp listing response --/ --/ @return Total number of names available --/ --////////////////////////////////////////////////////////// function getCount (ftpListingResponse : sfFtpListingResponse_Ptr) return sfSize_t; --////////////////////////////////////////////////////////// --/ @brief Return a directory/file name contained in a FTP listing response --/ --/ @param ftpListingResponse Ftp listing response --/ @param index Index of the name to get (in range [0 .. getCount]) --/ --/ @return The requested name --/ --////////////////////////////////////////////////////////// function getName (ftpListingResponse : sfFtpListingResponse_Ptr; index : sfSize_t) return String; private pragma Import (C, destroy, "sfFtpListingResponse_destroy"); pragma Import (C, isOk, "sfFtpListingResponse_isOk"); pragma Import (C, getStatus, "sfFtpListingResponse_getStatus"); pragma Import (C, getCount, "sfFtpListingResponse_getCount"); end ListingResponse; package DirectoryResponse is --////////////////////////////////////////////////////////// --/ @brief Destroy a FTP directory response --/ --/ @param ftpDirectoryResponse Ftp directory response to destroy --/ --////////////////////////////////////////////////////////// procedure destroy (ftpDirectoryResponse : sfFtpDirectoryResponse_Ptr); --////////////////////////////////////////////////////////// --/ @brief Check if a FTP directory response status code means a success --/ --/ This function is defined for convenience, it is --/ equivalent to testing if the status code is < 400. --/ --/ @param ftpDirectoryResponse Ftp directory response --/ --/ @return sfTrue if the status is a success, sfFalse if it is a failure --/ --////////////////////////////////////////////////////////// function isOk (ftpDirectoryResponse : sfFtpDirectoryResponse_Ptr) return sfBool; --////////////////////////////////////////////////////////// --/ @brief Get the status code of a FTP directory response --/ --/ @param ftpDirectoryResponse Ftp directory response --/ --/ @return Status code --/ --////////////////////////////////////////////////////////// function getStatus (ftpDirectoryResponse : sfFtpDirectoryResponse_Ptr) return sfFtpStatus; --////////////////////////////////////////////////////////// --/ @brief Get the full message contained in a FTP directory response --/ --/ @param ftpDirectoryResponse Ftp directory response --/ --/ @return The response message --/ --////////////////////////////////////////////////////////// function getMessage (ftpDirectoryResponse : sfFtpDirectoryResponse_Ptr) return String; --////////////////////////////////////////////////////////// --/ @brief Get the directory returned in a FTP directory response --/ --/ @param ftpDirectoryResponse Ftp directory response --/ --/ @return Directory name --/ --////////////////////////////////////////////////////////// function getDirectory (ftpDirectoryResponse : sfFtpDirectoryResponse_Ptr) return String; private pragma Import (C, destroy, "sfFtpDirectoryResponse_destroy"); pragma Import (C, isOk, "sfFtpDirectoryResponse_isOk"); pragma Import (C, getStatus, "sfFtpDirectoryResponse_getStatus"); end DirectoryResponse; package Response is --////////////////////////////////////////////////////////// --/ @brief Destroy a FTP response --/ --/ @param ftpResponse Ftp response to destroy --/ --////////////////////////////////////////////////////////// procedure destroy (ftpResponse : sfFtpResponse_Ptr); --////////////////////////////////////////////////////////// --/ @brief Check if a FTP response status code means a success --/ --/ This function is defined for convenience, it is --/ equivalent to testing if the status code is < 400. --/ --/ @param ftpResponse Ftp response object --/ --/ @return sfTrue if the status is a success, sfFalse if it is a failure --/ --////////////////////////////////////////////////////////// function isOk (ftpResponse : sfFtpResponse_Ptr) return sfBool; --////////////////////////////////////////////////////////// --/ @brief Get the status code of a FTP response --/ --/ @param ftpResponse Ftp response object --/ --/ @return Status code --/ --////////////////////////////////////////////////////////// function getStatus (ftpResponse : sfFtpResponse_Ptr) return sfFtpStatus; --////////////////////////////////////////////////////////// --/ @brief Get the full message contained in a FTP response --/ --/ @param ftpResponse Ftp response object --/ --/ @return The response message --/ --////////////////////////////////////////////////////////// function getMessage (ftpResponse : sfFtpResponse_Ptr) return String; private pragma Import (C, destroy, "sfFtpResponse_destroy"); pragma Import (C, isOk, "sfFtpResponse_isOk"); pragma Import (C, getStatus, "sfFtpResponse_getStatus"); end Response; --////////////////////////////////////////////////////////// --/ @brief Create a new Ftp object --/ --/ @return A new sfFtp object --/ --////////////////////////////////////////////////////////// function create return sfFtp_Ptr; --////////////////////////////////////////////////////////// --/ @brief Destroy a Ftp object --/ --/ @param ftp Ftp object to destroy --/ --////////////////////////////////////////////////////////// procedure destroy (ftp : sfFtp_Ptr); --////////////////////////////////////////////////////////// --/ @brief Connect to the specified FTP server --/ --/ The port should be 21, which is the standard --/ port used by the FTP protocol. You shouldn't use a different --/ value, unless you really know what you do. --/ This function tries to connect to the server so it may take --/ a while to complete, especially if the server is not --/ reachable. To avoid blocking your application for too long, --/ you can use a timeout. Using 0 means that the --/ system timeout will be used (which is usually pretty long). --/ --/ @param ftp Ftp object --/ @param server Name or address of the FTP server to connect to --/ @param port Port used for the connection --/ @param timeout Maximum time to wait --/ --/ @return Server response to the request --/ --////////////////////////////////////////////////////////// function connect (ftp : sfFtp_Ptr; server : Sf.Network.IpAddress.sfIpAddress; port : sfUint16; timeout : Sf.System.Time.sfTime) return sfFtpResponse_Ptr; --////////////////////////////////////////////////////////// --/ @brief Log in using an anonymous account --/ --/ Logging in is mandatory after connecting to the server. --/ Users that are not logged in cannot perform any operation. --/ --/ @param ftp Ftp object --/ --/ @return Server response to the request --/ --////////////////////////////////////////////////////////// function loginAnonymous (ftp : sfFtp_Ptr) return sfFtpResponse_Ptr; --////////////////////////////////////////////////////////// --/ @brief Log in using a username and a password --/ --/ Logging in is mandatory after connecting to the server. --/ Users that are not logged in cannot perform any operation. --/ --/ @param ftp Ftp object --/ @param name User name --/ @param password Password --/ --/ @return Server response to the request --/ --////////////////////////////////////////////////////////// function login (ftp : sfFtp_Ptr; name : String; password : String) return sfFtpResponse_Ptr; --////////////////////////////////////////////////////////// --/ @brief Close the connection with the server --/ --/ @param ftp Ftp object --/ --/ @return Server response to the request --/ --////////////////////////////////////////////////////////// function disconnect (ftp : sfFtp_Ptr) return sfFtpResponse_Ptr; --////////////////////////////////////////////////////////// --/ @brief Send a null command to keep the connection alive --/ --/ This command is useful because the server may close the --/ connection automatically if no command is sent. --/ --/ @param ftp Ftp object --/ --/ @return Server response to the request --/ --////////////////////////////////////////////////////////// function keepAlive (ftp : sfFtp_Ptr) return sfFtpResponse_Ptr; --////////////////////////////////////////////////////////// --/ @brief Get the current working directory --/ --/ The working directory is the root path for subsequent --/ operations involving directories and/or filenames. --/ --/ @param ftp Ftp object --/ --/ @return Server response to the request --/ --////////////////////////////////////////////////////////// function getWorkingDirectory (ftp : sfFtp_Ptr) return sfFtpResponse_Ptr; --////////////////////////////////////////////////////////// --/ @brief Get the contents of the given directory --/ --/ This function retrieves the sub-directories and files --/ contained in the given directory. It is not recursive. --/ The @a directory parameter is relative to the current --/ working directory. --/ --/ @param ftp Ftp object --/ @param directory Directory to list --/ --/ @return Server response to the request --/ --////////////////////////////////////////////////////////// function getDirectoryListing (ftp : sfFtp_Ptr; directory : String) return sfFtpResponse_Ptr; --////////////////////////////////////////////////////////// --/ @brief Change the current working directory --/ --/ The new directory must be relative to the current one. --/ --/ @param ftp Ftp object --/ @param directory New working directory --/ --/ @return Server response to the request --/ --////////////////////////////////////////////////////////// function changeDirectory (ftp : sfFtp_Ptr; directory : String) return sfFtpResponse_Ptr; --////////////////////////////////////////////////////////// --/ @brief Go to the parent directory of the current one --/ --/ @param ftp Ftp object --/ --/ @return Server response to the request --/ --////////////////////////////////////////////////////////// function parentDirectory (ftp : sfFtp_Ptr) return sfFtpResponse_Ptr; --////////////////////////////////////////////////////////// --/ @brief Create a new directory --/ --/ The new directory is created as a child of the current --/ working directory. --/ --/ @param ftp Ftp object --/ @param name Name of the directory to create --/ --/ @return Server response to the request --/ --////////////////////////////////////////////////////////// function createDirectory (ftp : sfFtp_Ptr; name : String) return sfFtpResponse_Ptr; --////////////////////////////////////////////////////////// --/ @brief Remove an existing directory --/ --/ The directory to remove must be relative to the --/ current working directory. --/ Use this function with caution, the directory will --/ be removed permanently! --/ --/ @param ftp Ftp object --/ @param name Name of the directory to remove --/ --/ @return Server response to the request --/ --////////////////////////////////////////////////////////// function deleteDirectory (ftp : sfFtp_Ptr; name : String) return sfFtpResponse_Ptr; --////////////////////////////////////////////////////////// --/ @brief Rename an existing file --/ --/ The filenames must be relative to the current working --/ directory. --/ --/ @param ftp Ftp object --/ @param file File to rename --/ @param newName New name of the file --/ --/ @return Server response to the request --/ --////////////////////////////////////////////////////////// function renameFile (ftp : sfFtp_Ptr; file : String; newName : String) return sfFtpResponse_Ptr; --////////////////////////////////////////////////////////// --/ @brief Remove an existing file --/ --/ The file name must be relative to the current working --/ directory. --/ Use this function with caution, the file will be --/ removed permanently! --/ --/ @param ftp Ftp object --/ @param name File to remove --/ --/ @return Server response to the request --/ --////////////////////////////////////////////////////////// function deleteFile (ftp : sfFtp_Ptr; name : String) return sfFtpResponse_Ptr; --////////////////////////////////////////////////////////// --/ @brief Download a file from a FTP server --/ --/ The filename of the distant file is relative to the --/ current working directory of the server, and the local --/ destination path is relative to the current directory --/ of your application. --/ --/ @param ftp Ftp object --/ @param remoteFile Filename of the distant file to download --/ @param localPath Where to put to file on the local computer --/ @param mode Transfer mode --/ --/ @return Server response to the request --/ --////////////////////////////////////////////////////////// function download (ftp : sfFtp_Ptr; remoteFile : String; localPath : String; mode : sfFtpTransferMode) return sfFtpResponse_Ptr; --////////////////////////////////////////////////////////// --/ @brief Upload a file to a FTP server --/ --/ The name of the local file is relative to the current --/ working directory of your application, and the --/ remote path is relative to the current directory of the --/ FTP server. --/ --/ @param ftp Ftp object --/ @param localFile Path of the local file to upload --/ @param remotePath Where to put to file on the server --/ @param mode Transfer mode --/ @param append Pass sfTrue to append to or sfFalse to overwrite the remote file if it already exists --/ --/ @return Server response to the request --/ --////////////////////////////////////////////////////////// function upload (ftp : sfFtp_Ptr; localFile : String; remotePath : String; mode : sfFtpTransferMode; append : sfBool) return sfFtpResponse_Ptr; --////////////////////////////////////////////////////////// --/ @brief Send a command to the FTP server --/ --/ While the most often used commands are provided as --/ specific functions, this function can be used to send --/ any FTP command to the server. If the command requires --/ one or more parameters, they can be specified in --/ @a parameter. Otherwise you should pass NULL. --/ If the server returns information, you can extract it --/ from the response using sfResponse_getMessage(). --/ --/ @param ftp Ftp object --/ @param command Command to send --/ @param parameter Command parameter --/ --/ @return Server response to the request --/ --////////////////////////////////////////////////////////// function sendCommand (ftp : sfFtp_Ptr; command : String; parameter : String) return sfFtpResponse_Ptr; private pragma Convention (C, sfFtpTransferMode); pragma Import (C, create, "sfFtp_create"); pragma Import (C, destroy, "sfFtp_destroy"); pragma Import (C, connect, "sfFtp_connect"); pragma Import (C, loginAnonymous, "sfFtp_loginAnonymous"); pragma Import (C, disconnect, "sfFtp_disconnect"); pragma Import (C, keepAlive, "sfFtp_keepAlive"); pragma Import (C, getWorkingDirectory, "sfFtp_getWorkingDirectory"); pragma Import (C, getDirectoryListing, "sfFtp_getDirectoryListing"); pragma Import (C, parentDirectory, "sfFtp_parentDirectory"); end Sf.Network.Ftp;
------------------------------------------------------------------------------ -- -- -- GNAT RUNTIME COMPONENTS -- -- -- -- A D A . W I D E _ T E X T _ I O . G E N E R I C _ A U X -- -- -- -- B o d y -- -- -- -- $Revision$ -- -- -- Copyright (C) 1992-2000 Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 2, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING. If not, write -- -- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, -- -- MA 02111-1307, USA. -- -- -- -- As a special exception, if other files instantiate generics from this -- -- unit, or you link this unit with other files to produce an executable, -- -- this unit does not by itself cause the resulting executable to be -- -- covered by the GNU General Public License. This exception does not -- -- however invalidate any other reasons why the executable file might be -- -- covered by the GNU Public License. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ with Interfaces.C_Streams; use Interfaces.C_Streams; with System.File_IO; with System.File_Control_Block; package body Ada.Wide_Text_IO.Generic_Aux is package FIO renames System.File_IO; package FCB renames System.File_Control_Block; subtype AP is FCB.AFCB_Ptr; ------------------------ -- Check_End_Of_Field -- ------------------------ procedure Check_End_Of_Field (File : File_Type; Buf : String; Stop : Integer; Ptr : Integer; Width : Field) is begin if Ptr > Stop then return; elsif Width = 0 then raise Data_Error; else for J in Ptr .. Stop loop if not Is_Blank (Buf (J)) then raise Data_Error; end if; end loop; end if; end Check_End_Of_Field; ----------------------- -- Check_On_One_Line -- ----------------------- procedure Check_On_One_Line (File : File_Type; Length : Integer) is begin FIO.Check_Write_Status (AP (File)); if File.Line_Length /= 0 then if Count (Length) > File.Line_Length then raise Layout_Error; elsif File.Col + Count (Length) > File.Line_Length + 1 then New_Line (File); end if; end if; end Check_On_One_Line; -------------- -- Is_Blank -- -------------- function Is_Blank (C : Character) return Boolean is begin return C = ' ' or else C = ASCII.HT; end Is_Blank; ---------- -- Load -- ---------- procedure Load (File : File_Type; Buf : out String; Ptr : in out Integer; Char : Character; Loaded : out Boolean) is ch : int; begin if File.Before_Wide_Character then Loaded := False; return; else ch := Getc (File); if ch = Character'Pos (Char) then Store_Char (File, ch, Buf, Ptr); Loaded := True; else Ungetc (ch, File); Loaded := False; end if; end if; end Load; procedure Load (File : File_Type; Buf : out String; Ptr : in out Integer; Char : Character) is ch : int; begin if File.Before_Wide_Character then null; else ch := Getc (File); if ch = Character'Pos (Char) then Store_Char (File, ch, Buf, Ptr); else Ungetc (ch, File); end if; end if; end Load; procedure Load (File : File_Type; Buf : out String; Ptr : in out Integer; Char1 : Character; Char2 : Character; Loaded : out Boolean) is ch : int; begin if File.Before_Wide_Character then Loaded := False; return; else ch := Getc (File); if ch = Character'Pos (Char1) or else ch = Character'Pos (Char2) then Store_Char (File, ch, Buf, Ptr); Loaded := True; else Ungetc (ch, File); Loaded := False; end if; end if; end Load; procedure Load (File : File_Type; Buf : out String; Ptr : in out Integer; Char1 : Character; Char2 : Character) is ch : int; begin if File.Before_Wide_Character then null; else ch := Getc (File); if ch = Character'Pos (Char1) or else ch = Character'Pos (Char2) then Store_Char (File, ch, Buf, Ptr); else Ungetc (ch, File); end if; end if; end Load; ----------------- -- Load_Digits -- ----------------- procedure Load_Digits (File : File_Type; Buf : out String; Ptr : in out Integer; Loaded : out Boolean) is ch : int; After_Digit : Boolean; begin if File.Before_Wide_Character then Loaded := False; return; else ch := Getc (File); if ch not in Character'Pos ('0') .. Character'Pos ('9') then Loaded := False; else Loaded := True; After_Digit := True; loop Store_Char (File, ch, Buf, Ptr); ch := Getc (File); if ch in Character'Pos ('0') .. Character'Pos ('9') then After_Digit := True; elsif ch = Character'Pos ('_') and then After_Digit then After_Digit := False; else exit; end if; end loop; end if; Ungetc (ch, File); end if; end Load_Digits; procedure Load_Digits (File : File_Type; Buf : out String; Ptr : in out Integer) is ch : int; After_Digit : Boolean; begin if File.Before_Wide_Character then return; else ch := Getc (File); if ch in Character'Pos ('0') .. Character'Pos ('9') then After_Digit := True; loop Store_Char (File, ch, Buf, Ptr); ch := Getc (File); if ch in Character'Pos ('0') .. Character'Pos ('9') then After_Digit := True; elsif ch = Character'Pos ('_') and then After_Digit then After_Digit := False; else exit; end if; end loop; end if; Ungetc (ch, File); end if; end Load_Digits; -------------------------- -- Load_Extended_Digits -- -------------------------- procedure Load_Extended_Digits (File : File_Type; Buf : out String; Ptr : in out Integer; Loaded : out Boolean) is ch : int; After_Digit : Boolean := False; begin if File.Before_Wide_Character then Loaded := False; return; else Loaded := False; loop ch := Getc (File); if ch in Character'Pos ('0') .. Character'Pos ('9') or else ch in Character'Pos ('a') .. Character'Pos ('f') or else ch in Character'Pos ('A') .. Character'Pos ('F') then After_Digit := True; elsif ch = Character'Pos ('_') and then After_Digit then After_Digit := False; else exit; end if; Store_Char (File, ch, Buf, Ptr); Loaded := True; end loop; Ungetc (ch, File); end if; end Load_Extended_Digits; procedure Load_Extended_Digits (File : File_Type; Buf : out String; Ptr : in out Integer) is Junk : Boolean; begin Load_Extended_Digits (File, Buf, Ptr, Junk); end Load_Extended_Digits; --------------- -- Load_Skip -- --------------- procedure Load_Skip (File : File_Type) is C : Character; begin FIO.Check_Read_Status (AP (File)); -- We need to explicitly test for the case of being before a wide -- character (greater than 16#7F#). Since no such character can -- ever legitimately be a valid numeric character, we can -- immediately signal Data_Error. if File.Before_Wide_Character then raise Data_Error; end if; -- Otherwise loop till we find a non-blank character (note that as -- usual in Wide_Text_IO, blank includes horizontal tab). Note that -- Get_Character deals with Before_LM/Before_LM_PM flags appropriately. loop Get_Character (File, C); exit when not Is_Blank (C); end loop; Ungetc (Character'Pos (C), File); File.Col := File.Col - 1; end Load_Skip; ---------------- -- Load_Width -- ---------------- procedure Load_Width (File : File_Type; Width : Field; Buf : out String; Ptr : in out Integer) is ch : int; WC : Wide_Character; Bad_Wide_C : Boolean := False; -- Set True if one of the characters read is not in range of type -- Character. This is always a Data_Error, but we do not signal it -- right away, since we have to read the full number of characters. begin FIO.Check_Read_Status (AP (File)); -- If we are immediately before a line mark, then we have no characters. -- This is always a data error, so we may as well raise it right away. if File.Before_LM then raise Data_Error; else for J in 1 .. Width loop if File.Before_Wide_Character then Bad_Wide_C := True; Store_Char (File, 0, Buf, Ptr); File.Before_Wide_Character := False; else ch := Getc (File); if ch = EOF then exit; elsif ch = LM then Ungetc (ch, File); exit; else WC := Get_Wide_Char (Character'Val (ch), File); ch := Wide_Character'Pos (WC); if ch > 255 then Bad_Wide_C := True; ch := 0; end if; Store_Char (File, ch, Buf, Ptr); end if; end if; end loop; if Bad_Wide_C then raise Data_Error; end if; end if; end Load_Width; -------------- -- Put_Item -- -------------- procedure Put_Item (File : File_Type; Str : String) is begin Check_On_One_Line (File, Str'Length); for J in Str'Range loop Put (File, Wide_Character'Val (Character'Pos (Str (J)))); end loop; end Put_Item; ---------------- -- Store_Char -- ---------------- procedure Store_Char (File : File_Type; ch : Integer; Buf : out String; Ptr : in out Integer) is begin File.Col := File.Col + 1; if Ptr = Buf'Last then raise Data_Error; else Ptr := Ptr + 1; Buf (Ptr) := Character'Val (ch); end if; end Store_Char; ----------------- -- String_Skip -- ----------------- procedure String_Skip (Str : String; Ptr : out Integer) is begin Ptr := Str'First; loop if Ptr > Str'Last then raise End_Error; elsif not Is_Blank (Str (Ptr)) then return; else Ptr := Ptr + 1; end if; end loop; end String_Skip; ------------ -- Ungetc -- ------------ procedure Ungetc (ch : int; File : File_Type) is begin if ch /= EOF then if ungetc (ch, File.Stream) = EOF then raise Device_Error; end if; end if; end Ungetc; end Ada.Wide_Text_IO.Generic_Aux;
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Ada Modeling Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2011-2012, Vadim Godunko <vgodunko@gmail.com> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ -- This file is generated, don't edit it. ------------------------------------------------------------------------------ -- A use case is the specification of a set of actions performed by a system, -- which yields an observable result that is, typically, of value for one or -- more actors or other stakeholders of the system. ------------------------------------------------------------------------------ with AMF.UML.Behaviored_Classifiers; limited with AMF.UML.Classifiers.Collections; limited with AMF.UML.Extends.Collections; limited with AMF.UML.Extension_Points.Collections; limited with AMF.UML.Includes.Collections; limited with AMF.UML.Use_Cases.Collections; package AMF.UML.Use_Cases is pragma Preelaborate; type UML_Use_Case is limited interface and AMF.UML.Behaviored_Classifiers.UML_Behaviored_Classifier; type UML_Use_Case_Access is access all UML_Use_Case'Class; for UML_Use_Case_Access'Storage_Size use 0; not overriding function Get_Extend (Self : not null access constant UML_Use_Case) return AMF.UML.Extends.Collections.Set_Of_UML_Extend is abstract; -- Getter of UseCase::extend. -- -- References the Extend relationships owned by this use case. not overriding function Get_Extension_Point (Self : not null access constant UML_Use_Case) return AMF.UML.Extension_Points.Collections.Set_Of_UML_Extension_Point is abstract; -- Getter of UseCase::extensionPoint. -- -- References the ExtensionPoints owned by the use case. not overriding function Get_Include (Self : not null access constant UML_Use_Case) return AMF.UML.Includes.Collections.Set_Of_UML_Include is abstract; -- Getter of UseCase::include. -- -- References the Include relationships owned by this use case. not overriding function Get_Subject (Self : not null access constant UML_Use_Case) return AMF.UML.Classifiers.Collections.Set_Of_UML_Classifier is abstract; -- Getter of UseCase::subject. -- -- References the subjects to which this use case applies. The subject or -- its parts realize all the use cases that apply to this subject. Use -- cases need not be attached to any specific subject, however. The -- subject may, but need not, own the use cases that apply to it. not overriding function All_Included_Use_Cases (Self : not null access constant UML_Use_Case) return AMF.UML.Use_Cases.Collections.Set_Of_UML_Use_Case is abstract; -- Operation UseCase::allIncludedUseCases. -- -- The query allIncludedUseCases() returns the transitive closure of all -- use cases (directly or indirectly) included by this use case. end AMF.UML.Use_Cases;
------------------------------------------------------------------------------ -- -- -- GNAT ncurses Binding -- -- -- -- Terminal_Interface.Curses.Forms.Field_Types.IPV4_Address -- -- -- -- B O D Y -- -- -- ------------------------------------------------------------------------------ -- Copyright (c) 1998-2008,2009 Free Software Foundation, Inc. -- -- -- -- Permission is hereby granted, free of charge, to any person obtaining a -- -- copy of this software and associated documentation files (the -- -- "Software"), to deal in the Software without restriction, including -- -- without limitation the rights to use, copy, modify, merge, publish, -- -- distribute, distribute with modifications, sublicense, and/or sell -- -- copies of the Software, and to permit persons to whom the Software is -- -- furnished to do so, subject to the following conditions: -- -- -- -- The above copyright notice and this permission notice shall be included -- -- in all copies or substantial portions of the Software. -- -- -- -- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -- -- OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -- -- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -- -- IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -- -- DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -- -- OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR -- -- THE USE OR OTHER DEALINGS IN THE SOFTWARE. -- -- -- -- Except as contained in this notice, the name(s) of the above copyright -- -- holders shall not be used in advertising or otherwise to promote the -- -- sale, use or other dealings in this Software without prior written -- -- authorization. -- ------------------------------------------------------------------------------ -- Author: Juergen Pfeifer, 1996 -- Version Control: -- $Revision: 1.10 $ -- $Date: 2009/12/26 17:38:58 $ -- Binding Version 01.00 ------------------------------------------------------------------------------ with Terminal_Interface.Curses.Aux; use Terminal_Interface.Curses.Aux; package body Terminal_Interface.Curses.Forms.Field_Types.IPV4_Address is procedure Set_Field_Type (Fld : Field; Typ : Internet_V4_Address_Field) is C_IPV4_Field_Type : C_Field_Type; pragma Import (C, C_IPV4_Field_Type, "TYPE_IPV4"); function Set_Fld_Type (F : Field := Fld; Cft : C_Field_Type := C_IPV4_Field_Type) return C_Int; pragma Import (C, Set_Fld_Type, "set_field_type"); Res : Eti_Error; begin Res := Set_Fld_Type; if Res /= E_Ok then Eti_Exception (Res); end if; Wrap_Builtin (Fld, Typ); end Set_Field_Type; end Terminal_Interface.Curses.Forms.Field_Types.IPV4_Address;
------------------------------------------------------------------------------ -- -- -- 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 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. -- -- -- ------------------------------------------------------------------------------ pragma Restrictions (No_Elaboration_Code); package STM32.RCC is procedure AHB_Force_Reset with Inline; procedure AHB_Release_Reset with Inline; procedure APB1_Force_Reset with Inline; procedure APB1_Release_Reset with Inline; procedure APB2_Force_Reset with Inline; procedure APB2_Release_Reset with Inline; procedure APB3_Force_Reset with Inline; procedure APB3_Release_Reset with Inline; procedure APB4_Force_Reset with Inline; procedure APB4_Release_Reset with Inline; procedure Backup_Domain_Reset; -- Disable LSE clock and RTC and reset its configurations. --------------------------------------------------------------------------- -- Clock Configuration -------------------------------------------------- --------------------------------------------------------------------------- --------------- -- HSE Clock -- --------------- procedure Set_HSE_Clock (Enable : Boolean; Bypass : Boolean := False; Enable_CSS : Boolean := False) with Post => HSE_Clock_Enabled = Enable; function HSE_Clock_Enabled return Boolean; --------------- -- LSE Clock -- --------------- type HSE_Capability is (Lowest_Drive, Low_Drive, High_Drive, Highest_Drive) with Size => 2; procedure Set_LSE_Clock (Enable : Boolean; Bypass : Boolean := False; Enable_CSS : Boolean := False; Capability : HSE_Capability) with Post => LSE_Clock_Enabled = Enable; function LSE_Clock_Enabled return Boolean; --------------- -- HSI Clock -- --------------- type HSI_Prescaler is (HSI_DIV1, HSI_DIV2, HSI_DIV4, HSI_DIV8) with Size => 2; procedure Set_HSI_Clock (Enable : Boolean; Value : HSI_Prescaler) with Post => HSI_Clock_Enabled = Enable; -- The HSI clock can't be disabled if it is used directly (via SW mux) as -- system clock or if the HSI is selected as reference clock for PLL1 with -- PLL1 enabled (PLL1ON bit set to ‘1’). function HSI_Clock_Enabled return Boolean; ----------------- -- HSI48 Clock -- ----------------- procedure Set_HSI48_Clock (Enable : Boolean) with Post => HSI48_Clock_Enabled = Enable; function HSI48_Clock_Enabled return Boolean; --------------- -- LSI Clock -- --------------- procedure Set_LSI_Clock (Enable : Boolean) with Post => LSI_Clock_Enabled = Enable; function LSI_Clock_Enabled return Boolean; --------------- -- CSI Clock -- --------------- procedure Set_CSI_Clock (Enable : Boolean) with Post => CSI_Clock_Enabled = Enable; function CSI_Clock_Enabled return Boolean; ------------------ -- System Clock -- ------------------ type SYSCLK_Clock_Source is (SYSCLK_SRC_HSI, SYSCLK_SRC_CSI, SYSCLK_SRC_HSE, SYSCLK_SRC_PLL1) with Size => 3; for SYSCLK_Clock_Source use (SYSCLK_SRC_HSI => 2#000#, SYSCLK_SRC_CSI => 2#001#, SYSCLK_SRC_HSE => 2#010#, SYSCLK_SRC_PLL1 => 2#011#); procedure Configure_System_Clock_Mux (Source : SYSCLK_Clock_Source); ------------------------------- -- Domains 1, 2 and 3 Clocks -- ------------------------------- type AHB_Prescaler_Enum is (DIV_2, DIV_4, DIV_8, DIV_16, DIV_64, DIV_128, DIV_256, DIV_512) with Size => 3; type AHB_Prescaler is record Enable : Boolean := False; Value : AHB_Prescaler_Enum := AHB_Prescaler_Enum'First; end record with Size => 4; for AHB_Prescaler use record Enable at 0 range 3 .. 3; Value at 0 range 0 .. 2; end record; type AHB_Clock_Range is (AHB_1, AHB_2); procedure Configure_AHB_Clock_Prescaler (Bus : AHB_Clock_Range; Value : AHB_Prescaler); -- The AHB1 clock bus is the CPU clock selected by the D1CPRE prescaler. -- The AHB2 clock bus is the AXI, AHB1 and AHB2 peripheral clock selected -- by the HPRE prescaler. Example to create a variable: -- AHB_PRE : AHB_Prescaler := (Enable => True, Value => DIV2); type APB_Prescaler_Enum is (DIV_2, DIV_4, DIV_8, DIV_16) with Size => 2; type APB_Prescaler is record Enable : Boolean; Value : APB_Prescaler_Enum := APB_Prescaler_Enum'First; end record with Size => 3; for APB_Prescaler use record Enable at 0 range 2 .. 2; Value at 0 range 0 .. 1; end record; type APB_Clock_Range is (APB_1, APB_2, APB_3, APB_4); procedure Configure_APB_Clock_Prescaler (Bus : APB_Clock_Range; Value : APB_Prescaler); -- The APB1 clock bus is the APB1 peripheral clock selected by the D2PPRE1 -- prescaler. -- The APB2 clock bus is the APB2 peripheral clock selected by the D2PPRE2 -- prescaler. -- The APB3 clock bus is the APB3 peripheral clock selected by the D1PPRE -- prescaler. -- The APB4 clock bus is the APB4 peripheral clock selected by the D3PPRE -- prescaler. Example to create a variable: -- APB_PRE : APB_Prescaler := (Enable => True, Value => DIV_2); ---------------- -- PLL Clocks -- ---------------- type PLL_Clock_Source is (PLL_SRC_HSI, PLL_SRC_CSI, PLL_SRC_HSE) with Size => 2; for PLL_Clock_Source use (PLL_SRC_HSI => 2#00#, PLL_SRC_CSI => 2#01#, PLL_SRC_HSE => 2#10#); procedure Configure_PLL_Source_Mux (Source : PLL_Clock_Source); type PLL_Range is (PLL_1, PLL_2, PLL_3); subtype PLLM_Range is Integer range 1 .. 63; subtype PLLN_Range is Integer range 4 .. 512; subtype PLLP_Range is Integer range 1 .. 128; -- PLL1P only even numbers subtype PLLQ_Range is Integer range 1 .. 128; subtype PLLR_Range is Integer range 1 .. 128; type PLL_Input_Frequency is (Clock_1_To_2MHz, Clock_2_To_4MHz, Clock_4_To_8MHz, Clock_8_To_16MHz); type PLL_VCO_Selector is (Wide_192_To_836MHz, Medium_150_To_420MHz); procedure Configure_PLL (PLL : PLL_Range; Enable : Boolean; Fractional_Mode : Boolean; Fraction : UInt13 := 16#0#; PLLM : PLLM_Range; PLLN : PLLN_Range; PLLP : PLLP_Range; Enable_Output_P : Boolean; PLLQ : PLLQ_Range; Enable_Output_Q : Boolean; PLLR : PLLR_Range; Enable_Output_R : Boolean; Input : PLL_Input_Frequency; VCO : PLL_VCO_Selector) with Pre => (if PLL = PLL_1 then PLLP rem 2 = 0); -- Configure PLL according with RM0433 rev 7 Chapter 8.5.5 section "PLL -- initialization phase pg 345. If the PLL will operate in fractional mode -- turn on the Fractional_Mode and set the corret value of the fractional -- divider in the Sigma_Delta modulator. procedure Configure_PLL_Fraction (PLL : PLL_Range; Fraction : UInt13); -- Tune the frequency in fractional mode on-the-fly. --------------- -- PER Clock -- --------------- type PER_Clock_Source is (PER_SRC_HSI, PER_SRC_CSI, PER_SRC_HSE) with Size => 2; for PER_Clock_Source use (PER_SRC_HSI => 2#00#, PER_SRC_CSI => 2#01#, PER_SRC_HSE => 2#10#); procedure Configure_PER_Source_Mux (Source : PER_Clock_Source); --------------- -- TIM Clock -- --------------- type TIM_Source_Mode is (Factor_2, Factor_4); procedure Configure_TIM_Source_Mode (Source : TIM_Source_Mode); -- Select the clock frequency of all the timers connected to APB1 and APB2 -- domains. -- When 0 (Factor_2), APB1 and APB2 Timer clocks are equal to APB1 and APB2 -- Peripheral clocks when D2PPREx is 1 or 2, else they are equal to 2x APB1 -- and APB2. -- When 1 (Factor_4), APB1 and APB2 Timer clocks are equal to APB1 and APB2 -- Peripheral clocks when D2PPREx is 1, 2 or 4, else they are equal to 4x -- APB1 and APB2. ------------------- -- Output Clocks -- ------------------- type MCO_Clock_Source is (Option_1, Option_2, HSE, Option_4, Option_5, Option_6) with Size => 3; -- List of MCO sources -- MCO1 MCO2 -- Option_1 HSI SYSCLK -- Option_2 LSE PLL2P -- Option_4 PLL1Q PLL1P -- Option_5 HSI48 CSI -- Option_6 LSI 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 MCO_Range is (MCO_1, MCO_2); procedure Configure_MCO_Output_Clock (MCO : MCO_Range; Source : MCO_Clock_Source; Value : MCO_Prescaler) with Pre => (if MCO = MCO_1 then Source /= Option_6); -- Select the source for micro-controller clock output. ------------------ -- Flash Memory -- ------------------ -- Flash wait states type FLASH_Wait_State is (FWS0, FWS1, FWS2, FWS3, FWS4) with Size => 4; procedure Set_FLASH_Latency (Latency : FLASH_Wait_State); -- 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 ------------------- -- VCORE Scaling -- ------------------- 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#); procedure Set_VCORE_Scaling (Scale : VCORE_Scaling_Selection); procedure PWR_Overdrive_Enable; -- The system maximum frequency can be reached by boosting the voltage -- scaling level to VOS0. This is done through the ODEN bit in the -- SYSCFG_PWRCR register, after configuring level VOS1. -- See RM0433 ver 7 pg. 277 chapter 6.6.2 for this sequence. end STM32.RCC;
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Ada Modeling Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2011-2012, Vadim Godunko <vgodunko@gmail.com> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ -- This file is generated, don't edit it. ------------------------------------------------------------------------------ with AMF.Generic_Collections; package AMF.Standard_Profile_L2.Metaclasses.Collections is pragma Preelaborate; package Standard_Profile_L2_Metaclass_Collections is new AMF.Generic_Collections (Standard_Profile_L2_Metaclass, Standard_Profile_L2_Metaclass_Access); type Set_Of_Standard_Profile_L2_Metaclass is new Standard_Profile_L2_Metaclass_Collections.Set with null record; Empty_Set_Of_Standard_Profile_L2_Metaclass : constant Set_Of_Standard_Profile_L2_Metaclass; type Ordered_Set_Of_Standard_Profile_L2_Metaclass is new Standard_Profile_L2_Metaclass_Collections.Ordered_Set with null record; Empty_Ordered_Set_Of_Standard_Profile_L2_Metaclass : constant Ordered_Set_Of_Standard_Profile_L2_Metaclass; type Bag_Of_Standard_Profile_L2_Metaclass is new Standard_Profile_L2_Metaclass_Collections.Bag with null record; Empty_Bag_Of_Standard_Profile_L2_Metaclass : constant Bag_Of_Standard_Profile_L2_Metaclass; type Sequence_Of_Standard_Profile_L2_Metaclass is new Standard_Profile_L2_Metaclass_Collections.Sequence with null record; Empty_Sequence_Of_Standard_Profile_L2_Metaclass : constant Sequence_Of_Standard_Profile_L2_Metaclass; private Empty_Set_Of_Standard_Profile_L2_Metaclass : constant Set_Of_Standard_Profile_L2_Metaclass := (Standard_Profile_L2_Metaclass_Collections.Set with null record); Empty_Ordered_Set_Of_Standard_Profile_L2_Metaclass : constant Ordered_Set_Of_Standard_Profile_L2_Metaclass := (Standard_Profile_L2_Metaclass_Collections.Ordered_Set with null record); Empty_Bag_Of_Standard_Profile_L2_Metaclass : constant Bag_Of_Standard_Profile_L2_Metaclass := (Standard_Profile_L2_Metaclass_Collections.Bag with null record); Empty_Sequence_Of_Standard_Profile_L2_Metaclass : constant Sequence_Of_Standard_Profile_L2_Metaclass := (Standard_Profile_L2_Metaclass_Collections.Sequence with null record); end AMF.Standard_Profile_L2.Metaclasses.Collections;
------------------------------------------------------------------------------ -- -- -- File: -- -- formatted_output-float_output.ads -- -- -- -- Description: -- -- Formatted_Output.Float_Output generic package specification, -- -- contains prototypes of functions that supports formatted output of -- -- floating point types -- -- -- -- Author: -- -- Eugene Nonko, cm@liceum.secna.ru -- -- -- -- Revision history: -- -- 28/01/99 - original -- -- -- ------------------------------------------------------------------------------ generic type Item_Type is digits <>; package Formatted_Output.Float_Output is function "&" (Fmt : Format_Type; Value : Item_Type) return Format_Type; -- Replaces leftmost formatting sequence in Fmt with formatted -- Value image, then returns Fmt. Raises exception Format_Error -- when invalid formatting sequence is found or no formatting -- sequence found at all end Formatted_Output.Float_Output;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- S Y S T E M . I O -- -- -- -- 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.IO is Current_Out : File_Type := Stdout; pragma Atomic (Current_Out); -- Current output file (modified by Set_Output) -------------- -- New_Line -- -------------- procedure New_Line (Spacing : Positive := 1) is begin for J in 1 .. Spacing loop Put (ASCII.LF); end loop; end New_Line; --------- -- Put -- --------- procedure Put (X : Integer) is procedure Put_Int (X : Integer); pragma Import (C, Put_Int, "put_int"); procedure Put_Int_Err (X : Integer); pragma Import (C, Put_Int_Err, "put_int_stderr"); begin case Current_Out is when Stdout => Put_Int (X); when Stderr => Put_Int_Err (X); end case; end Put; procedure Put (C : Character) is procedure Put_Char (C : Integer); pragma Import (C, Put_Char, "put_char"); procedure Put_Char_Stderr (C : Integer); pragma Import (C, Put_Char_Stderr, "put_char_stderr"); begin case Current_Out is when Stdout => Put_Char (Character'Pos (C)); when Stderr => Put_Char_Stderr (Character'Pos (C)); end case; end Put; procedure Put (S : String) is begin for J in S'Range loop Put (S (J)); end loop; end Put; -------------- -- Put_Line -- -------------- procedure Put_Line (S : String) is begin Put (S); New_Line; end Put_Line; --------------------- -- Standard_Output -- --------------------- function Standard_Output return File_Type is begin return Stdout; end Standard_Output; -------------------- -- Standard_Error -- -------------------- function Standard_Error return File_Type is begin return Stderr; end Standard_Error; ---------------- -- Set_Output -- ---------------- procedure Set_Output (File : File_Type) is begin Current_Out := File; end Set_Output; end System.IO;
-- { dg-do run } procedure Pack17 is type Bitmap_T is array (Natural range <>) of Boolean; pragma Pack (Bitmap_T); type Uint8 is range 0 .. 2 ** 8 - 1; for Uint8'Size use 8; type Record_With_QImode_Variants (D : Boolean) is record C_Filler : Bitmap_T (1..7); C_Map : Bitmap_T (1..3); case D is when False => F_Bit : Boolean; F_Filler : Bitmap_T (1..7); when True => T_Int : Uint8; end case; end record; pragma Pack (Record_With_QImode_Variants); procedure Fill (R : out Record_With_QImode_Variants) is begin R.C_Filler := (True, False, True, False, True, False, True); R.C_Map := (True, False, True); R.T_Int := 17; end; RT : Record_With_QImode_Variants (D => True); begin Fill (RT); if RT.T_Int /= 17 then raise Program_Error; end if; end;
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Ada Modeling Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2011-2012, Vadim Godunko <vgodunko@gmail.com> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ -- This file is generated, don't edit it. ------------------------------------------------------------------------------ with AMF.Elements.Generic_Hash; function AMF.CMOF.Properties.Hash is new AMF.Elements.Generic_Hash (CMOF_Property, CMOF_Property_Access);
with SubmarineSubSystem; use SubmarineSubSystem; with Ada.Text_IO; use Ada.Text_IO; procedure Main is begin StartSubmarine; Put_Line("Nuclear Submarine is: "); Put_Line(NuclearSubmarine.GoodToGo'Image); Put_Line("Try Starting Submarine"); StartSubmarine; Put_Line("Now Nuclear Submarine is: "); Put_Line(NuclearSubmarine.GoodToGo'Image); Put_Line("Can we Fire? "); SubmarineAction; Put_Line(NuclearSubmarine.OpTest'Image); Put_Line("Need to Close Both Doors to be operational: "); Put_Line("Airlock Door one is: "); Put_Line(NuclearSubmarine.ClosingOne'Image); Put_Line("Airlock Door two is: "); Put_Line(NuclearSubmarine.ClosingTwo'Image); Put_Line("TEST FOR BOTH DOORS CAN'T BE OPEN!"); D2Open; Put_Line("Airlock Door one is: "); Put_Line(NuclearSubmarine.ClosingOne'Image); Put_Line("Airlock Door two is: "); Put_Line(NuclearSubmarine.ClosingTwo'Image); Put_Line("Airlock Door two cannot be Open if Airlock Door one is Open"); Put_Line("NOW TEST DOOR 1 & 2 OPEN/CLOSE IN VICE VERSA!"); D1Close; D2Close; D2Open; D1Open; Put_Line("Airlock Door one is: "); Put_Line(NuclearSubmarine.ClosingOne'Image); Put_Line("Airlock Door two is: "); Put_Line(NuclearSubmarine.ClosingTwo'Image); Put_Line("Airlock Door one cannot be Open if Airlock Door two is Open"); Put_Line("END OF TEST"); Put_Line("Closing Airlock Door one: "); D1Close; Put_Line("Airlock Door one is: "); Put_Line(NuclearSubmarine.ClosingOne'Image); Put_Line("Closing Airlock Door two: "); D2Close; Put_Line("Airlock Door two is: "); Put_Line(NuclearSubmarine.ClosingTwo'Image); Put_Line("Is Nuclear Submarin operational yet: "); StartSubmarine; Put_Line(NuclearSubmarine.GoodToGo'Image); Put_Line("Can we Fire?"); SubmarineAction; Put_Line(NuclearSubmarine.OpTest'Image); Put_Line("Need to Lock Both Doors to be operational: "); Put_Line("Priming for Airlock Door locking: "); Put_Line("Airlock Door one lock is: "); Put_Line(NuclearSubmarine.LockingOne'Image); Put_Line("Airlock Door two lock is: "); Put_Line(NuclearSubmarine.LockingTwo'Image); Put_Line("Initiate Locking: "); D1Lock; D2Lock; Put_Line("Airlock Door one is: "); Put_Line(NuclearSubmarine.LockingOne'Image); Put_Line("Airlock Door two is: "); Put_Line(NuclearSubmarine.LockingTwo'Image); Put_Line("Try Opening Airlock Door one: "); D1Open; Put_Line("Status of Airlock Door one: "); Put_Line(NuclearSubmarine.ClosingOne'Image); Put_Line(NuclearSubmarine.LockingOne'Image); Put_Line("Lock secure!"); Put_Line("Try Opening Airlock Door Two: "); D2Open; Put_Line("Status of Airlock Door Two: "); Put_Line(NuclearSubmarine.ClosingTwo'Image); Put_Line(NuclearSubmarine.LockingTwo'Image); Put_Line("Lock secure!"); Put_Line("Is Nuclear Submarine Operational: "); StartSubmarine; Put_Line(NuclearSubmarine.GoodToGo'Image); Put_Line("Can we Fire?"); SubmarineAction; Put_Line(NuclearSubmarine.OpTest'Image); Put_Line("SUBMARINE IS NOW OPERATIONAL TO TEST ALL SYSTEMS!"); Put_Line(""); Put_Line(""); Put_Line(""); Put_Line("DIVE AND DEPTH CHECK TEST!"); Put_Line("Ready to Dive, Commence Divining"); DiveOrNot; Put_Line(NuclearSubmarine.DDive'Image); Put_Line("State of Dive?"); DepthMeterCheck; Put_Line(NuclearSubmarine.DStage'Image); Put_Line("Dive by 3!"); ChangeDepth; Put_Line("Depth is now: "); Put_Line(NuclearSubmarine.DLevel'Image); Put("Submarine in Okay Depth Stage? "); -- Displays Submarine depth state while DepthMeterCheck; -- This line is printed... Don't know why. Put_Line(NuclearSubmarine.DStage'Image); Put_Line("Dive by 3!"); ChangeDepth; Put_Line("Depth is now: "); Put_Line(NuclearSubmarine.DLevel'Image); Put("Submarine in Okay Depth Stage? "); DepthMeterCheck; Put_Line(NuclearSubmarine.DStage'Image); Put_Line("Dive by 3!"); ChangeDepth; Put_Line("Depth is now: "); Put_Line(NuclearSubmarine.DLevel'Image); Put("Submarine in Okay Depth Stage? "); DepthMeterCheck; Put_Line(NuclearSubmarine.DStage'Image); Put_Line("Dive by 3!"); ChangeDepth; Put_Line("Depth is now: "); Put_Line(NuclearSubmarine.DLevel'Image); Put("Submarine in Okay Depth Stage? "); DepthMeterCheck; Put_Line(NuclearSubmarine.DStage'Image); Put_Line("Cannot Dive any deeper!"); Put_Line("Taking Submarine back to Surface"); Resurface; Put_Line("Submarine is: "); Put_Line(NuclearSubmarine.DDive'Image); Put_Line("Submarine Depth level is: "); Put_Line(NuclearSubmarine.DLevel'Image); Put_Line("TEST IF SUBMARINE CAN CHANGE DEPTH WHILE SURFACED"); ChangeDepth; ChangeDepth; ChangeDepth; Put_Line(NuclearSubmarine.DLevel'Image); Put_Line("IT CANNOT! TEST OVER"); Put_Line(""); Put_Line(""); Put_Line(""); Put_Line("DIVE AND USE OXYGEN TEST"); Put_Line("Submarine is: "); Put_Line(NuclearSubmarine.DDive'Image); Put_Line("Dive Submarine!"); DiveOrNot; Put_Line("Submarine is: "); Put_Line(NuclearSubmarine.DDive'Image); Put_Line("Submarine Oxygen Reserves are: "); Put_Line(NuclearSubmarine.OTank'Image); Put_Line("State of Oxygen Tank is "); OxygenReserveCheck; Put_Line(NuclearSubmarine.OState'Image); Put_Line("Use Oxygen: "); ConsumeOxygen; Put_Line("Submarine Oxygen Reserves are: "); Put_Line(NuclearSubmarine.OTank'Image); Put_Line("State of Oxygen Tank is "); OxygenReserveCheck; Put_Line(NuclearSubmarine.OState'Image); Put_Line("Use Oxygen: "); ConsumeOxygen; Put_Line("Submarine Oxygen Reserves are: "); Put_Line(NuclearSubmarine.OTank'Image); Put_Line("State of Oxygen Tank is "); OxygenReserveCheck; Put_Line(NuclearSubmarine.OState'Image); Put_Line("Use Oxygen: "); ConsumeOxygen; Put_Line("Submarine Oxygen Reserves are: "); Put_Line(NuclearSubmarine.OTank'Image); Put_Line("State of Oxygen Tank is "); OxygenReserveCheck; Put_Line(NuclearSubmarine.OState'Image); Put_Line("Use Oxygen: "); ConsumeOxygen; Put_Line("Submarine Oxygen Reserves are: "); Put_Line(NuclearSubmarine.OTank'Image); Put_Line("State of Oxygen Tank is "); OxygenReserveCheck; Put_Line(NuclearSubmarine.OState'Image); Put_Line("Use Oxygen: "); ConsumeOxygen; Put_Line("Submarine Oxygen Reserves are: "); Put_Line(NuclearSubmarine.OTank'Image); Put_Line("State of Oxygen Tank is "); OxygenReserveCheck; Put_Line(NuclearSubmarine.OState'Image); Put_Line("Use Oxygen: "); ConsumeOxygen; Put_Line("Submarine Oxygen Reserves are: "); Put_Line(NuclearSubmarine.OTank'Image); Put_Line("State of Oxygen Tank is "); OxygenReserveCheck; Put_Line(NuclearSubmarine.OState'Image); Put_Line("Use Oxygen: "); ConsumeOxygen; Put_Line("Submarine Oxygen Reserves are: "); Put_Line(NuclearSubmarine.OTank'Image); Put_Line("State of Oxygen Tank is "); OxygenReserveCheck; Put_Line(NuclearSubmarine.OState'Image); Put_Line("Use Oxygen: "); ConsumeOxygen; Put_Line("Submarine Oxygen Reserves are: "); Put_Line(NuclearSubmarine.OTank'Image); Put_Line("State of Oxygen Tank is "); OxygenReserveCheck; Put_Line(NuclearSubmarine.OState'Image); Put_Line("Use Oxygen: "); ConsumeOxygen; Put_Line("Submarine Oxygen Reserves are: "); Put_Line(NuclearSubmarine.OTank'Image); Put_Line("State of Oxygen Tank is "); OxygenReserveCheck; Put_Line(NuclearSubmarine.OState'Image); Put_Line("Use Oxygen: "); ConsumeOxygen; Put_Line("Submarine Oxygen Reserves are: "); Put_Line(NuclearSubmarine.OTank'Image); Put_Line("State of Oxygen Tank is "); OxygenReserveCheck; Put_Line(NuclearSubmarine.OState'Image); Put_Line("Use Oxygen: "); ConsumeOxygen; Put_Line("Is Submarine defently Surfaced? "); Put_Line(NuclearSubmarine.DDive'Image); Put_Line("Check if Oxygen Reserves have been restored by resurficing: "); Put_Line(NuclearSubmarine.OTank'Image); Put_Line("Can Oxygen be consumed while surfaced? "); ConsumeOxygen; Put_Line(NuclearSubmarine.OTank'Image); Put_Line("No it cannot "); Put_Line("THIS ENDS TESTING FOR OXYGEN SYSTEM!"); Put_Line(""); Put_Line(""); Put_Line(""); Put_Line("BEGIN TESTING REACTOR OVERHEATING SYSTEMS"); Put_Line("Submarin must Dive"); DiveOrNot; Put_Line(NuclearSubmarine.DDive'Image); Put_Line("Overheat Reactor: "); ReactorOverheatRoutine; Put_Line("Submarine state is still: "); Put_Line(NuclearSubmarine.RTemp'Image); Put_Line("Can we dive?"); DiveOrNot; Put_Line(NuclearSubmarine.DDive'Image); Put_Line("Submarine cannot diver because reactor is still: "); Put_Line(NuclearSubmarine.RTemp'Image); Put_Line("Intiate Cooling of the reactor: "); CoolReactor; Put_Line("Reactor is now: "); Put_Line(NuclearSubmarine.RTemp'Image); Put_Line("Can we dive?"); DiveOrNot; Put_Line(NuclearSubmarine.DDive'Image); Put_Line("THIS ENDS TESTING FOR REACTOR SUBSYSTEMS"); Put_Line(""); Put_Line(""); Put_Line(""); Put_Line("BEGIN TESTING TORPEDOES SYSTEM!"); Put_Line("Submariner: Errr... Admiral? We don't have any torpedoes. Or tubes for that matter."); Put_Line("The Admiral looks deeply into the submariner's eyes, only witnessing the sheer shock of a submarine having no torpedo systems"); Put_Line("Admiral: ....Bugger!"); Put_Line(""); Put_Line(""); Put_Line(""); Put_Line("ALL FEATURES HAVE NOW BEEN TESTED! ENDING PROGRAM!"); Put_Line(""); end Main;
package Natools.S_Expressions.Printers.Pretty.Config.Token_Opt is pragma Preelaborate; function Hash (S : String) return Natural; end Natools.S_Expressions.Printers.Pretty.Config.Token_Opt;
with Ada.Text_IO; with Ada.Exceptions; with AdaBaseXClient; use Ada.Exceptions; use AdaBaseXClient; procedure ExampleAdd is begin if (Connect ("localhost", 1_984) = False) then Ada.Text_IO.Put_Line ("Connect failed."); return; else if (Authenticate ("admin", "admin") = False) then Ada.Text_IO.Put_Line ("Authenticate failed."); Close; return; end if; end if; declare Response : String := Execute ("create db database"); begin Ada.Text_IO.Put_Line (Response); end; declare Response : String := Add ("world/World.xml", "<x>Hello World!</x>"); begin Ada.Text_IO.Put_Line (Response); end; declare Response : String := Add ("Universe.xml", "<x>Hello Universe!</x>"); begin Ada.Text_IO.Put_Line (Response); end; declare Response : String := Execute ("xquery /"); begin Ada.Text_IO.Put_Line (Response); end; declare Response : String := Execute ("drop db database"); begin Ada.Text_IO.Put_Line (Response); end; Close; exception when Error : BaseXException => Ada.Text_IO.Put ("Exception: "); Ada.Text_IO.Put_Line (Exception_Name (Error)); Ada.Text_IO.Put (Exception_Message (Error)); end ExampleAdd;
------------------------------------------------------------------------------ -- -- -- GNAT LIBRARY COMPONENTS -- -- -- -- A D A . S T R I N G S . F I X E D . H A S H -- -- -- -- S p e c -- -- -- -- This specification is adapted from the Ada Reference Manual for use with -- -- GNAT. In accordance with the copyright of that document, you can freely -- -- copy and modify this specification, provided that if you redistribute a -- -- modified version, any changes that you have made are clearly indicated. -- -- -- ------------------------------------------------------------------------------ with Ada.Containers, Ada.Strings.Hash; function Ada.Strings.Fixed.Hash (Key : String) return Containers.Hash_Type renames Ada.Strings.Hash; pragma Pure (Ada.Strings.Fixed.Hash);
----------------------------------------------------------------------- -- keystore-passwords-files -- File based password provider -- Copyright (C) 2019 Stephane Carrez -- Written by Stephane Carrez (Stephane.Carrez@gmail.com) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- with Keystore.Passwords.Keys; package Keystore.Passwords.Files is MAX_FILE_SIZE : constant := 1024; DEFAULT_KEY_FILE_LENGTH : constant := 32 + 16 + 32; -- Create a password provider that reads the file to build the password. -- The file must have the mode rw------- (600) and its owning directory -- the mode rwx------ (700). The Bad_Password exception is raised if -- these rules are not verified. function Create (Path : in String) return Provider_Access; -- Create a key provider that reads the file. The file is split in three parts -- the key, the IV, the signature which are extracted by using `Get_Keys`. function Create (Path : in String) return Keys.Key_Provider_Access; -- Generate a file that contains the keys. Keys are generated using a random generator. -- The file is created with the mode rw------- (600) and the owning directory is forced -- to the mode rwx------ (700). function Generate (Path : in String; Length : in Key_Length := DEFAULT_KEY_FILE_LENGTH) return Keys.Key_Provider_Access; end Keystore.Passwords.Files;
-- Copyright 2013-2019 Free Software Foundation, Inc. -- -- This program is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- the Free Software Foundation; either version 3 of the License, or -- (at your option) any later version. -- -- This program is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- GNU General Public License for more details. -- -- You should have received a copy of the GNU General Public License -- along with this program. If not, see <http://www.gnu.org/licenses/>. with IO; use IO; package body Callee is procedure Increment (Val : in out Float; Msg: String) is begin if Val > 200.0 then Put_Line (Msg); end if; Val := Val + 1.0; end Increment; end Callee;
-- part of OpenGLAda, (c) 2017 Felix Krause -- released under the terms of the MIT license, see the file "COPYING" with Interfaces.C.Strings; with Glfw.API; package body Glfw.Windows.Clipboard is function Get (Object : not null access Window'Class) return String is use type Interfaces.C.Strings.chars_ptr; Raw : constant Interfaces.C.Strings.chars_ptr := API.Get_Clipboard_String (Object.Handle); begin if Raw = Interfaces.C.Strings.Null_Ptr then raise Operation_Exception with "Could not get clipboard string"; end if; return Interfaces.C.Strings.Value (Raw); end Get; procedure Set (Object : not null access Window'Class; Value : String) is begin API.Set_Clipboard_String (Object.Handle, Interfaces.C.To_C (Value)); end Set; end Glfw.Windows.Clipboard;
-- CE3704D.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 INTEGER_IO GET READS AT MOST WIDTH CHARACTERS -- OR UP TO THE NEXT TERMINATOR; INCLUDING LEADING BLANKS -- AND HORIZONTAL TABULATION CHARACTERS, WHEN WIDTH IS -- NONZERO. -- CHECK THAT INPUT TERMINATES WHEN A LINE TERMINATOR IS -- ENCOUNTERED AND THAT DATA_ERROR IS RAISED IF THE DATA -- READ IS INVALID. -- APPLICABILITY CRITERIA: -- THIS TEST IS APPLICABLE ONLY TO IMPLEMENTATIONS WHICH -- SUPPORT TEXT FILES. -- HISTORY: -- SPS 10/04/82 -- VKG 01/12/83 -- SPS 02/08/83 -- JBG 02/22/84 CHANGED TO .ADA TEST -- RJW 11/04/86 REVISED TEST TO OUTPUT A NON_APPLICABLE -- RESULT WHEN FILES ARE NOT SUPPORTED. -- DWC 09/09/87 ADDED CASES FOR TABS, REMOVED UNNECESSARY -- CODE, AND CHECKED FOR USE_ERROR ON DELETE. WITH REPORT; USE REPORT; WITH TEXT_IO; USE TEXT_IO; PROCEDURE CE3704D IS INCOMPLETE : EXCEPTION; BEGIN TEST ("CE3704D", "CHECK THAT INTEGER_IO GET READS AT MOST " & "WIDTH CHARACTERS OR UP TO THE NEXT " & "TERMINATOR; INCLUDING LEADING BLANKS AND " & "HORIZONTAL TABULATION CHARACTERS, WHEN WIDTH " & "IS NONZERO"); DECLARE FT : FILE_TYPE; X : INTEGER; PACKAGE IIO IS NEW INTEGER_IO (INTEGER); USE IIO; BEGIN -- CREATE AND INITIALIZE FILE BEGIN CREATE (FT, OUT_FILE, LEGAL_FILE_NAME); EXCEPTION WHEN USE_ERROR => NOT_APPLICABLE ("USE_ERROR RAISED; TEXT CREATE " & "WITH OUT_FILE MODE"); RAISE INCOMPLETE; WHEN NAME_ERROR => NOT_APPLICABLE ("NAME_ERROR RAISED; TEXT CREATE " & "WITH OUT_FILE MODE"); RAISE INCOMPLETE; END; PUT (FT, " 123"); NEW_LINE (FT); PUT (FT, "-5678"); NEW_LINE (FT); PUT (FT, " "); NEW_PAGE (FT); PUT (FT, ASCII.HT & "9"); NEW_PAGE (FT); CLOSE (FT); BEGIN OPEN (FT, IN_FILE, LEGAL_FILE_NAME); EXCEPTION WHEN USE_ERROR => NOT_APPLICABLE ("USE_ERROR RAISED; TEXT OPEN " & "WITH IN_FILE MODE"); RAISE INCOMPLETE; END; -- BEGIN TEST GET (FT, X, 5); IF X /= IDENT_INT (123) THEN FAILED ("WIDTH CHARACTERS NOT READ - 1"); ELSE BEGIN GET (FT, X, 2); FAILED ("DATA_ERROR NOT RAISED - 1"); EXCEPTION WHEN DATA_ERROR => NULL; WHEN OTHERS => FAILED ("WRONG EXCEPTION RAISED -1"); END; SKIP_LINE (FT); GET (FT, X, 6); IF X /= IDENT_INT (-5678) THEN FAILED ("GET WITH WIDTH " & "INCORRECT - 2"); ELSE BEGIN GET (FT, X, 2); FAILED ("DATA_ERROR NOT RAISED - 2"); EXCEPTION WHEN DATA_ERROR => NULL; WHEN OTHERS => FAILED ("WRONG EXCEPTION RAISED - 2"); END; SKIP_LINE(FT); BEGIN GET (FT, X, 2); FAILED ("DATA_ERROR NOT RAISED - 3"); EXCEPTION WHEN DATA_ERROR => NULL; WHEN OTHERS => FAILED ("WRONG EXCEPTION RAISED - 3"); END; SKIP_LINE(FT); GET (FT, X, 2); IF X /= IDENT_INT (9) THEN FAILED ("GET WITH WIDTH " & "INCORRECT - 3"); END IF; END IF; END IF; BEGIN DELETE (FT); EXCEPTION WHEN USE_ERROR => NULL; END; EXCEPTION WHEN INCOMPLETE => NULL; END; RESULT; END CE3704D;
<?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>matrixmul</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>A</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>A</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <direction>0</direction> <if_type>1</if_type> <array_size>1024</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>B</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>B</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <direction>0</direction> <if_type>1</if_type> <array_size>1024</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>AB</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>AB</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <direction>1</direction> <if_type>1</if_type> <array_size>1024</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>40</count> <item_version>0</item_version> <item class_id="9" tracking_level="1" version="0" object_id="_4"> <Value> <Obj> <type>0</type> <id>15</id> <name>_ln10</name> <fileName>matrixmultiplication.cpp</fileName> <fileDirectory>D:\msoc\pp4fpgas-master\examples</fileDirectory> <lineNumber>10</lineNumber> <contextFuncName>matrixmul</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item class_id="10" tracking_level="0" version="0"> <first>D:\msoc\pp4fpgas-master\examples</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>matrixmultiplication.cpp</first> <second>matrixmul</second> </first> <second>10</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>75</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.76</m_delay> <m_topoIndex>1</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_5"> <Value> <Obj> <type>0</type> <id>17</id> <name>i_0</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>i</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>6</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>77</item> <item>78</item> <item>79</item> <item>80</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>2</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_6"> <Value> <Obj> <type>0</type> <id>18</id> <name>icmp_ln10</name> <fileName>matrixmultiplication.cpp</fileName> <fileDirectory>D:\msoc\pp4fpgas-master\examples</fileDirectory> <lineNumber>10</lineNumber> <contextFuncName>matrixmul</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>D:\msoc\pp4fpgas-master\examples</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>matrixmultiplication.cpp</first> <second>matrixmul</second> </first> <second>10</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>81</item> <item>83</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.42</m_delay> <m_topoIndex>3</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_7"> <Value> <Obj> <type>0</type> <id>20</id> <name>i</name> <fileName>matrixmultiplication.cpp</fileName> <fileDirectory>D:\msoc\pp4fpgas-master\examples</fileDirectory> <lineNumber>10</lineNumber> <contextFuncName>matrixmul</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>D:\msoc\pp4fpgas-master\examples</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>matrixmultiplication.cpp</first> <second>matrixmul</second> </first> <second>10</second> </item> </second> </item> </inlineStackInfo> <originalName>i</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>6</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>84</item> <item>86</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.82</m_delay> <m_topoIndex>4</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_8"> <Value> <Obj> <type>0</type> <id>21</id> <name>_ln10</name> <fileName>matrixmultiplication.cpp</fileName> <fileDirectory>D:\msoc\pp4fpgas-master\examples</fileDirectory> <lineNumber>10</lineNumber> <contextFuncName>matrixmul</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>D:\msoc\pp4fpgas-master\examples</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>matrixmultiplication.cpp</first> <second>matrixmul</second> </first> <second>10</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>87</item> <item>88</item> <item>89</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>5</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_9"> <Value> <Obj> <type>0</type> <id>25</id> <name>tmp_2</name> <fileName>matrixmultiplication.cpp</fileName> <fileDirectory>D:\msoc\pp4fpgas-master\examples</fileDirectory> <lineNumber>16</lineNumber> <contextFuncName>matrixmul</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>D:\msoc\pp4fpgas-master\examples</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>matrixmultiplication.cpp</first> <second>matrixmul</second> </first> <second>16</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>11</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>91</item> <item>92</item> <item>94</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>6</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_10"> <Value> <Obj> <type>0</type> <id>26</id> <name>zext_ln11</name> <fileName>matrixmultiplication.cpp</fileName> <fileDirectory>D:\msoc\pp4fpgas-master\examples</fileDirectory> <lineNumber>11</lineNumber> <contextFuncName>matrixmul</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>D:\msoc\pp4fpgas-master\examples</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>matrixmultiplication.cpp</first> <second>matrixmul</second> </first> <second>11</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>12</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>95</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>7</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_11"> <Value> <Obj> <type>0</type> <id>27</id> <name>_ln11</name> <fileName>matrixmultiplication.cpp</fileName> <fileDirectory>D:\msoc\pp4fpgas-master\examples</fileDirectory> <lineNumber>11</lineNumber> <contextFuncName>matrixmul</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>D:\msoc\pp4fpgas-master\examples</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>matrixmultiplication.cpp</first> <second>matrixmul</second> </first> <second>11</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>96</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.76</m_delay> <m_topoIndex>8</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_12"> <Value> <Obj> <type>0</type> <id>29</id> <name>j_0</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>j</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>6</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>97</item> <item>98</item> <item>99</item> <item>100</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>10</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_13"> <Value> <Obj> <type>0</type> <id>30</id> <name>icmp_ln11</name> <fileName>matrixmultiplication.cpp</fileName> <fileDirectory>D:\msoc\pp4fpgas-master\examples</fileDirectory> <lineNumber>11</lineNumber> <contextFuncName>matrixmul</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>D:\msoc\pp4fpgas-master\examples</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>matrixmultiplication.cpp</first> <second>matrixmul</second> </first> <second>11</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>101</item> <item>102</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.42</m_delay> <m_topoIndex>11</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_14"> <Value> <Obj> <type>0</type> <id>32</id> <name>j</name> <fileName>matrixmultiplication.cpp</fileName> <fileDirectory>D:\msoc\pp4fpgas-master\examples</fileDirectory> <lineNumber>11</lineNumber> <contextFuncName>matrixmul</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>D:\msoc\pp4fpgas-master\examples</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>matrixmultiplication.cpp</first> <second>matrixmul</second> </first> <second>11</second> </item> </second> </item> </inlineStackInfo> <originalName>j</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>6</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>103</item> <item>104</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.82</m_delay> <m_topoIndex>12</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_15"> <Value> <Obj> <type>0</type> <id>33</id> <name>_ln11</name> <fileName>matrixmultiplication.cpp</fileName> <fileDirectory>D:\msoc\pp4fpgas-master\examples</fileDirectory> <lineNumber>11</lineNumber> <contextFuncName>matrixmul</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>D:\msoc\pp4fpgas-master\examples</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>matrixmultiplication.cpp</first> <second>matrixmul</second> </first> <second>11</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>105</item> <item>106</item> <item>107</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>13</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_16"> <Value> <Obj> <type>0</type> <id>37</id> <name>zext_ln18</name> <fileName>matrixmultiplication.cpp</fileName> <fileDirectory>D:\msoc\pp4fpgas-master\examples</fileDirectory> <lineNumber>18</lineNumber> <contextFuncName>matrixmul</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>D:\msoc\pp4fpgas-master\examples</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>matrixmultiplication.cpp</first> <second>matrixmul</second> </first> <second>18</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>12</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>108</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>14</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_17"> <Value> <Obj> <type>0</type> <id>38</id> <name>add_ln18</name> <fileName>matrixmultiplication.cpp</fileName> <fileDirectory>D:\msoc\pp4fpgas-master\examples</fileDirectory> <lineNumber>18</lineNumber> <contextFuncName>matrixmul</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>D:\msoc\pp4fpgas-master\examples</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>matrixmultiplication.cpp</first> <second>matrixmul</second> </first> <second>18</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>12</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>109</item> <item>110</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.63</m_delay> <m_topoIndex>15</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_18"> <Value> <Obj> <type>0</type> <id>39</id> <name>zext_ln18_1</name> <fileName>matrixmultiplication.cpp</fileName> <fileDirectory>D:\msoc\pp4fpgas-master\examples</fileDirectory> <lineNumber>18</lineNumber> <contextFuncName>matrixmul</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>D:\msoc\pp4fpgas-master\examples</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>matrixmultiplication.cpp</first> <second>matrixmul</second> </first> <second>18</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>111</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>16</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_19"> <Value> <Obj> <type>0</type> <id>40</id> <name>AB_addr</name> <fileName>matrixmultiplication.cpp</fileName> <fileDirectory>D:\msoc\pp4fpgas-master\examples</fileDirectory> <lineNumber>18</lineNumber> <contextFuncName>matrixmul</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>D:\msoc\pp4fpgas-master\examples</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>matrixmultiplication.cpp</first> <second>matrixmul</second> </first> <second>18</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>10</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>112</item> <item>114</item> <item>115</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>17</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_20"> <Value> <Obj> <type>0</type> <id>41</id> <name>_ln15</name> <fileName>matrixmultiplication.cpp</fileName> <fileDirectory>D:\msoc\pp4fpgas-master\examples</fileDirectory> <lineNumber>15</lineNumber> <contextFuncName>matrixmul</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>D:\msoc\pp4fpgas-master\examples</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>matrixmultiplication.cpp</first> <second>matrixmul</second> </first> <second>15</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>116</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.76</m_delay> <m_topoIndex>18</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_21"> <Value> <Obj> <type>0</type> <id>43</id> <name>ABij_0</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>ABij</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>118</item> <item>119</item> <item>120</item> <item>121</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>20</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_22"> <Value> <Obj> <type>0</type> <id>44</id> <name>k_0</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>k</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>6</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>122</item> <item>123</item> <item>124</item> <item>125</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>21</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_23"> <Value> <Obj> <type>0</type> <id>45</id> <name>icmp_ln15</name> <fileName>matrixmultiplication.cpp</fileName> <fileDirectory>D:\msoc\pp4fpgas-master\examples</fileDirectory> <lineNumber>15</lineNumber> <contextFuncName>matrixmul</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>D:\msoc\pp4fpgas-master\examples</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>matrixmultiplication.cpp</first> <second>matrixmul</second> </first> <second>15</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>126</item> <item>127</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.42</m_delay> <m_topoIndex>22</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_24"> <Value> <Obj> <type>0</type> <id>47</id> <name>k</name> <fileName>matrixmultiplication.cpp</fileName> <fileDirectory>D:\msoc\pp4fpgas-master\examples</fileDirectory> <lineNumber>15</lineNumber> <contextFuncName>matrixmul</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>D:\msoc\pp4fpgas-master\examples</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>matrixmultiplication.cpp</first> <second>matrixmul</second> </first> <second>15</second> </item> </second> </item> </inlineStackInfo> <originalName>k</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>6</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>128</item> <item>129</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.82</m_delay> <m_topoIndex>23</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_25"> <Value> <Obj> <type>0</type> <id>48</id> <name>_ln15</name> <fileName>matrixmultiplication.cpp</fileName> <fileDirectory>D:\msoc\pp4fpgas-master\examples</fileDirectory> <lineNumber>15</lineNumber> <contextFuncName>matrixmul</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>D:\msoc\pp4fpgas-master\examples</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>matrixmultiplication.cpp</first> <second>matrixmul</second> </first> <second>15</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>130</item> <item>131</item> <item>132</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>24</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_26"> <Value> <Obj> <type>0</type> <id>51</id> <name>zext_ln16</name> <fileName>matrixmultiplication.cpp</fileName> <fileDirectory>D:\msoc\pp4fpgas-master\examples</fileDirectory> <lineNumber>16</lineNumber> <contextFuncName>matrixmul</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>D:\msoc\pp4fpgas-master\examples</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>matrixmultiplication.cpp</first> <second>matrixmul</second> </first> <second>16</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>12</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>133</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>25</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_27"> <Value> <Obj> <type>0</type> <id>52</id> <name>add_ln16</name> <fileName>matrixmultiplication.cpp</fileName> <fileDirectory>D:\msoc\pp4fpgas-master\examples</fileDirectory> <lineNumber>16</lineNumber> <contextFuncName>matrixmul</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>D:\msoc\pp4fpgas-master\examples</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>matrixmultiplication.cpp</first> <second>matrixmul</second> </first> <second>16</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>12</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>134</item> <item>135</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.63</m_delay> <m_topoIndex>26</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_28"> <Value> <Obj> <type>0</type> <id>53</id> <name>zext_ln16_1</name> <fileName>matrixmultiplication.cpp</fileName> <fileDirectory>D:\msoc\pp4fpgas-master\examples</fileDirectory> <lineNumber>16</lineNumber> <contextFuncName>matrixmul</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>D:\msoc\pp4fpgas-master\examples</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>matrixmultiplication.cpp</first> <second>matrixmul</second> </first> <second>16</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>136</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>27</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_29"> <Value> <Obj> <type>0</type> <id>54</id> <name>A_addr</name> <fileName>matrixmultiplication.cpp</fileName> <fileDirectory>D:\msoc\pp4fpgas-master\examples</fileDirectory> <lineNumber>16</lineNumber> <contextFuncName>matrixmul</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>D:\msoc\pp4fpgas-master\examples</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>matrixmultiplication.cpp</first> <second>matrixmul</second> </first> <second>16</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>10</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>137</item> <item>138</item> <item>139</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>28</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_30"> <Value> <Obj> <type>0</type> <id>55</id> <name>tmp_3</name> <fileName>matrixmultiplication.cpp</fileName> <fileDirectory>D:\msoc\pp4fpgas-master\examples</fileDirectory> <lineNumber>16</lineNumber> <contextFuncName>matrixmul</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>D:\msoc\pp4fpgas-master\examples</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>matrixmultiplication.cpp</first> <second>matrixmul</second> </first> <second>16</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>11</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>140</item> <item>141</item> <item>142</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>29</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_31"> <Value> <Obj> <type>0</type> <id>56</id> <name>zext_ln16_2</name> <fileName>matrixmultiplication.cpp</fileName> <fileDirectory>D:\msoc\pp4fpgas-master\examples</fileDirectory> <lineNumber>16</lineNumber> <contextFuncName>matrixmul</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>D:\msoc\pp4fpgas-master\examples</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>matrixmultiplication.cpp</first> <second>matrixmul</second> </first> <second>16</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>12</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>143</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>30</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_32"> <Value> <Obj> <type>0</type> <id>57</id> <name>add_ln16_1</name> <fileName>matrixmultiplication.cpp</fileName> <fileDirectory>D:\msoc\pp4fpgas-master\examples</fileDirectory> <lineNumber>16</lineNumber> <contextFuncName>matrixmul</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>D:\msoc\pp4fpgas-master\examples</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>matrixmultiplication.cpp</first> <second>matrixmul</second> </first> <second>16</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>12</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>144</item> <item>145</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.63</m_delay> <m_topoIndex>31</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_33"> <Value> <Obj> <type>0</type> <id>58</id> <name>zext_ln16_3</name> <fileName>matrixmultiplication.cpp</fileName> <fileDirectory>D:\msoc\pp4fpgas-master\examples</fileDirectory> <lineNumber>16</lineNumber> <contextFuncName>matrixmul</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>D:\msoc\pp4fpgas-master\examples</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>matrixmultiplication.cpp</first> <second>matrixmul</second> </first> <second>16</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>146</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>32</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_34"> <Value> <Obj> <type>0</type> <id>59</id> <name>B_addr</name> <fileName>matrixmultiplication.cpp</fileName> <fileDirectory>D:\msoc\pp4fpgas-master\examples</fileDirectory> <lineNumber>16</lineNumber> <contextFuncName>matrixmul</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>D:\msoc\pp4fpgas-master\examples</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>matrixmultiplication.cpp</first> <second>matrixmul</second> </first> <second>16</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>10</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>147</item> <item>148</item> <item>149</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>33</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_35"> <Value> <Obj> <type>0</type> <id>60</id> <name>A_load</name> <fileName>matrixmultiplication.cpp</fileName> <fileDirectory>D:\msoc\pp4fpgas-master\examples</fileDirectory> <lineNumber>16</lineNumber> <contextFuncName>matrixmul</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>D:\msoc\pp4fpgas-master\examples</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>matrixmultiplication.cpp</first> <second>matrixmul</second> </first> <second>16</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>150</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.56</m_delay> <m_topoIndex>34</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_36"> <Value> <Obj> <type>0</type> <id>61</id> <name>B_load</name> <fileName>matrixmultiplication.cpp</fileName> <fileDirectory>D:\msoc\pp4fpgas-master\examples</fileDirectory> <lineNumber>16</lineNumber> <contextFuncName>matrixmul</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>D:\msoc\pp4fpgas-master\examples</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>matrixmultiplication.cpp</first> <second>matrixmul</second> </first> <second>16</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>151</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.56</m_delay> <m_topoIndex>35</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_37"> <Value> <Obj> <type>0</type> <id>62</id> <name>mul_ln16</name> <fileName>matrixmultiplication.cpp</fileName> <fileDirectory>D:\msoc\pp4fpgas-master\examples</fileDirectory> <lineNumber>16</lineNumber> <contextFuncName>matrixmul</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>D:\msoc\pp4fpgas-master\examples</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>matrixmultiplication.cpp</first> <second>matrixmul</second> </first> <second>16</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>152</item> <item>153</item> </oprand_edges> <opcode>mul</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>3.95</m_delay> <m_topoIndex>38</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_38"> <Value> <Obj> <type>0</type> <id>63</id> <name>ABij</name> <fileName>matrixmultiplication.cpp</fileName> <fileDirectory>D:\msoc\pp4fpgas-master\examples</fileDirectory> <lineNumber>16</lineNumber> <contextFuncName>matrixmul</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>D:\msoc\pp4fpgas-master\examples</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>matrixmultiplication.cpp</first> <second>matrixmul</second> </first> <second>16</second> </item> </second> </item> </inlineStackInfo> <originalName>ABij</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>154</item> <item>155</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.55</m_delay> <m_topoIndex>39</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_39"> <Value> <Obj> <type>0</type> <id>64</id> <name>_ln15</name> <fileName>matrixmultiplication.cpp</fileName> <fileDirectory>D:\msoc\pp4fpgas-master\examples</fileDirectory> <lineNumber>15</lineNumber> <contextFuncName>matrixmul</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>D:\msoc\pp4fpgas-master\examples</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>matrixmultiplication.cpp</first> <second>matrixmul</second> </first> <second>15</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>156</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>40</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_40"> <Value> <Obj> <type>0</type> <id>66</id> <name>AB_addr_write_ln18</name> <fileName>matrixmultiplication.cpp</fileName> <fileDirectory>D:\msoc\pp4fpgas-master\examples</fileDirectory> <lineNumber>18</lineNumber> <contextFuncName>matrixmul</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>D:\msoc\pp4fpgas-master\examples</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>matrixmultiplication.cpp</first> <second>matrixmul</second> </first> <second>18</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>157</item> <item>158</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.56</m_delay> <m_topoIndex>36</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_41"> <Value> <Obj> <type>0</type> <id>68</id> <name>_ln11</name> <fileName>matrixmultiplication.cpp</fileName> <fileDirectory>D:\msoc\pp4fpgas-master\examples</fileDirectory> <lineNumber>11</lineNumber> <contextFuncName>matrixmul</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>D:\msoc\pp4fpgas-master\examples</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>matrixmultiplication.cpp</first> <second>matrixmul</second> </first> <second>11</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>159</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>37</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_42"> <Value> <Obj> <type>0</type> <id>71</id> <name>_ln10</name> <fileName>matrixmultiplication.cpp</fileName> <fileDirectory>D:\msoc\pp4fpgas-master\examples</fileDirectory> <lineNumber>10</lineNumber> <contextFuncName>matrixmul</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>D:\msoc\pp4fpgas-master\examples</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>matrixmultiplication.cpp</first> <second>matrixmul</second> </first> <second>10</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>160</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>19</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_43"> <Value> <Obj> <type>0</type> <id>73</id> <name>_ln21</name> <fileName>matrixmultiplication.cpp</fileName> <fileDirectory>D:\msoc\pp4fpgas-master\examples</fileDirectory> <lineNumber>21</lineNumber> <contextFuncName>matrixmul</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>D:\msoc\pp4fpgas-master\examples</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>matrixmultiplication.cpp</first> <second>matrixmul</second> </first> <second>21</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>0</count> <item_version>0</item_version> </oprand_edges> <opcode>ret</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>9</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> </nodes> <consts class_id="15" tracking_level="0" version="0"> <count>6</count> <item_version>0</item_version> <item class_id="16" tracking_level="1" version="0" object_id="_44"> <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>6</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_45"> <Value> <Obj> <type>2</type> <id>82</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>6</bitwidth> </Value> <const_type>0</const_type> <content>32</content> </item> <item class_id_reference="16" object_id="_46"> <Value> <Obj> <type>2</type> <id>85</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>6</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_47"> <Value> <Obj> <type>2</type> <id>93</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_48"> <Value> <Obj> <type>2</type> <id>113</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="_49"> <Value> <Obj> <type>2</type> <id>117</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>10</count> <item_version>0</item_version> <item class_id="18" tracking_level="1" version="0" object_id="_50"> <Obj> <type>3</type> <id>16</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>15</item> </node_objs> </item> <item class_id_reference="18" object_id="_51"> <Obj> <type>3</type> <id>22</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>4</count> <item_version>0</item_version> <item>17</item> <item>18</item> <item>20</item> <item>21</item> </node_objs> </item> <item class_id_reference="18" object_id="_52"> <Obj> <type>3</type> <id>28</id> <name>row_begin</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>3</count> <item_version>0</item_version> <item>25</item> <item>26</item> <item>27</item> </node_objs> </item> <item class_id_reference="18" object_id="_53"> <Obj> <type>3</type> <id>34</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>4</count> <item_version>0</item_version> <item>29</item> <item>30</item> <item>32</item> <item>33</item> </node_objs> </item> <item class_id_reference="18" object_id="_54"> <Obj> <type>3</type> <id>42</id> <name>col_begin</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>5</count> <item_version>0</item_version> <item>37</item> <item>38</item> <item>39</item> <item>40</item> <item>41</item> </node_objs> </item> <item class_id_reference="18" object_id="_55"> <Obj> <type>3</type> <id>49</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>5</count> <item_version>0</item_version> <item>43</item> <item>44</item> <item>45</item> <item>47</item> <item>48</item> </node_objs> </item> <item class_id_reference="18" object_id="_56"> <Obj> <type>3</type> <id>65</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>14</count> <item_version>0</item_version> <item>51</item> <item>52</item> <item>53</item> <item>54</item> <item>55</item> <item>56</item> <item>57</item> <item>58</item> <item>59</item> <item>60</item> <item>61</item> <item>62</item> <item>63</item> <item>64</item> </node_objs> </item> <item class_id_reference="18" object_id="_57"> <Obj> <type>3</type> <id>69</id> <name>col_end</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>66</item> <item>68</item> </node_objs> </item> <item class_id_reference="18" object_id="_58"> <Obj> <type>3</type> <id>72</id> <name>row_end</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>71</item> </node_objs> </item> <item class_id_reference="18" object_id="_59"> <Obj> <type>3</type> <id>74</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>73</item> </node_objs> </item> </blocks> <edges class_id="19" tracking_level="0" version="0"> <count>89</count> <item_version>0</item_version> <item class_id="20" tracking_level="1" version="0" object_id="_60"> <id>75</id> <edge_type>2</edge_type> <source_obj>22</source_obj> <sink_obj>15</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_61"> <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="_62"> <id>78</id> <edge_type>2</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="_63"> <id>79</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>17</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_64"> <id>80</id> <edge_type>2</edge_type> <source_obj>72</source_obj> <sink_obj>17</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_65"> <id>81</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="_66"> <id>83</id> <edge_type>1</edge_type> <source_obj>82</source_obj> <sink_obj>18</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_67"> <id>84</id> <edge_type>1</edge_type> <source_obj>17</source_obj> <sink_obj>20</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_68"> <id>86</id> <edge_type>1</edge_type> <source_obj>85</source_obj> <sink_obj>20</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_69"> <id>87</id> <edge_type>1</edge_type> <source_obj>18</source_obj> <sink_obj>21</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_70"> <id>88</id> <edge_type>2</edge_type> <source_obj>28</source_obj> <sink_obj>21</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_71"> <id>89</id> <edge_type>2</edge_type> <source_obj>74</source_obj> <sink_obj>21</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_72"> <id>92</id> <edge_type>1</edge_type> <source_obj>17</source_obj> <sink_obj>25</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_73"> <id>94</id> <edge_type>1</edge_type> <source_obj>93</source_obj> <sink_obj>25</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_74"> <id>95</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="_75"> <id>96</id> <edge_type>2</edge_type> <source_obj>34</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_76"> <id>97</id> <edge_type>1</edge_type> <source_obj>76</source_obj> <sink_obj>29</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_77"> <id>98</id> <edge_type>2</edge_type> <source_obj>28</source_obj> <sink_obj>29</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_78"> <id>99</id> <edge_type>1</edge_type> <source_obj>32</source_obj> <sink_obj>29</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_79"> <id>100</id> <edge_type>2</edge_type> <source_obj>69</source_obj> <sink_obj>29</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_80"> <id>101</id> <edge_type>1</edge_type> <source_obj>29</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_81"> <id>102</id> <edge_type>1</edge_type> <source_obj>82</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_82"> <id>103</id> <edge_type>1</edge_type> <source_obj>29</source_obj> <sink_obj>32</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_83"> <id>104</id> <edge_type>1</edge_type> <source_obj>85</source_obj> <sink_obj>32</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_84"> <id>105</id> <edge_type>1</edge_type> <source_obj>30</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_85"> <id>106</id> <edge_type>2</edge_type> <source_obj>42</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_86"> <id>107</id> <edge_type>2</edge_type> <source_obj>72</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_87"> <id>108</id> <edge_type>1</edge_type> <source_obj>29</source_obj> <sink_obj>37</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_88"> <id>109</id> <edge_type>1</edge_type> <source_obj>26</source_obj> <sink_obj>38</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_89"> <id>110</id> <edge_type>1</edge_type> <source_obj>37</source_obj> <sink_obj>38</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_90"> <id>111</id> <edge_type>1</edge_type> <source_obj>38</source_obj> <sink_obj>39</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_91"> <id>112</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>40</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_92"> <id>114</id> <edge_type>1</edge_type> <source_obj>113</source_obj> <sink_obj>40</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_93"> <id>115</id> <edge_type>1</edge_type> <source_obj>39</source_obj> <sink_obj>40</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_94"> <id>116</id> <edge_type>2</edge_type> <source_obj>49</source_obj> <sink_obj>41</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_95"> <id>118</id> <edge_type>1</edge_type> <source_obj>117</source_obj> <sink_obj>43</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_96"> <id>119</id> <edge_type>2</edge_type> <source_obj>42</source_obj> <sink_obj>43</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_97"> <id>120</id> <edge_type>1</edge_type> <source_obj>63</source_obj> <sink_obj>43</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_98"> <id>121</id> <edge_type>2</edge_type> <source_obj>65</source_obj> <sink_obj>43</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_99"> <id>122</id> <edge_type>1</edge_type> <source_obj>76</source_obj> <sink_obj>44</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_100"> <id>123</id> <edge_type>2</edge_type> <source_obj>42</source_obj> <sink_obj>44</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_101"> <id>124</id> <edge_type>1</edge_type> <source_obj>47</source_obj> <sink_obj>44</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_102"> <id>125</id> <edge_type>2</edge_type> <source_obj>65</source_obj> <sink_obj>44</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_103"> <id>126</id> <edge_type>1</edge_type> <source_obj>44</source_obj> <sink_obj>45</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_104"> <id>127</id> <edge_type>1</edge_type> <source_obj>82</source_obj> <sink_obj>45</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_105"> <id>128</id> <edge_type>1</edge_type> <source_obj>44</source_obj> <sink_obj>47</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_106"> <id>129</id> <edge_type>1</edge_type> <source_obj>85</source_obj> <sink_obj>47</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_107"> <id>130</id> <edge_type>1</edge_type> <source_obj>45</source_obj> <sink_obj>48</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_108"> <id>131</id> <edge_type>2</edge_type> <source_obj>65</source_obj> <sink_obj>48</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_109"> <id>132</id> <edge_type>2</edge_type> <source_obj>69</source_obj> <sink_obj>48</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_110"> <id>133</id> <edge_type>1</edge_type> <source_obj>44</source_obj> <sink_obj>51</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_111"> <id>134</id> <edge_type>1</edge_type> <source_obj>51</source_obj> <sink_obj>52</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_112"> <id>135</id> <edge_type>1</edge_type> <source_obj>26</source_obj> <sink_obj>52</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_113"> <id>136</id> <edge_type>1</edge_type> <source_obj>52</source_obj> <sink_obj>53</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_114"> <id>137</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>54</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_115"> <id>138</id> <edge_type>1</edge_type> <source_obj>113</source_obj> <sink_obj>54</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_116"> <id>139</id> <edge_type>1</edge_type> <source_obj>53</source_obj> <sink_obj>54</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_117"> <id>141</id> <edge_type>1</edge_type> <source_obj>44</source_obj> <sink_obj>55</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_118"> <id>142</id> <edge_type>1</edge_type> <source_obj>93</source_obj> <sink_obj>55</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_119"> <id>143</id> <edge_type>1</edge_type> <source_obj>55</source_obj> <sink_obj>56</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_120"> <id>144</id> <edge_type>1</edge_type> <source_obj>37</source_obj> <sink_obj>57</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_121"> <id>145</id> <edge_type>1</edge_type> <source_obj>56</source_obj> <sink_obj>57</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_122"> <id>146</id> <edge_type>1</edge_type> <source_obj>57</source_obj> <sink_obj>58</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_123"> <id>147</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>59</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_124"> <id>148</id> <edge_type>1</edge_type> <source_obj>113</source_obj> <sink_obj>59</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_125"> <id>149</id> <edge_type>1</edge_type> <source_obj>58</source_obj> <sink_obj>59</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_126"> <id>150</id> <edge_type>1</edge_type> <source_obj>54</source_obj> <sink_obj>60</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_127"> <id>151</id> <edge_type>1</edge_type> <source_obj>59</source_obj> <sink_obj>61</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_128"> <id>152</id> <edge_type>1</edge_type> <source_obj>60</source_obj> <sink_obj>62</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_129"> <id>153</id> <edge_type>1</edge_type> <source_obj>61</source_obj> <sink_obj>62</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_130"> <id>154</id> <edge_type>1</edge_type> <source_obj>62</source_obj> <sink_obj>63</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_131"> <id>155</id> <edge_type>1</edge_type> <source_obj>43</source_obj> <sink_obj>63</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_132"> <id>156</id> <edge_type>2</edge_type> <source_obj>49</source_obj> <sink_obj>64</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_133"> <id>157</id> <edge_type>1</edge_type> <source_obj>43</source_obj> <sink_obj>66</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_134"> <id>158</id> <edge_type>1</edge_type> <source_obj>40</source_obj> <sink_obj>66</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_135"> <id>159</id> <edge_type>2</edge_type> <source_obj>34</source_obj> <sink_obj>68</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_136"> <id>160</id> <edge_type>2</edge_type> <source_obj>22</source_obj> <sink_obj>71</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_137"> <id>325</id> <edge_type>2</edge_type> <source_obj>16</source_obj> <sink_obj>22</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_138"> <id>326</id> <edge_type>2</edge_type> <source_obj>22</source_obj> <sink_obj>74</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_139"> <id>327</id> <edge_type>2</edge_type> <source_obj>22</source_obj> <sink_obj>28</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_140"> <id>328</id> <edge_type>2</edge_type> <source_obj>28</source_obj> <sink_obj>34</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_141"> <id>329</id> <edge_type>2</edge_type> <source_obj>34</source_obj> <sink_obj>72</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_142"> <id>330</id> <edge_type>2</edge_type> <source_obj>34</source_obj> <sink_obj>42</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_143"> <id>331</id> <edge_type>2</edge_type> <source_obj>42</source_obj> <sink_obj>49</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_144"> <id>332</id> <edge_type>2</edge_type> <source_obj>49</source_obj> <sink_obj>69</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_145"> <id>333</id> <edge_type>2</edge_type> <source_obj>49</source_obj> <sink_obj>65</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_146"> <id>334</id> <edge_type>2</edge_type> <source_obj>65</source_obj> <sink_obj>49</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_147"> <id>335</id> <edge_type>2</edge_type> <source_obj>69</source_obj> <sink_obj>34</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_148"> <id>336</id> <edge_type>2</edge_type> <source_obj>72</source_obj> <sink_obj>22</sink_obj> <is_back_edge>1</is_back_edge> </item> </edges> </cdfg> <cdfg_regions class_id="21" tracking_level="0" version="0"> <count>10</count> <item_version>0</item_version> <item class_id="22" tracking_level="1" version="0" object_id="_149"> <mId>1</mId> <mTag>matrixmul</mTag> <mType>0</mType> <sub_regions> <count>3</count> <item_version>0</item_version> <item>2</item> <item>3</item> <item>10</item> </sub_regions> <basic_blocks> <count>0</count> <item_version>0</item_version> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>264257</mMinLatency> <mMaxLatency>264257</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_150"> <mId>2</mId> <mTag>Entry</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>16</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>0</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_151"> <mId>3</mId> <mTag>row</mTag> <mType>1</mType> <sub_regions> <count>3</count> <item_version>0</item_version> <item>4</item> <item>5</item> <item>9</item> </sub_regions> <basic_blocks> <count>0</count> <item_version>0</item_version> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>32</mMinTripCount> <mMaxTripCount>32</mMaxTripCount> <mMinLatency>264256</mMinLatency> <mMaxLatency>264256</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_152"> <mId>4</mId> <mTag>Region 1</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>22</item> <item>28</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>0</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_153"> <mId>5</mId> <mTag>col</mTag> <mType>1</mType> <sub_regions> <count>3</count> <item_version>0</item_version> <item>6</item> <item>7</item> <item>8</item> </sub_regions> <basic_blocks> <count>0</count> <item_version>0</item_version> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>32</mMinTripCount> <mMaxTripCount>32</mMaxTripCount> <mMinLatency>8256</mMinLatency> <mMaxLatency>8256</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_154"> <mId>6</mId> <mTag>Region 2</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>34</item> <item>42</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>0</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_155"> <mId>7</mId> <mTag>product</mTag> <mType>1</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>49</item> <item>65</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>32</mMinTripCount> <mMaxTripCount>32</mMaxTripCount> <mMinLatency>256</mMinLatency> <mMaxLatency>256</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_156"> <mId>8</mId> <mTag>Region 3</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>69</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>0</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_157"> <mId>9</mId> <mTag>Region 4</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>72</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>0</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_158"> <mId>10</mId> <mTag>Return</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>74</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>0</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> </cdfg_regions> <fsm class_id="-1"></fsm> <res class_id="-1"></res> <node_label_latency class_id="26" tracking_level="0" version="0"> <count>40</count> <item_version>0</item_version> <item class_id="27" tracking_level="0" version="0"> <first>15</first> <second class_id="28" tracking_level="0" version="0"> <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>20</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>21</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>25</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>26</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>27</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>29</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>30</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>32</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>33</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>37</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>38</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>39</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>40</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>41</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>43</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>44</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>45</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>47</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>48</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>51</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>52</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>53</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>54</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>55</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>56</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>57</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>58</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>59</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>60</first> <second> <first>3</first> <second>1</second> </second> </item> <item> <first>61</first> <second> <first>3</first> <second>1</second> </second> </item> <item> <first>62</first> <second> <first>5</first> <second>4</second> </second> </item> <item> <first>63</first> <second> <first>10</first> <second>0</second> </second> </item> <item> <first>64</first> <second> <first>10</first> <second>0</second> </second> </item> <item> <first>66</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>68</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>71</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>73</first> <second> <first>1</first> <second>0</second> </second> </item> </node_label_latency> <bblk_ent_exit class_id="29" tracking_level="0" version="0"> <count>10</count> <item_version>0</item_version> <item class_id="30" tracking_level="0" version="0"> <first>16</first> <second class_id="31" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>22</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>28</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>34</first> <second> <first>2</first> <second>2</second> </second> </item> <item> <first>42</first> <second> <first>2</first> <second>2</second> </second> </item> <item> <first>49</first> <second> <first>3</first> <second>3</second> </second> </item> <item> <first>65</first> <second> <first>3</first> <second>10</second> </second> </item> <item> <first>69</first> <second> <first>3</first> <second>3</second> </second> </item> <item> <first>72</first> <second> <first>2</first> <second>2</second> </second> </item> <item> <first>74</first> <second> <first>1</first> <second>1</second> </second> </item> </bblk_ent_exit> <regions class_id="32" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </regions> <dp_fu_nodes class_id="33" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_fu_nodes> <dp_fu_nodes_expression class_id="34" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_fu_nodes_expression> <dp_fu_nodes_module> <count>0</count> <item_version>0</item_version> </dp_fu_nodes_module> <dp_fu_nodes_io> <count>0</count> <item_version>0</item_version> </dp_fu_nodes_io> <return_ports> <count>0</count> <item_version>0</item_version> </return_ports> <dp_mem_port_nodes class_id="35" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_mem_port_nodes> <dp_reg_nodes> <count>0</count> <item_version>0</item_version> </dp_reg_nodes> <dp_regname_nodes> <count>0</count> <item_version>0</item_version> </dp_regname_nodes> <dp_reg_phi> <count>0</count> <item_version>0</item_version> </dp_reg_phi> <dp_regname_phi> <count>0</count> <item_version>0</item_version> </dp_regname_phi> <dp_port_io_nodes class_id="36" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_port_io_nodes> <port2core class_id="37" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </port2core> <node2core> <count>0</count> <item_version>0</item_version> </node2core> </syndb> </boost_serialization>
------------------------------------------------------------------------------ -- -- -- GNAT ncurses Binding -- -- -- -- Terminal_Interface.Curses.Text_IO.Complex_IO -- -- -- -- S P E C -- -- -- ------------------------------------------------------------------------------ -- 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, 1996 -- Version Control: -- $Revision: 1.10 $ -- Binding Version 01.00 ------------------------------------------------------------------------------ with Ada.Numerics.Generic_Complex_Types; generic with package Complex_Types is new Ada.Numerics.Generic_Complex_Types (<>); package Terminal_Interface.Curses.Text_IO.Complex_IO is use Complex_Types; Default_Fore : Field := 2; Default_Aft : Field := Real'Digits - 1; Default_Exp : Field := 3; procedure Put (Win : in Window; Item : in Complex; Fore : in Field := Default_Fore; Aft : in Field := Default_Aft; Exp : in Field := Default_Exp); procedure Put (Item : in Complex; Fore : in Field := Default_Fore; Aft : in Field := Default_Aft; Exp : in Field := Default_Exp); private pragma Inline (Put); end Terminal_Interface.Curses.Text_IO.Complex_IO;
----------------------------------------------------------------------- -- are-installer-merges -- Web file merge -- Copyright (C) 2020, 2021 Stephane Carrez -- Written by Stephane Carrez (Stephane.Carrez@gmail.com) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- with Ada.Directories; with Ada.Strings.Fixed; with Ada.Streams.Stream_IO; with Ada.Exceptions; with Ada.IO_Exceptions; with Ada.Unchecked_Deallocation; with Util.Beans.Objects; with Util.Log.Loggers; with Util.Files; with Util.Strings; with Util.Streams.Files; with Util.Streams.Texts; with Util.Streams.Buffered; with EL.Expressions; with Are.Utils; package body Are.Installer.Merges is use Util.Log; use Ada.Strings.Fixed; use Util.Beans.Objects; use Ada.Strings.Unbounded; use type Ada.Calendar.Time; procedure Process_Property (Rule : in out Merge_Rule; Node : in DOM.Core.Node); procedure Process_Replace (Rule : in out Merge_Rule; Node : in DOM.Core.Node); Log : constant Loggers.Logger := Loggers.Create ("Are.Installer.Merges"); -- ------------------------------ -- Extract the <property name='{name}'>{value}</property> to setup the -- EL context to evaluate the source and target links for the merge. -- ------------------------------ procedure Process_Property (Rule : in out Merge_Rule; Node : in DOM.Core.Node) is use Util.Beans.Objects.Maps; Name : constant String := Are.Utils.Get_Attribute (Node, "name"); Value : constant String := Are.Utils.Get_Data_Content (Node); Pos : constant Natural := Util.Strings.Index (Name, '.'); begin if Pos = 0 then Rule.Variables.Bind (Name, To_Object (Value)); return; end if; -- A composed name such as 'jquery.path' must be split so that we store -- the 'path' value within a 'jquery' Map_Bean object. We handle only -- one such composition. declare Param : constant String := Name (Name'First .. Pos - 1); Tag : constant Unbounded_String := To_Unbounded_String (Param); Var : constant EL.Expressions.Expression := Rule.Variables.Get_Variable (Tag); Val : Object := Rule.Params.Get_Value (Param); Child : Map_Bean_Access; begin if Is_Null (Val) then Child := new Map_Bean; Val := To_Object (Child); Rule.Params.Set_Value (Param, Val); else Child := Map_Bean_Access (To_Bean (Val)); end if; Child.Set_Value (Name (Pos + 1 .. Name'Last), To_Object (Value)); if Var.Is_Null then Rule.Variables.Bind (Param, Val); end if; end; end Process_Property; procedure Process_Replace (Rule : in out Merge_Rule; Node : in DOM.Core.Node) is From : constant String := Are.Utils.Get_Data_Content (Node, "from"); To : constant String := Are.Utils.Get_Data_Content (Node, "to"); begin Rule.Replace.Include (From, To); end Process_Replace; procedure Iterate_Properties is new Are.Utils.Iterate_Nodes (Merge_Rule, Process_Property); procedure Iterate_Replace is new Are.Utils.Iterate_Nodes (Merge_Rule, Process_Replace); -- ------------------------------ -- Create a distribution rule to copy a set of files or directories. -- ------------------------------ function Create_Rule (Node : in DOM.Core.Node) return Distrib_Rule_Access is Result : constant Merge_Rule_Access := new Merge_Rule; begin Iterate_Properties (Result.all, Node, "property", False); Iterate_Replace (Result.all, Node, "replace", False); Result.Context.Set_Variable_Mapper (Result.Variables'Access); Result.Start_Mark := Are.Utils.Get_Attribute (Node, "merge-start", DEFAULT_MERGE_START); Result.End_Mark := Are.Utils.Get_Attribute (Node, "merge-end", DEFAULT_MERGE_END); return Result.all'Access; end Create_Rule; -- ------------------------------ -- Get a name to qualify the installation rule (used for logs). -- ------------------------------ overriding function Get_Install_Name (Rule : in Merge_Rule) return String is pragma Unreferenced (Rule); begin return "merge"; end Get_Install_Name; overriding procedure Install (Rule : in Merge_Rule; Path : in String; Files : in File_Vector; Context : in out Context_Type'Class) is use Ada.Streams; type Mode_Type is (MERGE_NONE, MERGE_LINK, MERGE_SCRIPT); procedure Error (Message : in String; Arg1 : in String := ""); function Get_Target_Name (Link : in String) return String; function Get_Target_Path (Link : in String) return String; function Get_Filename (Line : in String) return String; function Get_Source (Line : in String; Tag : in String) return String; function Find_Match (Buffer : in Stream_Element_Array) return Stream_Element_Offset; procedure Prepare_Merge (Line : in String); procedure Include (Line : in String; Pattern : in String); procedure Process (Line : in String); Root_Dir : constant String := Context.Get_Generation_Path (To_String (Rule.Dir)); Source : constant String := Get_Source_Path (Files, False); Target : constant String := Context.Get_Generation_Path (Path); Dir : constant String := Ada.Directories.Containing_Directory (Target); Build : constant String := "23"; -- Context.Get_Parameter ("dynamo.build"); Start_Mark : constant String := "<!-- " & To_String (Rule.Start_Mark) & " "; End_Mark : constant String := "<!-- " & To_String (Rule.End_Mark) & " "; File_Time : constant Ada.Calendar.Time := Ada.Directories.Modification_Time (Source); Modtime : Ada.Calendar.Time := File_Time; Output : aliased Util.Streams.Files.File_Stream; Merge : aliased Util.Streams.Files.File_Stream; Merge_Path : UString; Merge_Name : UString; Text : Util.Streams.Texts.Print_Stream; Mode : Mode_Type := MERGE_NONE; Line_Num : Natural := 0; Inc_Error : Natural := 0; procedure Error (Message : in String; Arg1 : in String := "") is Line : constant String := Util.Strings.Image (Line_Num); begin Context.Error (Source & ":" & Line & ": " & Message, Arg1); end Error; function Get_Target_Name (Link : in String) return String is Expr : EL.Expressions.Expression; File : Util.Beans.Objects.Object; begin Expr := EL.Expressions.Create_Expression (Link, Rule.Context); File := Expr.Get_Value (Rule.Context); declare Name : constant String := To_String (File); begin -- Drop the first '/' if there is one. if Name'Length > 0 and then Name (Name'First) = '/' then return Name (Name'First + 1 .. Name'Last); else return Name; end if; end; end Get_Target_Name; function Get_Target_Path (Link : in String) return String is Name : constant String := Get_Target_Name (Link); begin return Util.Files.Compose (Root_Dir, Name); end Get_Target_Path; function Get_Filename (Line : in String) return String is Pos : Natural := Index (Line, "link="); Last : Natural; begin if Pos > 0 then Mode := MERGE_LINK; else Pos := Index (Line, "script="); if Pos > 0 then Mode := MERGE_SCRIPT; end if; if Pos = 0 then return ""; end if; end if; Pos := Index (Line, "="); Last := Util.Strings.Index (Line, ' ', Pos + 1); if Last = 0 then return ""; end if; return Line (Pos + 1 .. Last - 1); end Get_Filename; function Get_Source (Line : in String; Tag : in String) return String is Pos : Natural := Index (Line, Tag); Last : Natural; begin if Pos = 0 then return ""; end if; Pos := Pos + Tag'Length; if Pos > Line'Last or else (Line (Pos) /= '"' and Line (Pos) /= ''') then return ""; end if; Last := Util.Strings.Index (Line, Line (Pos), Pos + 1); if Last = 0 then return ""; end if; return Line (Pos + 1 .. Last - 1); end Get_Source; procedure Prepare_Merge (Line : in String) is Link : constant String := Get_Filename (Line); Path : constant String := Get_Target_Name (Link); Target_Path : constant String := Util.Files.Compose (Root_Dir, Path); Parent_Dir : constant String := Ada.Directories.Containing_Directory (Target_Path); begin if Link'Length = 0 then Error ("invalid empty file name"); return; end if; case Mode is when MERGE_LINK => Text.Write ("<link media='screen' type='text/css' rel='stylesheet'" & " href='"); Text.Write (Link); Text.Write ("?build="); Text.Write (Build); Text.Write ("'/>" & ASCII.LF); when MERGE_SCRIPT => Text.Write ("<script type='text/javascript' src='"); Text.Write (Link); Text.Write ("?build="); Text.Write (Build); Text.Write ("'></script>" & ASCII.LF); when MERGE_NONE => null; end case; if Rule.Level >= Util.Log.INFO_LEVEL then Log.Info (" create {0}", Path); end if; if not Ada.Directories.Exists (Parent_Dir) then Ada.Directories.Create_Path (Parent_Dir); end if; Modtime := File_Time; Merge_Path := To_Unbounded_String (Target_Path); Merge_Name := To_Unbounded_String (Path); Merge.Create (Mode => Ada.Streams.Stream_IO.Out_File, Name => Target_Path); end Prepare_Merge; Current_Match : Util.Strings.Maps.Cursor; function Find_Match (Buffer : in Stream_Element_Array) return Stream_Element_Offset is Iter : Util.Strings.Maps.Cursor := Rule.Replace.First; First : Stream_Element_Offset := Buffer'Last + 1; begin while Util.Strings.Maps.Has_Element (Iter) loop declare Value : constant String := Util.Strings.Maps.Key (Iter); Match : Stream_Element_Array (1 .. Value'Length); for Match'Address use Value'Address; Pos : Stream_Element_Offset; begin Pos := Buffer'First; while Pos + Match'Length < Buffer'Last loop if Buffer (Pos .. Pos + Match'Length - 1) = Match then if First > Pos then First := Pos; Current_Match := Iter; end if; exit; end if; Pos := Pos + 1; end loop; end; Util.Strings.Maps.Next (Iter); end loop; return First; end Find_Match; procedure Free is new Ada.Unchecked_Deallocation (Object => Ada.Streams.Stream_Element_Array, Name => Util.Streams.Buffered.Buffer_Access); procedure Include (Line : in String; Pattern : in String) is Source : constant String := Get_Source (Line, Pattern); Target : constant String := Get_Target_Path (Source); Input : Util.Streams.Files.File_Stream; Size : Stream_Element_Offset; Last : Stream_Element_Offset; Pos : Stream_Element_Offset; Next : Stream_Element_Offset; Buffer : Util.Streams.Buffered.Buffer_Access; Time : Ada.Calendar.Time; begin if Source'Length = 0 then Inc_Error := Inc_Error + 1; if Inc_Error > 5 then return; end if; Error ("expecting a '{0}' in the line to identify the file to include", Pattern); if Inc_Error = 5 then Error ("may be the end marker '{0}' was not correct?", To_String (Rule.End_Mark)); end if; return; end if; if Rule.Level >= Util.Log.INFO_LEVEL then Log.Info (" include {0}", Target); end if; Time := Ada.Directories.Modification_Time (Target); if Time > Modtime then Modtime := Time; end if; Input.Open (Name => Target, Mode => Ada.Streams.Stream_IO.In_File); Size := Stream_Element_Offset (Ada.Directories.Size (Target)); Buffer := new Stream_Element_Array (1 .. Size); Input.Read (Buffer.all, Last); Input.Close; Pos := 1; while Pos < Last loop Next := Find_Match (Buffer (Pos .. Last)); if Next > Pos then Merge.Write (Buffer (Pos .. Next - 1)); end if; exit when Next >= Last; declare Value : constant String := Util.Strings.Maps.Key (Current_Match); Replace : constant String := Util.Strings.Maps.Element (Current_Match); Content : Stream_Element_Array (1 .. Replace'Length); for Content'Address use Replace'Address; begin Merge.Write (Content); Pos := Next + Value'Length; end; end loop; Free (Buffer); exception when Ex : Ada.IO_Exceptions.Name_Error => Error ("cannot read {0}", Ada.Exceptions.Exception_Message (Ex)); end Include; procedure Process (Line : in String) is Pos : Natural; begin Line_Num := Line_Num + 1; case Mode is when MERGE_NONE => Pos := Index (Line, Start_Mark); if Pos = 0 then Text.Write (Line); Text.Write (ASCII.LF); return; end if; Text.Write (Line (Line'First .. Pos - 1)); Prepare_Merge (Line (Pos + 10 .. Line'Last)); when MERGE_LINK => Pos := Index (Line, End_Mark); if Pos > 0 then Merge.Close; if not Rule.Source_Timestamp then Modtime := Ada.Directories.Modification_Time (To_String (Merge_Path)); end if; Rule.Add_File (Name => To_String (Merge_Name), Path => To_String (Merge_Path), Modtime => Modtime, Override => True); Mode := MERGE_NONE; return; end if; Include (Line, "href="); when MERGE_SCRIPT => Pos := Index (Line, End_Mark); if Pos > 0 then Merge.Close; if not Rule.Source_Timestamp then Modtime := Ada.Directories.Modification_Time (To_String (Merge_Path)); end if; Rule.Add_File (Name => To_String (Merge_Name), Path => To_String (Merge_Path), Modtime => Modtime, Override => True); Mode := MERGE_NONE; return; end if; Include (Line, "src="); end case; end Process; begin if Rule.Level >= Util.Log.INFO_LEVEL then Log.Info ("webmerge {0}", Path); end if; Ada.Directories.Create_Path (Dir); Output.Create (Name => Target, Mode => Ada.Streams.Stream_IO.Out_File); Text.Initialize (Output'Unchecked_Access, 16 * 1024); Util.Files.Read_File (Source, Process'Access); Text.Flush; Output.Close; Rule.Add_File (Path, Target, File_Time); end Install; end Are.Installer.Merges;
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> <!DOCTYPE boost_serialization> <boost_serialization signature="serialization::archive" version="15"> <syndb class_id="0" tracking_level="0" version="0"> <userIPLatency>-1</userIPLatency> <userIPName/> <cdfg class_id="1" tracking_level="1" version="0" object_id="_0"> <name>x_order_fir</name> <ret_bitwidth>0</ret_bitwidth> <ports class_id="2" tracking_level="0" version="0"> <count>9</count> <item_version>0</item_version> <item class_id="3" tracking_level="1" version="0" object_id="_1"> <Value class_id="4" tracking_level="0" version="0"> <Obj class_id="5" tracking_level="0" version="0"> <type>1</type> <id>1</id> <name>gmem</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo class_id="6" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <direction>0</direction> <if_type>4</if_type> <array_size>0</array_size> <bit_vecs class_id="7" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_2"> <Value> <Obj> <type>1</type> <id>2</id> <name>y_data</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>y.data</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <direction>1</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_3"> <Value> <Obj> <type>1</type> <id>3</id> <name>y_user_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>y.user.V</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <direction>1</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_4"> <Value> <Obj> <type>1</type> <id>4</id> <name>y_last_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>y.last.V</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <direction>1</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_5"> <Value> <Obj> <type>1</type> <id>5</id> <name>x_data</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>x.data</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_6"> <Value> <Obj> <type>1</type> <id>6</id> <name>x_user_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>x.user.V</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_7"> <Value> <Obj> <type>1</type> <id>7</id> <name>x_last_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>x.last.V</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_8"> <Value> <Obj> <type>1</type> <id>8</id> <name>coe</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>coe</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_9"> <Value> <Obj> <type>1</type> <id>9</id> <name>ctrl</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>ctrl</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> </ports> <nodes class_id="8" tracking_level="0" version="0"> <count>66</count> <item_version>0</item_version> <item class_id="9" tracking_level="1" version="0" object_id="_10"> <Value> <Obj> <type>0</type> <id>12</id> <name>ctrl_read</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>ctrl</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>119</item> <item>120</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.00</m_delay> <m_topoIndex>1</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_11"> <Value> <Obj> <type>0</type> <id>13</id> <name>coe_read</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>coe</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>121</item> <item>122</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.00</m_delay> <m_topoIndex>2</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_12"> <Value> <Obj> <type>0</type> <id>14</id> <name>ctrl3</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName>ctrl3_reg_478</rtlName> <coreName/> </Obj> <bitwidth>30</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>124</item> <item>125</item> <item>127</item> <item>129</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>3</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_13"> <Value> <Obj> <type>0</type> <id>15</id> <name>tmp_5</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName>tmp_5_fu_326_p1</rtlName> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>130</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>5</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_14"> <Value> <Obj> <type>0</type> <id>16</id> <name>gmem_addr</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>131</item> <item>132</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>6</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_15"> <Value> <Obj> <type>0</type> <id>17</id> <name>coe1</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName>coe1_reg_483</rtlName> <coreName/> </Obj> <bitwidth>30</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>133</item> <item>134</item> <item>135</item> <item>136</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>4</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_16"> <Value> <Obj> <type>0</type> <id>18</id> <name>tmp_9</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName>tmp_9_fu_336_p1</rtlName> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>137</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>8</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_17"> <Value> <Obj> <type>0</type> <id>19</id> <name>gmem_addr_1</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>138</item> <item>139</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>9</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_18"> <Value> <Obj> <type>0</type> <id>34</id> <name>gmem_addr_rd_req</name> <fileName>fir_src/x_order_fir.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>43</lineNumber> <contextFuncName>x_order_fir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item class_id="11" tracking_level="0" version="0"> <first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first> <second class_id="12" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="13" tracking_level="0" version="0"> <first class_id="14" tracking_level="0" version="0"> <first>fir_src/x_order_fir.cpp</first> <second>x_order_fir</second> </first> <second>43</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>141</item> <item>142</item> <item>143</item> </oprand_edges> <opcode>readreq</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>8.75</m_delay> <m_topoIndex>7</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_19"> <Value> <Obj> <type>0</type> <id>35</id> <name/> <fileName>fir_src/x_order_fir.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>43</lineNumber> <contextFuncName>x_order_fir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>fir_src/x_order_fir.cpp</first> <second>x_order_fir</second> </first> <second>43</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>144</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.76</m_delay> <m_topoIndex>10</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_20"> <Value> <Obj> <type>0</type> <id>37</id> <name>i</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>fir_ctrl[1]</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>146</item> <item>147</item> <item>148</item> <item>149</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>11</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_21"> <Value> <Obj> <type>0</type> <id>38</id> <name>reload</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>reload</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>150</item> <item>151</item> <item>152</item> <item>153</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>12</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_22"> <Value> <Obj> <type>0</type> <id>39</id> <name>indvar</name> <fileName>fir_src/x_order_fir.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>43</lineNumber> <contextFuncName>x_order_fir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>fir_src/x_order_fir.cpp</first> <second>x_order_fir</second> </first> <second>43</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>155</item> <item>156</item> <item>157</item> <item>158</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>13</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_23"> <Value> <Obj> <type>0</type> <id>40</id> <name>exitcond</name> <fileName>fir_src/x_order_fir.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>43</lineNumber> <contextFuncName>x_order_fir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>fir_src/x_order_fir.cpp</first> <second>x_order_fir</second> </first> <second>43</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>exitcond_fu_345_p2</rtlName> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>159</item> <item>161</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.95</m_delay> <m_topoIndex>14</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_24"> <Value> <Obj> <type>0</type> <id>42</id> <name>indvar_next</name> <fileName>fir_src/x_order_fir.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>43</lineNumber> <contextFuncName>x_order_fir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>fir_src/x_order_fir.cpp</first> <second>x_order_fir</second> </first> <second>43</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>indvar_next_fu_351_p2</rtlName> <coreName/> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>162</item> <item>164</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.56</m_delay> <m_topoIndex>15</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_25"> <Value> <Obj> <type>0</type> <id>43</id> <name/> <fileName>fir_src/x_order_fir.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>43</lineNumber> <contextFuncName>x_order_fir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>fir_src/x_order_fir.cpp</first> <second>x_order_fir</second> </first> <second>43</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>165</item> <item>166</item> <item>167</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>16</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_26"> <Value> <Obj> <type>0</type> <id>48</id> <name>fir_ctrl_0</name> <fileName>fir_src/x_order_fir.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>43</lineNumber> <contextFuncName>x_order_fir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>fir_src/x_order_fir.cpp</first> <second>x_order_fir</second> </first> <second>43</second> </item> </second> </item> </inlineStackInfo> <originalName>fir_ctrl[0]</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>169</item> <item>170</item> <item>506</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>8.75</m_delay> <m_topoIndex>18</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_27"> <Value> <Obj> <type>0</type> <id>49</id> <name>tmp_10</name> <fileName>fir_src/x_order_fir.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>43</lineNumber> <contextFuncName>x_order_fir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>fir_src/x_order_fir.cpp</first> <second>x_order_fir</second> </first> <second>43</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_10_fu_357_p1</rtlName> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>171</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>17</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_28"> <Value> <Obj> <type>0</type> <id>50</id> <name>fir_ctrl_1_1</name> <fileName>fir_src/x_order_fir.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>43</lineNumber> <contextFuncName>x_order_fir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>fir_src/x_order_fir.cpp</first> <second>x_order_fir</second> </first> <second>43</second> </item> </second> </item> </inlineStackInfo> <originalName>fir_ctrl[1]</originalName> <rtlName>fir_ctrl_1_1_fu_361_p3</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>172</item> <item>173</item> <item>174</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.69</m_delay> <m_topoIndex>19</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_29"> <Value> <Obj> <type>0</type> <id>51</id> <name>reload_1</name> <fileName>fir_src/x_order_fir.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>43</lineNumber> <contextFuncName>x_order_fir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>fir_src/x_order_fir.cpp</first> <second>x_order_fir</second> </first> <second>43</second> </item> </second> </item> </inlineStackInfo> <originalName>reload</originalName> <rtlName>reload_1_fu_367_p3</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>175</item> <item>176</item> <item>177</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.69</m_delay> <m_topoIndex>20</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_30"> <Value> <Obj> <type>0</type> <id>53</id> <name/> <fileName>fir_src/x_order_fir.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>43</lineNumber> <contextFuncName>x_order_fir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>fir_src/x_order_fir.cpp</first> <second>x_order_fir</second> </first> <second>43</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>178</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>21</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_31"> <Value> <Obj> <type>0</type> <id>55</id> <name>tmp</name> <fileName>fir_src/x_order_fir.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>47</lineNumber> <contextFuncName>x_order_fir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>fir_src/x_order_fir.cpp</first> <second>x_order_fir</second> </first> <second>47</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_fu_373_p2</rtlName> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>179</item> <item>181</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.47</m_delay> <m_topoIndex>22</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_32"> <Value> <Obj> <type>0</type> <id>56</id> <name/> <fileName>fir_src/x_order_fir.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>47</lineNumber> <contextFuncName>x_order_fir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>fir_src/x_order_fir.cpp</first> <second>x_order_fir</second> </first> <second>47</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>182</item> <item>183</item> <item>184</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>23</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_33"> <Value> <Obj> <type>0</type> <id>58</id> <name>tmp_12</name> <fileName>fir_src/x_order_fir.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>48</lineNumber> <contextFuncName>x_order_fir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>fir_src/x_order_fir.cpp</first> <second>x_order_fir</second> </first> <second>48</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_12_fu_379_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>185</item> <item>186</item> </oprand_edges> <opcode>shl</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>24</m_topoIndex> <m_clusterGroupNumber>1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_34"> <Value> <Obj> <type>0</type> <id>59</id> <name>tmp_1</name> <fileName>fir_src/x_order_fir.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>48</lineNumber> <contextFuncName>x_order_fir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>fir_src/x_order_fir.cpp</first> <second>x_order_fir</second> </first> <second>48</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_1_fu_385_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>188</item> <item>189</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.55</m_delay> <m_topoIndex>25</m_topoIndex> <m_clusterGroupNumber>1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_35"> <Value> <Obj> <type>0</type> <id>60</id> <name>p_add7_i32_shr</name> <fileName>fir_src/x_order_fir.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>48</lineNumber> <contextFuncName>x_order_fir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>fir_src/x_order_fir.cpp</first> <second>x_order_fir</second> </first> <second>48</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>p_add7_i32_shr_reg_535</rtlName> <coreName/> </Obj> <bitwidth>30</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>190</item> <item>191</item> <item>192</item> <item>193</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>26</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_36"> <Value> <Obj> <type>0</type> <id>61</id> <name>tmp_s</name> <fileName>fir_src/x_order_fir.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>48</lineNumber> <contextFuncName>x_order_fir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>fir_src/x_order_fir.cpp</first> <second>x_order_fir</second> </first> <second>48</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_s_fu_401_p1</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>194</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>27</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_37"> <Value> <Obj> <type>0</type> <id>62</id> <name>gmem_addr_1_rd_req</name> <fileName>fir_src/x_order_fir.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>48</lineNumber> <contextFuncName>x_order_fir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>fir_src/x_order_fir.cpp</first> <second>x_order_fir</second> </first> <second>48</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>195</item> <item>196</item> <item>197</item> <item>507</item> </oprand_edges> <opcode>readreq</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>8.75</m_delay> <m_topoIndex>28</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_38"> <Value> <Obj> <type>0</type> <id>63</id> <name/> <fileName>fir_src/x_order_fir.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>48</lineNumber> <contextFuncName>x_order_fir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>fir_src/x_order_fir.cpp</first> <second>x_order_fir</second> </first> <second>48</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>198</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.76</m_delay> <m_topoIndex>29</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_39"> <Value> <Obj> <type>0</type> <id>65</id> <name>indvar1</name> <fileName>fir_src/x_order_fir.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>48</lineNumber> <contextFuncName>x_order_fir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>fir_src/x_order_fir.cpp</first> <second>x_order_fir</second> </first> <second>48</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>30</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>200</item> <item>201</item> <item>202</item> <item>203</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>30</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_40"> <Value> <Obj> <type>0</type> <id>66</id> <name>exitcond1</name> <fileName>fir_src/x_order_fir.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>48</lineNumber> <contextFuncName>x_order_fir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>fir_src/x_order_fir.cpp</first> <second>x_order_fir</second> </first> <second>48</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>exitcond1_fu_405_p2</rtlName> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>204</item> <item>205</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.46</m_delay> <m_topoIndex>31</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_41"> <Value> <Obj> <type>0</type> <id>67</id> <name>indvar_next1</name> <fileName>fir_src/x_order_fir.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>48</lineNumber> <contextFuncName>x_order_fir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>fir_src/x_order_fir.cpp</first> <second>x_order_fir</second> </first> <second>48</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>indvar_next1_fu_410_p2</rtlName> <coreName/> </Obj> <bitwidth>30</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>206</item> <item>208</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.49</m_delay> <m_topoIndex>32</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_42"> <Value> <Obj> <type>0</type> <id>68</id> <name/> <fileName>fir_src/x_order_fir.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>48</lineNumber> <contextFuncName>x_order_fir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>fir_src/x_order_fir.cpp</first> <second>x_order_fir</second> </first> <second>48</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>209</item> <item>210</item> <item>211</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>33</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_43"> <Value> <Obj> <type>0</type> <id>73</id> <name>indvar2</name> <fileName>fir_src/x_order_fir.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>48</lineNumber> <contextFuncName>x_order_fir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>fir_src/x_order_fir.cpp</first> <second>x_order_fir</second> </first> <second>48</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>indvar2_fu_416_p1</rtlName> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>212</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>35</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_44"> <Value> <Obj> <type>0</type> <id>74</id> <name>gmem_addr_1_read</name> <fileName>fir_src/x_order_fir.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>48</lineNumber> <contextFuncName>x_order_fir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>fir_src/x_order_fir.cpp</first> <second>x_order_fir</second> </first> <second>48</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>213</item> <item>214</item> <item>508</item> <item>509</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>8.75</m_delay> <m_topoIndex>34</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_45"> <Value> <Obj> <type>0</type> <id>75</id> <name>coef_addr</name> <fileName>fir_src/x_order_fir.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>48</lineNumber> <contextFuncName>x_order_fir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>fir_src/x_order_fir.cpp</first> <second>x_order_fir</second> </first> <second>48</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>10</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>215</item> <item>217</item> <item>218</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>36</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_46"> <Value> <Obj> <type>0</type> <id>76</id> <name/> <fileName>fir_src/x_order_fir.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>48</lineNumber> <contextFuncName>x_order_fir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>fir_src/x_order_fir.cpp</first> <second>x_order_fir</second> </first> <second>48</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>219</item> <item>220</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>3.25</m_delay> <m_topoIndex>37</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_47"> <Value> <Obj> <type>0</type> <id>78</id> <name/> <fileName>fir_src/x_order_fir.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>48</lineNumber> <contextFuncName>x_order_fir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>fir_src/x_order_fir.cpp</first> <second>x_order_fir</second> </first> <second>48</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>221</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>38</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_48"> <Value> <Obj> <type>0</type> <id>80</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>222</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>39</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_49"> <Value> <Obj> <type>0</type> <id>82</id> <name/> <fileName>fir_src/x_order_fir.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>52</lineNumber> <contextFuncName>x_order_fir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>fir_src/x_order_fir.cpp</first> <second>x_order_fir</second> </first> <second>52</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>223</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.76</m_delay> <m_topoIndex>40</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_50"> <Value> <Obj> <type>0</type> <id>84</id> <name>i1</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>i</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>224</item> <item>225</item> <item>226</item> <item>227</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>41</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_51"> <Value> <Obj> <type>0</type> <id>85</id> <name>acc</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>acc</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>228</item> <item>229</item> <item>230</item> <item>231</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>42</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_52"> <Value> <Obj> <type>0</type> <id>86</id> <name>tmp_2</name> <fileName>fir_src/x_order_fir.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>52</lineNumber> <contextFuncName>x_order_fir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>fir_src/x_order_fir.cpp</first> <second>x_order_fir</second> </first> <second>52</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_2_fu_421_p2</rtlName> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>232</item> <item>233</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.47</m_delay> <m_topoIndex>43</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_53"> <Value> <Obj> <type>0</type> <id>87</id> <name/> <fileName>fir_src/x_order_fir.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>52</lineNumber> <contextFuncName>x_order_fir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>fir_src/x_order_fir.cpp</first> <second>x_order_fir</second> </first> <second>52</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>234</item> <item>235</item> <item>236</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>44</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_54"> <Value> <Obj> <type>0</type> <id>93</id> <name>i_1</name> <fileName>fir_src/x_order_fir.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>55</lineNumber> <contextFuncName>x_order_fir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>fir_src/x_order_fir.cpp</first> <second>x_order_fir</second> </first> <second>55</second> </item> </second> </item> </inlineStackInfo> <originalName>i</originalName> <rtlName>i_1_fu_427_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>237</item> <item>239</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.55</m_delay> <m_topoIndex>45</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_55"> <Value> <Obj> <type>0</type> <id>94</id> <name>tmp_6</name> <fileName>fir_src/x_order_fir.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>55</lineNumber> <contextFuncName>x_order_fir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>fir_src/x_order_fir.cpp</first> <second>x_order_fir</second> </first> <second>55</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_6_fu_433_p1</rtlName> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>240</item> </oprand_edges> <opcode>sext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>46</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_56"> <Value> <Obj> <type>0</type> <id>95</id> <name>shift_reg_addr</name> <fileName>fir_src/x_order_fir.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>55</lineNumber> <contextFuncName>x_order_fir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>fir_src/x_order_fir.cpp</first> <second>x_order_fir</second> </first> <second>55</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>10</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>241</item> <item>242</item> <item>243</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>47</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_57"> <Value> <Obj> <type>0</type> <id>96</id> <name>shift_reg_load</name> <fileName>fir_src/x_order_fir.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>55</lineNumber> <contextFuncName>x_order_fir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>fir_src/x_order_fir.cpp</first> <second>x_order_fir</second> </first> <second>55</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>244</item> </oprand_edges> <opcode>load</opcode> <m_Display>1</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>1</m_isLCDNode> <m_isStartOfPath>1</m_isStartOfPath> <m_delay>3.25</m_delay> <m_topoIndex>48</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_58"> <Value> <Obj> <type>0</type> <id>97</id> <name>tmp_7</name> <fileName>fir_src/x_order_fir.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>55</lineNumber> <contextFuncName>x_order_fir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>fir_src/x_order_fir.cpp</first> <second>x_order_fir</second> </first> <second>55</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_7_fu_438_p1</rtlName> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>245</item> </oprand_edges> <opcode>sext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>49</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_59"> <Value> <Obj> <type>0</type> <id>98</id> <name>coef_addr_1</name> <fileName>fir_src/x_order_fir.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>55</lineNumber> <contextFuncName>x_order_fir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>fir_src/x_order_fir.cpp</first> <second>x_order_fir</second> </first> <second>55</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>10</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>246</item> <item>247</item> <item>248</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>50</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_60"> <Value> <Obj> <type>0</type> <id>99</id> <name>coef_load_1</name> <fileName>fir_src/x_order_fir.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>55</lineNumber> <contextFuncName>x_order_fir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>fir_src/x_order_fir.cpp</first> <second>x_order_fir</second> </first> <second>55</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>249</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>3.25</m_delay> <m_topoIndex>51</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_61"> <Value> <Obj> <type>0</type> <id>100</id> <name>tmp_8</name> <fileName>fir_src/x_order_fir.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>55</lineNumber> <contextFuncName>x_order_fir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>fir_src/x_order_fir.cpp</first> <second>x_order_fir</second> </first> <second>55</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_8_fu_443_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>250</item> <item>251</item> </oprand_edges> <opcode>mul</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>8.51</m_delay> <m_topoIndex>54</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_62"> <Value> <Obj> <type>0</type> <id>101</id> <name>acc_2</name> <fileName>fir_src/x_order_fir.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>55</lineNumber> <contextFuncName>x_order_fir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>fir_src/x_order_fir.cpp</first> <second>x_order_fir</second> </first> <second>55</second> </item> </second> </item> </inlineStackInfo> <originalName>acc</originalName> <rtlName>acc_2_fu_448_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>252</item> <item>253</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.55</m_delay> <m_topoIndex>55</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_63"> <Value> <Obj> <type>0</type> <id>102</id> <name>shift_reg_addr_1</name> <fileName>fir_src/x_order_fir.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>56</lineNumber> <contextFuncName>x_order_fir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>fir_src/x_order_fir.cpp</first> <second>x_order_fir</second> </first> <second>56</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>10</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>254</item> <item>255</item> <item>256</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>52</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_64"> <Value> <Obj> <type>0</type> <id>103</id> <name/> <fileName>fir_src/x_order_fir.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>56</lineNumber> <contextFuncName>x_order_fir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>fir_src/x_order_fir.cpp</first> <second>x_order_fir</second> </first> <second>56</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>257</item> <item>258</item> <item>2147483647</item> </oprand_edges> <opcode>store</opcode> <m_Display>1</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>1</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>3.25</m_delay> <m_topoIndex>53</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_65"> <Value> <Obj> <type>0</type> <id>105</id> <name/> <fileName>fir_src/x_order_fir.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>52</lineNumber> <contextFuncName>x_order_fir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>fir_src/x_order_fir.cpp</first> <second>x_order_fir</second> </first> <second>52</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>259</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>56</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_66"> <Value> <Obj> <type>0</type> <id>107</id> <name>empty_4</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>34</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>261</item> <item>262</item> <item>263</item> <item>264</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>58</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_67"> <Value> <Obj> <type>0</type> <id>108</id> <name>x_data_tmp</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>265</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>59</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_68"> <Value> <Obj> <type>0</type> <id>109</id> <name>x_user_V_tmp</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>266</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>60</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_69"> <Value> <Obj> <type>0</type> <id>110</id> <name>x_last_V_tmp</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>267</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>61</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_70"> <Value> <Obj> <type>0</type> <id>111</id> <name>coef_load</name> <fileName>fir_src/x_order_fir.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>59</lineNumber> <contextFuncName>x_order_fir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>fir_src/x_order_fir.cpp</first> <second>x_order_fir</second> </first> <second>59</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>270</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>3.25</m_delay> <m_topoIndex>57</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_71"> <Value> <Obj> <type>0</type> <id>112</id> <name>tmp_3</name> <fileName>fir_src/x_order_fir.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>59</lineNumber> <contextFuncName>x_order_fir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>fir_src/x_order_fir.cpp</first> <second>x_order_fir</second> </first> <second>59</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_3_fu_466_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>271</item> <item>272</item> </oprand_edges> <opcode>mul</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>8.51</m_delay> <m_topoIndex>62</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_72"> <Value> <Obj> <type>0</type> <id>113</id> <name>acc_1</name> <fileName>fir_src/x_order_fir.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>59</lineNumber> <contextFuncName>x_order_fir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>fir_src/x_order_fir.cpp</first> <second>x_order_fir</second> </first> <second>59</second> </item> </second> </item> </inlineStackInfo> <originalName>acc</originalName> <rtlName>acc_1_fu_472_p2</rtlName> <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> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.55</m_delay> <m_topoIndex>64</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_73"> <Value> <Obj> <type>0</type> <id>114</id> <name/> <fileName>fir_src/x_order_fir.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>60</lineNumber> <contextFuncName>x_order_fir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>fir_src/x_order_fir.cpp</first> <second>x_order_fir</second> </first> <second>60</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>275</item> <item>278</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>3.25</m_delay> <m_topoIndex>63</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_74"> <Value> <Obj> <type>0</type> <id>115</id> <name/> <fileName>fir_src/x_order_fir.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>59</lineNumber> <contextFuncName>x_order_fir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>fir_src/x_order_fir.cpp</first> <second>x_order_fir</second> </first> <second>59</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>7</count> <item_version>0</item_version> <item>280</item> <item>281</item> <item>282</item> <item>283</item> <item>284</item> <item>285</item> <item>286</item> </oprand_edges> <opcode>write</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>65</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_75"> <Value> <Obj> <type>0</type> <id>116</id> <name/> <fileName>fir_src/x_order_fir.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>x_order_fir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\weli\Documents\Works\Materials\Training_Materials_WeiLiu\pynq_x-order_fir\ip\hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>fir_src/x_order_fir.cpp</first> <second>x_order_fir</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>0</count> <item_version>0</item_version> </oprand_edges> <opcode>ret</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>66</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> </nodes> <consts class_id="15" tracking_level="0" version="0"> <count>14</count> <item_version>0</item_version> <item class_id="16" tracking_level="1" version="0" object_id="_76"> <Value> <Obj> <type>2</type> <id>126</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>2</content> </item> <item class_id_reference="16" object_id="_77"> <Value> <Obj> <type>2</type> <id>128</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>31</content> </item> <item class_id_reference="16" object_id="_78"> <Value> <Obj> <type>2</type> <id>145</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>4</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_79"> <Value> <Obj> <type>2</type> <id>154</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>2</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_80"> <Value> <Obj> <type>2</type> <id>160</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>2</bitwidth> </Value> <const_type>0</const_type> <content>2</content> </item> <item class_id_reference="16" object_id="_81"> <Value> <Obj> <type>2</type> <id>163</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>2</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_82"> <Value> <Obj> <type>2</type> <id>180</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_83"> <Value> <Obj> <type>2</type> <id>187</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>4</content> </item> <item class_id_reference="16" object_id="_84"> <Value> <Obj> <type>2</type> <id>199</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>30</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_85"> <Value> <Obj> <type>2</type> <id>207</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>30</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_86"> <Value> <Obj> <type>2</type> <id>216</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_87"> <Value> <Obj> <type>2</type> <id>238</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>4294967295</content> </item> <item class_id_reference="16" object_id="_88"> <Value> <Obj> <type>2</type> <id>268</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>3</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_89"> <Value> <Obj> <type>2</type> <id>276</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>3</const_type> <content>0</content> </item> </consts> <blocks class_id="17" tracking_level="0" version="0"> <count>12</count> <item_version>0</item_version> <item class_id="18" tracking_level="1" version="0" object_id="_90"> <Obj> <type>3</type> <id>36</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>10</count> <item_version>0</item_version> <item>12</item> <item>13</item> <item>14</item> <item>15</item> <item>16</item> <item>17</item> <item>18</item> <item>19</item> <item>34</item> <item>35</item> </node_objs> </item> <item class_id_reference="18" object_id="_91"> <Obj> <type>3</type> <id>44</id> <name>burst.rd.header</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>6</count> <item_version>0</item_version> <item>37</item> <item>38</item> <item>39</item> <item>40</item> <item>42</item> <item>43</item> </node_objs> </item> <item class_id_reference="18" object_id="_92"> <Obj> <type>3</type> <id>54</id> <name>burst.rd.body</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>5</count> <item_version>0</item_version> <item>48</item> <item>49</item> <item>50</item> <item>51</item> <item>53</item> </node_objs> </item> <item class_id_reference="18" object_id="_93"> <Obj> <type>3</type> <id>57</id> <name>burst.rd.end</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>55</item> <item>56</item> </node_objs> </item> <item class_id_reference="18" object_id="_94"> <Obj> <type>3</type> <id>64</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>6</count> <item_version>0</item_version> <item>58</item> <item>59</item> <item>60</item> <item>61</item> <item>62</item> <item>63</item> </node_objs> </item> <item class_id_reference="18" object_id="_95"> <Obj> <type>3</type> <id>69</id> <name>burst.rd.header9</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>4</count> <item_version>0</item_version> <item>65</item> <item>66</item> <item>67</item> <item>68</item> </node_objs> </item> <item class_id_reference="18" object_id="_96"> <Obj> <type>3</type> <id>79</id> <name>burst.rd.body10</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>5</count> <item_version>0</item_version> <item>73</item> <item>74</item> <item>75</item> <item>76</item> <item>78</item> </node_objs> </item> <item class_id_reference="18" object_id="_97"> <Obj> <type>3</type> <id>81</id> <name>._crit_edge.loopexit</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>80</item> </node_objs> </item> <item class_id_reference="18" object_id="_98"> <Obj> <type>3</type> <id>83</id> <name>._crit_edge</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>82</item> </node_objs> </item> <item class_id_reference="18" object_id="_99"> <Obj> <type>3</type> <id>88</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>4</count> <item_version>0</item_version> <item>84</item> <item>85</item> <item>86</item> <item>87</item> </node_objs> </item> <item class_id_reference="18" object_id="_100"> <Obj> <type>3</type> <id>106</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>12</count> <item_version>0</item_version> <item>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>105</item> </node_objs> </item> <item class_id_reference="18" object_id="_101"> <Obj> <type>3</type> <id>117</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>10</count> <item_version>0</item_version> <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> </node_objs> </item> </blocks> <edges class_id="19" tracking_level="0" version="0"> <count>158</count> <item_version>0</item_version> <item class_id="20" tracking_level="1" version="0" object_id="_102"> <id>120</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>12</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_103"> <id>122</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>13</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_104"> <id>125</id> <edge_type>1</edge_type> <source_obj>12</source_obj> <sink_obj>14</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_105"> <id>127</id> <edge_type>1</edge_type> <source_obj>126</source_obj> <sink_obj>14</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_106"> <id>129</id> <edge_type>1</edge_type> <source_obj>128</source_obj> <sink_obj>14</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_107"> <id>130</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="_108"> <id>131</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>16</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_109"> <id>132</id> <edge_type>1</edge_type> <source_obj>15</source_obj> <sink_obj>16</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_110"> <id>134</id> <edge_type>1</edge_type> <source_obj>13</source_obj> <sink_obj>17</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_111"> <id>135</id> <edge_type>1</edge_type> <source_obj>126</source_obj> <sink_obj>17</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_112"> <id>136</id> <edge_type>1</edge_type> <source_obj>128</source_obj> <sink_obj>17</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_113"> <id>137</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="_114"> <id>138</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>19</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_115"> <id>139</id> <edge_type>1</edge_type> <source_obj>18</source_obj> <sink_obj>19</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_116"> <id>142</id> <edge_type>1</edge_type> <source_obj>16</source_obj> <sink_obj>34</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_117"> <id>143</id> <edge_type>1</edge_type> <source_obj>126</source_obj> <sink_obj>34</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_118"> <id>144</id> <edge_type>2</edge_type> <source_obj>44</source_obj> <sink_obj>35</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_119"> <id>146</id> <edge_type>1</edge_type> <source_obj>145</source_obj> <sink_obj>37</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_120"> <id>147</id> <edge_type>2</edge_type> <source_obj>36</source_obj> <sink_obj>37</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_121"> <id>148</id> <edge_type>1</edge_type> <source_obj>50</source_obj> <sink_obj>37</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_122"> <id>149</id> <edge_type>2</edge_type> <source_obj>54</source_obj> <sink_obj>37</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_123"> <id>150</id> <edge_type>1</edge_type> <source_obj>145</source_obj> <sink_obj>38</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_124"> <id>151</id> <edge_type>2</edge_type> <source_obj>36</source_obj> <sink_obj>38</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_125"> <id>152</id> <edge_type>1</edge_type> <source_obj>51</source_obj> <sink_obj>38</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_126"> <id>153</id> <edge_type>2</edge_type> <source_obj>54</source_obj> <sink_obj>38</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_127"> <id>155</id> <edge_type>1</edge_type> <source_obj>154</source_obj> <sink_obj>39</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_128"> <id>156</id> <edge_type>2</edge_type> <source_obj>36</source_obj> <sink_obj>39</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_129"> <id>157</id> <edge_type>1</edge_type> <source_obj>42</source_obj> <sink_obj>39</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_130"> <id>158</id> <edge_type>2</edge_type> <source_obj>54</source_obj> <sink_obj>39</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_131"> <id>159</id> <edge_type>1</edge_type> <source_obj>39</source_obj> <sink_obj>40</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_132"> <id>161</id> <edge_type>1</edge_type> <source_obj>160</source_obj> <sink_obj>40</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_133"> <id>162</id> <edge_type>1</edge_type> <source_obj>39</source_obj> <sink_obj>42</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_134"> <id>164</id> <edge_type>1</edge_type> <source_obj>163</source_obj> <sink_obj>42</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_135"> <id>165</id> <edge_type>1</edge_type> <source_obj>40</source_obj> <sink_obj>43</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_136"> <id>166</id> <edge_type>2</edge_type> <source_obj>54</source_obj> <sink_obj>43</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_137"> <id>167</id> <edge_type>2</edge_type> <source_obj>57</source_obj> <sink_obj>43</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_138"> <id>170</id> <edge_type>1</edge_type> <source_obj>16</source_obj> <sink_obj>48</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_139"> <id>171</id> <edge_type>1</edge_type> <source_obj>39</source_obj> <sink_obj>49</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_140"> <id>172</id> <edge_type>1</edge_type> <source_obj>49</source_obj> <sink_obj>50</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_141"> <id>173</id> <edge_type>1</edge_type> <source_obj>48</source_obj> <sink_obj>50</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_142"> <id>174</id> <edge_type>1</edge_type> <source_obj>37</source_obj> <sink_obj>50</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_143"> <id>175</id> <edge_type>1</edge_type> <source_obj>49</source_obj> <sink_obj>51</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_144"> <id>176</id> <edge_type>1</edge_type> <source_obj>38</source_obj> <sink_obj>51</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_145"> <id>177</id> <edge_type>1</edge_type> <source_obj>48</source_obj> <sink_obj>51</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_146"> <id>178</id> <edge_type>2</edge_type> <source_obj>44</source_obj> <sink_obj>53</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_147"> <id>179</id> <edge_type>1</edge_type> <source_obj>38</source_obj> <sink_obj>55</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_148"> <id>181</id> <edge_type>1</edge_type> <source_obj>180</source_obj> <sink_obj>55</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_149"> <id>182</id> <edge_type>1</edge_type> <source_obj>55</source_obj> <sink_obj>56</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_150"> <id>183</id> <edge_type>2</edge_type> <source_obj>64</source_obj> <sink_obj>56</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_151"> <id>184</id> <edge_type>2</edge_type> <source_obj>83</source_obj> <sink_obj>56</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_152"> <id>185</id> <edge_type>1</edge_type> <source_obj>37</source_obj> <sink_obj>58</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_153"> <id>186</id> <edge_type>1</edge_type> <source_obj>126</source_obj> <sink_obj>58</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_154"> <id>188</id> <edge_type>1</edge_type> <source_obj>187</source_obj> <sink_obj>59</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_155"> <id>189</id> <edge_type>1</edge_type> <source_obj>58</source_obj> <sink_obj>59</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_156"> <id>191</id> <edge_type>1</edge_type> <source_obj>59</source_obj> <sink_obj>60</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_157"> <id>192</id> <edge_type>1</edge_type> <source_obj>126</source_obj> <sink_obj>60</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_158"> <id>193</id> <edge_type>1</edge_type> <source_obj>128</source_obj> <sink_obj>60</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_159"> <id>194</id> <edge_type>1</edge_type> <source_obj>60</source_obj> <sink_obj>61</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_160"> <id>196</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>62</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_161"> <id>197</id> <edge_type>1</edge_type> <source_obj>61</source_obj> <sink_obj>62</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_162"> <id>198</id> <edge_type>2</edge_type> <source_obj>69</source_obj> <sink_obj>63</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_163"> <id>200</id> <edge_type>1</edge_type> <source_obj>199</source_obj> <sink_obj>65</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_164"> <id>201</id> <edge_type>2</edge_type> <source_obj>64</source_obj> <sink_obj>65</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_165"> <id>202</id> <edge_type>1</edge_type> <source_obj>67</source_obj> <sink_obj>65</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_166"> <id>203</id> <edge_type>2</edge_type> <source_obj>79</source_obj> <sink_obj>65</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_167"> <id>204</id> <edge_type>1</edge_type> <source_obj>65</source_obj> <sink_obj>66</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_168"> <id>205</id> <edge_type>1</edge_type> <source_obj>60</source_obj> <sink_obj>66</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_169"> <id>206</id> <edge_type>1</edge_type> <source_obj>65</source_obj> <sink_obj>67</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_170"> <id>208</id> <edge_type>1</edge_type> <source_obj>207</source_obj> <sink_obj>67</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_171"> <id>209</id> <edge_type>1</edge_type> <source_obj>66</source_obj> <sink_obj>68</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_172"> <id>210</id> <edge_type>2</edge_type> <source_obj>79</source_obj> <sink_obj>68</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_173"> <id>211</id> <edge_type>2</edge_type> <source_obj>81</source_obj> <sink_obj>68</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_174"> <id>212</id> <edge_type>1</edge_type> <source_obj>65</source_obj> <sink_obj>73</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_175"> <id>214</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>74</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_176"> <id>215</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>75</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_177"> <id>217</id> <edge_type>1</edge_type> <source_obj>216</source_obj> <sink_obj>75</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_178"> <id>218</id> <edge_type>1</edge_type> <source_obj>73</source_obj> <sink_obj>75</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_179"> <id>219</id> <edge_type>1</edge_type> <source_obj>74</source_obj> <sink_obj>76</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_180"> <id>220</id> <edge_type>1</edge_type> <source_obj>75</source_obj> <sink_obj>76</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_181"> <id>221</id> <edge_type>2</edge_type> <source_obj>69</source_obj> <sink_obj>78</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_182"> <id>222</id> <edge_type>2</edge_type> <source_obj>83</source_obj> <sink_obj>80</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_183"> <id>223</id> <edge_type>2</edge_type> <source_obj>88</source_obj> <sink_obj>82</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_184"> <id>224</id> <edge_type>1</edge_type> <source_obj>37</source_obj> <sink_obj>84</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_185"> <id>225</id> <edge_type>2</edge_type> <source_obj>83</source_obj> <sink_obj>84</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_186"> <id>226</id> <edge_type>1</edge_type> <source_obj>93</source_obj> <sink_obj>84</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_187"> <id>227</id> <edge_type>2</edge_type> <source_obj>106</source_obj> <sink_obj>84</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_188"> <id>228</id> <edge_type>1</edge_type> <source_obj>180</source_obj> <sink_obj>85</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_189"> <id>229</id> <edge_type>2</edge_type> <source_obj>83</source_obj> <sink_obj>85</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_190"> <id>230</id> <edge_type>1</edge_type> <source_obj>101</source_obj> <sink_obj>85</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_191"> <id>231</id> <edge_type>2</edge_type> <source_obj>106</source_obj> <sink_obj>85</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_192"> <id>232</id> <edge_type>1</edge_type> <source_obj>84</source_obj> <sink_obj>86</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_193"> <id>233</id> <edge_type>1</edge_type> <source_obj>180</source_obj> <sink_obj>86</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_194"> <id>234</id> <edge_type>1</edge_type> <source_obj>86</source_obj> <sink_obj>87</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_195"> <id>235</id> <edge_type>2</edge_type> <source_obj>106</source_obj> <sink_obj>87</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_196"> <id>236</id> <edge_type>2</edge_type> <source_obj>117</source_obj> <sink_obj>87</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_197"> <id>237</id> <edge_type>1</edge_type> <source_obj>84</source_obj> <sink_obj>93</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_198"> <id>239</id> <edge_type>1</edge_type> <source_obj>238</source_obj> <sink_obj>93</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_199"> <id>240</id> <edge_type>1</edge_type> <source_obj>93</source_obj> <sink_obj>94</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_200"> <id>241</id> <edge_type>1</edge_type> <source_obj>11</source_obj> <sink_obj>95</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_201"> <id>242</id> <edge_type>1</edge_type> <source_obj>216</source_obj> <sink_obj>95</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_202"> <id>243</id> <edge_type>1</edge_type> <source_obj>94</source_obj> <sink_obj>95</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_203"> <id>244</id> <edge_type>1</edge_type> <source_obj>95</source_obj> <sink_obj>96</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_204"> <id>245</id> <edge_type>1</edge_type> <source_obj>84</source_obj> <sink_obj>97</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_205"> <id>246</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>98</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_206"> <id>247</id> <edge_type>1</edge_type> <source_obj>216</source_obj> <sink_obj>98</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_207"> <id>248</id> <edge_type>1</edge_type> <source_obj>97</source_obj> <sink_obj>98</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_208"> <id>249</id> <edge_type>1</edge_type> <source_obj>98</source_obj> <sink_obj>99</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_209"> <id>250</id> <edge_type>1</edge_type> <source_obj>99</source_obj> <sink_obj>100</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_210"> <id>251</id> <edge_type>1</edge_type> <source_obj>96</source_obj> <sink_obj>100</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_211"> <id>252</id> <edge_type>1</edge_type> <source_obj>100</source_obj> <sink_obj>101</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_212"> <id>253</id> <edge_type>1</edge_type> <source_obj>85</source_obj> <sink_obj>101</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_213"> <id>254</id> <edge_type>1</edge_type> <source_obj>11</source_obj> <sink_obj>102</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_214"> <id>255</id> <edge_type>1</edge_type> <source_obj>216</source_obj> <sink_obj>102</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_215"> <id>256</id> <edge_type>1</edge_type> <source_obj>97</source_obj> <sink_obj>102</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_216"> <id>257</id> <edge_type>1</edge_type> <source_obj>96</source_obj> <sink_obj>103</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_217"> <id>258</id> <edge_type>1</edge_type> <source_obj>102</source_obj> <sink_obj>103</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_218"> <id>259</id> <edge_type>2</edge_type> <source_obj>88</source_obj> <sink_obj>105</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_219"> <id>262</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>107</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_220"> <id>263</id> <edge_type>1</edge_type> <source_obj>6</source_obj> <sink_obj>107</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_221"> <id>264</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>107</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_222"> <id>265</id> <edge_type>1</edge_type> <source_obj>107</source_obj> <sink_obj>108</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_223"> <id>266</id> <edge_type>1</edge_type> <source_obj>107</source_obj> <sink_obj>109</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_224"> <id>267</id> <edge_type>1</edge_type> <source_obj>107</source_obj> <sink_obj>110</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_225"> <id>269</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>268</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_226"> <id>270</id> <edge_type>1</edge_type> <source_obj>268</source_obj> <sink_obj>111</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_227"> <id>271</id> <edge_type>1</edge_type> <source_obj>111</source_obj> <sink_obj>112</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_228"> <id>272</id> <edge_type>1</edge_type> <source_obj>108</source_obj> <sink_obj>112</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_229"> <id>273</id> <edge_type>1</edge_type> <source_obj>112</source_obj> <sink_obj>113</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_230"> <id>274</id> <edge_type>1</edge_type> <source_obj>85</source_obj> <sink_obj>113</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_231"> <id>275</id> <edge_type>1</edge_type> <source_obj>108</source_obj> <sink_obj>114</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_232"> <id>277</id> <edge_type>1</edge_type> <source_obj>11</source_obj> <sink_obj>276</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_233"> <id>278</id> <edge_type>1</edge_type> <source_obj>276</source_obj> <sink_obj>114</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_234"> <id>281</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>115</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_235"> <id>282</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>115</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_236"> <id>283</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>115</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_237"> <id>284</id> <edge_type>1</edge_type> <source_obj>113</source_obj> <sink_obj>115</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_238"> <id>285</id> <edge_type>1</edge_type> <source_obj>109</source_obj> <sink_obj>115</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_239"> <id>286</id> <edge_type>1</edge_type> <source_obj>110</source_obj> <sink_obj>115</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_240"> <id>491</id> <edge_type>2</edge_type> <source_obj>36</source_obj> <sink_obj>44</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_241"> <id>492</id> <edge_type>2</edge_type> <source_obj>44</source_obj> <sink_obj>57</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_242"> <id>493</id> <edge_type>2</edge_type> <source_obj>44</source_obj> <sink_obj>54</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_243"> <id>494</id> <edge_type>2</edge_type> <source_obj>54</source_obj> <sink_obj>44</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_244"> <id>495</id> <edge_type>2</edge_type> <source_obj>57</source_obj> <sink_obj>83</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_245"> <id>496</id> <edge_type>2</edge_type> <source_obj>57</source_obj> <sink_obj>64</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_246"> <id>497</id> <edge_type>2</edge_type> <source_obj>64</source_obj> <sink_obj>69</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_247"> <id>498</id> <edge_type>2</edge_type> <source_obj>69</source_obj> <sink_obj>81</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_248"> <id>499</id> <edge_type>2</edge_type> <source_obj>69</source_obj> <sink_obj>79</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_249"> <id>500</id> <edge_type>2</edge_type> <source_obj>79</source_obj> <sink_obj>69</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_250"> <id>501</id> <edge_type>2</edge_type> <source_obj>81</source_obj> <sink_obj>83</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_251"> <id>502</id> <edge_type>2</edge_type> <source_obj>83</source_obj> <sink_obj>88</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_252"> <id>503</id> <edge_type>2</edge_type> <source_obj>88</source_obj> <sink_obj>117</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_253"> <id>504</id> <edge_type>2</edge_type> <source_obj>88</source_obj> <sink_obj>106</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_254"> <id>505</id> <edge_type>2</edge_type> <source_obj>106</source_obj> <sink_obj>88</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_255"> <id>506</id> <edge_type>4</edge_type> <source_obj>34</source_obj> <sink_obj>48</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_256"> <id>507</id> <edge_type>4</edge_type> <source_obj>34</source_obj> <sink_obj>62</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_257"> <id>508</id> <edge_type>4</edge_type> <source_obj>34</source_obj> <sink_obj>74</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_258"> <id>509</id> <edge_type>4</edge_type> <source_obj>62</source_obj> <sink_obj>74</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_259"> <id>2147483647</id> <edge_type>1</edge_type> <source_obj>103</source_obj> <sink_obj>96</sink_obj> <is_back_edge>1</is_back_edge> </item> </edges> </cdfg> <cdfg_regions class_id="21" tracking_level="0" version="0"> <count>9</count> <item_version>0</item_version> <item class_id="22" tracking_level="1" version="0" object_id="_260"> <mId>1</mId> <mTag>x_order_fir</mTag> <mType>0</mType> <sub_regions> <count>8</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> </sub_regions> <basic_blocks> <count>0</count> <item_version>0</item_version> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>-1</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> <item class_id_reference="22" object_id="_261"> <mId>2</mId> <mTag>Entry</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>36</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>7</mMinLatency> <mMaxLatency>7</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> <item class_id_reference="22" object_id="_262"> <mId>3</mId> <mTag>memcpy.fir_ctrl.ctrl</mTag> <mType>1</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>44</item> <item>54</item> </basic_blocks> <mII>1</mII> <mDepth>3</mDepth> <mMinTripCount>2</mMinTripCount> <mMaxTripCount>2</mMaxTripCount> <mMinLatency>3</mMinLatency> <mMaxLatency>3</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> <item class_id_reference="22" object_id="_263"> <mId>4</mId> <mTag>Region 1</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>57</item> <item>64</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>7</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> <item class_id_reference="22" object_id="_264"> <mId>5</mId> <mTag>memcpy.x_order_fir(data_t*, data_t*, int*, int*)::coef.coe</mTag> <mType>1</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>69</item> <item>79</item> </basic_blocks> <mII>1</mII> <mDepth>3</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>-1</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> <item class_id_reference="22" object_id="_265"> <mId>6</mId> <mTag>Region 2</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>81</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>0</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> <item class_id_reference="22" object_id="_266"> <mId>7</mId> <mTag>Region 3</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>83</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>0</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> <item class_id_reference="22" object_id="_267"> <mId>8</mId> <mTag>calc_loop</mTag> <mType>1</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>88</item> <item>106</item> </basic_blocks> <mII>2</mII> <mDepth>4</mDepth> <mMinTripCount>10</mMinTripCount> <mMaxTripCount>1023</mMaxTripCount> <mMinLatency>21</mMinLatency> <mMaxLatency>2047</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> <item class_id_reference="22" object_id="_268"> <mId>9</mId> <mTag>Return</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>117</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>4</mMinLatency> <mMaxLatency>4</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> </cdfg_regions> <fsm class_id="24" tracking_level="1" version="0" object_id="_269"> <states class_id="25" tracking_level="0" version="0"> <count>32</count> <item_version>0</item_version> <item class_id="26" tracking_level="1" version="0" object_id="_270"> <id>1</id> <operations class_id="27" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="28" tracking_level="1" version="0" object_id="_271"> <id>12</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_272"> <id>13</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_273"> <id>14</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_274"> <id>17</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_275"> <id>2</id> <operations> <count>3</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_276"> <id>15</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_277"> <id>16</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_278"> <id>34</id> <stage>7</stage> <latency>7</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_279"> <id>3</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_280"> <id>34</id> <stage>6</stage> <latency>7</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_281"> <id>4</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_282"> <id>34</id> <stage>5</stage> <latency>7</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_283"> <id>5</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_284"> <id>34</id> <stage>4</stage> <latency>7</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_285"> <id>6</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_286"> <id>34</id> <stage>3</stage> <latency>7</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_287"> <id>7</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_288"> <id>34</id> <stage>2</stage> <latency>7</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_289"> <id>8</id> <operations> <count>18</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_290"> <id>18</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_291"> <id>19</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_292"> <id>20</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_293"> <id>21</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_294"> <id>22</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_295"> <id>23</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_296"> <id>24</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_297"> <id>25</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_298"> <id>26</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_299"> <id>27</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_300"> <id>28</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_301"> <id>29</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_302"> <id>30</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_303"> <id>31</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_304"> <id>32</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_305"> <id>33</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_306"> <id>34</id> <stage>1</stage> <latency>7</latency> </item> <item class_id_reference="28" object_id="_307"> <id>35</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_308"> <id>9</id> <operations> <count>8</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_309"> <id>37</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_310"> <id>38</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_311"> <id>39</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_312"> <id>40</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_313"> <id>41</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_314"> <id>42</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_315"> <id>43</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_316"> <id>49</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_317"> <id>10</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_318"> <id>48</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_319"> <id>11</id> <operations> <count>7</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_320"> <id>45</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_321"> <id>46</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_322"> <id>47</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_323"> <id>50</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_324"> <id>51</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_325"> <id>52</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_326"> <id>53</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_327"> <id>12</id> <operations> <count>5</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_328"> <id>55</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_329"> <id>56</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_330"> <id>58</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_331"> <id>59</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_332"> <id>60</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_333"> <id>13</id> <operations> <count>2</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_334"> <id>61</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_335"> <id>62</id> <stage>7</stage> <latency>7</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_336"> <id>14</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_337"> <id>62</id> <stage>6</stage> <latency>7</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_338"> <id>15</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_339"> <id>62</id> <stage>5</stage> <latency>7</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_340"> <id>16</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_341"> <id>62</id> <stage>4</stage> <latency>7</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_342"> <id>17</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_343"> <id>62</id> <stage>3</stage> <latency>7</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_344"> <id>18</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_345"> <id>62</id> <stage>2</stage> <latency>7</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_346"> <id>19</id> <operations> <count>2</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_347"> <id>62</id> <stage>1</stage> <latency>7</latency> </item> <item class_id_reference="28" object_id="_348"> <id>63</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_349"> <id>20</id> <operations> <count>4</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_350"> <id>65</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_351"> <id>66</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_352"> <id>67</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_353"> <id>68</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_354"> <id>21</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_355"> <id>74</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_356"> <id>22</id> <operations> <count>8</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_357"> <id>70</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_358"> <id>71</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_359"> <id>72</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_360"> <id>73</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_361"> <id>75</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_362"> <id>76</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_363"> <id>77</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_364"> <id>78</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_365"> <id>23</id> <operations> <count>2</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_366"> <id>80</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_367"> <id>82</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_368"> <id>24</id> <operations> <count>11</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_369"> <id>84</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_370"> <id>85</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_371"> <id>86</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_372"> <id>87</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_373"> <id>93</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_374"> <id>94</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_375"> <id>95</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_376"> <id>96</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_377"> <id>97</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_378"> <id>98</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_379"> <id>99</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_380"> <id>25</id> <operations> <count>4</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_381"> <id>96</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_382"> <id>99</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_383"> <id>102</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_384"> <id>103</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_385"> <id>26</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_386"> <id>100</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_387"> <id>27</id> <operations> <count>7</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_388"> <id>89</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_389"> <id>90</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_390"> <id>91</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_391"> <id>92</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_392"> <id>101</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_393"> <id>104</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_394"> <id>105</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_395"> <id>28</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_396"> <id>111</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_397"> <id>29</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_398"> <id>111</id> <stage>1</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_399"> <id>30</id> <operations> <count>6</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_400"> <id>107</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_401"> <id>108</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_402"> <id>109</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_403"> <id>110</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_404"> <id>112</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_405"> <id>114</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_406"> <id>31</id> <operations> <count>2</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_407"> <id>113</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_408"> <id>115</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_409"> <id>32</id> <operations> <count>2</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_410"> <id>115</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_411"> <id>116</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> </states> <transitions class_id="29" tracking_level="0" version="0"> <count>35</count> <item_version>0</item_version> <item class_id="30" tracking_level="1" version="0" object_id="_412"> <inState>1</inState> <outState>2</outState> <condition class_id="31" tracking_level="0" version="0"> <id>-1</id> <sop class_id="32" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="33" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_413"> <inState>2</inState> <outState>3</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_414"> <inState>3</inState> <outState>4</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_415"> <inState>4</inState> <outState>5</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_416"> <inState>5</inState> <outState>6</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_417"> <inState>6</inState> <outState>7</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_418"> <inState>7</inState> <outState>8</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_419"> <inState>8</inState> <outState>9</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_420"> <inState>12</inState> <outState>13</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>1</count> <item_version>0</item_version> <item class_id="34" tracking_level="0" version="0"> <first class_id="35" tracking_level="0" version="0"> <first>55</first> <second>0</second> </first> <second>1</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_421"> <inState>12</inState> <outState>23</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>1</count> <item_version>0</item_version> <item> <first> <first>55</first> <second>0</second> </first> <second>0</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_422"> <inState>13</inState> <outState>14</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_423"> <inState>14</inState> <outState>15</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_424"> <inState>15</inState> <outState>16</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_425"> <inState>16</inState> <outState>17</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_426"> <inState>17</inState> <outState>18</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_427"> <inState>18</inState> <outState>19</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_428"> <inState>19</inState> <outState>20</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_429"> <inState>23</inState> <outState>24</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_430"> <inState>28</inState> <outState>29</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_431"> <inState>29</inState> <outState>30</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_432"> <inState>30</inState> <outState>31</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_433"> <inState>31</inState> <outState>32</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_434"> <inState>10</inState> <outState>11</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_435"> <inState>11</inState> <outState>9</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_436"> <inState>9</inState> <outState>12</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>1</count> <item_version>0</item_version> <item> <first> <first>40</first> <second>0</second> </first> <second>0</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_437"> <inState>9</inState> <outState>10</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>1</count> <item_version>0</item_version> <item> <first> <first>40</first> <second>0</second> </first> <second>1</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_438"> <inState>21</inState> <outState>22</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_439"> <inState>22</inState> <outState>20</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_440"> <inState>20</inState> <outState>23</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>1</count> <item_version>0</item_version> <item> <first> <first>66</first> <second>0</second> </first> <second>0</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_441"> <inState>20</inState> <outState>21</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>1</count> <item_version>0</item_version> <item> <first> <first>66</first> <second>0</second> </first> <second>1</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_442"> <inState>25</inState> <outState>26</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_443"> <inState>26</inState> <outState>27</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_444"> <inState>27</inState> <outState>24</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_445"> <inState>24</inState> <outState>28</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>1</count> <item_version>0</item_version> <item> <first> <first>86</first> <second>0</second> </first> <second>0</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_446"> <inState>24</inState> <outState>25</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>1</count> <item_version>0</item_version> <item> <first> <first>86</first> <second>0</second> </first> <second>1</second> </item> </item> </sop> </condition> </item> </transitions> </fsm> <res class_id="36" tracking_level="1" version="0" object_id="_447"> <dp_component_resource class_id="37" tracking_level="0" version="0"> <count>2</count> <item_version>0</item_version> <item class_id="38" tracking_level="0" version="0"> <first>x_order_fir_AXILiteS_s_axi_U (x_order_fir_AXILiteS_s_axi)</first> <second class_id="39" tracking_level="0" version="0"> <count>3</count> <item_version>0</item_version> <item class_id="40" tracking_level="0" version="0"> <first>BRAM</first> <second>0</second> </item> <item> <first>FF</first> <second>112</second> </item> <item> <first>LUT</first> <second>168</second> </item> </second> </item> <item> <first>x_order_fir_gmem_m_axi_U (x_order_fir_gmem_m_axi)</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>BRAM</first> <second>2</second> </item> <item> <first>FF</first> <second>512</second> </item> <item> <first>LUT</first> <second>580</second> </item> </second> </item> </dp_component_resource> <dp_expression_resource> <count>42</count> <item_version>0</item_version> <item> <first>acc_1_fu_472_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>32</second> </item> <item> <first>(1P1)</first> <second>32</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>39</second> </item> </second> </item> <item> <first>acc_2_fu_448_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>32</second> </item> <item> <first>(1P1)</first> <second>32</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>39</second> </item> </second> </item> <item> <first>ap_block_pp0_stage0_11001 ( and ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>ap_block_pp1_stage0_11001 ( and ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>ap_block_state10_pp0_stage0_iter1 ( and ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>ap_block_state21_pp1_stage0_iter1 ( and ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>ap_block_state32 ( or ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>ap_enable_pp0 ( xor ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>2</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>ap_enable_pp1 ( xor ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>2</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>ap_enable_pp2 ( xor ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>2</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>ap_enable_reg_pp0_iter1 ( xor ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>2</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>ap_enable_reg_pp1_iter1 ( xor ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>2</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>exitcond1_fu_405_p2 ( icmp ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>30</second> </item> <item> <first>(1P1)</first> <second>30</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>18</second> </item> </second> </item> <item> <first>exitcond_fu_345_p2 ( icmp ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>2</second> </item> <item> <first>(1P1)</first> <second>3</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>fir_ctrl_1_1_fu_361_p3 ( select ) </first> <second> <count>5</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>32</second> </item> <item> <first>(2P2)</first> <second>32</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>32</second> </item> </second> </item> <item> <first>i_1_fu_427_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>32</second> </item> <item> <first>(1P1)</first> <second>2</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>39</second> </item> </second> </item> <item> <first>indvar_next1_fu_410_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>30</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>37</second> </item> </second> </item> <item> <first>indvar_next_fu_351_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>2</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>10</second> </item> </second> </item> <item> <first>reload_1_fu_367_p3 ( select ) </first> <second> <count>5</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>32</second> </item> <item> <first>(2P2)</first> <second>32</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>32</second> </item> </second> </item> <item> <first>tmp_1_fu_385_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>3</second> </item> <item> <first>(1P1)</first> <second>32</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>39</second> </item> </second> </item> <item> <first>tmp_2_fu_421_p2 ( icmp ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>32</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>18</second> </item> </second> </item> <item> <first>tmp_3_fu_466_p2 ( * ) </first> <second> <count>5</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>32</second> </item> <item> <first>(1P1)</first> <second>32</second> </item> <item> <first>DSP48E</first> <second>3</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>20</second> </item> </second> </item> <item> <first>tmp_8_fu_443_p2 ( * ) </first> <second> <count>5</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>32</second> </item> <item> <first>(1P1)</first> <second>32</second> </item> <item> <first>DSP48E</first> <second>3</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>20</second> </item> </second> </item> <item> <first>tmp_fu_373_p2 ( icmp ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>32</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>18</second> </item> </second> </item> <item> <first>x_data_0_load_A ( and ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>x_data_0_load_B ( and ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>x_data_0_state_cmp_full ( icmp ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>2</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>8</second> </item> </second> </item> <item> <first>x_last_V_0_load_A ( and ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>x_last_V_0_load_B ( and ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>x_last_V_0_state_cmp_full ( icmp ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>2</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>8</second> </item> </second> </item> <item> <first>x_user_V_0_load_A ( and ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>x_user_V_0_load_B ( and ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>x_user_V_0_state_cmp_full ( icmp ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>2</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>8</second> </item> </second> </item> <item> <first>y_data_1_load_A ( and ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>y_data_1_load_B ( and ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>y_data_1_state_cmp_full ( icmp ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>2</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>8</second> </item> </second> </item> <item> <first>y_last_V_1_load_A ( and ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>y_last_V_1_load_B ( and ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>y_last_V_1_state_cmp_full ( icmp ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>2</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>8</second> </item> </second> </item> <item> <first>y_user_V_1_load_A ( and ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>y_user_V_1_load_B ( and ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>y_user_V_1_state_cmp_full ( icmp ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>2</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>8</second> </item> </second> </item> </dp_expression_resource> <dp_fifo_resource> <count>0</count> <item_version>0</item_version> </dp_fifo_resource> <dp_memory_resource> <count>2</count> <item_version>0</item_version> <item> <first>coef_U</first> <second> <count>7</count> <item_version>0</item_version> <item> <first>(0Words)</first> <second>1024</second> </item> <item> <first>(1Bits)</first> <second>32</second> </item> <item> <first>(2Banks)</first> <second>1</second> </item> <item> <first>(3W*Bits*Banks)</first> <second>32768</second> </item> <item> <first>BRAM</first> <second>2</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>0</second> </item> </second> </item> <item> <first>shift_reg_U</first> <second> <count>7</count> <item_version>0</item_version> <item> <first>(0Words)</first> <second>1024</second> </item> <item> <first>(1Bits)</first> <second>32</second> </item> <item> <first>(2Banks)</first> <second>1</second> </item> <item> <first>(3W*Bits*Banks)</first> <second>32768</second> </item> <item> <first>BRAM</first> <second>2</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>0</second> </item> </second> </item> </dp_memory_resource> <dp_multiplexer_resource> <count>34</count> <item_version>0</item_version> <item> <first>acc_reg_290</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>32</second> </item> <item> <first>(2Count)</first> <second>64</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>ap_NS_fsm</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>27</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>27</second> </item> <item> <first>LUT</first> <second>125</second> </item> </second> </item> <item> <first>ap_enable_reg_pp0_iter1</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>ap_enable_reg_pp0_iter2</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>ap_enable_reg_pp1_iter1</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>ap_enable_reg_pp1_iter2</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>ap_enable_reg_pp2_iter1</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>ap_phi_mux_i1_phi_fu_283_p4</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>32</second> </item> <item> <first>(2Count)</first> <second>64</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>ap_phi_mux_indvar1_phi_fu_272_p4</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>30</second> </item> <item> <first>(2Count)</first> <second>60</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>ap_sig_ioackin_gmem_ARREADY</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>coef_address0</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>4</second> </item> <item> <first>(1Bits)</first> <second>10</second> </item> <item> <first>(2Count)</first> <second>40</second> </item> <item> <first>LUT</first> <second>21</second> </item> </second> </item> <item> <first>gmem_ARADDR</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>32</second> </item> <item> <first>(2Count)</first> <second>96</second> </item> <item> <first>LUT</first> <second>15</second> </item> </second> </item> <item> <first>gmem_ARLEN</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>32</second> </item> <item> <first>(2Count)</first> <second>96</second> </item> <item> <first>LUT</first> <second>15</second> </item> </second> </item> <item> <first>gmem_blk_n_AR</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>gmem_blk_n_R</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>i1_reg_280</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>32</second> </item> <item> <first>(2Count)</first> <second>64</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>indvar1_reg_268</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>30</second> </item> <item> <first>(2Count)</first> <second>60</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>indvar_reg_257</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>2</second> </item> <item> <first>(2Count)</first> <second>4</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>shift_reg_address0</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>4</second> </item> <item> <first>(1Bits)</first> <second>10</second> </item> <item> <first>(2Count)</first> <second>40</second> </item> <item> <first>LUT</first> <second>21</second> </item> </second> </item> <item> <first>shift_reg_d0</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>32</second> </item> <item> <first>(2Count)</first> <second>96</second> </item> <item> <first>LUT</first> <second>15</second> </item> </second> </item> <item> <first>x_TDATA_blk_n</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>x_data_0_data_out</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>32</second> </item> <item> <first>(2Count)</first> <second>64</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>x_data_0_state</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>2</second> </item> <item> <first>(2Count)</first> <second>6</second> </item> <item> <first>LUT</first> <second>15</second> </item> </second> </item> <item> <first>x_last_V_0_data_out</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>x_last_V_0_state</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>2</second> </item> <item> <first>(2Count)</first> <second>6</second> </item> <item> <first>LUT</first> <second>15</second> </item> </second> </item> <item> <first>x_user_V_0_data_out</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>x_user_V_0_state</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>2</second> </item> <item> <first>(2Count)</first> <second>6</second> </item> <item> <first>LUT</first> <second>15</second> </item> </second> </item> <item> <first>y_TDATA_blk_n</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>y_data_1_data_out</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>32</second> </item> <item> <first>(2Count)</first> <second>64</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>y_data_1_state</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>2</second> </item> <item> <first>(2Count)</first> <second>6</second> </item> <item> <first>LUT</first> <second>15</second> </item> </second> </item> <item> <first>y_last_V_1_data_out</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>y_last_V_1_state</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>2</second> </item> <item> <first>(2Count)</first> <second>6</second> </item> <item> <first>LUT</first> <second>15</second> </item> </second> </item> <item> <first>y_user_V_1_data_out</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>y_user_V_1_state</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>2</second> </item> <item> <first>(2Count)</first> <second>6</second> </item> <item> <first>LUT</first> <second>15</second> </item> </second> </item> </dp_multiplexer_resource> <dp_register_resource> <count>70</count> <item_version>0</item_version> <item> <first>acc_reg_290</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>32</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>32</second> </item> </second> </item> <item> <first>ap_CS_fsm</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>26</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>26</second> </item> </second> </item> <item> <first>ap_enable_reg_pp0_iter0</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>ap_enable_reg_pp0_iter1</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>ap_enable_reg_pp0_iter2</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>ap_enable_reg_pp1_iter0</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>ap_enable_reg_pp1_iter1</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>ap_enable_reg_pp1_iter2</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>ap_enable_reg_pp2_iter0</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>ap_enable_reg_pp2_iter1</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>ap_reg_ioackin_gmem_ARREADY</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>coe1_reg_483</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>30</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>30</second> </item> </second> </item> <item> <first>ctrl3_reg_478</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>30</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>30</second> </item> </second> </item> <item> <first>exitcond1_reg_546</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>exitcond1_reg_546_pp1_iter1_reg</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>exitcond_reg_500</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>exitcond_reg_500_pp0_iter1_reg</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>fir_ctrl_0_reg_515</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>32</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>32</second> </item> </second> </item> <item> <first>gmem_addr_1_read_reg_555</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>32</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>32</second> </item> </second> </item> <item> <first>gmem_addr_1_reg_494</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>32</second> </item> <item> <first>(Consts)</first> <second>2</second> </item> <item> <first>FF</first> <second>30</second> </item> </second> </item> <item> <first>i1_reg_280</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>32</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>32</second> </item> </second> </item> <item> <first>i_1_reg_564</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>32</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>32</second> </item> </second> </item> <item> <first>i_reg_233</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>32</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>32</second> </item> </second> </item> <item> <first>indvar1_reg_268</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>30</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>30</second> </item> </second> </item> <item> <first>indvar1_reg_268_pp1_iter1_reg</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>30</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>30</second> </item> </second> </item> <item> <first>indvar_next1_reg_550</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>30</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>30</second> </item> </second> </item> <item> <first>indvar_reg_257</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>2</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>2</second> </item> </second> </item> <item> <first>p_add7_i32_shr_reg_535</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>30</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>30</second> </item> </second> </item> <item> <first>reg_302</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>32</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>32</second> </item> </second> </item> <item> <first>reload_reg_245</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>32</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>32</second> </item> </second> </item> <item> <first>shift_reg_load_reg_584</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>32</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>32</second> </item> </second> </item> <item> <first>tmp_10_reg_509</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>tmp_10_reg_509_pp0_iter1_reg</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>tmp_2_reg_560</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>tmp_2_reg_560_pp2_iter1_reg</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>tmp_3_reg_609</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>32</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>32</second> </item> </second> </item> <item> <first>tmp_7_reg_574</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>64</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>64</second> </item> </second> </item> <item> <first>tmp_8_reg_589</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>32</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>32</second> </item> </second> </item> <item> <first>x_data_0_payload_A</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>32</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>32</second> </item> </second> </item> <item> <first>x_data_0_payload_B</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>32</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>32</second> </item> </second> </item> <item> <first>x_data_0_sel_rd</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>x_data_0_sel_wr</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>x_data_0_state</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>2</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>2</second> </item> </second> </item> <item> <first>x_last_V_0_payload_A</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>x_last_V_0_payload_B</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>x_last_V_0_sel_rd</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>x_last_V_0_sel_wr</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>x_last_V_0_state</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>2</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>2</second> </item> </second> </item> <item> <first>x_last_V_tmp_reg_604</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>x_user_V_0_payload_A</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>x_user_V_0_payload_B</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>x_user_V_0_sel_rd</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>x_user_V_0_sel_wr</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>x_user_V_0_state</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>2</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>2</second> </item> </second> </item> <item> <first>x_user_V_tmp_reg_599</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>y_data_1_payload_A</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>32</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>32</second> </item> </second> </item> <item> <first>y_data_1_payload_B</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>32</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>32</second> </item> </second> </item> <item> <first>y_data_1_sel_rd</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>y_data_1_sel_wr</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>y_data_1_state</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>2</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>2</second> </item> </second> </item> <item> <first>y_last_V_1_payload_A</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>y_last_V_1_payload_B</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>y_last_V_1_sel_rd</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>y_last_V_1_sel_wr</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>y_last_V_1_state</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>2</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>2</second> </item> </second> </item> <item> <first>y_user_V_1_payload_A</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>y_user_V_1_payload_B</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>y_user_V_1_sel_rd</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>y_user_V_1_sel_wr</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>y_user_V_1_state</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>2</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>2</second> </item> </second> </item> </dp_register_resource> <dp_dsp_resource> <count>2</count> <item_version>0</item_version> <item> <first>x_order_fir_AXILiteS_s_axi_U</first> <second> <count>0</count> <item_version>0</item_version> </second> </item> <item> <first>x_order_fir_gmem_m_axi_U</first> <second> <count>0</count> <item_version>0</item_version> </second> </item> </dp_dsp_resource> <dp_component_map class_id="41" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_component_map> <dp_expression_map> <count>14</count> <item_version>0</item_version> <item class_id="42" tracking_level="0" version="0"> <first>acc_1_fu_472_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>113</item> </second> </item> <item> <first>acc_2_fu_448_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>101</item> </second> </item> <item> <first>exitcond1_fu_405_p2 ( icmp ) </first> <second> <count>1</count> <item_version>0</item_version> <item>66</item> </second> </item> <item> <first>exitcond_fu_345_p2 ( icmp ) </first> <second> <count>1</count> <item_version>0</item_version> <item>40</item> </second> </item> <item> <first>fir_ctrl_1_1_fu_361_p3 ( select ) </first> <second> <count>1</count> <item_version>0</item_version> <item>50</item> </second> </item> <item> <first>i_1_fu_427_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>93</item> </second> </item> <item> <first>indvar_next1_fu_410_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>67</item> </second> </item> <item> <first>indvar_next_fu_351_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>42</item> </second> </item> <item> <first>reload_1_fu_367_p3 ( select ) </first> <second> <count>1</count> <item_version>0</item_version> <item>51</item> </second> </item> <item> <first>tmp_1_fu_385_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>59</item> </second> </item> <item> <first>tmp_2_fu_421_p2 ( icmp ) </first> <second> <count>1</count> <item_version>0</item_version> <item>86</item> </second> </item> <item> <first>tmp_3_fu_466_p2 ( * ) </first> <second> <count>1</count> <item_version>0</item_version> <item>112</item> </second> </item> <item> <first>tmp_8_fu_443_p2 ( * ) </first> <second> <count>1</count> <item_version>0</item_version> <item>100</item> </second> </item> <item> <first>tmp_fu_373_p2 ( icmp ) </first> <second> <count>1</count> <item_version>0</item_version> <item>55</item> </second> </item> </dp_expression_map> <dp_fifo_map> <count>0</count> <item_version>0</item_version> </dp_fifo_map> <dp_memory_map> <count>2</count> <item_version>0</item_version> <item> <first>coef_U</first> <second> <count>1</count> <item_version>0</item_version> <item>455</item> </second> </item> <item> <first>shift_reg_U</first> <second> <count>1</count> <item_version>0</item_version> <item>464</item> </second> </item> </dp_memory_map> </res> <node_label_latency class_id="43" tracking_level="0" version="0"> <count>66</count> <item_version>0</item_version> <item class_id="44" tracking_level="0" version="0"> <first>12</first> <second class_id="45" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>13</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>14</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>15</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>16</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>17</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>18</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>19</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>34</first> <second> <first>1</first> <second>6</second> </second> </item> <item> <first>35</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>37</first> <second> <first>10</first> <second>0</second> </second> </item> <item> <first>38</first> <second> <first>10</first> <second>0</second> </second> </item> <item> <first>39</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>40</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>42</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>43</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>48</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>49</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>50</first> <second> <first>10</first> <second>0</second> </second> </item> <item> <first>51</first> <second> <first>10</first> <second>0</second> </second> </item> <item> <first>53</first> <second> <first>10</first> <second>0</second> </second> </item> <item> <first>55</first> <second> <first>11</first> <second>0</second> </second> </item> <item> <first>56</first> <second> <first>11</first> <second>0</second> </second> </item> <item> <first>58</first> <second> <first>11</first> <second>0</second> </second> </item> <item> <first>59</first> <second> <first>11</first> <second>0</second> </second> </item> <item> <first>60</first> <second> <first>11</first> <second>0</second> </second> </item> <item> <first>61</first> <second> <first>12</first> <second>0</second> </second> </item> <item> <first>62</first> <second> <first>12</first> <second>6</second> </second> </item> <item> <first>63</first> <second> <first>18</first> <second>0</second> </second> </item> <item> <first>65</first> <second> <first>19</first> <second>0</second> </second> </item> <item> <first>66</first> <second> <first>19</first> <second>0</second> </second> </item> <item> <first>67</first> <second> <first>19</first> <second>0</second> </second> </item> <item> <first>68</first> <second> <first>19</first> <second>0</second> </second> </item> <item> <first>73</first> <second> <first>21</first> <second>0</second> </second> </item> <item> <first>74</first> <second> <first>20</first> <second>0</second> </second> </item> <item> <first>75</first> <second> <first>21</first> <second>0</second> </second> </item> <item> <first>76</first> <second> <first>21</first> <second>0</second> </second> </item> <item> <first>78</first> <second> <first>21</first> <second>0</second> </second> </item> <item> <first>80</first> <second> <first>22</first> <second>0</second> </second> </item> <item> <first>82</first> <second> <first>22</first> <second>0</second> </second> </item> <item> <first>84</first> <second> <first>23</first> <second>0</second> </second> </item> <item> <first>85</first> <second> <first>26</first> <second>0</second> </second> </item> <item> <first>86</first> <second> <first>23</first> <second>0</second> </second> </item> <item> <first>87</first> <second> <first>23</first> <second>0</second> </second> </item> <item> <first>93</first> <second> <first>23</first> <second>0</second> </second> </item> <item> <first>94</first> <second> <first>23</first> <second>0</second> </second> </item> <item> <first>95</first> <second> <first>23</first> <second>0</second> </second> </item> <item> <first>96</first> <second> <first>23</first> <second>1</second> </second> </item> <item> <first>97</first> <second> <first>23</first> <second>0</second> </second> </item> <item> <first>98</first> <second> <first>23</first> <second>0</second> </second> </item> <item> <first>99</first> <second> <first>23</first> <second>1</second> </second> </item> <item> <first>100</first> <second> <first>25</first> <second>0</second> </second> </item> <item> <first>101</first> <second> <first>26</first> <second>0</second> </second> </item> <item> <first>102</first> <second> <first>24</first> <second>0</second> </second> </item> <item> <first>103</first> <second> <first>24</first> <second>0</second> </second> </item> <item> <first>105</first> <second> <first>26</first> <second>0</second> </second> </item> <item> <first>107</first> <second> <first>29</first> <second>0</second> </second> </item> <item> <first>108</first> <second> <first>29</first> <second>0</second> </second> </item> <item> <first>109</first> <second> <first>29</first> <second>0</second> </second> </item> <item> <first>110</first> <second> <first>29</first> <second>0</second> </second> </item> <item> <first>111</first> <second> <first>27</first> <second>1</second> </second> </item> <item> <first>112</first> <second> <first>29</first> <second>0</second> </second> </item> <item> <first>113</first> <second> <first>30</first> <second>0</second> </second> </item> <item> <first>114</first> <second> <first>29</first> <second>0</second> </second> </item> <item> <first>115</first> <second> <first>30</first> <second>1</second> </second> </item> <item> <first>116</first> <second> <first>31</first> <second>0</second> </second> </item> </node_label_latency> <bblk_ent_exit class_id="46" tracking_level="0" version="0"> <count>12</count> <item_version>0</item_version> <item class_id="47" tracking_level="0" version="0"> <first>36</first> <second class_id="48" tracking_level="0" version="0"> <first>0</first> <second>7</second> </second> </item> <item> <first>44</first> <second> <first>8</first> <second>8</second> </second> </item> <item> <first>54</first> <second> <first>8</first> <second>10</second> </second> </item> <item> <first>57</first> <second> <first>9</first> <second>9</second> </second> </item> <item> <first>64</first> <second> <first>9</first> <second>16</second> </second> </item> <item> <first>69</first> <second> <first>17</first> <second>17</second> </second> </item> <item> <first>79</first> <second> <first>18</first> <second>19</second> </second> </item> <item> <first>81</first> <second> <first>18</first> <second>18</second> </second> </item> <item> <first>83</first> <second> <first>18</first> <second>18</second> </second> </item> <item> <first>88</first> <second> <first>19</first> <second>19</second> </second> </item> <item> <first>106</first> <second> <first>19</first> <second>22</second> </second> </item> <item> <first>117</first> <second> <first>20</first> <second>24</second> </second> </item> </bblk_ent_exit> <regions class_id="49" tracking_level="0" version="0"> <count>3</count> <item_version>0</item_version> <item class_id="50" tracking_level="1" version="0" object_id="_448"> <region_name>memcpy.fir_ctrl.ctrl</region_name> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>44</item> <item>54</item> </basic_blocks> <nodes> <count>0</count> <item_version>0</item_version> </nodes> <anchor_node>-1</anchor_node> <region_type>8</region_type> <interval>1</interval> <pipe_depth>3</pipe_depth> </item> <item class_id_reference="50" object_id="_449"> <region_name>memcpy.x_order_fir(data_t*, data_t*, int*, int*)::coef.coe</region_name> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>69</item> <item>79</item> </basic_blocks> <nodes> <count>0</count> <item_version>0</item_version> </nodes> <anchor_node>-1</anchor_node> <region_type>8</region_type> <interval>1</interval> <pipe_depth>3</pipe_depth> </item> <item class_id_reference="50" object_id="_450"> <region_name>calc_loop</region_name> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>88</item> <item>106</item> </basic_blocks> <nodes> <count>0</count> <item_version>0</item_version> </nodes> <anchor_node>-1</anchor_node> <region_type>8</region_type> <interval>2</interval> <pipe_depth>4</pipe_depth> </item> </regions> <dp_fu_nodes class_id="51" tracking_level="0" version="0"> <count>50</count> <item_version>0</item_version> <item class_id="52" tracking_level="0" version="0"> <first>130</first> <second> <count>1</count> <item_version>0</item_version> <item>12</item> </second> </item> <item> <first>136</first> <second> <count>1</count> <item_version>0</item_version> <item>13</item> </second> </item> <item> <first>142</first> <second> <count>7</count> <item_version>0</item_version> <item>34</item> <item>34</item> <item>34</item> <item>34</item> <item>34</item> <item>34</item> <item>34</item> </second> </item> <item> <first>149</first> <second> <count>1</count> <item_version>0</item_version> <item>48</item> </second> </item> <item> <first>154</first> <second> <count>7</count> <item_version>0</item_version> <item>62</item> <item>62</item> <item>62</item> <item>62</item> <item>62</item> <item>62</item> <item>62</item> </second> </item> <item> <first>160</first> <second> <count>1</count> <item_version>0</item_version> <item>74</item> </second> </item> <item> <first>165</first> <second> <count>1</count> <item_version>0</item_version> <item>107</item> </second> </item> <item> <first>175</first> <second> <count>2</count> <item_version>0</item_version> <item>115</item> <item>115</item> </second> </item> <item> <first>188</first> <second> <count>1</count> <item_version>0</item_version> <item>75</item> </second> </item> <item> <first>195</first> <second> <count>5</count> <item_version>0</item_version> <item>76</item> <item>99</item> <item>99</item> <item>111</item> <item>111</item> </second> </item> <item> <first>201</first> <second> <count>1</count> <item_version>0</item_version> <item>95</item> </second> </item> <item> <first>208</first> <second> <count>4</count> <item_version>0</item_version> <item>96</item> <item>96</item> <item>103</item> <item>114</item> </second> </item> <item> <first>214</first> <second> <count>1</count> <item_version>0</item_version> <item>98</item> </second> </item> <item> <first>222</first> <second> <count>1</count> <item_version>0</item_version> <item>102</item> </second> </item> <item> <first>237</first> <second> <count>1</count> <item_version>0</item_version> <item>37</item> </second> </item> <item> <first>249</first> <second> <count>1</count> <item_version>0</item_version> <item>38</item> </second> </item> <item> <first>261</first> <second> <count>1</count> <item_version>0</item_version> <item>39</item> </second> </item> <item> <first>272</first> <second> <count>1</count> <item_version>0</item_version> <item>65</item> </second> </item> <item> <first>283</first> <second> <count>1</count> <item_version>0</item_version> <item>84</item> </second> </item> <item> <first>294</first> <second> <count>1</count> <item_version>0</item_version> <item>85</item> </second> </item> <item> <first>306</first> <second> <count>1</count> <item_version>0</item_version> <item>14</item> </second> </item> <item> <first>316</first> <second> <count>1</count> <item_version>0</item_version> <item>17</item> </second> </item> <item> <first>326</first> <second> <count>1</count> <item_version>0</item_version> <item>15</item> </second> </item> <item> <first>329</first> <second> <count>1</count> <item_version>0</item_version> <item>16</item> </second> </item> <item> <first>336</first> <second> <count>1</count> <item_version>0</item_version> <item>18</item> </second> </item> <item> <first>339</first> <second> <count>1</count> <item_version>0</item_version> <item>19</item> </second> </item> <item> <first>345</first> <second> <count>1</count> <item_version>0</item_version> <item>40</item> </second> </item> <item> <first>351</first> <second> <count>1</count> <item_version>0</item_version> <item>42</item> </second> </item> <item> <first>357</first> <second> <count>1</count> <item_version>0</item_version> <item>49</item> </second> </item> <item> <first>361</first> <second> <count>1</count> <item_version>0</item_version> <item>50</item> </second> </item> <item> <first>367</first> <second> <count>1</count> <item_version>0</item_version> <item>51</item> </second> </item> <item> <first>373</first> <second> <count>1</count> <item_version>0</item_version> <item>55</item> </second> </item> <item> <first>379</first> <second> <count>1</count> <item_version>0</item_version> <item>58</item> </second> </item> <item> <first>385</first> <second> <count>1</count> <item_version>0</item_version> <item>59</item> </second> </item> <item> <first>391</first> <second> <count>1</count> <item_version>0</item_version> <item>60</item> </second> </item> <item> <first>401</first> <second> <count>1</count> <item_version>0</item_version> <item>61</item> </second> </item> <item> <first>405</first> <second> <count>1</count> <item_version>0</item_version> <item>66</item> </second> </item> <item> <first>410</first> <second> <count>1</count> <item_version>0</item_version> <item>67</item> </second> </item> <item> <first>416</first> <second> <count>1</count> <item_version>0</item_version> <item>73</item> </second> </item> <item> <first>421</first> <second> <count>1</count> <item_version>0</item_version> <item>86</item> </second> </item> <item> <first>427</first> <second> <count>1</count> <item_version>0</item_version> <item>93</item> </second> </item> <item> <first>433</first> <second> <count>1</count> <item_version>0</item_version> <item>94</item> </second> </item> <item> <first>438</first> <second> <count>1</count> <item_version>0</item_version> <item>97</item> </second> </item> <item> <first>443</first> <second> <count>1</count> <item_version>0</item_version> <item>100</item> </second> </item> <item> <first>448</first> <second> <count>1</count> <item_version>0</item_version> <item>101</item> </second> </item> <item> <first>453</first> <second> <count>1</count> <item_version>0</item_version> <item>108</item> </second> </item> <item> <first>458</first> <second> <count>1</count> <item_version>0</item_version> <item>109</item> </second> </item> <item> <first>462</first> <second> <count>1</count> <item_version>0</item_version> <item>110</item> </second> </item> <item> <first>466</first> <second> <count>1</count> <item_version>0</item_version> <item>112</item> </second> </item> <item> <first>472</first> <second> <count>1</count> <item_version>0</item_version> <item>113</item> </second> </item> </dp_fu_nodes> <dp_fu_nodes_expression class_id="54" tracking_level="0" version="0"> <count>40</count> <item_version>0</item_version> <item class_id="55" tracking_level="0" version="0"> <first>acc_1_fu_472</first> <second> <count>1</count> <item_version>0</item_version> <item>113</item> </second> </item> <item> <first>acc_2_fu_448</first> <second> <count>1</count> <item_version>0</item_version> <item>101</item> </second> </item> <item> <first>acc_phi_fu_294</first> <second> <count>1</count> <item_version>0</item_version> <item>85</item> </second> </item> <item> <first>coe1_fu_316</first> <second> <count>1</count> <item_version>0</item_version> <item>17</item> </second> </item> <item> <first>coef_addr_1_gep_fu_214</first> <second> <count>1</count> <item_version>0</item_version> <item>98</item> </second> </item> <item> <first>coef_addr_gep_fu_188</first> <second> <count>1</count> <item_version>0</item_version> <item>75</item> </second> </item> <item> <first>ctrl3_fu_306</first> <second> <count>1</count> <item_version>0</item_version> <item>14</item> </second> </item> <item> <first>exitcond1_fu_405</first> <second> <count>1</count> <item_version>0</item_version> <item>66</item> </second> </item> <item> <first>exitcond_fu_345</first> <second> <count>1</count> <item_version>0</item_version> <item>40</item> </second> </item> <item> <first>fir_ctrl_1_1_fu_361</first> <second> <count>1</count> <item_version>0</item_version> <item>50</item> </second> </item> <item> <first>gmem_addr_1_fu_339</first> <second> <count>1</count> <item_version>0</item_version> <item>19</item> </second> </item> <item> <first>gmem_addr_fu_329</first> <second> <count>1</count> <item_version>0</item_version> <item>16</item> </second> </item> <item> <first>i1_phi_fu_283</first> <second> <count>1</count> <item_version>0</item_version> <item>84</item> </second> </item> <item> <first>i_1_fu_427</first> <second> <count>1</count> <item_version>0</item_version> <item>93</item> </second> </item> <item> <first>i_phi_fu_237</first> <second> <count>1</count> <item_version>0</item_version> <item>37</item> </second> </item> <item> <first>indvar1_phi_fu_272</first> <second> <count>1</count> <item_version>0</item_version> <item>65</item> </second> </item> <item> <first>indvar2_fu_416</first> <second> <count>1</count> <item_version>0</item_version> <item>73</item> </second> </item> <item> <first>indvar_next1_fu_410</first> <second> <count>1</count> <item_version>0</item_version> <item>67</item> </second> </item> <item> <first>indvar_next_fu_351</first> <second> <count>1</count> <item_version>0</item_version> <item>42</item> </second> </item> <item> <first>indvar_phi_fu_261</first> <second> <count>1</count> <item_version>0</item_version> <item>39</item> </second> </item> <item> <first>p_add7_i32_shr_fu_391</first> <second> <count>1</count> <item_version>0</item_version> <item>60</item> </second> </item> <item> <first>reload_1_fu_367</first> <second> <count>1</count> <item_version>0</item_version> <item>51</item> </second> </item> <item> <first>reload_phi_fu_249</first> <second> <count>1</count> <item_version>0</item_version> <item>38</item> </second> </item> <item> <first>shift_reg_addr_1_gep_fu_222</first> <second> <count>1</count> <item_version>0</item_version> <item>102</item> </second> </item> <item> <first>shift_reg_addr_gep_fu_201</first> <second> <count>1</count> <item_version>0</item_version> <item>95</item> </second> </item> <item> <first>tmp_10_fu_357</first> <second> <count>1</count> <item_version>0</item_version> <item>49</item> </second> </item> <item> <first>tmp_12_fu_379</first> <second> <count>1</count> <item_version>0</item_version> <item>58</item> </second> </item> <item> <first>tmp_1_fu_385</first> <second> <count>1</count> <item_version>0</item_version> <item>59</item> </second> </item> <item> <first>tmp_2_fu_421</first> <second> <count>1</count> <item_version>0</item_version> <item>86</item> </second> </item> <item> <first>tmp_3_fu_466</first> <second> <count>1</count> <item_version>0</item_version> <item>112</item> </second> </item> <item> <first>tmp_5_fu_326</first> <second> <count>1</count> <item_version>0</item_version> <item>15</item> </second> </item> <item> <first>tmp_6_fu_433</first> <second> <count>1</count> <item_version>0</item_version> <item>94</item> </second> </item> <item> <first>tmp_7_fu_438</first> <second> <count>1</count> <item_version>0</item_version> <item>97</item> </second> </item> <item> <first>tmp_8_fu_443</first> <second> <count>1</count> <item_version>0</item_version> <item>100</item> </second> </item> <item> <first>tmp_9_fu_336</first> <second> <count>1</count> <item_version>0</item_version> <item>18</item> </second> </item> <item> <first>tmp_fu_373</first> <second> <count>1</count> <item_version>0</item_version> <item>55</item> </second> </item> <item> <first>tmp_s_fu_401</first> <second> <count>1</count> <item_version>0</item_version> <item>61</item> </second> </item> <item> <first>x_data_tmp_fu_453</first> <second> <count>1</count> <item_version>0</item_version> <item>108</item> </second> </item> <item> <first>x_last_V_tmp_fu_462</first> <second> <count>1</count> <item_version>0</item_version> <item>110</item> </second> </item> <item> <first>x_user_V_tmp_fu_458</first> <second> <count>1</count> <item_version>0</item_version> <item>109</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>8</count> <item_version>0</item_version> <item> <first>coe_read_read_fu_136</first> <second> <count>1</count> <item_version>0</item_version> <item>13</item> </second> </item> <item> <first>ctrl_read_read_fu_130</first> <second> <count>1</count> <item_version>0</item_version> <item>12</item> </second> </item> <item> <first>empty_4_read_fu_165</first> <second> <count>1</count> <item_version>0</item_version> <item>107</item> </second> </item> <item> <first>fir_ctrl_0_read_fu_149</first> <second> <count>1</count> <item_version>0</item_version> <item>48</item> </second> </item> <item> <first>gmem_addr_1_read_read_fu_160</first> <second> <count>1</count> <item_version>0</item_version> <item>74</item> </second> </item> <item> <first>grp_readreq_fu_142</first> <second> <count>7</count> <item_version>0</item_version> <item>34</item> <item>34</item> <item>34</item> <item>34</item> <item>34</item> <item>34</item> <item>34</item> </second> </item> <item> <first>grp_readreq_fu_154</first> <second> <count>7</count> <item_version>0</item_version> <item>62</item> <item>62</item> <item>62</item> <item>62</item> <item>62</item> <item>62</item> <item>62</item> </second> </item> <item> <first>grp_write_fu_175</first> <second> <count>2</count> <item_version>0</item_version> <item>115</item> <item>115</item> </second> </item> </dp_fu_nodes_io> <return_ports> <count>0</count> <item_version>0</item_version> </return_ports> <dp_mem_port_nodes class_id="56" tracking_level="0" version="0"> <count>2</count> <item_version>0</item_version> <item class_id="57" tracking_level="0" version="0"> <first class_id="58" tracking_level="0" version="0"> <first>coef</first> <second>0</second> </first> <second> <count>5</count> <item_version>0</item_version> <item>76</item> <item>99</item> <item>99</item> <item>111</item> <item>111</item> </second> </item> <item> <first> <first>shift_reg</first> <second>0</second> </first> <second> <count>4</count> <item_version>0</item_version> <item>96</item> <item>96</item> <item>103</item> <item>114</item> </second> </item> </dp_mem_port_nodes> <dp_reg_nodes> <count>35</count> <item_version>0</item_version> <item> <first>233</first> <second> <count>1</count> <item_version>0</item_version> <item>37</item> </second> </item> <item> <first>245</first> <second> <count>1</count> <item_version>0</item_version> <item>38</item> </second> </item> <item> <first>257</first> <second> <count>1</count> <item_version>0</item_version> <item>39</item> </second> </item> <item> <first>268</first> <second> <count>1</count> <item_version>0</item_version> <item>65</item> </second> </item> <item> <first>280</first> <second> <count>1</count> <item_version>0</item_version> <item>84</item> </second> </item> <item> <first>290</first> <second> <count>1</count> <item_version>0</item_version> <item>85</item> </second> </item> <item> <first>302</first> <second> <count>2</count> <item_version>0</item_version> <item>99</item> <item>111</item> </second> </item> <item> <first>478</first> <second> <count>1</count> <item_version>0</item_version> <item>14</item> </second> </item> <item> <first>483</first> <second> <count>1</count> <item_version>0</item_version> <item>17</item> </second> </item> <item> <first>488</first> <second> <count>1</count> <item_version>0</item_version> <item>16</item> </second> </item> <item> <first>494</first> <second> <count>1</count> <item_version>0</item_version> <item>19</item> </second> </item> <item> <first>500</first> <second> <count>1</count> <item_version>0</item_version> <item>40</item> </second> </item> <item> <first>504</first> <second> <count>1</count> <item_version>0</item_version> <item>42</item> </second> </item> <item> <first>509</first> <second> <count>1</count> <item_version>0</item_version> <item>49</item> </second> </item> <item> <first>515</first> <second> <count>1</count> <item_version>0</item_version> <item>48</item> </second> </item> <item> <first>521</first> <second> <count>1</count> <item_version>0</item_version> <item>50</item> </second> </item> <item> <first>526</first> <second> <count>1</count> <item_version>0</item_version> <item>51</item> </second> </item> <item> <first>531</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>60</item> </second> </item> <item> <first>541</first> <second> <count>1</count> <item_version>0</item_version> <item>61</item> </second> </item> <item> <first>546</first> <second> <count>1</count> <item_version>0</item_version> <item>66</item> </second> </item> <item> <first>550</first> <second> <count>1</count> <item_version>0</item_version> <item>67</item> </second> </item> <item> <first>555</first> <second> <count>1</count> <item_version>0</item_version> <item>74</item> </second> </item> <item> <first>560</first> <second> <count>1</count> <item_version>0</item_version> <item>86</item> </second> </item> <item> <first>564</first> <second> <count>1</count> <item_version>0</item_version> <item>93</item> </second> </item> <item> <first>569</first> <second> <count>1</count> <item_version>0</item_version> <item>95</item> </second> </item> <item> <first>574</first> <second> <count>1</count> <item_version>0</item_version> <item>97</item> </second> </item> <item> <first>579</first> <second> <count>1</count> <item_version>0</item_version> <item>98</item> </second> </item> <item> <first>584</first> <second> <count>1</count> <item_version>0</item_version> <item>96</item> </second> </item> <item> <first>589</first> <second> <count>1</count> <item_version>0</item_version> <item>100</item> </second> </item> <item> <first>594</first> <second> <count>1</count> <item_version>0</item_version> <item>101</item> </second> </item> <item> <first>599</first> <second> <count>1</count> <item_version>0</item_version> <item>109</item> </second> </item> <item> <first>604</first> <second> <count>1</count> <item_version>0</item_version> <item>110</item> </second> </item> <item> <first>609</first> <second> <count>1</count> <item_version>0</item_version> <item>112</item> </second> </item> <item> <first>614</first> <second> <count>1</count> <item_version>0</item_version> <item>113</item> </second> </item> </dp_reg_nodes> <dp_regname_nodes> <count>35</count> <item_version>0</item_version> <item> <first>acc_1_reg_614</first> <second> <count>1</count> <item_version>0</item_version> <item>113</item> </second> </item> <item> <first>acc_2_reg_594</first> <second> <count>1</count> <item_version>0</item_version> <item>101</item> </second> </item> <item> <first>acc_reg_290</first> <second> <count>1</count> <item_version>0</item_version> <item>85</item> </second> </item> <item> <first>coe1_reg_483</first> <second> <count>1</count> <item_version>0</item_version> <item>17</item> </second> </item> <item> <first>coef_addr_1_reg_579</first> <second> <count>1</count> <item_version>0</item_version> <item>98</item> </second> </item> <item> <first>ctrl3_reg_478</first> <second> <count>1</count> <item_version>0</item_version> <item>14</item> </second> </item> <item> <first>exitcond1_reg_546</first> <second> <count>1</count> <item_version>0</item_version> <item>66</item> </second> </item> <item> <first>exitcond_reg_500</first> <second> <count>1</count> <item_version>0</item_version> <item>40</item> </second> </item> <item> <first>fir_ctrl_0_reg_515</first> <second> <count>1</count> <item_version>0</item_version> <item>48</item> </second> </item> <item> <first>fir_ctrl_1_1_reg_521</first> <second> <count>1</count> <item_version>0</item_version> <item>50</item> </second> </item> <item> <first>gmem_addr_1_read_reg_555</first> <second> <count>1</count> <item_version>0</item_version> <item>74</item> </second> </item> <item> <first>gmem_addr_1_reg_494</first> <second> <count>1</count> <item_version>0</item_version> <item>19</item> </second> </item> <item> <first>gmem_addr_reg_488</first> <second> <count>1</count> <item_version>0</item_version> <item>16</item> </second> </item> <item> <first>i1_reg_280</first> <second> <count>1</count> <item_version>0</item_version> <item>84</item> </second> </item> <item> <first>i_1_reg_564</first> <second> <count>1</count> <item_version>0</item_version> <item>93</item> </second> </item> <item> <first>i_reg_233</first> <second> <count>1</count> <item_version>0</item_version> <item>37</item> </second> </item> <item> <first>indvar1_reg_268</first> <second> <count>1</count> <item_version>0</item_version> <item>65</item> </second> </item> <item> <first>indvar_next1_reg_550</first> <second> <count>1</count> <item_version>0</item_version> <item>67</item> </second> </item> <item> <first>indvar_next_reg_504</first> <second> <count>1</count> <item_version>0</item_version> <item>42</item> </second> </item> <item> <first>indvar_reg_257</first> <second> <count>1</count> <item_version>0</item_version> <item>39</item> </second> </item> <item> <first>p_add7_i32_shr_reg_535</first> <second> <count>1</count> <item_version>0</item_version> <item>60</item> </second> </item> <item> <first>reg_302</first> <second> <count>2</count> <item_version>0</item_version> <item>99</item> <item>111</item> </second> </item> <item> <first>reload_1_reg_526</first> <second> <count>1</count> <item_version>0</item_version> <item>51</item> </second> </item> <item> <first>reload_reg_245</first> <second> <count>1</count> <item_version>0</item_version> <item>38</item> </second> </item> <item> <first>shift_reg_addr_reg_569</first> <second> <count>1</count> <item_version>0</item_version> <item>95</item> </second> </item> <item> <first>shift_reg_load_reg_584</first> <second> <count>1</count> <item_version>0</item_version> <item>96</item> </second> </item> <item> <first>tmp_10_reg_509</first> <second> <count>1</count> <item_version>0</item_version> <item>49</item> </second> </item> <item> <first>tmp_2_reg_560</first> <second> <count>1</count> <item_version>0</item_version> <item>86</item> </second> </item> <item> <first>tmp_3_reg_609</first> <second> <count>1</count> <item_version>0</item_version> <item>112</item> </second> </item> <item> <first>tmp_7_reg_574</first> <second> <count>1</count> <item_version>0</item_version> <item>97</item> </second> </item> <item> <first>tmp_8_reg_589</first> <second> <count>1</count> <item_version>0</item_version> <item>100</item> </second> </item> <item> <first>tmp_reg_531</first> <second> <count>1</count> <item_version>0</item_version> <item>55</item> </second> </item> <item> <first>tmp_s_reg_541</first> <second> <count>1</count> <item_version>0</item_version> <item>61</item> </second> </item> <item> <first>x_last_V_tmp_reg_604</first> <second> <count>1</count> <item_version>0</item_version> <item>110</item> </second> </item> <item> <first>x_user_V_tmp_reg_599</first> <second> <count>1</count> <item_version>0</item_version> <item>109</item> </second> </item> </dp_regname_nodes> <dp_reg_phi> <count>6</count> <item_version>0</item_version> <item> <first>233</first> <second> <count>1</count> <item_version>0</item_version> <item>37</item> </second> </item> <item> <first>245</first> <second> <count>1</count> <item_version>0</item_version> <item>38</item> </second> </item> <item> <first>257</first> <second> <count>1</count> <item_version>0</item_version> <item>39</item> </second> </item> <item> <first>268</first> <second> <count>1</count> <item_version>0</item_version> <item>65</item> </second> </item> <item> <first>280</first> <second> <count>1</count> <item_version>0</item_version> <item>84</item> </second> </item> <item> <first>290</first> <second> <count>1</count> <item_version>0</item_version> <item>85</item> </second> </item> </dp_reg_phi> <dp_regname_phi> <count>6</count> <item_version>0</item_version> <item> <first>acc_reg_290</first> <second> <count>1</count> <item_version>0</item_version> <item>85</item> </second> </item> <item> <first>i1_reg_280</first> <second> <count>1</count> <item_version>0</item_version> <item>84</item> </second> </item> <item> <first>i_reg_233</first> <second> <count>1</count> <item_version>0</item_version> <item>37</item> </second> </item> <item> <first>indvar1_reg_268</first> <second> <count>1</count> <item_version>0</item_version> <item>65</item> </second> </item> <item> <first>indvar_reg_257</first> <second> <count>1</count> <item_version>0</item_version> <item>39</item> </second> </item> <item> <first>reload_reg_245</first> <second> <count>1</count> <item_version>0</item_version> <item>38</item> </second> </item> </dp_regname_phi> <dp_port_io_nodes class_id="59" tracking_level="0" version="0"> <count>9</count> <item_version>0</item_version> <item class_id="60" tracking_level="0" version="0"> <first>coe</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>13</item> </second> </item> </second> </item> <item> <first>ctrl</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>12</item> </second> </item> </second> </item> <item> <first>gmem</first> <second> <count>0</count> <item_version>0</item_version> </second> </item> <item> <first>x_data</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>107</item> </second> </item> </second> </item> <item> <first>x_last_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>107</item> </second> </item> </second> </item> <item> <first>x_user_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>107</item> </second> </item> </second> </item> <item> <first>y_data</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>write</first> <second> <count>1</count> <item_version>0</item_version> <item>115</item> </second> </item> </second> </item> <item> <first>y_last_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>write</first> <second> <count>1</count> <item_version>0</item_version> <item>115</item> </second> </item> </second> </item> <item> <first>y_user_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>write</first> <second> <count>1</count> <item_version>0</item_version> <item>115</item> </second> </item> </second> </item> </dp_port_io_nodes> <port2core class_id="61" 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>
------------------------------------------------------------------------------ -- -- -- GNAT LIBRARY COMPONENTS -- -- -- -- G N A T . S E C U R E _ H A S H E S . M D 5 -- -- -- -- S p e c -- -- -- -- Copyright (C) 2002-2009, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- This package provides supporting code for implementation of the MD5 -- Message-Digest Algorithm as described in RFC 1321. The complete text of -- RFC 1321 can be found at: -- http://www.ietf.org/rfc/rfc1321.txt -- This is an internal unit and should not be used directly in applications. -- Use GNAT.MD5 instead. with GNAT.Byte_Swapping; with Interfaces; package GNAT.Secure_Hashes.MD5 is package Hash_State is new GNAT.Secure_Hashes.Hash_Function_State (Word => Interfaces.Unsigned_32, Swap => GNAT.Byte_Swapping.Swap4, Hash_Bit_Order => System.Low_Order_First); -- MD5 operates on 32-bit little endian words Block_Words : constant := 16; -- Messages are processed in chunks of 16 words procedure Transform (H : in out Hash_State.State; M : in out Message_State); -- Transformation function applied for each block Initial_State : constant Hash_State.State; -- Initialization vector private Initial_A : constant := 16#67452301#; Initial_B : constant := 16#EFCDAB89#; Initial_C : constant := 16#98BADCFE#; Initial_D : constant := 16#10325476#; Initial_State : constant Hash_State.State := (Initial_A, Initial_B, Initial_C, Initial_D); -- Initialization vector from RFC 1321 end GNAT.Secure_Hashes.MD5;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- S Y S T E M . P A C K _ 4 5 -- -- -- -- 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. -- -- -- ------------------------------------------------------------------------------ -- Handling of packed arrays with Component_Size = 45 package System.Pack_45 is pragma Preelaborate; Bits : constant := 45; type Bits_45 is mod 2 ** Bits; for Bits_45'Size use Bits; -- In all subprograms below, Rev_SSO is set True if the array has the -- non-default scalar storage order. function Get_45 (Arr : System.Address; N : Natural; Rev_SSO : Boolean) return Bits_45 with Inline; -- Arr is the address of the packed array, N is the zero-based -- subscript. This element is extracted and returned. procedure Set_45 (Arr : System.Address; N : Natural; E : Bits_45; Rev_SSO : Boolean) with Inline; -- Arr is the address of the packed array, N is the zero-based -- subscript. This element is set to the given value. end System.Pack_45;
<?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>xFSobelFilter3x3</name> <ret_bitwidth>0</ret_bitwidth> <ports class_id="2" tracking_level="0" version="0"> <count>5</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>p_src_mat_V_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>_src_mat.V.V</originalName> <rtlName></rtlName> <coreName>FIFO</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>0</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs class_id="7" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_2"> <Value> <Obj> <type>1</type> <id>2</id> <name>p_gradx_mat_V_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>_gradx_mat.V.V</originalName> <rtlName></rtlName> <coreName>FIFO</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_3"> <Value> <Obj> <type>1</type> <id>3</id> <name>p_grady_mat_V_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>_grady_mat.V.V</originalName> <rtlName></rtlName> <coreName>FIFO</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_4"> <Value> <Obj> <type>1</type> <id>4</id> <name>p_src_mat_rows_read</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName>FIFO</coreName> </Obj> <bitwidth>32</bitwidth> </Value> <direction>0</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_5"> <Value> <Obj> <type>1</type> <id>5</id> <name>p_src_mat_cols_read</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName>FIFO</coreName> </Obj> <bitwidth>32</bitwidth> </Value> <direction>0</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> </ports> <nodes class_id="8" tracking_level="0" version="0"> <count>120</count> <item_version>0</item_version> <item class_id="9" tracking_level="1" version="0" object_id="_6"> <Value> <Obj> <type>0</type> <id>9</id> <name>buf_0_V</name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>286</lineNumber> <contextFuncName>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item class_id="10" tracking_level="0" version="0"> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second class_id="11" tracking_level="0" version="0"> <count>3</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>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>286</second> </item> </second> </item> </inlineStackInfo> <originalName>buf[0].V</originalName> <rtlName></rtlName> <coreName>RAM_S2P_BRAM</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>170</item> </oprand_edges> <opcode>alloca</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_7"> <Value> <Obj> <type>0</type> <id>10</id> <name>buf_1_V</name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>286</lineNumber> <contextFuncName>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>286</second> </item> </second> </item> </inlineStackInfo> <originalName>buf[1].V</originalName> <rtlName></rtlName> <coreName>RAM_S2P_BRAM</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>171</item> </oprand_edges> <opcode>alloca</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_8"> <Value> <Obj> <type>0</type> <id>11</id> <name>buf_2_V</name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>286</lineNumber> <contextFuncName>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>286</second> </item> </second> </item> </inlineStackInfo> <originalName>buf[2].V</originalName> <rtlName></rtlName> <coreName>RAM_S2P_BRAM</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>172</item> </oprand_edges> <opcode>alloca</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_9"> <Value> <Obj> <type>0</type> <id>14</id> <name>p_src_mat_rows_read_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>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>174</item> <item>175</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>3.63</m_delay> </item> <item class_id_reference="9" object_id="_10"> <Value> <Obj> <type>0</type> <id>15</id> <name>p_src_mat_cols_read_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>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>176</item> <item>177</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>3.63</m_delay> </item> <item class_id_reference="9" object_id="_11"> <Value> <Obj> <type>0</type> <id>16</id> <name>tmp_1</name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>1474</lineNumber> <contextFuncName>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> </second> </item> </inlineStackInfo> <originalName>img_height</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>178</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_12"> <Value> <Obj> <type>0</type> <id>17</id> <name>tmp_2</name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>1474</lineNumber> <contextFuncName>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> </second> </item> </inlineStackInfo> <originalName>img_width</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>179</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_13"> <Value> <Obj> <type>0</type> <id>19</id> <name></name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>292</lineNumber> <contextFuncName>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>292</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>180</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>1.76</m_delay> </item> <item class_id_reference="9" object_id="_14"> <Value> <Obj> <type>0</type> <id>21</id> <name>p_1_i_i</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>col.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>13</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>182</item> <item>183</item> <item>184</item> <item>185</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_15"> <Value> <Obj> <type>0</type> <id>22</id> <name>tmp_1_cast_i_i</name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>292</lineNumber> <contextFuncName>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>292</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>186</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_16"> <Value> <Obj> <type>0</type> <id>23</id> <name>tmp_2_i_i</name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>292</lineNumber> <contextFuncName>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>292</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>187</item> <item>188</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>2.42</m_delay> </item> <item class_id_reference="9" object_id="_17"> <Value> <Obj> <type>0</type> <id>24</id> <name>col_V</name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>292</lineNumber> <contextFuncName>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>292</second> </item> </second> </item> </inlineStackInfo> <originalName>col.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>13</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>189</item> <item>191</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>1.67</m_delay> </item> <item class_id_reference="9" object_id="_18"> <Value> <Obj> <type>0</type> <id>25</id> <name></name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>292</lineNumber> <contextFuncName>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>292</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>192</item> <item>193</item> <item>194</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_19"> <Value> <Obj> <type>0</type> <id>27</id> <name>tmp_1_i_i</name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>292</lineNumber> <contextFuncName>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>292</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>203</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_20"> <Value> <Obj> <type>0</type> <id>32</id> <name>buf_0_V_addr</name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>292</lineNumber> <contextFuncName>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>292</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>10</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>204</item> <item>206</item> <item>207</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_21"> <Value> <Obj> <type>0</type> <id>33</id> <name></name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>296</lineNumber> <contextFuncName>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>296</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>209</item> <item>210</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>3.25</m_delay> </item> <item class_id_reference="9" object_id="_22"> <Value> <Obj> <type>0</type> <id>34</id> <name>tmp_V</name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>297</lineNumber> <contextFuncName>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>297</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>212</item> <item>213</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>3.63</m_delay> </item> <item class_id_reference="9" object_id="_23"> <Value> <Obj> <type>0</type> <id>35</id> <name>buf_1_V_addr</name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>292</lineNumber> <contextFuncName>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>292</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>10</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>214</item> <item>215</item> <item>216</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_24"> <Value> <Obj> <type>0</type> <id>36</id> <name></name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>297</lineNumber> <contextFuncName>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>297</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>217</item> <item>218</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>3.25</m_delay> </item> <item class_id_reference="9" object_id="_25"> <Value> <Obj> <type>0</type> <id>38</id> <name></name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>292</lineNumber> <contextFuncName>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>292</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>219</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_26"> <Value> <Obj> <type>0</type> <id>40</id> <name>p_5_i_i</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>195</item> </oprand_edges> <opcode>alloca</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_27"> <Value> <Obj> <type>0</type> <id>41</id> <name>p_4_i_i</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>196</item> </oprand_edges> <opcode>alloca</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_28"> <Value> <Obj> <type>0</type> <id>42</id> <name>p_3_i_i</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>197</item> </oprand_edges> <opcode>alloca</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_29"> <Value> <Obj> <type>0</type> <id>43</id> <name>tmp_5_cast100_i_i</name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>302</lineNumber> <contextFuncName>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>302</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>17</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>198</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_30"> <Value> <Obj> <type>0</type> <id>44</id> <name>op2_assign</name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>302</lineNumber> <contextFuncName>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>302</second> </item> </second> </item> </inlineStackInfo> <originalName>op2</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>17</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>199</item> <item>201</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>2.07</m_delay> </item> <item class_id_reference="9" object_id="_31"> <Value> <Obj> <type>0</type> <id>45</id> <name></name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>302</lineNumber> <contextFuncName>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>302</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>202</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>1.76</m_delay> </item> <item class_id_reference="9" object_id="_32"> <Value> <Obj> <type>0</type> <id>47</id> <name>p_2_i_i</name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>364</lineNumber> <contextFuncName>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>364</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>13</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>221</item> <item>222</item> <item>223</item> <item>224</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_33"> <Value> <Obj> <type>0</type> <id>48</id> <name>p_6_i_i</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>row.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>13</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>225</item> <item>226</item> <item>227</item> <item>228</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_34"> <Value> <Obj> <type>0</type> <id>49</id> <name>tmp_6_cast_i_i</name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>302</lineNumber> <contextFuncName>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>302</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>17</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>229</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_35"> <Value> <Obj> <type>0</type> <id>50</id> <name>tmp_7_i_i</name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>302</lineNumber> <contextFuncName>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>302</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>230</item> <item>231</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>2.43</m_delay> </item> <item class_id_reference="9" object_id="_36"> <Value> <Obj> <type>0</type> <id>51</id> <name></name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>302</lineNumber> <contextFuncName>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>302</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>232</item> <item>233</item> <item>234</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_37"> <Value> <Obj> <type>0</type> <id>53</id> <name>p_5_i_i_load</name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>313</lineNumber> <contextFuncName>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>313</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>235</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_38"> <Value> <Obj> <type>0</type> <id>54</id> <name>p_4_i_i_load</name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>313</lineNumber> <contextFuncName>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>313</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>236</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_39"> <Value> <Obj> <type>0</type> <id>55</id> <name>p_3_i_i_load</name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>313</lineNumber> <contextFuncName>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>313</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>237</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_40"> <Value> <Obj> <type>0</type> <id>56</id> <name>tmp_6_cast99_i_i</name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>302</lineNumber> <contextFuncName>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>302</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>238</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_41"> <Value> <Obj> <type>0</type> <id>60</id> <name>tmp_8_i_i</name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>305</lineNumber> <contextFuncName>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>305</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>239</item> <item>240</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>2.09</m_delay> </item> <item class_id_reference="9" object_id="_42"> <Value> <Obj> <type>0</type> <id>61</id> <name>tmp_9_i_i</name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>309</lineNumber> <contextFuncName>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>309</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>241</item> <item>242</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>2.09</m_delay> </item> <item class_id_reference="9" object_id="_43"> <Value> <Obj> <type>0</type> <id>62</id> <name>tmp_i_i</name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>313</lineNumber> <contextFuncName>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>313</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>243</item> <item>244</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>2.09</m_delay> </item> <item class_id_reference="9" object_id="_44"> <Value> <Obj> <type>0</type> <id>63</id> <name>p_i_i</name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>313</lineNumber> <contextFuncName>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>313</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>245</item> <item>247</item> <item>248</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_45"> <Value> <Obj> <type>0</type> <id>64</id> <name>p_1_i_i_12</name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>313</lineNumber> <contextFuncName>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>313</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>249</item> <item>251</item> <item>252</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_46"> <Value> <Obj> <type>0</type> <id>65</id> <name>p_2_i_i_13</name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>313</lineNumber> <contextFuncName>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>313</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>253</item> <item>255</item> <item>256</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_47"> <Value> <Obj> <type>0</type> <id>66</id> <name>sel_tmp1</name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>305</lineNumber> <contextFuncName>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>305</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>257</item> <item>259</item> </oprand_edges> <opcode>xor</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_48"> <Value> <Obj> <type>0</type> <id>67</id> <name>sel_tmp2</name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>309</lineNumber> <contextFuncName>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>309</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>260</item> <item>261</item> </oprand_edges> <opcode>and</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>0.97</m_delay> </item> <item class_id_reference="9" object_id="_49"> <Value> <Obj> <type>0</type> <id>68</id> <name>sel_tmp</name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>309</lineNumber> <contextFuncName>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>309</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>262</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_50"> <Value> <Obj> <type>0</type> <id>69</id> <name>tmp</name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>309</lineNumber> <contextFuncName>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>309</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>263</item> <item>264</item> </oprand_edges> <opcode>or</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>0.97</m_delay> </item> <item class_id_reference="9" object_id="_51"> <Value> <Obj> <type>0</type> <id>70</id> <name>p_0455_3_i_i</name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>309</lineNumber> <contextFuncName>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>309</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>265</item> <item>266</item> <item>267</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>0.99</m_delay> </item> <item class_id_reference="9" object_id="_52"> <Value> <Obj> <type>0</type> <id>71</id> <name>sel_tmp4</name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>309</lineNumber> <contextFuncName>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>309</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>268</item> <item>269</item> <item>270</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_53"> <Value> <Obj> <type>0</type> <id>72</id> <name>p_0449_3_i_i</name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>309</lineNumber> <contextFuncName>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>309</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>271</item> <item>272</item> <item>273</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>0.99</m_delay> </item> <item class_id_reference="9" object_id="_54"> <Value> <Obj> <type>0</type> <id>73</id> <name>sel_tmp8</name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>309</lineNumber> <contextFuncName>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>309</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>274</item> <item>275</item> <item>276</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_55"> <Value> <Obj> <type>0</type> <id>74</id> <name>p_0443_3_i_i</name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>309</lineNumber> <contextFuncName>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>309</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>277</item> <item>278</item> <item>279</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>0.99</m_delay> </item> <item class_id_reference="9" object_id="_56"> <Value> <Obj> <type>0</type> <id>75</id> <name>tmp_3_i_i</name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>193</lineNumber> <contextFuncName>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>4</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>193</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>324</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>280</item> <item>281</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>2.42</m_delay> </item> <item class_id_reference="9" object_id="_57"> <Value> <Obj> <type>0</type> <id>76</id> <name>tmp_3</name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>364</lineNumber> <contextFuncName>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>364</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>282</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_58"> <Value> <Obj> <type>0</type> <id>77</id> <name></name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>309</lineNumber> <contextFuncName>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>309</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>283</item> <item>284</item> <item>671</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_59"> <Value> <Obj> <type>0</type> <id>78</id> <name></name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>309</lineNumber> <contextFuncName>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>309</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>285</item> <item>286</item> <item>672</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_60"> <Value> <Obj> <type>0</type> <id>79</id> <name></name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>309</lineNumber> <contextFuncName>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>309</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>287</item> <item>288</item> <item>673</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_61"> <Value> <Obj> <type>0</type> <id>80</id> <name></name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>189</lineNumber> <contextFuncName>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>4</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>189</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>324</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>289</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>1.76</m_delay> </item> <item class_id_reference="9" object_id="_62"> <Value> <Obj> <type>0</type> <id>82</id> <name>src_buf3_V_0_i_i</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>src_buf3[0].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>290</item> <item>291</item> <item>292</item> <item>293</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_63"> <Value> <Obj> <type>0</type> <id>83</id> <name>src_buf2_0_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>src_buf2[1].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>294</item> <item>295</item> <item>296</item> <item>297</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_64"> <Value> <Obj> <type>0</type> <id>84</id> <name>src_buf2_V_0_i_i</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>src_buf2[0].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>298</item> <item>299</item> <item>300</item> <item>301</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_65"> <Value> <Obj> <type>0</type> <id>85</id> <name>src_buf3_0_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>src_buf3[1].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>302</item> <item>303</item> <item>304</item> <item>305</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_66"> <Value> <Obj> <type>0</type> <id>86</id> <name>src_buf1_0_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>src_buf1[1].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>306</item> <item>307</item> <item>308</item> <item>309</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_67"> <Value> <Obj> <type>0</type> <id>87</id> <name>src_buf1_V_0_i_i</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>src_buf1[0].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>310</item> <item>311</item> <item>312</item> <item>313</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_68"> <Value> <Obj> <type>0</type> <id>88</id> <name>p_0177_0_i_i_i</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>col.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>13</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>314</item> <item>315</item> <item>316</item> <item>317</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_69"> <Value> <Obj> <type>0</type> <id>89</id> <name>tmp_11_cast_i_i</name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>189</lineNumber> <contextFuncName>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>4</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>189</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>324</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>318</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_70"> <Value> <Obj> <type>0</type> <id>90</id> <name>tmp_12_i_i</name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>189</lineNumber> <contextFuncName>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>4</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>189</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>324</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>319</item> <item>320</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>2.42</m_delay> </item> <item class_id_reference="9" object_id="_71"> <Value> <Obj> <type>0</type> <id>91</id> <name>col_V_1</name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>189</lineNumber> <contextFuncName>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>4</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>189</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>324</second> </item> </second> </item> </inlineStackInfo> <originalName>col.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>13</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>321</item> <item>322</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>1.67</m_delay> </item> <item class_id_reference="9" object_id="_72"> <Value> <Obj> <type>0</type> <id>92</id> <name></name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>189</lineNumber> <contextFuncName>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>4</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>189</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>324</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>323</item> <item>324</item> <item>325</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_73"> <Value> <Obj> <type>0</type> <id>94</id> <name>tmp_11_i_i</name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>189</lineNumber> <contextFuncName>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>4</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>189</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>324</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>326</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_74"> <Value> <Obj> <type>0</type> <id>99</id> <name></name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>193</lineNumber> <contextFuncName>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>4</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>193</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>324</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>327</item> <item>328</item> <item>329</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_75"> <Value> <Obj> <type>0</type> <id>101</id> <name>buf_0_V_addr_2</name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>196</lineNumber> <contextFuncName>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>4</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>196</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>324</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>10</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>348</item> <item>349</item> <item>350</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_76"> <Value> <Obj> <type>0</type> <id>102</id> <name>buf_1_V_addr_2</name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>196</lineNumber> <contextFuncName>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>4</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>196</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>324</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>10</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>351</item> <item>352</item> <item>353</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_77"> <Value> <Obj> <type>0</type> <id>103</id> <name>buf_2_V_addr_1</name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>196</lineNumber> <contextFuncName>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>4</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>196</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>324</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>10</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>354</item> <item>355</item> <item>356</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_78"> <Value> <Obj> <type>0</type> <id>104</id> <name></name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>196</lineNumber> <contextFuncName>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>4</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>196</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>324</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>6</count> <item_version>0</item_version> <item>357</item> <item>358</item> <item>359</item> <item>360</item> <item>361</item> <item>362</item> </oprand_edges> <opcode>switch</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>1.13</m_delay> </item> <item class_id_reference="9" object_id="_79"> <Value> <Obj> <type>0</type> <id>106</id> <name></name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>196</lineNumber> <contextFuncName>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>4</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>196</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>324</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>463</item> <item>464</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>3.25</m_delay> </item> <item class_id_reference="9" object_id="_80"> <Value> <Obj> <type>0</type> <id>107</id> <name></name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>196</lineNumber> <contextFuncName>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>4</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>196</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>324</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>465</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_81"> <Value> <Obj> <type>0</type> <id>109</id> <name></name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>196</lineNumber> <contextFuncName>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>4</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>196</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>324</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>460</item> <item>461</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>3.25</m_delay> </item> <item class_id_reference="9" object_id="_82"> <Value> <Obj> <type>0</type> <id>110</id> <name></name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>196</lineNumber> <contextFuncName>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>4</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>196</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>324</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>462</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_83"> <Value> <Obj> <type>0</type> <id>112</id> <name></name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>196</lineNumber> <contextFuncName>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>4</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>196</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>324</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>466</item> <item>467</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>3.25</m_delay> </item> <item class_id_reference="9" object_id="_84"> <Value> <Obj> <type>0</type> <id>113</id> <name></name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>196</lineNumber> <contextFuncName>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>4</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>196</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>324</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>468</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_85"> <Value> <Obj> <type>0</type> <id>115</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>363</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_86"> <Value> <Obj> <type>0</type> <id>117</id> <name>tmp_V_3</name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>194</lineNumber> <contextFuncName>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>4</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>194</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>324</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>330</item> <item>331</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>3.63</m_delay> </item> <item class_id_reference="9" object_id="_87"> <Value> <Obj> <type>0</type> <id>118</id> <name>buf_0_V_addr_1</name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>194</lineNumber> <contextFuncName>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>4</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>194</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>324</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>10</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>332</item> <item>333</item> <item>334</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_88"> <Value> <Obj> <type>0</type> <id>119</id> <name>buf_1_V_addr_1</name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>194</lineNumber> <contextFuncName>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>4</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>194</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>324</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>10</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>335</item> <item>336</item> <item>337</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_89"> <Value> <Obj> <type>0</type> <id>120</id> <name>buf_2_V_addr</name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>194</lineNumber> <contextFuncName>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>4</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>194</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>324</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>10</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>338</item> <item>339</item> <item>340</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_90"> <Value> <Obj> <type>0</type> <id>121</id> <name></name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>194</lineNumber> <contextFuncName>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>4</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>194</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>324</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>6</count> <item_version>0</item_version> <item>341</item> <item>342</item> <item>343</item> <item>344</item> <item>345</item> <item>346</item> </oprand_edges> <opcode>switch</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>1.13</m_delay> </item> <item class_id_reference="9" object_id="_91"> <Value> <Obj> <type>0</type> <id>123</id> <name></name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>194</lineNumber> <contextFuncName>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>4</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>194</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>324</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>454</item> <item>455</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>3.25</m_delay> </item> <item class_id_reference="9" object_id="_92"> <Value> <Obj> <type>0</type> <id>124</id> <name></name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>194</lineNumber> <contextFuncName>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>4</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>194</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>324</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>456</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_93"> <Value> <Obj> <type>0</type> <id>126</id> <name></name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>194</lineNumber> <contextFuncName>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>4</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>194</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>324</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>451</item> <item>452</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>3.25</m_delay> </item> <item class_id_reference="9" object_id="_94"> <Value> <Obj> <type>0</type> <id>127</id> <name></name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>194</lineNumber> <contextFuncName>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>4</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>194</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>324</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>453</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_95"> <Value> <Obj> <type>0</type> <id>129</id> <name></name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>194</lineNumber> <contextFuncName>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>4</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>194</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>324</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>457</item> <item>458</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>3.25</m_delay> </item> <item class_id_reference="9" object_id="_96"> <Value> <Obj> <type>0</type> <id>130</id> <name></name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>194</lineNumber> <contextFuncName>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>4</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>194</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>324</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>459</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_97"> <Value> <Obj> <type>0</type> <id>132</id> <name></name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>194</lineNumber> <contextFuncName>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>4</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>194</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>324</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>347</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_98"> <Value> <Obj> <type>0</type> <id>134</id> <name>buf_0_V_addr_3</name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>189</lineNumber> <contextFuncName>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>4</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>189</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>324</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>10</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>364</item> <item>365</item> <item>366</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_99"> <Value> <Obj> <type>0</type> <id>135</id> <name>buf_0_V_load</name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>189</lineNumber> <contextFuncName>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>4</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>189</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>324</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>367</item> <item>666</item> <item>669</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>3.25</m_delay> </item> <item class_id_reference="9" object_id="_100"> <Value> <Obj> <type>0</type> <id>136</id> <name>buf_1_V_addr_3</name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>189</lineNumber> <contextFuncName>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>4</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>189</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>324</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>10</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>368</item> <item>369</item> <item>370</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_101"> <Value> <Obj> <type>0</type> <id>137</id> <name>buf_1_V_load</name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>189</lineNumber> <contextFuncName>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>4</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>189</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>324</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>371</item> <item>665</item> <item>668</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>3.25</m_delay> </item> <item class_id_reference="9" object_id="_102"> <Value> <Obj> <type>0</type> <id>138</id> <name>buf_2_V_addr_2</name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>189</lineNumber> <contextFuncName>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>4</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>189</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>324</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>10</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>372</item> <item>373</item> <item>374</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_103"> <Value> <Obj> <type>0</type> <id>139</id> <name>buf_2_V_load</name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>189</lineNumber> <contextFuncName>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>4</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>189</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>324</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>375</item> <item>667</item> <item>670</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>3.25</m_delay> </item> <item class_id_reference="9" object_id="_104"> <Value> <Obj> <type>0</type> <id>140</id> <name>buf0_V</name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>189</lineNumber> <contextFuncName>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>4</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>189</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>324</second> </item> </second> </item> </inlineStackInfo> <originalName>buf0.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>5</count> <item_version>0</item_version> <item>377</item> <item>378</item> <item>379</item> <item>380</item> <item>381</item> </oprand_edges> <opcode>mux</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>1.77</m_delay> </item> <item class_id_reference="9" object_id="_105"> <Value> <Obj> <type>0</type> <id>141</id> <name>buf1_V</name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>189</lineNumber> <contextFuncName>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>4</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>189</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>324</second> </item> </second> </item> </inlineStackInfo> <originalName>buf1.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>5</count> <item_version>0</item_version> <item>382</item> <item>383</item> <item>384</item> <item>385</item> <item>386</item> </oprand_edges> <opcode>mux</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>1.77</m_delay> </item> <item class_id_reference="9" object_id="_106"> <Value> <Obj> <type>0</type> <id>142</id> <name>buf2_V</name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>189</lineNumber> <contextFuncName>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>4</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>189</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>324</second> </item> </second> </item> </inlineStackInfo> <originalName>buf2.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>5</count> <item_version>0</item_version> <item>387</item> <item>388</item> <item>389</item> <item>390</item> <item>391</item> </oprand_edges> <opcode>mux</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>1.77</m_delay> </item> <item class_id_reference="9" object_id="_107"> <Value> <Obj> <type>0</type> <id>143</id> <name>call_ret_i_i</name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>215</lineNumber> <contextFuncName>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>4</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>215</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>324</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>9</count> <item_version>0</item_version> <item>393</item> <item>394</item> <item>395</item> <item>396</item> <item>397</item> <item>398</item> <item>399</item> <item>400</item> <item>401</item> </oprand_edges> <opcode>call</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_108"> <Value> <Obj> <type>0</type> <id>144</id> <name>GradientValuesX_0_V</name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>215</lineNumber> <contextFuncName>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>4</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>215</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>324</second> </item> </second> </item> </inlineStackInfo> <originalName>GradientValuesX[0].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>402</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_109"> <Value> <Obj> <type>0</type> <id>145</id> <name>GradientValuesY_0_V</name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>215</lineNumber> <contextFuncName>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>4</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>215</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>324</second> </item> </second> </item> </inlineStackInfo> <originalName>GradientValuesY[0].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>403</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_110"> <Value> <Obj> <type>0</type> <id>146</id> <name>tmp_15_i_i</name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>218</lineNumber> <contextFuncName>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>4</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>218</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>324</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>404</item> <item>405</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>2.09</m_delay> </item> <item class_id_reference="9" object_id="_111"> <Value> <Obj> <type>0</type> <id>147</id> <name></name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>218</lineNumber> <contextFuncName>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>4</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>218</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>324</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>406</item> <item>407</item> <item>408</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_112"> <Value> <Obj> <type>0</type> <id>149</id> <name></name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>232</lineNumber> <contextFuncName>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>4</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>232</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>324</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>410</item> <item>411</item> <item>412</item> </oprand_edges> <opcode>write</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>3.63</m_delay> </item> <item class_id_reference="9" object_id="_113"> <Value> <Obj> <type>0</type> <id>150</id> <name></name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>233</lineNumber> <contextFuncName>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>4</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>233</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>324</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>413</item> <item>414</item> <item>415</item> </oprand_edges> <opcode>write</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>3.63</m_delay> </item> <item class_id_reference="9" object_id="_114"> <Value> <Obj> <type>0</type> <id>151</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>416</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_115"> <Value> <Obj> <type>0</type> <id>154</id> <name></name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>189</lineNumber> <contextFuncName>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>4</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>ProcessSobel3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>189</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>324</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>417</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_116"> <Value> <Obj> <type>0</type> <id>156</id> <name>GradientValuesX_0_V_2</name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>346</lineNumber> <contextFuncName>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>346</second> </item> </second> </item> </inlineStackInfo> <originalName>GradientValuesX[0].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>7</count> <item_version>0</item_version> <item>419</item> <item>420</item> <item>421</item> <item>422</item> <item>423</item> <item>424</item> <item>425</item> </oprand_edges> <opcode>call</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>1.91</m_delay> </item> <item class_id_reference="9" object_id="_117"> <Value> <Obj> <type>0</type> <id>157</id> <name>GradientValuesY_0_V_2</name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>351</lineNumber> <contextFuncName>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>351</second> </item> </second> </item> </inlineStackInfo> <originalName>GradientValuesY[0].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>7</count> <item_version>0</item_version> <item>427</item> <item>428</item> <item>429</item> <item>430</item> <item>431</item> <item>432</item> <item>433</item> </oprand_edges> <opcode>call</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>1.91</m_delay> </item> <item class_id_reference="9" object_id="_118"> <Value> <Obj> <type>0</type> <id>158</id> <name></name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>357</lineNumber> <contextFuncName>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>357</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>434</item> <item>435</item> <item>436</item> </oprand_edges> <opcode>write</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>3.63</m_delay> </item> <item class_id_reference="9" object_id="_119"> <Value> <Obj> <type>0</type> <id>159</id> <name></name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>358</lineNumber> <contextFuncName>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>358</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>437</item> <item>438</item> <item>439</item> </oprand_edges> <opcode>write</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>3.63</m_delay> </item> <item class_id_reference="9" object_id="_120"> <Value> <Obj> <type>0</type> <id>160</id> <name>row_ind_V</name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>363</lineNumber> <contextFuncName>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>363</second> </item> </second> </item> </inlineStackInfo> <originalName>row_ind.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>13</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>440</item> <item>441</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>1.67</m_delay> </item> <item class_id_reference="9" object_id="_121"> <Value> <Obj> <type>0</type> <id>161</id> <name>tmp_14_i_i</name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>364</lineNumber> <contextFuncName>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>364</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>442</item> <item>444</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>2.09</m_delay> </item> <item class_id_reference="9" object_id="_122"> <Value> <Obj> <type>0</type> <id>162</id> <name>p_i_i_15</name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>364</lineNumber> <contextFuncName>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>364</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>13</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>445</item> <item>446</item> <item>447</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>0.69</m_delay> </item> <item class_id_reference="9" object_id="_123"> <Value> <Obj> <type>0</type> <id>164</id> <name>row_V</name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>302</lineNumber> <contextFuncName>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>302</second> </item> </second> </item> </inlineStackInfo> <originalName>row.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>13</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>448</item> <item>449</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>1.67</m_delay> </item> <item class_id_reference="9" object_id="_124"> <Value> <Obj> <type>0</type> <id>165</id> <name></name> <fileName>C:/xfopencv/include\imgproc/xf_sobel.hpp</fileName> <fileDirectory>C:/Users/yakup/workspace/bitirme_v4/Release</fileDirectory> <lineNumber>302</lineNumber> <contextFuncName>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:/Users/yakup/workspace/bitirme_v4/Release</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>Sobel&amp;lt;0, 3, 0, 0, 480, 640, 1&amp;gt;</second> </first> <second>1474</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter&amp;lt;480, 640, 0, 0, 1, 0, 0&amp;gt;</second> </first> <second>1422</second> </item> <item> <first> <first>C:/xfopencv/include\imgproc/xf_sobel.hpp</first> <second>xFSobelFilter3x3&amp;lt;480, 640, 0, 0, 1, 0, 0, 640&amp;gt;</second> </first> <second>302</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>450</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_125"> <Value> <Obj> <type>0</type> <id>167</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_delay>0.00</m_delay> </item> </nodes> <consts class_id="15" tracking_level="0" version="0"> <count>15</count> <item_version>0</item_version> <item class_id="16" tracking_level="1" version="0" object_id="_126"> <Value> <Obj> <type>2</type> <id>169</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="_127"> <Value> <Obj> <type>2</type> <id>181</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>13</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_128"> <Value> <Obj> <type>2</type> <id>190</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>13</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_129"> <Value> <Obj> <type>2</type> <id>200</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>17</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_130"> <Value> <Obj> <type>2</type> <id>205</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_131"> <Value> <Obj> <type>2</type> <id>208</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_132"> <Value> <Obj> <type>2</type> <id>220</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>13</bitwidth> </Value> <const_type>0</const_type> <content>2</content> </item> <item class_id_reference="16" object_id="_133"> <Value> <Obj> <type>2</type> <id>246</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <const_type>0</const_type> <content>2</content> </item> <item class_id_reference="16" object_id="_134"> <Value> <Obj> <type>2</type> <id>250</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_135"> <Value> <Obj> <type>2</type> <id>254</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_136"> <Value> <Obj> <type>2</type> <id>258</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="_137"> <Value> <Obj> <type>2</type> <id>392</id> <name>xFSobel3x3_1_0_0_s</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <const_type>6</const_type> <content>&lt;constant:xFSobel3x3&lt;1, 0, 0&gt;&gt;</content> </item> <item class_id_reference="16" object_id="_138"> <Value> <Obj> <type>2</type> <id>418</id> <name>xFGradientX3x3_0_0_s</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <const_type>6</const_type> <content>&lt;constant:xFGradientX3x3&lt;0, 0&gt;&gt;</content> </item> <item class_id_reference="16" object_id="_139"> <Value> <Obj> <type>2</type> <id>426</id> <name>xFGradientY3x3_0_0_s</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <const_type>6</const_type> <content>&lt;constant:xFGradientY3x3&lt;0, 0&gt;&gt;</content> </item> <item class_id_reference="16" object_id="_140"> <Value> <Obj> <type>2</type> <id>443</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>13</bitwidth> </Value> <const_type>0</const_type> <content>3</content> </item> </consts> <blocks class_id="17" tracking_level="0" version="0"> <count>23</count> <item_version>0</item_version> <item class_id="18" tracking_level="1" version="0" object_id="_141"> <Obj> <type>3</type> <id>20</id> <name>entry</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>8</count> <item_version>0</item_version> <item>9</item> <item>10</item> <item>11</item> <item>14</item> <item>15</item> <item>16</item> <item>17</item> <item>19</item> </node_objs> </item> <item class_id_reference="18" object_id="_142"> <Obj> <type>3</type> <id>26</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>5</count> <item_version>0</item_version> <item>21</item> <item>22</item> <item>23</item> <item>24</item> <item>25</item> </node_objs> </item> <item class_id_reference="18" object_id="_143"> <Obj> <type>3</type> <id>39</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>7</count> <item_version>0</item_version> <item>27</item> <item>32</item> <item>33</item> <item>34</item> <item>35</item> <item>36</item> <item>38</item> </node_objs> </item> <item class_id_reference="18" object_id="_144"> <Obj> <type>3</type> <id>46</id> <name>.preheader.preheader.i.i</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>6</count> <item_version>0</item_version> <item>40</item> <item>41</item> <item>42</item> <item>43</item> <item>44</item> <item>45</item> </node_objs> </item> <item class_id_reference="18" object_id="_145"> <Obj> <type>3</type> <id>52</id> <name>.preheader.i.i</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>5</count> <item_version>0</item_version> <item>47</item> <item>48</item> <item>49</item> <item>50</item> <item>51</item> </node_objs> </item> <item class_id_reference="18" object_id="_146"> <Obj> <type>3</type> <id>81</id> <name>_ifconv</name> <fileName></fileName> <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>53</item> <item>54</item> <item>55</item> <item>56</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> </node_objs> </item> <item class_id_reference="18" object_id="_147"> <Obj> <type>3</type> <id>93</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>11</count> <item_version>0</item_version> <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> </node_objs> </item> <item class_id_reference="18" object_id="_148"> <Obj> <type>3</type> <id>100</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>94</item> <item>99</item> </node_objs> </item> <item class_id_reference="18" object_id="_149"> <Obj> <type>3</type> <id>105</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>4</count> <item_version>0</item_version> <item>101</item> <item>102</item> <item>103</item> <item>104</item> </node_objs> </item> <item class_id_reference="18" object_id="_150"> <Obj> <type>3</type> <id>108</id> <name>branch4.i.i</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>106</item> <item>107</item> </node_objs> </item> <item class_id_reference="18" object_id="_151"> <Obj> <type>3</type> <id>111</id> <name>branch3.i.i</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>109</item> <item>110</item> </node_objs> </item> <item class_id_reference="18" object_id="_152"> <Obj> <type>3</type> <id>114</id> <name>branch5.i.i</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>112</item> <item>113</item> </node_objs> </item> <item class_id_reference="18" object_id="_153"> <Obj> <type>3</type> <id>116</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>115</item> </node_objs> </item> <item class_id_reference="18" object_id="_154"> <Obj> <type>3</type> <id>122</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>5</count> <item_version>0</item_version> <item>117</item> <item>118</item> <item>119</item> <item>120</item> <item>121</item> </node_objs> </item> <item class_id_reference="18" object_id="_155"> <Obj> <type>3</type> <id>125</id> <name>branch1.i.i</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>123</item> <item>124</item> </node_objs> </item> <item class_id_reference="18" object_id="_156"> <Obj> <type>3</type> <id>128</id> <name>branch0.i.i</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>126</item> <item>127</item> </node_objs> </item> <item class_id_reference="18" object_id="_157"> <Obj> <type>3</type> <id>131</id> <name>branch2.i.i</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>129</item> <item>130</item> </node_objs> </item> <item class_id_reference="18" object_id="_158"> <Obj> <type>3</type> <id>133</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>132</item> </node_objs> </item> <item class_id_reference="18" object_id="_159"> <Obj> <type>3</type> <id>148</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>14</count> <item_version>0</item_version> <item>134</item> <item>135</item> <item>136</item> <item>137</item> <item>138</item> <item>139</item> <item>140</item> <item>141</item> <item>142</item> <item>143</item> <item>144</item> <item>145</item> <item>146</item> <item>147</item> </node_objs> </item> <item class_id_reference="18" object_id="_160"> <Obj> <type>3</type> <id>152</id> <name>.preheader851.0.i.i</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>3</count> <item_version>0</item_version> <item>149</item> <item>150</item> <item>151</item> </node_objs> </item> <item class_id_reference="18" object_id="_161"> <Obj> <type>3</type> <id>155</id> <name>xfPackPixels&lt;1, 0, 0&gt;.exit393.i.i.i</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>154</item> </node_objs> </item> <item class_id_reference="18" object_id="_162"> <Obj> <type>3</type> <id>166</id> <name>ProcessSobel3x3&lt;480, 640, 0, 0, 1, 0, 0, 640&gt;.exit.i.i</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>9</count> <item_version>0</item_version> <item>156</item> <item>157</item> <item>158</item> <item>159</item> <item>160</item> <item>161</item> <item>162</item> <item>164</item> <item>165</item> </node_objs> </item> <item class_id_reference="18" object_id="_163"> <Obj> <type>3</type> <id>168</id> <name>.exit</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>167</item> </node_objs> </item> </blocks> <edges class_id="19" tracking_level="0" version="0"> <count>310</count> <item_version>0</item_version> <item class_id="20" tracking_level="1" version="0" object_id="_164"> <id>170</id> <edge_type>1</edge_type> <source_obj>169</source_obj> <sink_obj>9</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_165"> <id>171</id> <edge_type>1</edge_type> <source_obj>169</source_obj> <sink_obj>10</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_166"> <id>172</id> <edge_type>1</edge_type> <source_obj>169</source_obj> <sink_obj>11</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_167"> <id>175</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>14</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_168"> <id>177</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>15</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_169"> <id>178</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="_170"> <id>179</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="_171"> <id>180</id> <edge_type>2</edge_type> <source_obj>26</source_obj> <sink_obj>19</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_172"> <id>182</id> <edge_type>1</edge_type> <source_obj>181</source_obj> <sink_obj>21</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_173"> <id>183</id> <edge_type>2</edge_type> <source_obj>20</source_obj> <sink_obj>21</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_174"> <id>184</id> <edge_type>1</edge_type> <source_obj>24</source_obj> <sink_obj>21</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_175"> <id>185</id> <edge_type>2</edge_type> <source_obj>39</source_obj> <sink_obj>21</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_176"> <id>186</id> <edge_type>1</edge_type> <source_obj>21</source_obj> <sink_obj>22</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_177"> <id>187</id> <edge_type>1</edge_type> <source_obj>22</source_obj> <sink_obj>23</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_178"> <id>188</id> <edge_type>1</edge_type> <source_obj>17</source_obj> <sink_obj>23</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_179"> <id>189</id> <edge_type>1</edge_type> <source_obj>21</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_180"> <id>191</id> <edge_type>1</edge_type> <source_obj>190</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_181"> <id>192</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="_182"> <id>193</id> <edge_type>2</edge_type> <source_obj>46</source_obj> <sink_obj>25</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_183"> <id>194</id> <edge_type>2</edge_type> <source_obj>39</source_obj> <sink_obj>25</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_184"> <id>195</id> <edge_type>1</edge_type> <source_obj>169</source_obj> <sink_obj>40</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_185"> <id>196</id> <edge_type>1</edge_type> <source_obj>169</source_obj> <sink_obj>41</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_186"> <id>197</id> <edge_type>1</edge_type> <source_obj>169</source_obj> <sink_obj>42</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_187"> <id>198</id> <edge_type>1</edge_type> <source_obj>16</source_obj> <sink_obj>43</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_188"> <id>199</id> <edge_type>1</edge_type> <source_obj>43</source_obj> <sink_obj>44</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_189"> <id>201</id> <edge_type>1</edge_type> <source_obj>200</source_obj> <sink_obj>44</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_190"> <id>202</id> <edge_type>2</edge_type> <source_obj>52</source_obj> <sink_obj>45</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_191"> <id>203</id> <edge_type>1</edge_type> <source_obj>21</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_192"> <id>204</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>32</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_193"> <id>206</id> <edge_type>1</edge_type> <source_obj>205</source_obj> <sink_obj>32</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_194"> <id>207</id> <edge_type>1</edge_type> <source_obj>27</source_obj> <sink_obj>32</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_195"> <id>209</id> <edge_type>1</edge_type> <source_obj>208</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_196"> <id>210</id> <edge_type>1</edge_type> <source_obj>32</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_197"> <id>213</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>34</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_198"> <id>214</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>35</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_199"> <id>215</id> <edge_type>1</edge_type> <source_obj>205</source_obj> <sink_obj>35</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_200"> <id>216</id> <edge_type>1</edge_type> <source_obj>27</source_obj> <sink_obj>35</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_201"> <id>217</id> <edge_type>1</edge_type> <source_obj>34</source_obj> <sink_obj>36</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_202"> <id>218</id> <edge_type>1</edge_type> <source_obj>35</source_obj> <sink_obj>36</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_203"> <id>219</id> <edge_type>2</edge_type> <source_obj>26</source_obj> <sink_obj>38</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_204"> <id>221</id> <edge_type>1</edge_type> <source_obj>220</source_obj> <sink_obj>47</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_205"> <id>222</id> <edge_type>2</edge_type> <source_obj>46</source_obj> <sink_obj>47</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_206"> <id>223</id> <edge_type>1</edge_type> <source_obj>162</source_obj> <sink_obj>47</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_207"> <id>224</id> <edge_type>2</edge_type> <source_obj>166</source_obj> <sink_obj>47</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_208"> <id>225</id> <edge_type>1</edge_type> <source_obj>190</source_obj> <sink_obj>48</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_209"> <id>226</id> <edge_type>2</edge_type> <source_obj>46</source_obj> <sink_obj>48</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_210"> <id>227</id> <edge_type>1</edge_type> <source_obj>164</source_obj> <sink_obj>48</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_211"> <id>228</id> <edge_type>2</edge_type> <source_obj>166</source_obj> <sink_obj>48</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_212"> <id>229</id> <edge_type>1</edge_type> <source_obj>48</source_obj> <sink_obj>49</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_213"> <id>230</id> <edge_type>1</edge_type> <source_obj>49</source_obj> <sink_obj>50</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_214"> <id>231</id> <edge_type>1</edge_type> <source_obj>44</source_obj> <sink_obj>50</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_215"> <id>232</id> <edge_type>1</edge_type> <source_obj>50</source_obj> <sink_obj>51</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_216"> <id>233</id> <edge_type>2</edge_type> <source_obj>168</source_obj> <sink_obj>51</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_217"> <id>234</id> <edge_type>2</edge_type> <source_obj>81</source_obj> <sink_obj>51</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_218"> <id>235</id> <edge_type>1</edge_type> <source_obj>40</source_obj> <sink_obj>53</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_219"> <id>236</id> <edge_type>1</edge_type> <source_obj>41</source_obj> <sink_obj>54</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_220"> <id>237</id> <edge_type>1</edge_type> <source_obj>42</source_obj> <sink_obj>55</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_221"> <id>238</id> <edge_type>1</edge_type> <source_obj>48</source_obj> <sink_obj>56</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_222"> <id>239</id> <edge_type>1</edge_type> <source_obj>47</source_obj> <sink_obj>60</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_223"> <id>240</id> <edge_type>1</edge_type> <source_obj>220</source_obj> <sink_obj>60</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_224"> <id>241</id> <edge_type>1</edge_type> <source_obj>47</source_obj> <sink_obj>61</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_225"> <id>242</id> <edge_type>1</edge_type> <source_obj>181</source_obj> <sink_obj>61</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_226"> <id>243</id> <edge_type>1</edge_type> <source_obj>47</source_obj> <sink_obj>62</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_227"> <id>244</id> <edge_type>1</edge_type> <source_obj>190</source_obj> <sink_obj>62</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_228"> <id>245</id> <edge_type>1</edge_type> <source_obj>62</source_obj> <sink_obj>63</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_229"> <id>247</id> <edge_type>1</edge_type> <source_obj>246</source_obj> <sink_obj>63</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_230"> <id>248</id> <edge_type>1</edge_type> <source_obj>55</source_obj> <sink_obj>63</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_231"> <id>249</id> <edge_type>1</edge_type> <source_obj>62</source_obj> <sink_obj>64</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_232"> <id>251</id> <edge_type>1</edge_type> <source_obj>250</source_obj> <sink_obj>64</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_233"> <id>252</id> <edge_type>1</edge_type> <source_obj>54</source_obj> <sink_obj>64</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_234"> <id>253</id> <edge_type>1</edge_type> <source_obj>62</source_obj> <sink_obj>65</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_235"> <id>255</id> <edge_type>1</edge_type> <source_obj>254</source_obj> <sink_obj>65</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_236"> <id>256</id> <edge_type>1</edge_type> <source_obj>53</source_obj> <sink_obj>65</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_237"> <id>257</id> <edge_type>1</edge_type> <source_obj>60</source_obj> <sink_obj>66</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_238"> <id>259</id> <edge_type>1</edge_type> <source_obj>258</source_obj> <sink_obj>66</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_239"> <id>260</id> <edge_type>1</edge_type> <source_obj>61</source_obj> <sink_obj>67</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_240"> <id>261</id> <edge_type>1</edge_type> <source_obj>66</source_obj> <sink_obj>67</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_241"> <id>262</id> <edge_type>1</edge_type> <source_obj>67</source_obj> <sink_obj>68</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_242"> <id>263</id> <edge_type>1</edge_type> <source_obj>67</source_obj> <sink_obj>69</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_243"> <id>264</id> <edge_type>1</edge_type> <source_obj>60</source_obj> <sink_obj>69</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_244"> <id>265</id> <edge_type>1</edge_type> <source_obj>69</source_obj> <sink_obj>70</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_245"> <id>266</id> <edge_type>1</edge_type> <source_obj>68</source_obj> <sink_obj>70</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_246"> <id>267</id> <edge_type>1</edge_type> <source_obj>63</source_obj> <sink_obj>70</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_247"> <id>268</id> <edge_type>1</edge_type> <source_obj>67</source_obj> <sink_obj>71</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_248"> <id>269</id> <edge_type>1</edge_type> <source_obj>246</source_obj> <sink_obj>71</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_249"> <id>270</id> <edge_type>1</edge_type> <source_obj>254</source_obj> <sink_obj>71</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_250"> <id>271</id> <edge_type>1</edge_type> <source_obj>69</source_obj> <sink_obj>72</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_251"> <id>272</id> <edge_type>1</edge_type> <source_obj>71</source_obj> <sink_obj>72</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_252"> <id>273</id> <edge_type>1</edge_type> <source_obj>64</source_obj> <sink_obj>72</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_253"> <id>274</id> <edge_type>1</edge_type> <source_obj>67</source_obj> <sink_obj>73</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_254"> <id>275</id> <edge_type>1</edge_type> <source_obj>250</source_obj> <sink_obj>73</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_255"> <id>276</id> <edge_type>1</edge_type> <source_obj>246</source_obj> <sink_obj>73</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_256"> <id>277</id> <edge_type>1</edge_type> <source_obj>69</source_obj> <sink_obj>74</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_257"> <id>278</id> <edge_type>1</edge_type> <source_obj>73</source_obj> <sink_obj>74</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_258"> <id>279</id> <edge_type>1</edge_type> <source_obj>65</source_obj> <sink_obj>74</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_259"> <id>280</id> <edge_type>1</edge_type> <source_obj>56</source_obj> <sink_obj>75</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_260"> <id>281</id> <edge_type>1</edge_type> <source_obj>16</source_obj> <sink_obj>75</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_261"> <id>282</id> <edge_type>1</edge_type> <source_obj>47</source_obj> <sink_obj>76</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_262"> <id>283</id> <edge_type>1</edge_type> <source_obj>70</source_obj> <sink_obj>77</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_263"> <id>284</id> <edge_type>1</edge_type> <source_obj>42</source_obj> <sink_obj>77</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_264"> <id>285</id> <edge_type>1</edge_type> <source_obj>72</source_obj> <sink_obj>78</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_265"> <id>286</id> <edge_type>1</edge_type> <source_obj>41</source_obj> <sink_obj>78</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_266"> <id>287</id> <edge_type>1</edge_type> <source_obj>74</source_obj> <sink_obj>79</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_267"> <id>288</id> <edge_type>1</edge_type> <source_obj>40</source_obj> <sink_obj>79</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_268"> <id>289</id> <edge_type>2</edge_type> <source_obj>93</source_obj> <sink_obj>80</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_269"> <id>290</id> <edge_type>1</edge_type> <source_obj>208</source_obj> <sink_obj>82</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_270"> <id>291</id> <edge_type>2</edge_type> <source_obj>81</source_obj> <sink_obj>82</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_271"> <id>292</id> <edge_type>1</edge_type> <source_obj>85</source_obj> <sink_obj>82</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_272"> <id>293</id> <edge_type>2</edge_type> <source_obj>155</source_obj> <sink_obj>82</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_273"> <id>294</id> <edge_type>1</edge_type> <source_obj>208</source_obj> <sink_obj>83</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_274"> <id>295</id> <edge_type>2</edge_type> <source_obj>81</source_obj> <sink_obj>83</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_275"> <id>296</id> <edge_type>1</edge_type> <source_obj>141</source_obj> <sink_obj>83</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_276"> <id>297</id> <edge_type>2</edge_type> <source_obj>155</source_obj> <sink_obj>83</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_277"> <id>298</id> <edge_type>1</edge_type> <source_obj>208</source_obj> <sink_obj>84</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_278"> <id>299</id> <edge_type>2</edge_type> <source_obj>81</source_obj> <sink_obj>84</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_279"> <id>300</id> <edge_type>1</edge_type> <source_obj>83</source_obj> <sink_obj>84</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_280"> <id>301</id> <edge_type>2</edge_type> <source_obj>155</source_obj> <sink_obj>84</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_281"> <id>302</id> <edge_type>1</edge_type> <source_obj>208</source_obj> <sink_obj>85</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_282"> <id>303</id> <edge_type>2</edge_type> <source_obj>81</source_obj> <sink_obj>85</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_283"> <id>304</id> <edge_type>1</edge_type> <source_obj>142</source_obj> <sink_obj>85</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_284"> <id>305</id> <edge_type>2</edge_type> <source_obj>155</source_obj> <sink_obj>85</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_285"> <id>306</id> <edge_type>1</edge_type> <source_obj>208</source_obj> <sink_obj>86</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_286"> <id>307</id> <edge_type>2</edge_type> <source_obj>81</source_obj> <sink_obj>86</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_287"> <id>308</id> <edge_type>1</edge_type> <source_obj>140</source_obj> <sink_obj>86</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_288"> <id>309</id> <edge_type>2</edge_type> <source_obj>155</source_obj> <sink_obj>86</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_289"> <id>310</id> <edge_type>1</edge_type> <source_obj>208</source_obj> <sink_obj>87</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_290"> <id>311</id> <edge_type>2</edge_type> <source_obj>81</source_obj> <sink_obj>87</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_291"> <id>312</id> <edge_type>1</edge_type> <source_obj>86</source_obj> <sink_obj>87</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_292"> <id>313</id> <edge_type>2</edge_type> <source_obj>155</source_obj> <sink_obj>87</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_293"> <id>314</id> <edge_type>1</edge_type> <source_obj>181</source_obj> <sink_obj>88</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_294"> <id>315</id> <edge_type>2</edge_type> <source_obj>81</source_obj> <sink_obj>88</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_295"> <id>316</id> <edge_type>1</edge_type> <source_obj>91</source_obj> <sink_obj>88</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_296"> <id>317</id> <edge_type>2</edge_type> <source_obj>155</source_obj> <sink_obj>88</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_297"> <id>318</id> <edge_type>1</edge_type> <source_obj>88</source_obj> <sink_obj>89</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_298"> <id>319</id> <edge_type>1</edge_type> <source_obj>89</source_obj> <sink_obj>90</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_299"> <id>320</id> <edge_type>1</edge_type> <source_obj>17</source_obj> <sink_obj>90</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_300"> <id>321</id> <edge_type>1</edge_type> <source_obj>88</source_obj> <sink_obj>91</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_301"> <id>322</id> <edge_type>1</edge_type> <source_obj>190</source_obj> <sink_obj>91</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_302"> <id>323</id> <edge_type>1</edge_type> <source_obj>90</source_obj> <sink_obj>92</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_303"> <id>324</id> <edge_type>2</edge_type> <source_obj>166</source_obj> <sink_obj>92</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_304"> <id>325</id> <edge_type>2</edge_type> <source_obj>100</source_obj> <sink_obj>92</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_305"> <id>326</id> <edge_type>1</edge_type> <source_obj>88</source_obj> <sink_obj>94</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_306"> <id>327</id> <edge_type>1</edge_type> <source_obj>75</source_obj> <sink_obj>99</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_307"> <id>328</id> <edge_type>2</edge_type> <source_obj>105</source_obj> <sink_obj>99</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_308"> <id>329</id> <edge_type>2</edge_type> <source_obj>122</source_obj> <sink_obj>99</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_309"> <id>331</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>117</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_310"> <id>332</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>118</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_311"> <id>333</id> <edge_type>1</edge_type> <source_obj>205</source_obj> <sink_obj>118</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_312"> <id>334</id> <edge_type>1</edge_type> <source_obj>94</source_obj> <sink_obj>118</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_313"> <id>335</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>119</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_314"> <id>336</id> <edge_type>1</edge_type> <source_obj>205</source_obj> <sink_obj>119</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_315"> <id>337</id> <edge_type>1</edge_type> <source_obj>94</source_obj> <sink_obj>119</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_316"> <id>338</id> <edge_type>1</edge_type> <source_obj>11</source_obj> <sink_obj>120</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_317"> <id>339</id> <edge_type>1</edge_type> <source_obj>205</source_obj> <sink_obj>120</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_318"> <id>340</id> <edge_type>1</edge_type> <source_obj>94</source_obj> <sink_obj>120</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_319"> <id>341</id> <edge_type>1</edge_type> <source_obj>76</source_obj> <sink_obj>121</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_320"> <id>342</id> <edge_type>2</edge_type> <source_obj>131</source_obj> <sink_obj>121</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_321"> <id>343</id> <edge_type>1</edge_type> <source_obj>250</source_obj> <sink_obj>121</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_322"> <id>344</id> <edge_type>2</edge_type> <source_obj>128</source_obj> <sink_obj>121</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_323"> <id>345</id> <edge_type>1</edge_type> <source_obj>254</source_obj> <sink_obj>121</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_324"> <id>346</id> <edge_type>2</edge_type> <source_obj>125</source_obj> <sink_obj>121</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_325"> <id>347</id> <edge_type>2</edge_type> <source_obj>148</source_obj> <sink_obj>132</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_326"> <id>348</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>101</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_327"> <id>349</id> <edge_type>1</edge_type> <source_obj>205</source_obj> <sink_obj>101</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_328"> <id>350</id> <edge_type>1</edge_type> <source_obj>94</source_obj> <sink_obj>101</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_329"> <id>351</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>102</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_330"> <id>352</id> <edge_type>1</edge_type> <source_obj>205</source_obj> <sink_obj>102</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_331"> <id>353</id> <edge_type>1</edge_type> <source_obj>94</source_obj> <sink_obj>102</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_332"> <id>354</id> <edge_type>1</edge_type> <source_obj>11</source_obj> <sink_obj>103</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_333"> <id>355</id> <edge_type>1</edge_type> <source_obj>205</source_obj> <sink_obj>103</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_334"> <id>356</id> <edge_type>1</edge_type> <source_obj>94</source_obj> <sink_obj>103</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_335"> <id>357</id> <edge_type>1</edge_type> <source_obj>74</source_obj> <sink_obj>104</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_336"> <id>358</id> <edge_type>2</edge_type> <source_obj>114</source_obj> <sink_obj>104</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_337"> <id>359</id> <edge_type>1</edge_type> <source_obj>250</source_obj> <sink_obj>104</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_338"> <id>360</id> <edge_type>2</edge_type> <source_obj>111</source_obj> <sink_obj>104</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_339"> <id>361</id> <edge_type>1</edge_type> <source_obj>254</source_obj> <sink_obj>104</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_340"> <id>362</id> <edge_type>2</edge_type> <source_obj>108</source_obj> <sink_obj>104</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_341"> <id>363</id> <edge_type>2</edge_type> <source_obj>148</source_obj> <sink_obj>115</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_342"> <id>364</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>134</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_343"> <id>365</id> <edge_type>1</edge_type> <source_obj>205</source_obj> <sink_obj>134</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_344"> <id>366</id> <edge_type>1</edge_type> <source_obj>94</source_obj> <sink_obj>134</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_345"> <id>367</id> <edge_type>1</edge_type> <source_obj>134</source_obj> <sink_obj>135</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_346"> <id>368</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>136</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_347"> <id>369</id> <edge_type>1</edge_type> <source_obj>205</source_obj> <sink_obj>136</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_348"> <id>370</id> <edge_type>1</edge_type> <source_obj>94</source_obj> <sink_obj>136</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_349"> <id>371</id> <edge_type>1</edge_type> <source_obj>136</source_obj> <sink_obj>137</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_350"> <id>372</id> <edge_type>1</edge_type> <source_obj>11</source_obj> <sink_obj>138</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_351"> <id>373</id> <edge_type>1</edge_type> <source_obj>205</source_obj> <sink_obj>138</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_352"> <id>374</id> <edge_type>1</edge_type> <source_obj>94</source_obj> <sink_obj>138</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_353"> <id>375</id> <edge_type>1</edge_type> <source_obj>138</source_obj> <sink_obj>139</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_354"> <id>378</id> <edge_type>1</edge_type> <source_obj>135</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_355"> <id>379</id> <edge_type>1</edge_type> <source_obj>137</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_356"> <id>380</id> <edge_type>1</edge_type> <source_obj>139</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_357"> <id>381</id> <edge_type>1</edge_type> <source_obj>70</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_358"> <id>383</id> <edge_type>1</edge_type> <source_obj>135</source_obj> <sink_obj>141</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_359"> <id>384</id> <edge_type>1</edge_type> <source_obj>137</source_obj> <sink_obj>141</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_360"> <id>385</id> <edge_type>1</edge_type> <source_obj>139</source_obj> <sink_obj>141</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_361"> <id>386</id> <edge_type>1</edge_type> <source_obj>72</source_obj> <sink_obj>141</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_362"> <id>388</id> <edge_type>1</edge_type> <source_obj>135</source_obj> <sink_obj>142</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_363"> <id>389</id> <edge_type>1</edge_type> <source_obj>137</source_obj> <sink_obj>142</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_364"> <id>390</id> <edge_type>1</edge_type> <source_obj>139</source_obj> <sink_obj>142</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_365"> <id>391</id> <edge_type>1</edge_type> <source_obj>74</source_obj> <sink_obj>142</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_366"> <id>393</id> <edge_type>1</edge_type> <source_obj>392</source_obj> <sink_obj>143</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_367"> <id>394</id> <edge_type>1</edge_type> <source_obj>87</source_obj> <sink_obj>143</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_368"> <id>395</id> <edge_type>1</edge_type> <source_obj>86</source_obj> <sink_obj>143</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_369"> <id>396</id> <edge_type>1</edge_type> <source_obj>140</source_obj> <sink_obj>143</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_370"> <id>397</id> <edge_type>1</edge_type> <source_obj>84</source_obj> <sink_obj>143</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_371"> <id>398</id> <edge_type>1</edge_type> <source_obj>141</source_obj> <sink_obj>143</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_372"> <id>399</id> <edge_type>1</edge_type> <source_obj>82</source_obj> <sink_obj>143</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_373"> <id>400</id> <edge_type>1</edge_type> <source_obj>85</source_obj> <sink_obj>143</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_374"> <id>401</id> <edge_type>1</edge_type> <source_obj>142</source_obj> <sink_obj>143</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_375"> <id>402</id> <edge_type>1</edge_type> <source_obj>143</source_obj> <sink_obj>144</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_376"> <id>403</id> <edge_type>1</edge_type> <source_obj>143</source_obj> <sink_obj>145</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_377"> <id>404</id> <edge_type>1</edge_type> <source_obj>88</source_obj> <sink_obj>146</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_378"> <id>405</id> <edge_type>1</edge_type> <source_obj>181</source_obj> <sink_obj>146</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_379"> <id>406</id> <edge_type>1</edge_type> <source_obj>146</source_obj> <sink_obj>147</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_380"> <id>407</id> <edge_type>2</edge_type> <source_obj>152</source_obj> <sink_obj>147</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_381"> <id>408</id> <edge_type>2</edge_type> <source_obj>155</source_obj> <sink_obj>147</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_382"> <id>411</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>149</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_383"> <id>412</id> <edge_type>1</edge_type> <source_obj>144</source_obj> <sink_obj>149</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_384"> <id>414</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>150</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_385"> <id>415</id> <edge_type>1</edge_type> <source_obj>145</source_obj> <sink_obj>150</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_386"> <id>416</id> <edge_type>2</edge_type> <source_obj>155</source_obj> <sink_obj>151</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_387"> <id>417</id> <edge_type>2</edge_type> <source_obj>93</source_obj> <sink_obj>154</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_388"> <id>419</id> <edge_type>1</edge_type> <source_obj>418</source_obj> <sink_obj>156</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_389"> <id>420</id> <edge_type>1</edge_type> <source_obj>87</source_obj> <sink_obj>156</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_390"> <id>421</id> <edge_type>1</edge_type> <source_obj>208</source_obj> <sink_obj>156</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_391"> <id>422</id> <edge_type>1</edge_type> <source_obj>84</source_obj> <sink_obj>156</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_392"> <id>423</id> <edge_type>1</edge_type> <source_obj>208</source_obj> <sink_obj>156</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_393"> <id>424</id> <edge_type>1</edge_type> <source_obj>82</source_obj> <sink_obj>156</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_394"> <id>425</id> <edge_type>1</edge_type> <source_obj>208</source_obj> <sink_obj>156</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_395"> <id>427</id> <edge_type>1</edge_type> <source_obj>426</source_obj> <sink_obj>157</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_396"> <id>428</id> <edge_type>1</edge_type> <source_obj>87</source_obj> <sink_obj>157</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_397"> <id>429</id> <edge_type>1</edge_type> <source_obj>86</source_obj> <sink_obj>157</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_398"> <id>430</id> <edge_type>1</edge_type> <source_obj>208</source_obj> <sink_obj>157</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_399"> <id>431</id> <edge_type>1</edge_type> <source_obj>82</source_obj> <sink_obj>157</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_400"> <id>432</id> <edge_type>1</edge_type> <source_obj>85</source_obj> <sink_obj>157</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_401"> <id>433</id> <edge_type>1</edge_type> <source_obj>208</source_obj> <sink_obj>157</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_402"> <id>435</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>158</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_403"> <id>436</id> <edge_type>1</edge_type> <source_obj>156</source_obj> <sink_obj>158</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_404"> <id>438</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>159</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_405"> <id>439</id> <edge_type>1</edge_type> <source_obj>157</source_obj> <sink_obj>159</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_406"> <id>440</id> <edge_type>1</edge_type> <source_obj>47</source_obj> <sink_obj>160</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_407"> <id>441</id> <edge_type>1</edge_type> <source_obj>190</source_obj> <sink_obj>160</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_408"> <id>442</id> <edge_type>1</edge_type> <source_obj>160</source_obj> <sink_obj>161</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_409"> <id>444</id> <edge_type>1</edge_type> <source_obj>443</source_obj> <sink_obj>161</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_410"> <id>445</id> <edge_type>1</edge_type> <source_obj>161</source_obj> <sink_obj>162</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_411"> <id>446</id> <edge_type>1</edge_type> <source_obj>181</source_obj> <sink_obj>162</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_412"> <id>447</id> <edge_type>1</edge_type> <source_obj>160</source_obj> <sink_obj>162</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_413"> <id>448</id> <edge_type>1</edge_type> <source_obj>48</source_obj> <sink_obj>164</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_414"> <id>449</id> <edge_type>1</edge_type> <source_obj>190</source_obj> <sink_obj>164</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_415"> <id>450</id> <edge_type>2</edge_type> <source_obj>52</source_obj> <sink_obj>165</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_416"> <id>451</id> <edge_type>1</edge_type> <source_obj>117</source_obj> <sink_obj>126</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_417"> <id>452</id> <edge_type>1</edge_type> <source_obj>118</source_obj> <sink_obj>126</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_418"> <id>453</id> <edge_type>2</edge_type> <source_obj>133</source_obj> <sink_obj>127</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_419"> <id>454</id> <edge_type>1</edge_type> <source_obj>117</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_420"> <id>455</id> <edge_type>1</edge_type> <source_obj>119</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_421"> <id>456</id> <edge_type>2</edge_type> <source_obj>133</source_obj> <sink_obj>124</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_422"> <id>457</id> <edge_type>1</edge_type> <source_obj>117</source_obj> <sink_obj>129</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_423"> <id>458</id> <edge_type>1</edge_type> <source_obj>120</source_obj> <sink_obj>129</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_424"> <id>459</id> <edge_type>2</edge_type> <source_obj>133</source_obj> <sink_obj>130</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_425"> <id>460</id> <edge_type>1</edge_type> <source_obj>208</source_obj> <sink_obj>109</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_426"> <id>461</id> <edge_type>1</edge_type> <source_obj>101</source_obj> <sink_obj>109</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_427"> <id>462</id> <edge_type>2</edge_type> <source_obj>116</source_obj> <sink_obj>110</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_428"> <id>463</id> <edge_type>1</edge_type> <source_obj>208</source_obj> <sink_obj>106</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_429"> <id>464</id> <edge_type>1</edge_type> <source_obj>102</source_obj> <sink_obj>106</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_430"> <id>465</id> <edge_type>2</edge_type> <source_obj>116</source_obj> <sink_obj>107</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_431"> <id>466</id> <edge_type>1</edge_type> <source_obj>208</source_obj> <sink_obj>112</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_432"> <id>467</id> <edge_type>1</edge_type> <source_obj>103</source_obj> <sink_obj>112</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_433"> <id>468</id> <edge_type>2</edge_type> <source_obj>116</source_obj> <sink_obj>113</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_434"> <id>633</id> <edge_type>2</edge_type> <source_obj>20</source_obj> <sink_obj>26</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_435"> <id>634</id> <edge_type>2</edge_type> <source_obj>26</source_obj> <sink_obj>39</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_436"> <id>635</id> <edge_type>2</edge_type> <source_obj>26</source_obj> <sink_obj>46</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_437"> <id>636</id> <edge_type>2</edge_type> <source_obj>39</source_obj> <sink_obj>26</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_438"> <id>637</id> <edge_type>2</edge_type> <source_obj>46</source_obj> <sink_obj>52</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_439"> <id>638</id> <edge_type>2</edge_type> <source_obj>52</source_obj> <sink_obj>81</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_440"> <id>639</id> <edge_type>2</edge_type> <source_obj>52</source_obj> <sink_obj>168</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_441"> <id>640</id> <edge_type>2</edge_type> <source_obj>81</source_obj> <sink_obj>93</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_442"> <id>641</id> <edge_type>2</edge_type> <source_obj>93</source_obj> <sink_obj>100</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_443"> <id>642</id> <edge_type>2</edge_type> <source_obj>93</source_obj> <sink_obj>166</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_444"> <id>643</id> <edge_type>2</edge_type> <source_obj>100</source_obj> <sink_obj>122</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_445"> <id>644</id> <edge_type>2</edge_type> <source_obj>100</source_obj> <sink_obj>105</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_446"> <id>645</id> <edge_type>2</edge_type> <source_obj>105</source_obj> <sink_obj>114</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_447"> <id>646</id> <edge_type>2</edge_type> <source_obj>105</source_obj> <sink_obj>111</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_448"> <id>647</id> <edge_type>2</edge_type> <source_obj>105</source_obj> <sink_obj>108</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_449"> <id>648</id> <edge_type>2</edge_type> <source_obj>108</source_obj> <sink_obj>116</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_450"> <id>649</id> <edge_type>2</edge_type> <source_obj>111</source_obj> <sink_obj>116</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_451"> <id>650</id> <edge_type>2</edge_type> <source_obj>114</source_obj> <sink_obj>116</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_452"> <id>651</id> <edge_type>2</edge_type> <source_obj>116</source_obj> <sink_obj>148</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_453"> <id>652</id> <edge_type>2</edge_type> <source_obj>122</source_obj> <sink_obj>131</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_454"> <id>653</id> <edge_type>2</edge_type> <source_obj>122</source_obj> <sink_obj>128</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_455"> <id>654</id> <edge_type>2</edge_type> <source_obj>122</source_obj> <sink_obj>125</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_456"> <id>655</id> <edge_type>2</edge_type> <source_obj>125</source_obj> <sink_obj>133</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_457"> <id>656</id> <edge_type>2</edge_type> <source_obj>128</source_obj> <sink_obj>133</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_458"> <id>657</id> <edge_type>2</edge_type> <source_obj>131</source_obj> <sink_obj>133</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_459"> <id>658</id> <edge_type>2</edge_type> <source_obj>133</source_obj> <sink_obj>148</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_460"> <id>659</id> <edge_type>2</edge_type> <source_obj>148</source_obj> <sink_obj>155</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_461"> <id>660</id> <edge_type>2</edge_type> <source_obj>148</source_obj> <sink_obj>152</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_462"> <id>661</id> <edge_type>2</edge_type> <source_obj>152</source_obj> <sink_obj>155</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_463"> <id>662</id> <edge_type>2</edge_type> <source_obj>155</source_obj> <sink_obj>93</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_464"> <id>663</id> <edge_type>2</edge_type> <source_obj>166</source_obj> <sink_obj>52</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_465"> <id>665</id> <edge_type>4</edge_type> <source_obj>106</source_obj> <sink_obj>137</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_466"> <id>666</id> <edge_type>4</edge_type> <source_obj>109</source_obj> <sink_obj>135</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_467"> <id>667</id> <edge_type>4</edge_type> <source_obj>112</source_obj> <sink_obj>139</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_468"> <id>668</id> <edge_type>4</edge_type> <source_obj>123</source_obj> <sink_obj>137</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_469"> <id>669</id> <edge_type>4</edge_type> <source_obj>126</source_obj> <sink_obj>135</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_470"> <id>670</id> <edge_type>4</edge_type> <source_obj>129</source_obj> <sink_obj>139</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_471"> <id>671</id> <edge_type>4</edge_type> <source_obj>55</source_obj> <sink_obj>77</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_472"> <id>672</id> <edge_type>4</edge_type> <source_obj>54</source_obj> <sink_obj>78</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_473"> <id>673</id> <edge_type>4</edge_type> <source_obj>53</source_obj> <sink_obj>79</sink_obj> <is_back_edge>0</is_back_edge> </item> </edges> </cdfg> <cdfg_regions class_id="21" tracking_level="0" version="0"> <count>9</count> <item_version>0</item_version> <item class_id="22" tracking_level="1" version="0" object_id="_474"> <mId>1</mId> <mTag>xFSobelFilter3x3</mTag> <mType>0</mType> <sub_regions> <count>5</count> <item_version>0</item_version> <item>2</item> <item>3</item> <item>4</item> <item>5</item> <item>9</item> </sub_regions> <basic_blocks> <count>0</count> <item_version>0</item_version> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>312163</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_475"> <mId>2</mId> <mTag>Entry</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>20</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_476"> <mId>3</mId> <mTag>Clear_Row_Loop</mTag> <mType>1</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>26</item> <item>39</item> </basic_blocks> <mII>1</mII> <mDepth>2</mDepth> <mMinTripCount>640</mMinTripCount> <mMaxTripCount>640</mMaxTripCount> <mMinLatency>640</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_477"> <mId>4</mId> <mTag>Region 1</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>46</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_478"> <mId>5</mId> <mTag>Row_Loop</mTag> <mType>1</mType> <sub_regions> <count>3</count> <item_version>0</item_version> <item>6</item> <item>7</item> <item>8</item> </sub_regions> <basic_blocks> <count>0</count> <item_version>0</item_version> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>480</mMinTripCount> <mMaxTripCount>480</mMaxTripCount> <mMinLatency>311520</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_479"> <mId>6</mId> <mTag>Region 2</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>52</item> <item>81</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_480"> <mId>7</mId> <mTag>Col_Loop</mTag> <mType>1</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>15</count> <item_version>0</item_version> <item>93</item> <item>100</item> <item>105</item> <item>108</item> <item>111</item> <item>114</item> <item>116</item> <item>122</item> <item>125</item> <item>128</item> <item>131</item> <item>133</item> <item>148</item> <item>152</item> <item>155</item> </basic_blocks> <mII>1</mII> <mDepth>6</mDepth> <mMinTripCount>640</mMinTripCount> <mMaxTripCount>640</mMaxTripCount> <mMinLatency>644</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_481"> <mId>8</mId> <mTag>Region 3</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>166</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>2</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_482"> <mId>9</mId> <mTag>Return</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>168</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> </cdfg_regions> <fsm class_id="24" tracking_level="1" version="0" object_id="_483"> <states class_id="25" tracking_level="0" version="0"> <count>14</count> <item_version>0</item_version> <item class_id="26" tracking_level="1" version="0" object_id="_484"> <id>1</id> <operations class_id="27" tracking_level="0" version="0"> <count>14</count> <item_version>0</item_version> <item class_id="28" tracking_level="1" version="0" object_id="_485"> <id>6</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_486"> <id>7</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_487"> <id>8</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_488"> <id>9</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_489"> <id>10</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_490"> <id>11</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_491"> <id>12</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_492"> <id>13</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_493"> <id>14</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_494"> <id>15</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_495"> <id>16</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_496"> <id>17</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_497"> <id>18</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_498"> <id>19</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_499"> <id>2</id> <operations> <count>5</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_500"> <id>21</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_501"> <id>22</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_502"> <id>23</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_503"> <id>24</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_504"> <id>25</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_505"> <id>3</id> <operations> <count>12</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_506"> <id>27</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_507"> <id>28</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_508"> <id>29</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_509"> <id>30</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_510"> <id>31</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_511"> <id>32</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_512"> <id>33</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_513"> <id>34</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_514"> <id>35</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_515"> <id>36</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_516"> <id>37</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_517"> <id>38</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_518"> <id>4</id> <operations> <count>6</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_519"> <id>40</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_520"> <id>41</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_521"> <id>42</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_522"> <id>43</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_523"> <id>44</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_524"> <id>45</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_525"> <id>5</id> <operations> <count>34</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_526"> <id>47</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_527"> <id>48</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_528"> <id>49</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_529"> <id>50</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_530"> <id>51</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_531"> <id>53</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_532"> <id>54</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_533"> <id>55</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_534"> <id>56</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_535"> <id>57</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_536"> <id>58</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_537"> <id>59</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_538"> <id>60</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_539"> <id>61</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_540"> <id>62</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_541"> <id>63</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_542"> <id>64</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_543"> <id>65</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_544"> <id>66</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_545"> <id>67</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_546"> <id>68</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_547"> <id>69</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_548"> <id>70</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_549"> <id>71</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_550"> <id>72</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_551"> <id>73</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_552"> <id>74</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_553"> <id>75</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_554"> <id>76</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_555"> <id>77</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_556"> <id>78</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_557"> <id>79</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_558"> <id>80</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_559"> <id>167</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_560"> <id>6</id> <operations> <count>8</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_561"> <id>88</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_562"> <id>89</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_563"> <id>90</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_564"> <id>91</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_565"> <id>99</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_566"> <id>115</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_567"> <id>121</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_568"> <id>132</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_569"> <id>7</id> <operations> <count>23</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_570"> <id>94</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_571"> <id>101</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_572"> <id>102</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_573"> <id>103</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_574"> <id>104</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_575"> <id>106</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_576"> <id>107</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_577"> <id>109</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_578"> <id>110</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_579"> <id>112</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_580"> <id>113</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_581"> <id>117</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_582"> <id>118</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_583"> <id>119</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_584"> <id>120</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_585"> <id>123</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_586"> <id>124</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_587"> <id>126</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_588"> <id>127</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_589"> <id>129</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_590"> <id>130</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_591"> <id>146</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_592"> <id>147</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_593"> <id>8</id> <operations> <count>6</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_594"> <id>134</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_595"> <id>135</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_596"> <id>136</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_597"> <id>137</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_598"> <id>138</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_599"> <id>139</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_600"> <id>9</id> <operations> <count>14</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_601"> <id>82</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_602"> <id>83</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_603"> <id>84</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_604"> <id>85</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_605"> <id>86</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_606"> <id>87</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_607"> <id>92</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_608"> <id>135</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_609"> <id>137</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_610"> <id>139</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_611"> <id>140</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_612"> <id>141</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_613"> <id>142</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_614"> <id>143</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_615"> <id>10</id> <operations> <count>3</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_616"> <id>143</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_617"> <id>144</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_618"> <id>145</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_619"> <id>11</id> <operations> <count>9</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_620"> <id>95</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_621"> <id>96</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_622"> <id>97</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_623"> <id>98</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_624"> <id>149</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_625"> <id>150</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_626"> <id>151</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_627"> <id>153</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_628"> <id>154</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_629"> <id>12</id> <operations> <count>6</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_630"> <id>156</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_631"> <id>157</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_632"> <id>160</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_633"> <id>161</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_634"> <id>162</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_635"> <id>164</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_636"> <id>13</id> <operations> <count>2</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_637"> <id>156</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_638"> <id>157</id> <stage>1</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_639"> <id>14</id> <operations> <count>4</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_640"> <id>158</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_641"> <id>159</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_642"> <id>163</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_643"> <id>165</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> </states> <transitions class_id="29" tracking_level="0" version="0"> <count>16</count> <item_version>0</item_version> <item class_id="30" tracking_level="1" version="0" object_id="_644"> <inState>1</inState> <outState>2</outState> <condition class_id="31" tracking_level="0" version="0"> <id>115</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="_645"> <inState>4</inState> <outState>5</outState> <condition> <id>122</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="_646"> <inState>5</inState> <outState>6</outState> <condition> <id>124</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>1</count> <item_version>0</item_version> <item class_id="34" tracking_level="0" version="0"> <first class_id="35" tracking_level="0" version="0"> <first>50</first> <second>0</second> </first> <second>0</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_647"> <inState>12</inState> <outState>13</outState> <condition> <id>145</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="_648"> <inState>13</inState> <outState>14</outState> <condition> <id>146</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="_649"> <inState>14</inState> <outState>5</outState> <condition> <id>148</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="_650"> <inState>3</inState> <outState>2</outState> <condition> <id>150</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="_651"> <inState>2</inState> <outState>4</outState> <condition> <id>149</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>1</count> <item_version>0</item_version> <item> <first> <first>23</first> <second>0</second> </first> <second>1</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_652"> <inState>2</inState> <outState>3</outState> <condition> <id>151</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>1</count> <item_version>0</item_version> <item> <first> <first>23</first> <second>0</second> </first> <second>0</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_653"> <inState>6</inState> <outState>7</outState> <condition> <id>152</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="_654"> <inState>7</inState> <outState>8</outState> <condition> <id>153</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="_655"> <inState>8</inState> <outState>9</outState> <condition> <id>154</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="_656"> <inState>10</inState> <outState>11</outState> <condition> <id>156</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="_657"> <inState>11</inState> <outState>6</outState> <condition> <id>157</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="_658"> <inState>9</inState> <outState>12</outState> <condition> <id>155</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>1</count> <item_version>0</item_version> <item> <first> <first>90</first> <second>0</second> </first> <second>1</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_659"> <inState>9</inState> <outState>10</outState> <condition> <id>158</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>1</count> <item_version>0</item_version> <item> <first> <first>90</first> <second>0</second> </first> <second>0</second> </item> </item> </sop> </condition> </item> </transitions> </fsm> <res class_id="-1"></res> <node_label_latency class_id="37" tracking_level="0" version="0"> <count>120</count> <item_version>0</item_version> <item class_id="38" tracking_level="0" version="0"> <first>9</first> <second class_id="39" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>10</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>11</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>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>19</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>21</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>22</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>23</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>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>27</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>32</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>33</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>34</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>35</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>36</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>38</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>40</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>41</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>42</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>43</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>44</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>45</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>47</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>48</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>49</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>50</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>51</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>53</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>54</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>55</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>56</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>60</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>61</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>62</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>63</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>64</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>65</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>66</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>67</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>68</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>69</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>70</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>71</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>72</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>73</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>74</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>75</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>76</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>77</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>78</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>79</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>80</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>82</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>83</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>84</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>85</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>86</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>87</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>88</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>89</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>90</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>91</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>92</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>94</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>99</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>101</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>102</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>103</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>104</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>106</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>107</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>109</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>110</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>112</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>113</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>115</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>117</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>118</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>119</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>120</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>121</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>123</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>124</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>126</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>127</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>129</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>130</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>132</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>134</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>135</first> <second> <first>6</first> <second>1</second> </second> </item> <item> <first>136</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>137</first> <second> <first>6</first> <second>1</second> </second> </item> <item> <first>138</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>139</first> <second> <first>6</first> <second>1</second> </second> </item> <item> <first>140</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>141</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>142</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>143</first> <second> <first>7</first> <second>1</second> </second> </item> <item> <first>144</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>145</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>146</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>147</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>149</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>150</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>151</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>154</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>156</first> <second> <first>8</first> <second>1</second> </second> </item> <item> <first>157</first> <second> <first>8</first> <second>1</second> </second> </item> <item> <first>158</first> <second> <first>10</first> <second>0</second> </second> </item> <item> <first>159</first> <second> <first>10</first> <second>0</second> </second> </item> <item> <first>160</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>161</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>162</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>164</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>165</first> <second> <first>10</first> <second>0</second> </second> </item> <item> <first>167</first> <second> <first>3</first> <second>0</second> </second> </item> </node_label_latency> <bblk_ent_exit class_id="40" tracking_level="0" version="0"> <count>23</count> <item_version>0</item_version> <item class_id="41" tracking_level="0" version="0"> <first>20</first> <second class_id="42" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>26</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>39</first> <second> <first>2</first> <second>2</second> </second> </item> <item> <first>46</first> <second> <first>2</first> <second>2</second> </second> </item> <item> <first>52</first> <second> <first>3</first> <second>3</second> </second> </item> <item> <first>81</first> <second> <first>3</first> <second>3</second> </second> </item> <item> <first>93</first> <second> <first>4</first> <second>7</second> </second> </item> <item> <first>100</first> <second> <first>4</first> <second>9</second> </second> </item> <item> <first>105</first> <second> <first>5</first> <second>5</second> </second> </item> <item> <first>108</first> <second> <first>5</first> <second>5</second> </second> </item> <item> <first>111</first> <second> <first>5</first> <second>5</second> </second> </item> <item> <first>114</first> <second> <first>5</first> <second>5</second> </second> </item> <item> <first>116</first> <second> <first>4</first> <second>4</second> </second> </item> <item> <first>122</first> <second> <first>4</first> <second>5</second> </second> </item> <item> <first>125</first> <second> <first>5</first> <second>5</second> </second> </item> <item> <first>128</first> <second> <first>5</first> <second>5</second> </second> </item> <item> <first>131</first> <second> <first>5</first> <second>5</second> </second> </item> <item> <first>133</first> <second> <first>4</first> <second>4</second> </second> </item> <item> <first>148</first> <second> <first>5</first> <second>8</second> </second> </item> <item> <first>152</first> <second> <first>9</first> <second>9</second> </second> </item> <item> <first>155</first> <second> <first>9</first> <second>9</second> </second> </item> <item> <first>166</first> <second> <first>8</first> <second>10</second> </second> </item> <item> <first>168</first> <second> <first>3</first> <second>3</second> </second> </item> </bblk_ent_exit> <regions class_id="43" tracking_level="0" version="0"> <count>2</count> <item_version>0</item_version> <item class_id="44" tracking_level="1" version="0" object_id="_660"> <region_name>Clear_Row_Loop</region_name> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>26</item> <item>39</item> </basic_blocks> <nodes> <count>0</count> <item_version>0</item_version> </nodes> <anchor_node>-1</anchor_node> <region_type>8</region_type> <interval>1</interval> <pipe_depth>2</pipe_depth> </item> <item class_id_reference="44" object_id="_661"> <region_name>Col_Loop</region_name> <basic_blocks> <count>15</count> <item_version>0</item_version> <item>93</item> <item>100</item> <item>105</item> <item>108</item> <item>111</item> <item>114</item> <item>116</item> <item>122</item> <item>125</item> <item>128</item> <item>131</item> <item>133</item> <item>148</item> <item>152</item> <item>155</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>6</pipe_depth> </item> </regions> <dp_fu_nodes class_id="45" tracking_level="0" version="0"> <count>86</count> <item_version>0</item_version> <item class_id="46" tracking_level="0" version="0"> <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>92</first> <second> <count>1</count> <item_version>0</item_version> <item>11</item> </second> </item> <item> <first>96</first> <second> <count>1</count> <item_version>0</item_version> <item>40</item> </second> </item> <item> <first>100</first> <second> <count>1</count> <item_version>0</item_version> <item>41</item> </second> </item> <item> <first>104</first> <second> <count>1</count> <item_version>0</item_version> <item>42</item> </second> </item> <item> <first>108</first> <second> <count>1</count> <item_version>0</item_version> <item>14</item> </second> </item> <item> <first>114</first> <second> <count>1</count> <item_version>0</item_version> <item>15</item> </second> </item> <item> <first>120</first> <second> <count>2</count> <item_version>0</item_version> <item>34</item> <item>117</item> </second> </item> <item> <first>126</first> <second> <count>2</count> <item_version>0</item_version> <item>149</item> <item>158</item> </second> </item> <item> <first>133</first> <second> <count>2</count> <item_version>0</item_version> <item>150</item> <item>159</item> </second> </item> <item> <first>140</first> <second> <count>1</count> <item_version>0</item_version> <item>32</item> </second> </item> <item> <first>146</first> <second> <count>5</count> <item_version>0</item_version> <item>33</item> <item>109</item> <item>126</item> <item>135</item> <item>135</item> </second> </item> <item> <first>155</first> <second> <count>1</count> <item_version>0</item_version> <item>35</item> </second> </item> <item> <first>161</first> <second> <count>5</count> <item_version>0</item_version> <item>36</item> <item>106</item> <item>123</item> <item>137</item> <item>137</item> </second> </item> <item> <first>170</first> <second> <count>1</count> <item_version>0</item_version> <item>101</item> </second> </item> <item> <first>176</first> <second> <count>1</count> <item_version>0</item_version> <item>102</item> </second> </item> <item> <first>182</first> <second> <count>1</count> <item_version>0</item_version> <item>103</item> </second> </item> <item> <first>191</first> <second> <count>4</count> <item_version>0</item_version> <item>112</item> <item>129</item> <item>139</item> <item>139</item> </second> </item> <item> <first>200</first> <second> <count>1</count> <item_version>0</item_version> <item>118</item> </second> </item> <item> <first>206</first> <second> <count>1</count> <item_version>0</item_version> <item>119</item> </second> </item> <item> <first>212</first> <second> <count>1</count> <item_version>0</item_version> <item>120</item> </second> </item> <item> <first>223</first> <second> <count>1</count> <item_version>0</item_version> <item>134</item> </second> </item> <item> <first>230</first> <second> <count>1</count> <item_version>0</item_version> <item>136</item> </second> </item> <item> <first>237</first> <second> <count>1</count> <item_version>0</item_version> <item>138</item> </second> </item> <item> <first>248</first> <second> <count>1</count> <item_version>0</item_version> <item>21</item> </second> </item> <item> <first>260</first> <second> <count>1</count> <item_version>0</item_version> <item>47</item> </second> </item> <item> <first>272</first> <second> <count>1</count> <item_version>0</item_version> <item>48</item> </second> </item> <item> <first>284</first> <second> <count>1</count> <item_version>0</item_version> <item>88</item> </second> </item> <item> <first>296</first> <second> <count>1</count> <item_version>0</item_version> <item>82</item> </second> </item> <item> <first>308</first> <second> <count>1</count> <item_version>0</item_version> <item>83</item> </second> </item> <item> <first>320</first> <second> <count>1</count> <item_version>0</item_version> <item>84</item> </second> </item> <item> <first>334</first> <second> <count>1</count> <item_version>0</item_version> <item>85</item> </second> </item> <item> <first>346</first> <second> <count>1</count> <item_version>0</item_version> <item>86</item> </second> </item> <item> <first>358</first> <second> <count>1</count> <item_version>0</item_version> <item>87</item> </second> </item> <item> <first>367</first> <second> <count>2</count> <item_version>0</item_version> <item>143</item> <item>143</item> </second> </item> <item> <first>384</first> <second> <count>2</count> <item_version>0</item_version> <item>156</item> <item>156</item> </second> </item> <item> <first>400</first> <second> <count>2</count> <item_version>0</item_version> <item>157</item> <item>157</item> </second> </item> <item> <first>416</first> <second> <count>1</count> <item_version>0</item_version> <item>16</item> </second> </item> <item> <first>420</first> <second> <count>1</count> <item_version>0</item_version> <item>17</item> </second> </item> <item> <first>424</first> <second> <count>1</count> <item_version>0</item_version> <item>22</item> </second> </item> <item> <first>428</first> <second> <count>1</count> <item_version>0</item_version> <item>23</item> </second> </item> <item> <first>433</first> <second> <count>1</count> <item_version>0</item_version> <item>24</item> </second> </item> <item> <first>439</first> <second> <count>1</count> <item_version>0</item_version> <item>27</item> </second> </item> <item> <first>445</first> <second> <count>1</count> <item_version>0</item_version> <item>43</item> </second> </item> <item> <first>448</first> <second> <count>1</count> <item_version>0</item_version> <item>44</item> </second> </item> <item> <first>454</first> <second> <count>1</count> <item_version>0</item_version> <item>49</item> </second> </item> <item> <first>458</first> <second> <count>1</count> <item_version>0</item_version> <item>50</item> </second> </item> <item> <first>463</first> <second> <count>1</count> <item_version>0</item_version> <item>53</item> </second> </item> <item> <first>466</first> <second> <count>1</count> <item_version>0</item_version> <item>54</item> </second> </item> <item> <first>469</first> <second> <count>1</count> <item_version>0</item_version> <item>55</item> </second> </item> <item> <first>472</first> <second> <count>1</count> <item_version>0</item_version> <item>56</item> </second> </item> <item> <first>476</first> <second> <count>1</count> <item_version>0</item_version> <item>60</item> </second> </item> <item> <first>482</first> <second> <count>1</count> <item_version>0</item_version> <item>61</item> </second> </item> <item> <first>488</first> <second> <count>1</count> <item_version>0</item_version> <item>62</item> </second> </item> <item> <first>494</first> <second> <count>1</count> <item_version>0</item_version> <item>63</item> </second> </item> <item> <first>502</first> <second> <count>1</count> <item_version>0</item_version> <item>64</item> </second> </item> <item> <first>510</first> <second> <count>1</count> <item_version>0</item_version> <item>65</item> </second> </item> <item> <first>518</first> <second> <count>1</count> <item_version>0</item_version> <item>66</item> </second> </item> <item> <first>524</first> <second> <count>1</count> <item_version>0</item_version> <item>67</item> </second> </item> <item> <first>530</first> <second> <count>1</count> <item_version>0</item_version> <item>68</item> </second> </item> <item> <first>534</first> <second> <count>1</count> <item_version>0</item_version> <item>69</item> </second> </item> <item> <first>540</first> <second> <count>1</count> <item_version>0</item_version> <item>70</item> </second> </item> <item> <first>548</first> <second> <count>1</count> <item_version>0</item_version> <item>71</item> </second> </item> <item> <first>556</first> <second> <count>1</count> <item_version>0</item_version> <item>72</item> </second> </item> <item> <first>564</first> <second> <count>1</count> <item_version>0</item_version> <item>73</item> </second> </item> <item> <first>572</first> <second> <count>1</count> <item_version>0</item_version> <item>74</item> </second> </item> <item> <first>580</first> <second> <count>1</count> <item_version>0</item_version> <item>75</item> </second> </item> <item> <first>585</first> <second> <count>1</count> <item_version>0</item_version> <item>76</item> </second> </item> <item> <first>589</first> <second> <count>1</count> <item_version>0</item_version> <item>77</item> </second> </item> <item> <first>594</first> <second> <count>1</count> <item_version>0</item_version> <item>78</item> </second> </item> <item> <first>599</first> <second> <count>1</count> <item_version>0</item_version> <item>79</item> </second> </item> <item> <first>604</first> <second> <count>1</count> <item_version>0</item_version> <item>89</item> </second> </item> <item> <first>608</first> <second> <count>1</count> <item_version>0</item_version> <item>90</item> </second> </item> <item> <first>613</first> <second> <count>1</count> <item_version>0</item_version> <item>91</item> </second> </item> <item> <first>619</first> <second> <count>1</count> <item_version>0</item_version> <item>94</item> </second> </item> <item> <first>629</first> <second> <count>1</count> <item_version>0</item_version> <item>146</item> </second> </item> <item> <first>635</first> <second> <count>1</count> <item_version>0</item_version> <item>140</item> </second> </item> <item> <first>647</first> <second> <count>1</count> <item_version>0</item_version> <item>141</item> </second> </item> <item> <first>659</first> <second> <count>1</count> <item_version>0</item_version> <item>142</item> </second> </item> <item> <first>671</first> <second> <count>1</count> <item_version>0</item_version> <item>144</item> </second> </item> <item> <first>675</first> <second> <count>1</count> <item_version>0</item_version> <item>145</item> </second> </item> <item> <first>679</first> <second> <count>1</count> <item_version>0</item_version> <item>160</item> </second> </item> <item> <first>685</first> <second> <count>1</count> <item_version>0</item_version> <item>161</item> </second> </item> <item> <first>691</first> <second> <count>1</count> <item_version>0</item_version> <item>162</item> </second> </item> <item> <first>699</first> <second> <count>1</count> <item_version>0</item_version> <item>164</item> </second> </item> </dp_fu_nodes> <dp_fu_nodes_expression class_id="48" tracking_level="0" version="0"> <count>69</count> <item_version>0</item_version> <item class_id="49" tracking_level="0" version="0"> <first>GradientValuesX_0_V_fu_671</first> <second> <count>1</count> <item_version>0</item_version> <item>144</item> </second> </item> <item> <first>GradientValuesY_0_V_fu_675</first> <second> <count>1</count> <item_version>0</item_version> <item>145</item> </second> </item> <item> <first>buf0_V_fu_635</first> <second> <count>1</count> <item_version>0</item_version> <item>140</item> </second> </item> <item> <first>buf1_V_fu_647</first> <second> <count>1</count> <item_version>0</item_version> <item>141</item> </second> </item> <item> <first>buf2_V_fu_659</first> <second> <count>1</count> <item_version>0</item_version> <item>142</item> </second> </item> <item> <first>buf_0_V_addr_1_gep_fu_200</first> <second> <count>1</count> <item_version>0</item_version> <item>118</item> </second> </item> <item> <first>buf_0_V_addr_2_gep_fu_170</first> <second> <count>1</count> <item_version>0</item_version> <item>101</item> </second> </item> <item> <first>buf_0_V_addr_3_gep_fu_223</first> <second> <count>1</count> <item_version>0</item_version> <item>134</item> </second> </item> <item> <first>buf_0_V_addr_gep_fu_140</first> <second> <count>1</count> <item_version>0</item_version> <item>32</item> </second> </item> <item> <first>buf_0_V_alloca_fu_84</first> <second> <count>1</count> <item_version>0</item_version> <item>9</item> </second> </item> <item> <first>buf_1_V_addr_1_gep_fu_206</first> <second> <count>1</count> <item_version>0</item_version> <item>119</item> </second> </item> <item> <first>buf_1_V_addr_2_gep_fu_176</first> <second> <count>1</count> <item_version>0</item_version> <item>102</item> </second> </item> <item> <first>buf_1_V_addr_3_gep_fu_230</first> <second> <count>1</count> <item_version>0</item_version> <item>136</item> </second> </item> <item> <first>buf_1_V_addr_gep_fu_155</first> <second> <count>1</count> <item_version>0</item_version> <item>35</item> </second> </item> <item> <first>buf_1_V_alloca_fu_88</first> <second> <count>1</count> <item_version>0</item_version> <item>10</item> </second> </item> <item> <first>buf_2_V_addr_1_gep_fu_182</first> <second> <count>1</count> <item_version>0</item_version> <item>103</item> </second> </item> <item> <first>buf_2_V_addr_2_gep_fu_237</first> <second> <count>1</count> <item_version>0</item_version> <item>138</item> </second> </item> <item> <first>buf_2_V_addr_gep_fu_212</first> <second> <count>1</count> <item_version>0</item_version> <item>120</item> </second> </item> <item> <first>buf_2_V_alloca_fu_92</first> <second> <count>1</count> <item_version>0</item_version> <item>11</item> </second> </item> <item> <first>col_V_1_fu_613</first> <second> <count>1</count> <item_version>0</item_version> <item>91</item> </second> </item> <item> <first>col_V_fu_433</first> <second> <count>1</count> <item_version>0</item_version> <item>24</item> </second> </item> <item> <first>op2_assign_fu_448</first> <second> <count>1</count> <item_version>0</item_version> <item>44</item> </second> </item> <item> <first>p_0177_0_i_i_i_phi_fu_284</first> <second> <count>1</count> <item_version>0</item_version> <item>88</item> </second> </item> <item> <first>p_0443_3_i_i_fu_572</first> <second> <count>1</count> <item_version>0</item_version> <item>74</item> </second> </item> <item> <first>p_0449_3_i_i_fu_556</first> <second> <count>1</count> <item_version>0</item_version> <item>72</item> </second> </item> <item> <first>p_0455_3_i_i_fu_540</first> <second> <count>1</count> <item_version>0</item_version> <item>70</item> </second> </item> <item> <first>p_1_i_i_12_fu_502</first> <second> <count>1</count> <item_version>0</item_version> <item>64</item> </second> </item> <item> <first>p_1_i_i_phi_fu_248</first> <second> <count>1</count> <item_version>0</item_version> <item>21</item> </second> </item> <item> <first>p_2_i_i_13_fu_510</first> <second> <count>1</count> <item_version>0</item_version> <item>65</item> </second> </item> <item> <first>p_2_i_i_phi_fu_260</first> <second> <count>1</count> <item_version>0</item_version> <item>47</item> </second> </item> <item> <first>p_3_i_i_fu_104</first> <second> <count>1</count> <item_version>0</item_version> <item>42</item> </second> </item> <item> <first>p_4_i_i_fu_100</first> <second> <count>1</count> <item_version>0</item_version> <item>41</item> </second> </item> <item> <first>p_5_i_i_fu_96</first> <second> <count>1</count> <item_version>0</item_version> <item>40</item> </second> </item> <item> <first>p_6_i_i_phi_fu_272</first> <second> <count>1</count> <item_version>0</item_version> <item>48</item> </second> </item> <item> <first>p_i_i_15_fu_691</first> <second> <count>1</count> <item_version>0</item_version> <item>162</item> </second> </item> <item> <first>p_i_i_fu_494</first> <second> <count>1</count> <item_version>0</item_version> <item>63</item> </second> </item> <item> <first>row_V_fu_699</first> <second> <count>1</count> <item_version>0</item_version> <item>164</item> </second> </item> <item> <first>row_ind_V_fu_679</first> <second> <count>1</count> <item_version>0</item_version> <item>160</item> </second> </item> <item> <first>sel_tmp1_fu_518</first> <second> <count>1</count> <item_version>0</item_version> <item>66</item> </second> </item> <item> <first>sel_tmp2_fu_524</first> <second> <count>1</count> <item_version>0</item_version> <item>67</item> </second> </item> <item> <first>sel_tmp4_fu_548</first> <second> <count>1</count> <item_version>0</item_version> <item>71</item> </second> </item> <item> <first>sel_tmp8_fu_564</first> <second> <count>1</count> <item_version>0</item_version> <item>73</item> </second> </item> <item> <first>sel_tmp_fu_530</first> <second> <count>1</count> <item_version>0</item_version> <item>68</item> </second> </item> <item> <first>src_buf1_0_V_phi_fu_346</first> <second> <count>1</count> <item_version>0</item_version> <item>86</item> </second> </item> <item> <first>src_buf1_V_0_i_i_phi_fu_358</first> <second> <count>1</count> <item_version>0</item_version> <item>87</item> </second> </item> <item> <first>src_buf2_0_V_phi_fu_308</first> <second> <count>1</count> <item_version>0</item_version> <item>83</item> </second> </item> <item> <first>src_buf2_V_0_i_i_phi_fu_320</first> <second> <count>1</count> <item_version>0</item_version> <item>84</item> </second> </item> <item> <first>src_buf3_0_V_phi_fu_334</first> <second> <count>1</count> <item_version>0</item_version> <item>85</item> </second> </item> <item> <first>src_buf3_V_0_i_i_phi_fu_296</first> <second> <count>1</count> <item_version>0</item_version> <item>82</item> </second> </item> <item> <first>tmp_11_cast_i_i_fu_604</first> <second> <count>1</count> <item_version>0</item_version> <item>89</item> </second> </item> <item> <first>tmp_11_i_i_fu_619</first> <second> <count>1</count> <item_version>0</item_version> <item>94</item> </second> </item> <item> <first>tmp_12_i_i_fu_608</first> <second> <count>1</count> <item_version>0</item_version> <item>90</item> </second> </item> <item> <first>tmp_14_i_i_fu_685</first> <second> <count>1</count> <item_version>0</item_version> <item>161</item> </second> </item> <item> <first>tmp_15_i_i_fu_629</first> <second> <count>1</count> <item_version>0</item_version> <item>146</item> </second> </item> <item> <first>tmp_1_cast_i_i_fu_424</first> <second> <count>1</count> <item_version>0</item_version> <item>22</item> </second> </item> <item> <first>tmp_1_fu_416</first> <second> <count>1</count> <item_version>0</item_version> <item>16</item> </second> </item> <item> <first>tmp_1_i_i_fu_439</first> <second> <count>1</count> <item_version>0</item_version> <item>27</item> </second> </item> <item> <first>tmp_2_fu_420</first> <second> <count>1</count> <item_version>0</item_version> <item>17</item> </second> </item> <item> <first>tmp_2_i_i_fu_428</first> <second> <count>1</count> <item_version>0</item_version> <item>23</item> </second> </item> <item> <first>tmp_3_fu_585</first> <second> <count>1</count> <item_version>0</item_version> <item>76</item> </second> </item> <item> <first>tmp_3_i_i_fu_580</first> <second> <count>1</count> <item_version>0</item_version> <item>75</item> </second> </item> <item> <first>tmp_5_cast100_i_i_fu_445</first> <second> <count>1</count> <item_version>0</item_version> <item>43</item> </second> </item> <item> <first>tmp_6_cast99_i_i_fu_472</first> <second> <count>1</count> <item_version>0</item_version> <item>56</item> </second> </item> <item> <first>tmp_6_cast_i_i_fu_454</first> <second> <count>1</count> <item_version>0</item_version> <item>49</item> </second> </item> <item> <first>tmp_7_i_i_fu_458</first> <second> <count>1</count> <item_version>0</item_version> <item>50</item> </second> </item> <item> <first>tmp_8_i_i_fu_476</first> <second> <count>1</count> <item_version>0</item_version> <item>60</item> </second> </item> <item> <first>tmp_9_i_i_fu_482</first> <second> <count>1</count> <item_version>0</item_version> <item>61</item> </second> </item> <item> <first>tmp_fu_534</first> <second> <count>1</count> <item_version>0</item_version> <item>69</item> </second> </item> <item> <first>tmp_i_i_fu_488</first> <second> <count>1</count> <item_version>0</item_version> <item>62</item> </second> </item> </dp_fu_nodes_expression> <dp_fu_nodes_module> <count>3</count> <item_version>0</item_version> <item> <first>grp_xFGradientX3x3_0_0_s_fu_384</first> <second> <count>2</count> <item_version>0</item_version> <item>156</item> <item>156</item> </second> </item> <item> <first>grp_xFGradientY3x3_0_0_s_fu_400</first> <second> <count>2</count> <item_version>0</item_version> <item>157</item> <item>157</item> </second> </item> <item> <first>grp_xFSobel3x3_1_0_0_s_fu_367</first> <second> <count>2</count> <item_version>0</item_version> <item>143</item> <item>143</item> </second> </item> </dp_fu_nodes_module> <dp_fu_nodes_io> <count>11</count> <item_version>0</item_version> <item> <first>StgValue_81_store_fu_589</first> <second> <count>1</count> <item_version>0</item_version> <item>77</item> </second> </item> <item> <first>StgValue_82_store_fu_594</first> <second> <count>1</count> <item_version>0</item_version> <item>78</item> </second> </item> <item> <first>StgValue_83_store_fu_599</first> <second> <count>1</count> <item_version>0</item_version> <item>79</item> </second> </item> <item> <first>grp_read_fu_120</first> <second> <count>2</count> <item_version>0</item_version> <item>34</item> <item>117</item> </second> </item> <item> <first>grp_write_fu_126</first> <second> <count>2</count> <item_version>0</item_version> <item>149</item> <item>158</item> </second> </item> <item> <first>grp_write_fu_133</first> <second> <count>2</count> <item_version>0</item_version> <item>150</item> <item>159</item> </second> </item> <item> <first>p_3_i_i_load_load_fu_469</first> <second> <count>1</count> <item_version>0</item_version> <item>55</item> </second> </item> <item> <first>p_4_i_i_load_load_fu_466</first> <second> <count>1</count> <item_version>0</item_version> <item>54</item> </second> </item> <item> <first>p_5_i_i_load_load_fu_463</first> <second> <count>1</count> <item_version>0</item_version> <item>53</item> </second> </item> <item> <first>p_src_mat_cols_read_1_read_fu_114</first> <second> <count>1</count> <item_version>0</item_version> <item>15</item> </second> </item> <item> <first>p_src_mat_rows_read_1_read_fu_108</first> <second> <count>1</count> <item_version>0</item_version> <item>14</item> </second> </item> </dp_fu_nodes_io> <return_ports> <count>0</count> <item_version>0</item_version> </return_ports> <dp_mem_port_nodes class_id="50" tracking_level="0" version="0"> <count>6</count> <item_version>0</item_version> <item class_id="51" tracking_level="0" version="0"> <first class_id="52" tracking_level="0" version="0"> <first>buf_0_V</first> <second>0</second> </first> <second> <count>2</count> <item_version>0</item_version> <item>135</item> <item>135</item> </second> </item> <item> <first> <first>buf_0_V</first> <second>1</second> </first> <second> <count>3</count> <item_version>0</item_version> <item>33</item> <item>109</item> <item>126</item> </second> </item> <item> <first> <first>buf_1_V</first> <second>0</second> </first> <second> <count>2</count> <item_version>0</item_version> <item>137</item> <item>137</item> </second> </item> <item> <first> <first>buf_1_V</first> <second>1</second> </first> <second> <count>3</count> <item_version>0</item_version> <item>36</item> <item>106</item> <item>123</item> </second> </item> <item> <first> <first>buf_2_V</first> <second>0</second> </first> <second> <count>2</count> <item_version>0</item_version> <item>139</item> <item>139</item> </second> </item> <item> <first> <first>buf_2_V</first> <second>1</second> </first> <second> <count>2</count> <item_version>0</item_version> <item>112</item> <item>129</item> </second> </item> </dp_mem_port_nodes> <dp_reg_nodes> <count>40</count> <item_version>0</item_version> <item> <first>244</first> <second> <count>1</count> <item_version>0</item_version> <item>21</item> </second> </item> <item> <first>256</first> <second> <count>1</count> <item_version>0</item_version> <item>47</item> </second> </item> <item> <first>268</first> <second> <count>1</count> <item_version>0</item_version> <item>48</item> </second> </item> <item> <first>280</first> <second> <count>1</count> <item_version>0</item_version> <item>88</item> </second> </item> <item> <first>292</first> <second> <count>1</count> <item_version>0</item_version> <item>82</item> </second> </item> <item> <first>304</first> <second> <count>1</count> <item_version>0</item_version> <item>83</item> </second> </item> <item> <first>316</first> <second> <count>1</count> <item_version>0</item_version> <item>84</item> </second> </item> <item> <first>329</first> <second> <count>1</count> <item_version>0</item_version> <item>85</item> </second> </item> <item> <first>342</first> <second> <count>1</count> <item_version>0</item_version> <item>86</item> </second> </item> <item> <first>354</first> <second> <count>1</count> <item_version>0</item_version> <item>87</item> </second> </item> <item> <first>705</first> <second> <count>1</count> <item_version>0</item_version> <item>16</item> </second> </item> <item> <first>711</first> <second> <count>1</count> <item_version>0</item_version> <item>17</item> </second> </item> <item> <first>717</first> <second> <count>1</count> <item_version>0</item_version> <item>23</item> </second> </item> <item> <first>721</first> <second> <count>1</count> <item_version>0</item_version> <item>24</item> </second> </item> <item> <first>726</first> <second> <count>1</count> <item_version>0</item_version> <item>40</item> </second> </item> <item> <first>732</first> <second> <count>1</count> <item_version>0</item_version> <item>41</item> </second> </item> <item> <first>738</first> <second> <count>1</count> <item_version>0</item_version> <item>42</item> </second> </item> <item> <first>744</first> <second> <count>1</count> <item_version>0</item_version> <item>44</item> </second> </item> <item> <first>749</first> <second> <count>1</count> <item_version>0</item_version> <item>50</item> </second> </item> <item> <first>753</first> <second> <count>1</count> <item_version>0</item_version> <item>70</item> </second> </item> <item> <first>758</first> <second> <count>1</count> <item_version>0</item_version> <item>72</item> </second> </item> <item> <first>763</first> <second> <count>1</count> <item_version>0</item_version> <item>74</item> </second> </item> <item> <first>768</first> <second> <count>1</count> <item_version>0</item_version> <item>75</item> </second> </item> <item> <first>772</first> <second> <count>1</count> <item_version>0</item_version> <item>76</item> </second> </item> <item> <first>776</first> <second> <count>1</count> <item_version>0</item_version> <item>90</item> </second> </item> <item> <first>780</first> <second> <count>1</count> <item_version>0</item_version> <item>91</item> </second> </item> <item> <first>785</first> <second> <count>1</count> <item_version>0</item_version> <item>94</item> </second> </item> <item> <first>792</first> <second> <count>1</count> <item_version>0</item_version> <item>146</item> </second> </item> <item> <first>796</first> <second> <count>1</count> <item_version>0</item_version> <item>134</item> </second> </item> <item> <first>801</first> <second> <count>1</count> <item_version>0</item_version> <item>136</item> </second> </item> <item> <first>806</first> <second> <count>1</count> <item_version>0</item_version> <item>138</item> </second> </item> <item> <first>811</first> <second> <count>1</count> <item_version>0</item_version> <item>140</item> </second> </item> <item> <first>817</first> <second> <count>1</count> <item_version>0</item_version> <item>141</item> </second> </item> <item> <first>823</first> <second> <count>1</count> <item_version>0</item_version> <item>142</item> </second> </item> <item> <first>829</first> <second> <count>1</count> <item_version>0</item_version> <item>144</item> </second> </item> <item> <first>834</first> <second> <count>1</count> <item_version>0</item_version> <item>145</item> </second> </item> <item> <first>839</first> <second> <count>1</count> <item_version>0</item_version> <item>162</item> </second> </item> <item> <first>844</first> <second> <count>1</count> <item_version>0</item_version> <item>164</item> </second> </item> <item> <first>849</first> <second> <count>1</count> <item_version>0</item_version> <item>156</item> </second> </item> <item> <first>854</first> <second> <count>1</count> <item_version>0</item_version> <item>157</item> </second> </item> </dp_reg_nodes> <dp_regname_nodes> <count>40</count> <item_version>0</item_version> <item> <first>GradientValuesX_0_V_2_reg_849</first> <second> <count>1</count> <item_version>0</item_version> <item>156</item> </second> </item> <item> <first>GradientValuesX_0_V_reg_829</first> <second> <count>1</count> <item_version>0</item_version> <item>144</item> </second> </item> <item> <first>GradientValuesY_0_V_2_reg_854</first> <second> <count>1</count> <item_version>0</item_version> <item>157</item> </second> </item> <item> <first>GradientValuesY_0_V_reg_834</first> <second> <count>1</count> <item_version>0</item_version> <item>145</item> </second> </item> <item> <first>buf0_V_reg_811</first> <second> <count>1</count> <item_version>0</item_version> <item>140</item> </second> </item> <item> <first>buf1_V_reg_817</first> <second> <count>1</count> <item_version>0</item_version> <item>141</item> </second> </item> <item> <first>buf2_V_reg_823</first> <second> <count>1</count> <item_version>0</item_version> <item>142</item> </second> </item> <item> <first>buf_0_V_addr_3_reg_796</first> <second> <count>1</count> <item_version>0</item_version> <item>134</item> </second> </item> <item> <first>buf_1_V_addr_3_reg_801</first> <second> <count>1</count> <item_version>0</item_version> <item>136</item> </second> </item> <item> <first>buf_2_V_addr_2_reg_806</first> <second> <count>1</count> <item_version>0</item_version> <item>138</item> </second> </item> <item> <first>col_V_1_reg_780</first> <second> <count>1</count> <item_version>0</item_version> <item>91</item> </second> </item> <item> <first>col_V_reg_721</first> <second> <count>1</count> <item_version>0</item_version> <item>24</item> </second> </item> <item> <first>op2_assign_reg_744</first> <second> <count>1</count> <item_version>0</item_version> <item>44</item> </second> </item> <item> <first>p_0177_0_i_i_i_reg_280</first> <second> <count>1</count> <item_version>0</item_version> <item>88</item> </second> </item> <item> <first>p_0443_3_i_i_reg_763</first> <second> <count>1</count> <item_version>0</item_version> <item>74</item> </second> </item> <item> <first>p_0449_3_i_i_reg_758</first> <second> <count>1</count> <item_version>0</item_version> <item>72</item> </second> </item> <item> <first>p_0455_3_i_i_reg_753</first> <second> <count>1</count> <item_version>0</item_version> <item>70</item> </second> </item> <item> <first>p_1_i_i_reg_244</first> <second> <count>1</count> <item_version>0</item_version> <item>21</item> </second> </item> <item> <first>p_2_i_i_reg_256</first> <second> <count>1</count> <item_version>0</item_version> <item>47</item> </second> </item> <item> <first>p_3_i_i_reg_738</first> <second> <count>1</count> <item_version>0</item_version> <item>42</item> </second> </item> <item> <first>p_4_i_i_reg_732</first> <second> <count>1</count> <item_version>0</item_version> <item>41</item> </second> </item> <item> <first>p_5_i_i_reg_726</first> <second> <count>1</count> <item_version>0</item_version> <item>40</item> </second> </item> <item> <first>p_6_i_i_reg_268</first> <second> <count>1</count> <item_version>0</item_version> <item>48</item> </second> </item> <item> <first>p_i_i_15_reg_839</first> <second> <count>1</count> <item_version>0</item_version> <item>162</item> </second> </item> <item> <first>row_V_reg_844</first> <second> <count>1</count> <item_version>0</item_version> <item>164</item> </second> </item> <item> <first>src_buf1_0_V_reg_342</first> <second> <count>1</count> <item_version>0</item_version> <item>86</item> </second> </item> <item> <first>src_buf1_V_0_i_i_reg_354</first> <second> <count>1</count> <item_version>0</item_version> <item>87</item> </second> </item> <item> <first>src_buf2_0_V_reg_304</first> <second> <count>1</count> <item_version>0</item_version> <item>83</item> </second> </item> <item> <first>src_buf2_V_0_i_i_reg_316</first> <second> <count>1</count> <item_version>0</item_version> <item>84</item> </second> </item> <item> <first>src_buf3_0_V_reg_329</first> <second> <count>1</count> <item_version>0</item_version> <item>85</item> </second> </item> <item> <first>src_buf3_V_0_i_i_reg_292</first> <second> <count>1</count> <item_version>0</item_version> <item>82</item> </second> </item> <item> <first>tmp_11_i_i_reg_785</first> <second> <count>1</count> <item_version>0</item_version> <item>94</item> </second> </item> <item> <first>tmp_12_i_i_reg_776</first> <second> <count>1</count> <item_version>0</item_version> <item>90</item> </second> </item> <item> <first>tmp_15_i_i_reg_792</first> <second> <count>1</count> <item_version>0</item_version> <item>146</item> </second> </item> <item> <first>tmp_1_reg_705</first> <second> <count>1</count> <item_version>0</item_version> <item>16</item> </second> </item> <item> <first>tmp_2_i_i_reg_717</first> <second> <count>1</count> <item_version>0</item_version> <item>23</item> </second> </item> <item> <first>tmp_2_reg_711</first> <second> <count>1</count> <item_version>0</item_version> <item>17</item> </second> </item> <item> <first>tmp_3_i_i_reg_768</first> <second> <count>1</count> <item_version>0</item_version> <item>75</item> </second> </item> <item> <first>tmp_3_reg_772</first> <second> <count>1</count> <item_version>0</item_version> <item>76</item> </second> </item> <item> <first>tmp_7_i_i_reg_749</first> <second> <count>1</count> <item_version>0</item_version> <item>50</item> </second> </item> </dp_regname_nodes> <dp_reg_phi> <count>10</count> <item_version>0</item_version> <item> <first>244</first> <second> <count>1</count> <item_version>0</item_version> <item>21</item> </second> </item> <item> <first>256</first> <second> <count>1</count> <item_version>0</item_version> <item>47</item> </second> </item> <item> <first>268</first> <second> <count>1</count> <item_version>0</item_version> <item>48</item> </second> </item> <item> <first>280</first> <second> <count>1</count> <item_version>0</item_version> <item>88</item> </second> </item> <item> <first>292</first> <second> <count>1</count> <item_version>0</item_version> <item>82</item> </second> </item> <item> <first>304</first> <second> <count>1</count> <item_version>0</item_version> <item>83</item> </second> </item> <item> <first>316</first> <second> <count>1</count> <item_version>0</item_version> <item>84</item> </second> </item> <item> <first>329</first> <second> <count>1</count> <item_version>0</item_version> <item>85</item> </second> </item> <item> <first>342</first> <second> <count>1</count> <item_version>0</item_version> <item>86</item> </second> </item> <item> <first>354</first> <second> <count>1</count> <item_version>0</item_version> <item>87</item> </second> </item> </dp_reg_phi> <dp_regname_phi> <count>10</count> <item_version>0</item_version> <item> <first>p_0177_0_i_i_i_reg_280</first> <second> <count>1</count> <item_version>0</item_version> <item>88</item> </second> </item> <item> <first>p_1_i_i_reg_244</first> <second> <count>1</count> <item_version>0</item_version> <item>21</item> </second> </item> <item> <first>p_2_i_i_reg_256</first> <second> <count>1</count> <item_version>0</item_version> <item>47</item> </second> </item> <item> <first>p_6_i_i_reg_268</first> <second> <count>1</count> <item_version>0</item_version> <item>48</item> </second> </item> <item> <first>src_buf1_0_V_reg_342</first> <second> <count>1</count> <item_version>0</item_version> <item>86</item> </second> </item> <item> <first>src_buf1_V_0_i_i_reg_354</first> <second> <count>1</count> <item_version>0</item_version> <item>87</item> </second> </item> <item> <first>src_buf2_0_V_reg_304</first> <second> <count>1</count> <item_version>0</item_version> <item>83</item> </second> </item> <item> <first>src_buf2_V_0_i_i_reg_316</first> <second> <count>1</count> <item_version>0</item_version> <item>84</item> </second> </item> <item> <first>src_buf3_0_V_reg_329</first> <second> <count>1</count> <item_version>0</item_version> <item>85</item> </second> </item> <item> <first>src_buf3_V_0_i_i_reg_292</first> <second> <count>1</count> <item_version>0</item_version> <item>82</item> </second> </item> </dp_regname_phi> <dp_port_io_nodes class_id="53" tracking_level="0" version="0"> <count>5</count> <item_version>0</item_version> <item class_id="54" tracking_level="0" version="0"> <first>p_gradx_mat_V_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>write</first> <second> <count>2</count> <item_version>0</item_version> <item>149</item> <item>158</item> </second> </item> </second> </item> <item> <first>p_grady_mat_V_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>write</first> <second> <count>2</count> <item_version>0</item_version> <item>150</item> <item>159</item> </second> </item> </second> </item> <item> <first>p_src_mat_V_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>2</count> <item_version>0</item_version> <item>34</item> <item>117</item> </second> </item> </second> </item> <item> <first>p_src_mat_cols_read</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>15</item> </second> </item> </second> </item> <item> <first>p_src_mat_rows_read</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>14</item> </second> </item> </second> </item> </dp_port_io_nodes> <port2core class_id="55" tracking_level="0" version="0"> <count>5</count> <item_version>0</item_version> <item class_id="56" tracking_level="0" version="0"> <first>1</first> <second>FIFO</second> </item> <item> <first>2</first> <second>FIFO</second> </item> <item> <first>3</first> <second>FIFO</second> </item> <item> <first>4</first> <second>FIFO</second> </item> <item> <first>5</first> <second>FIFO</second> </item> </port2core> <node2core> <count>3</count> <item_version>0</item_version> <item> <first>9</first> <second>RAM_S2P_BRAM</second> </item> <item> <first>10</first> <second>RAM_S2P_BRAM</second> </item> <item> <first>11</first> <second>RAM_S2P_BRAM</second> </item> </node2core> </syndb> </boost_serialization>
with Ada.Text_IO.Formatting; with System.Formatting.Fixed; with System.Formatting.Float; with System.Formatting.Literals.Float; package body Ada.Text_IO.Fixed_IO is procedure Put_To_Field ( To : out String; Fore_Last, Last : out Natural; Item : Num; Aft : Field; Exp : Field); procedure Put_To_Field ( To : out String; Fore_Last, Last : out Natural; Item : Num; Aft : Field; Exp : Field) is Triming_Sign_Marks : constant System.Formatting.Sign_Marks := ('-', System.Formatting.No_Sign, System.Formatting.No_Sign); Aft_Width : constant Field := Field'Max (1, Aft); begin if Exp /= 0 then System.Formatting.Float.Image ( Long_Long_Float (Item), To, Fore_Last, Last, Signs => Triming_Sign_Marks, Aft_Width => Aft_Width, Exponent_Digits_Width => Exp - 1); -- excluding '.' else System.Formatting.Fixed.Image ( Long_Long_Float (Item), To, Fore_Last, Last, Signs => Triming_Sign_Marks, Aft_Width => Aft_Width); end if; end Put_To_Field; procedure Get_From_Field ( From : String; Item : out Num; Last : out Positive); procedure Get_From_Field ( From : String; Item : out Num; Last : out Positive) is Base_Item : Long_Long_Float; Error : Boolean; begin System.Formatting.Literals.Float.Get_Literal ( From, Last, Base_Item, Error => Error); if Error or else Base_Item not in Long_Long_Float (Num'First) .. Long_Long_Float (Num'Last) then raise Data_Error; end if; Item := Num (Base_Item); end Get_From_Field; -- implementation procedure Get ( File : File_Type; Item : out Num; Width : Field := 0) is begin if Width /= 0 then declare S : String (1 .. Width); Last_1 : Natural; Last_2 : Natural; begin Formatting.Get_Field (File, S, Last_1); -- checking the predicate Get_From_Field (S (1 .. Last_1), Item, Last_2); if Last_2 /= Last_1 then raise Data_Error; end if; end; else declare S : constant String := Formatting.Get_Numeric_Literal ( File, -- checking the predicate Real => True); Last : Natural; begin Get_From_Field (S, Item, Last); if Last /= S'Last then raise Data_Error; end if; end; end if; end Get; procedure Get ( Item : out Num; Width : Field := 0) is begin Get (Current_Input.all, Item, Width); end Get; procedure Get ( File : not null File_Access; Item : out Num; Width : Field := 0) is begin Get (File.all, Item, Width); end Get; procedure Put ( File : File_Type; Item : Num; Fore : Field := Default_Fore; Aft : Field := Default_Aft; Exp : Field := Default_Exp) is S : String ( 1 .. Integer'Max (Num'Width, Long_Long_Float'Width) + Aft + Exp); Fore_Last, Last : Natural; begin Put_To_Field (S, Fore_Last, Last, Item, Aft, Exp); Formatting.Tail ( File, -- checking the predicate S (1 .. Last), Last - Fore_Last + Fore); end Put; procedure Put ( Item : Num; Fore : Field := Default_Fore; Aft : Field := Default_Aft; Exp : Field := Default_Exp) is begin Put (Current_Output.all, Item, Fore, Aft, Exp); end Put; procedure Put ( File : not null File_Access; Item : Num; Fore : Field := Default_Fore; Aft : Field := Default_Aft; Exp : Field := Default_Exp) is begin Put (File.all, Item, Fore, Aft, Exp); end Put; procedure Get ( From : String; Item : out Num; Last : out Positive) is begin Formatting.Get_Tail (From, First => Last); Get_From_Field (From (Last .. From'Last), Item, Last); end Get; procedure Put ( To : out String; Item : Num; Aft : Field := Default_Aft; Exp : Field := Default_Exp) is S : String ( 1 .. Integer'Max (Num'Width, Long_Long_Float'Width) + Aft + Exp); Fore_Last, Last : Natural; begin Put_To_Field (S, Fore_Last, Last, Item, Aft, Exp); Formatting.Tail (To, S (1 .. Last)); end Put; end Ada.Text_IO.Fixed_IO;
------------------------------------------------------------------------------ -- -- -- Copyright (C) 2017, Universidad Politécnica de Madrid -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions are -- -- met: -- -- 1. Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- 2. Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in -- -- the documentation and/or other materials provided with the -- -- distribution. -- -- 3. Neither the name of the copyright holder nor the names of its -- -- contributors may be used to endorse or promote products derived -- -- from this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -- -- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -- -- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -- -- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -- -- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -- -- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ with Measurements; use Measurements; with TM; use TM; with Buffer; with Ada.Real_Time; use Ada.Real_Time; package body Basic_TM is -- cyclic ------------------------- -- Internal operations -- ------------------------- procedure Send_Temperature; -- Send a TM message with the last temperature value. ------------------------ -- Basic TM task body -- ------------------------ task body Basic_TM_Task is Next_Time : Time := Clock + Milliseconds(Start_Delay); begin loop delay until Next_Time; Send_Temperature; Next_Time := Next_Time + Milliseconds(Period); end loop; end Basic_TM_Task; ---------------------- -- Send temperature -- ---------------------- procedure Send_Temperature is Message : TM_Message(Basic); begin Message.Timestamp := Clock; Message.Data := Buffer.Last; Send(Message); end Send_Temperature; end Basic_TM;
-- Copyright 2017 Jeff Foley. All rights reserved. -- Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file. local json = require("json") name = "FacebookCT" type = "cert" function start() setratelimit(20) end function vertical(ctx, domain) if (api == nil or api.key == "" or api.secret == "") then return end local dec local resp local cacheurl = queryurl_notoken(domain) -- Check if the response data is in the graph database if (api.ttl ~= nil and api.ttl > 0) then resp = obtain_response(cacheurl, api.ttl) end if (resp == nil or resp == "") then local err resp, err = request({ url=authurl(api.key, api.secret), headers={['Content-Type']="application/json"}, }) if (err ~= nil and err ~= "") then return end dec = json.decode(resp) if (dec == nil or dec.access_token == nil or dec.access_token == "") then return end resp, err = request({ url=queryurl(domain, dec.access_token), headers={['Content-Type']="application/json"}, }) if (err ~= nil and err ~= "") then return end if (api.ttl ~= nil and api.ttl > 0) then cache_response(cacheurl, resp) end end dec = json.decode(resp) if (dec == nil or #(dec.data) == 0) then return end for i, r in pairs(dec.data) do for j, name in pairs(r.domains) do sendnames(ctx, name) end end end function authurl(id, secret) return "https://graph.facebook.com/oauth/access_token?client_id=" .. id .. "&client_secret=" .. secret .. "&grant_type=client_credentials" end function queryurl(domain, token) return "https://graph.facebook.com/certificates?fields=domains&access_token=" .. token .. "&query=*." .. domain end function queryurl_notoken(domain) return "https://graph.facebook.com/certificates?fields=domains&query=*." .. domain end function sendnames(ctx, content) local names = find(content, subdomainre) if names == nil then return end for i, v in pairs(names) do newname(ctx, v) end end
with Ada.Text_Io; use Ada.Text_Io; with Interfaces; use Interfaces; procedure Bitwise is subtype Byte is Unsigned_8; package Byte_Io is new Ada.Text_Io.Modular_Io(Byte); A : Byte := 255; B : Byte := 170; X : Byte := 128; N : Natural := 1; begin Put_Line("A and B = "); Byte_Io.Put(Item => A and B, Base => 2); Put_Line("A or B = "); Byte_IO.Put(Item => A or B, Base => 2); Put_Line("A xor B = "); Byte_Io.Put(Item => A xor B, Base => 2); Put_Line("Not A = "); Byte_IO.Put(Item => not A, Base => 2); New_Line(2); Put_Line(Unsigned_8'Image(Shift_Left(X, N))); -- Left shift Put_Line(Unsigned_8'Image(Shift_Right(X, N))); -- Right shift Put_Line(Unsigned_8'Image(Shift_Right_Arithmetic(X, N))); -- Right Shift Arithmetic Put_Line(Unsigned_8'Image(Rotate_Left(X, N))); -- Left rotate Put_Line(Unsigned_8'Image(Rotate_Right(X, N))); -- Right rotate end bitwise;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- S Y S T E M . M E M O R Y -- -- -- -- B o d y -- -- -- -- Copyright (C) 2001-2009, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- This is the stripped down version for AVR-Ada without threads -- This implementation assumes that the underlying malloc/free/realloc -- implementation is thread safe, and thus, no additional lock is required. with Ada.Exceptions; use Ada.Exceptions; package body System.Memory is function avr_libc_malloc (Size : size_t) return System.Address; pragma Import (C, avr_libc_malloc, "malloc"); -- function builtin_malloc (Size : size_t) return System.Address; -- pragma Import (Intrinsic, builtin_malloc, "__builtin_malloc"); procedure c_free (Ptr : System.Address); pragma Import (Intrinsic, c_free, "__builtin_free"); ----------- -- Alloc -- ----------- function Alloc (Size : size_t) return System.Address is Result : System.Address; Actual_Size : size_t := Size; begin if Size = size_t'Last then Raise_Exception (Storage_Error'Identity, "object too large"); end if; -- Change size from zero to non-zero. We still want a proper pointer -- for the zero case because pointers to zero length objects have to -- be distinct, but we can't just go ahead and allocate zero bytes, -- since some malloc's return zero for a zero argument. if Size = 0 then Actual_Size := 1; end if; Result := avr_libc_malloc (Actual_Size); if Result = System.Null_Address then Raise_Exception (Storage_Error'Identity, "heap exhausted"); end if; return Result; end Alloc; procedure Free (Ptr : System.Address) is begin c_free (Ptr); end Free; end System.Memory;
------------------------------------------------------------------------------ -- -- -- Copyright (C) 2022, 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. -- -- -- ------------------------------------------------------------------------------ -- -- From the Hitachi HD44780U data sheet: -- -- The HD44780U has two 8-bit registers, an instruction register (IR) -- and a data register (DR). -- -- The IR stores instruction codes, such as display clear and cursor -- shift, and address information for display data RAM (DDRAM) and -- character generator RAM (CGRAM). The IR can only be written from -- the MPU. -- -- The DR temporarily stores data to be written into DDRAM or CGRAM -- and temporarily stores data to be read from DDRAM or CGRAM. Data -- written into the DR from the MPU is automatically written into -- DDRAM or CGRAM by an internal operation. The DR is also used for -- data storage when reading data from DDRAM or CGRAM. When address -- information is written into the IR, data is read and then stored -- into the DR from DDRAM or CGRAM by an internal operation. Data -- transfer between the MPU is then completed when the MPU reads the -- DR. After the read, data in DDRAM or CGRAM at the next address is -- sent to the DR for the next read from the MPU. By the register -- selector (RS) signal, these two registers can be selected package body LCD_HD44780 is ---------------- -- Initialize -- ---------------- procedure Initialize (This : in out LCD_Module) is Dispatch : constant Any_LCD_Module := This'Unchecked_Access; begin Dispatch.Init_4bit_Mode; -- now we can use the standard Command routine for set up Dispatch.Command (Commands.Display_On); -- implies blink off and cursor off This.Clear_Screen; Dispatch.Command (Commands.Entry_Inc); end Initialize; --------- -- Put -- --------- -- output at the current cursor location procedure Put (This : in out LCD_Module; C : Character) is Dispatch : constant Any_LCD_Module := This'Unchecked_Access; begin Dispatch.Output (Character'Pos (C), Is_Data => True); end Put; -- output at the current cursor location procedure Put (This : in out LCD_Module; Text : String) is begin for C of Text loop This.Put (C); end loop; end Put; -- output at the specified cursor location procedure Put (This : in out LCD_Module; X : Char_Position; Y : Line_Position; Text : String) is begin This.Goto_XY (X, Y); This.Put (Text); end Put; ------------- -- Command -- ------------- -- output the command code Cmd to the display procedure Command (This : in out LCD_Module; Cmd : Command_Type) is Dispatch : constant Any_LCD_Module := This'Unchecked_Access; begin Dispatch.Output (UInt8 (Cmd), Is_Data => False); end Command; ------------------ -- Clear_Screen -- ------------------ -- clear display and move cursor to home position procedure Clear_Screen (This : in out LCD_Module) is begin This.Command (Commands.Clear); This.Time.Delay_Microseconds (1_500); end Clear_Screen; ---------- -- Home -- ---------- -- move cursor to home position procedure Home (This : in out LCD_Module) is begin This.Command (16#02#); end Home; ------------- -- Goto_XY -- ------------- -- move cursor into line Y and before character position X. Lines -- are numbered 1 to 2 (or 1 to 4 on big displays). The left most -- character position is Y = 1. The right most position is -- defined by Lcd.Display.Width; procedure Goto_XY (This : in out LCD_Module; X : Char_Position; Y : Line_Position) is begin if X > This.Display_Width then return; end if; if Y > This.Display_Height then return; end if; case Y is when 1 => Command (This, 16#80# + Command_Type (X) - 1); when 2 => Command (This, 16#C0# + Command_Type (X) - 1); when 3 => Command (This, 16#80# + Command_Type (X + This.Display_Width) - 1); when 4 => Command (This, 16#C0# + Command_Type (X + This.Display_Width) - 1); end case; end Goto_XY; ----------------------------- -- Create_Custom_Character -- ----------------------------- procedure Create_Custom_Character (This : in out LCD_Module; Position : Custom_Character_Index; Definition : Custom_Character_Definition) is Start_Address : constant := 16#40#; Dispatch : constant Any_LCD_Module := This'Unchecked_Access; begin Dispatch.Output (UInt8 (Start_Address + 8 * Position), Is_Data => False); for Line of Definition loop Dispatch.Output (UInt8 (Line), Is_Data => True); end loop; end Create_Custom_Character; ----------------- -- Custom_Char -- ----------------- function Custom_Char (From_Index : Custom_Character_Index) return Character is begin return Character'Val (From_Index); end Custom_Char; end LCD_HD44780;
-- CD2A23E.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 WHEN A SIZE SPECIFICATION AND AN ENUMERATION -- REPRESENTATION CLAUSE ARE GIVEN FOR AN ENUMERATION TYPE, -- THEN SUCH A TYPE CAN BE PASSED AS AN ACTUAL PARAMETER TO A -- GENERIC PROCEDURE. -- HISTORY: -- JET 08/18/87 CREATED ORIGINAL TEST. -- DHH 04/18/89 CHANGED EXTENSION FROM '.DEP' TO '.ADA', CHANGED -- OPERATORS ON 'SIZE TESTS, AND ADDED CHECK ON -- REPRESENTATION CLAUSE. -- BCB 03/05/90 ADDED CALL TO LENGTH_CHECK TO VERIFY THAT THE SIZE -- SPECIFICATION IS OBEYED. -- LDC 10/03/90 ADDED EXCEPTION HANDER FOR CHECK OF 'SUCC, 'PRED, -- ADDED CASES FOR >=, /=, ASSIGNMENT, QUALIFICATION, -- AND EXPLICIT CONVERSION. -- WMC 03/27/92 ELIMINATED TEST REDUNDANCIES. WITH REPORT; USE REPORT; WITH LENGTH_CHECK; -- CONTAINS A CALL TO 'FAILED'. PROCEDURE CD2A23E IS TYPE BASIC_ENUM IS (ZERO, ONE, TWO); BASIC_SIZE : CONSTANT := 8; FOR BASIC_ENUM USE (ZERO => 3, ONE => 4, TWO => 5); FOR BASIC_ENUM'SIZE USE BASIC_SIZE; BEGIN TEST ("CD2A23E", "CHECK THAT WHEN A SIZE SPECIFICATION AND AN " & "ENUMERATION REPRESENTATION CLAUSE ARE " & "GIVEN FOR AN ENUMERATION TYPE, " & "THEN SUCH A TYPE CAN BE " & "PASSED AS AN ACTUAL PARAMETER TO A GENERIC " & "PROCEDURE"); DECLARE -- TYPE DECLARATION GIVEN WITHIN GENERIC PROCEDURE. GENERIC TYPE GPARM IS (<>); PROCEDURE GENPROC (C0, C1, C2: GPARM); PROCEDURE GENPROC (C0, C1, C2: GPARM) IS SUBTYPE CHECK_TYPE IS GPARM; C3 : GPARM; CHECKVAR : CHECK_TYPE; FUNCTION IDENT (CH : CHECK_TYPE) RETURN CHECK_TYPE IS BEGIN IF EQUAL (3, 3) THEN RETURN CH; ELSE RETURN C1; END IF; END IDENT; PROCEDURE CHECK_1 IS NEW LENGTH_CHECK (CHECK_TYPE); BEGIN -- GENPROC. CHECK_1 (C0, BASIC_SIZE, "CHECK_TYPE"); CHECKVAR := IDENT (C0); CHECK_1 (CHECKVAR, CHECK_TYPE'SIZE, "CHECK_TYPE"); IF CHECK_TYPE'SIZE /= IDENT_INT (BASIC_SIZE) THEN FAILED ("INCORRECT VALUE FOR CHECK_TYPE'SIZE"); END IF; IF C0'SIZE < IDENT_INT (BASIC_SIZE) THEN FAILED ("INCORRECT VALUE FOR C0'SIZE"); END IF; IF NOT ((IDENT(C0) < IDENT (C1)) AND (IDENT(C2) > IDENT (C1)) AND (IDENT(C1) <= IDENT (C1)) AND (IDENT(C2) = IDENT (C2))) THEN FAILED ("INCORRECT RESULTS FOR RELATIONAL " & "OPERATORS"); END IF; IF CHECK_TYPE'FIRST /= IDENT (C0) THEN FAILED ("INCORRECT VALUE FOR CHECK_TYPE'FIRST"); END IF; IF CHECK_TYPE'POS (C0) /= IDENT_INT (0) OR CHECK_TYPE'POS (C1) /= IDENT_INT (1) OR CHECK_TYPE'POS (C2) /= IDENT_INT (2) THEN FAILED ("INCORRECT VALUE FOR CHECK_TYPE'POS"); END IF; IF CHECK_TYPE'SUCC (C0) /= IDENT (C1) OR CHECK_TYPE'SUCC (C1) /= IDENT (C2) THEN FAILED ("INCORRECT VALUE FOR CHECK_TYPE'SUCC"); END IF; BEGIN IF CHECK_TYPE'SUCC (IDENT(C2)) /= IDENT (C1) THEN FAILED ("CONSTRAINT ERROR NOT RAISED FOR " & "CHECK_TYPE'SUCC"); END IF; EXCEPTION WHEN CONSTRAINT_ERROR => IF 3 /= IDENT_INT(3) THEN COMMENT ("DON'T OPTIMIZE EXCEPTION -1"); END IF; WHEN OTHERS => FAILED ("WRONG EXCEPTION RAISED FOR " & "CHECK_TYPE'SUCC"); END; BEGIN IF CHECK_TYPE'PRED(IDENT(C0)) /= IDENT (C1) THEN FAILED ("CONSTRAINT ERROR NOT RAISED FOR " & "CHECK_TYPE'PRED"); END IF; EXCEPTION WHEN CONSTRAINT_ERROR => IF 3 /= IDENT_INT(3) THEN COMMENT ("DON'T OPTIMIZE EXCEPTION -2"); END IF; WHEN OTHERS => FAILED ("WRONG EXCEPTION RAISED FOR " & "CHECK_TYPE'PRED"); END; IF CHECK_TYPE'PRED (C1) /= IDENT (C0) OR CHECK_TYPE'PRED (C2) /= IDENT (C1) THEN FAILED ("INCORRECT VALUE FOR CHECK_TYPE'PRED"); END IF; IF CHECK_TYPE'IMAGE (C0) /= IDENT_STR ("ZERO") OR CHECK_TYPE'IMAGE (C1) /= IDENT_STR ("ONE") OR CHECK_TYPE'IMAGE (C2) /= IDENT_STR ("TWO") THEN FAILED ("INCORRECT VALUE FOR CHECK_TYPE'IMAGE"); END IF; CHECKVAR := CHECK_TYPE'VALUE ("ONE"); C3 := GPARM(CHECKVAR); IF C3 /= IDENT(C1) THEN FAILED ("INCORRECT VALUE FOR CONVERSION"); END IF; CHECK_1 (IDENT(C0), BASIC_SIZE, "CHECK_ENUM"); IF CHECK_TYPE'(C2) /= IDENT(C2) THEN FAILED ("INCORRECT VALUE FOR QUALIFICATION"); END IF; C3 := CHECK_TYPE'VALUE ("TWO"); IF C3 /= IDENT(C2) THEN FAILED ("INCORRECT VALUE FOR ASSIGNMENT"); END IF; END GENPROC; PROCEDURE NEWPROC IS NEW GENPROC (BASIC_ENUM); BEGIN NEWPROC (ZERO, ONE, TWO); END; RESULT; END CD2A23E;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- S Y S T E M . M M A P . O S _ I N T E R F A C E -- -- -- -- S p e c -- -- -- -- Copyright (C) 2007-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 MERCHAN- -- -- TABILITY 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.OS_Lib; -- OS pecularities abstraction package for Unix systems. package System.Mmap.OS_Interface is type System_File is record Fd : System.OS_Lib.File_Descriptor; Mapped : Boolean; -- Whether mapping is requested by the user and available on the system Write : Boolean; -- Whether this file can be written to Length : File_Size; -- Length of the file. Used to know what can be mapped in the file end record; type System_Mapping is record Address : Standard.System.Address; Length : File_Size; end record; Invalid_System_File : constant System_File := (System.OS_Lib.Invalid_FD, False, False, 0); Invalid_System_Mapping : constant System_Mapping := (Standard.System.Null_Address, 0); function Open_Read (Filename : String; Use_Mmap_If_Available : Boolean := True) return System_File; -- Open a file for reading and return the corresponding System_File. Return -- Invalid_System_File if unsuccessful. function Open_Write (Filename : String; Use_Mmap_If_Available : Boolean := True) return System_File; -- Likewise for writing to a file procedure Close (File : in out System_File); -- Close a system file function Read_From_Disk (File : System_File; Offset, Length : File_Size) return System.Strings.String_Access; -- Read a fragment of a file. It is up to the caller to free the result -- when done with it. procedure Write_To_Disk (File : System_File; Offset, Length : File_Size; Buffer : System.Strings.String_Access); -- Write some content to a fragment of a file procedure Create_Mapping (File : System_File; Offset, Length : in out File_Size; Mutable : Boolean; Mapping : out System_Mapping); -- Create a memory mapping for the given File, for the area starting at -- Offset and containing Length bytes. Store it to Mapping. -- Note that Offset and Length may be modified according to the system -- needs (for boudaries, for instance). The caller must cope with actually -- wider mapped areas. procedure Dispose_Mapping (Mapping : in out System_Mapping); -- Unmap a previously-created mapping function Get_Page_Size return File_Size; -- Return the number of bytes in a system page. end System.Mmap.OS_Interface;
------------------------------------------------------------------------------ -- -- -- GNAT SYSTEM UTILITIES -- -- -- -- X T R E E P R S -- -- -- -- B o d y -- -- -- -- $Revision$ -- -- -- Copyright (C) 1992-2001 Free Software Foundation, Inc. -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 2, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING. If not, write -- -- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, -- -- MA 02111-1307, USA. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- Program to construct the spec of the Treeprs package -- Input files: -- sinfo.ads Spec of Sinfo package -- treeprs.adt Template for Treeprs package -- Output files: -- treeprs.ads Spec of Treeprs package -- Note: this program assumes that sinfo.ads has passed the error checks which -- are carried out by the CSinfo utility so it does not duplicate these checks -- An optional argument allows the specification of an output file name to -- override the default treeprs.ads file name for the generated output file. with Ada.Command_Line; use Ada.Command_Line; with Ada.Strings.Unbounded; use Ada.Strings.Unbounded; with Ada.Strings.Unbounded.Text_IO; use Ada.Strings.Unbounded.Text_IO; with Ada.Text_IO; use Ada.Text_IO; with GNAT.Spitbol; use GNAT.Spitbol; with GNAT.Spitbol.Patterns; use GNAT.Spitbol.Patterns; with GNAT.Spitbol.Table_Boolean; use GNAT.Spitbol.Table_Boolean; with GNAT.Spitbol.Table_VString; use GNAT.Spitbol.Table_VString; procedure XTreeprs is package TB renames GNAT.Spitbol.Table_Boolean; package TV renames GNAT.Spitbol.Table_VString; Err : exception; -- Raised on fatal error A : VString := Nul; Ffield : VString := Nul; Field : VString := Nul; Fieldno : VString := Nul; Flagno : VString := Nul; Line : VString := Nul; Name : VString := Nul; Node : VString := Nul; Outstring : VString := Nul; Prefix : VString := Nul; S : VString := Nul; S1 : VString := Nul; Sinforev : VString := Nul; Syn : VString := Nul; Synonym : VString := Nul; Temprev : VString := Nul; Term : VString := Nul; Treeprsrev : VString := Nul; OutS : File_Type; -- Output file InS : File_Type; -- Read sinfo.ads InT : File_Type; -- Read treeprs.adt Special : TB.Table (20); -- Table of special fields. These fields are not included in the table -- constructed by Xtreeprs, since they are specially handled in treeprs. -- This means these field definitions are completely ignored. Names : array (1 .. 500) of VString; -- Table of names of synonyms Positions : array (1 .. 500) of Natural; -- Table of starting positions in Pchars string for synonyms Strings : TV.Table (300); -- Contribution of each synonym to Pchars string, indexed by name Count : Natural := 0; -- Number of synonyms processed so far Curpos : Natural := 1; -- Number of characters generated in Pchars string so far Lineno : Natural := 0; -- Line number in sinfo.ads Field_Base : constant := Character'Pos ('#'); -- Fields 1-5 are represented by the characters #$%&' (i.e. by five -- contiguous characters starting at # (16#23#)). Flag_Base : constant := Character'Pos ('('); -- Flags 1-18 are represented by the characters ()*+,-./0123456789 -- (i.e. by 18 contiguous characters starting at (16#28#)). Fieldch : Character; -- Field character, as per above tables Sp : aliased Natural; -- Space left on line for Pchars output wsp : Pattern := Span (' ' & ASCII.HT); Get_SRev : Pattern := BreakX ('$') & "$Rev" & "ision: " & Break (' ') * Sinforev; Get_TRev : Pattern := BreakX ('$') & "$Rev" & "ision: " & Break (' ') * Temprev; Is_Temp : Pattern := BreakX ('T') * A & "T e m p l a t e"; Get_Node : Pattern := wsp & "-- N_" & Rest * Node; Tst_Punc : Pattern := Break (" ,."); Get_Syn : Pattern := Span (' ') & "-- " & Break (' ') * Synonym & " (" & Break (')') * Field; Brk_Min : Pattern := Break ('-') * Ffield; Is_Flag : Pattern := "Flag" & Rest * Flagno; Is_Field : Pattern := Rtab (1) & Len (1) * Fieldno; Is_Syn : Pattern := wsp & "N_" & Break (",)") * Syn & Len (1) * Term; Brk_Node : Pattern := Break (' ') * Node & ' '; Chop_SP : Pattern := Len (Sp'Unrestricted_Access) * S1; M : Match_Result; begin Anchored_Mode := True; Match ("$Revision$", "$Rev" & "ision: " & Break (' ') * Treeprsrev); if Argument_Count > 0 then Create (OutS, Out_File, Argument (1)); else Create (OutS, Out_File, "treeprs.ads"); end if; Open (InS, In_File, "sinfo.ads"); Open (InT, In_File, "treeprs.adt"); -- Initialize special fields table Set (Special, "Analyzed", True); Set (Special, "Cannot_Be_Constant", True); Set (Special, "Chars", True); Set (Special, "Comes_From_Source", True); Set (Special, "Error_Posted", True); Set (Special, "Etype", True); Set (Special, "Has_No_Side_Effects", True); Set (Special, "Is_Controlling_Actual", True); Set (Special, "Is_Overloaded", True); Set (Special, "Is_Static_Expression", True); Set (Special, "Left_Opnd", True); Set (Special, "Must_Check_Expr", True); Set (Special, "No_Overflow_Expr", True); Set (Special, "Paren_Count", True); Set (Special, "Raises_Constraint_Error", True); Set (Special, "Right_Opnd", True); -- Get sinfo revs and write header to output file loop Line := Get_Line (InS); Lineno := Lineno + 1; if Line = "" then raise Err; end if; exit when Match (Line, Get_SRev); end loop; -- Read template header and generate new header loop Line := Get_Line (InT); if Match (Line, Get_TRev) then Put_Line (OutS, "-- Generated by xtreeprs revision " & Treeprsrev & " using"); Put_Line (OutS, "-- sinfo.ads revision " & Sinforev); Put_Line (OutS, "-- treeprs.adt revision " & Temprev); else -- Skip lines describing the template if Match (Line, "-- This file is a template") then loop Line := Get_Line (InT); exit when Line = ""; end loop; end if; exit when Match (Line, "package"); if Match (Line, Is_Temp, M) then Replace (M, A & " S p e c "); end if; Put_Line (OutS, Line); end if; end loop; Put_Line (OutS, Line); -- Copy rest of comments up to template insert point to spec loop Line := Get_Line (InT); exit when Match (Line, "!!TEMPLATE INSERTION POINT"); Put_Line (OutS, Line); end loop; -- Here we are doing the actual insertions Put_Line (OutS, " Pchars : constant String :="); -- Loop through comments describing nodes, picking up fields loop Line := Get_Line (InS); Lineno := Lineno + 1; exit when Match (Line, " type Node_Kind"); if Match (Line, Get_Node) and then not Match (Node, Tst_Punc) then Outstring := Node & ' '; loop Line := Get_Line (InS); exit when Line = ""; if Match (Line, Get_Syn) and then not Match (Synonym, "plus") and then not Present (Special, Synonym) then -- Convert this field into the character used to -- represent the field according to the table: -- Field1 '#' -- Field2 '$' -- Field3 '%' -- Field4 '&' -- Field5 "'" -- Flag1 "(" -- Flag2 ")" -- Flag3 '*' -- Flag4 '+' -- Flag5 ',' -- Flag6 '-' -- Flag7 '.' -- Flag8 '/' -- Flag9 '0' -- Flag10 '1' -- Flag11 '2' -- Flag12 '3' -- Flag13 '4' -- Flag14 '5' -- Flag15 '6' -- Flag16 '7' -- Flag17 '8' -- Flag18 '9' if Match (Field, Brk_Min) then Field := Ffield; end if; if Match (Field, Is_Flag) then Fieldch := Char (Flag_Base - 1 + N (Flagno)); elsif Match (Field, Is_Field) then Fieldch := Char (Field_Base - 1 + N (Fieldno)); else Put_Line (Standard_Error, "*** Line " & Lineno & " has unrecognized field name " & Field); raise Err; end if; Append (Outstring, Fieldch & Synonym); end if; end loop; Set (Strings, Node, Outstring); end if; end loop; -- Loop through actual definitions of node kind enumeration literals loop loop Line := Get_Line (InS); Lineno := Lineno + 1; exit when Match (Line, Is_Syn); end loop; S := Get (Strings, Syn); Match (S, Brk_Node, ""); Count := Count + 1; Names (Count) := Syn; Positions (Count) := Curpos; Curpos := Curpos + Length (S); Put_Line (OutS, " -- " & Node); Prefix := V (" "); exit when Term = ")"; -- Loop to output the string literal for Pchars loop Sp := 79 - 4 - Length (Prefix); exit when (Size (S) <= Sp); Match (S, Chop_SP, ""); Put_Line (OutS, Prefix & '"' & S1 & """ &"); Prefix := V (" "); end loop; Put_Line (OutS, Prefix & '"' & S & """ &"); end loop; Put_Line (OutS, " """";"); Put_Line (OutS, ""); Put_Line (OutS, " type Pchar_Pos_Array is array (Node_Kind) of Positive;"); Put_Line (OutS, " Pchar_Pos : constant Pchar_Pos_Array := Pchar_Pos_Array'("); -- Output lines for Pchar_Pos_Array values for M in 1 .. Count - 1 loop Name := Rpad ("N_" & Names (M), 40); Put_Line (OutS, " " & Name & " => " & Positions (M) & ','); end loop; Name := Rpad ("N_" & Names (Count), 40); Put_Line (OutS, " " & Name & " => " & Positions (Count) & ");"); Put_Line (OutS, ""); Put_Line (OutS, "end Treeprs;"); exception when Err => Put_Line (Standard_Error, "*** fatal error"); Set_Exit_Status (1); end XTreeprs;
-- Mojang API -- No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -- -- OpenAPI spec version: 2020_06_05 -- -- -- NOTE: This package is auto generated by the swagger code generator 3.3.4. -- https://openapi-generator.tech -- Do not edit the class manually. with Swagger.Streams; with Ada.Containers.Vectors; package com.github.asyncmc.mojang.api.ada.server.model.Models is type SecurityQuestion_Type is record Id : Integer; Question : Swagger.UString; end record; package SecurityQuestion_Type_Vectors is new Ada.Containers.Vectors (Index_Type => Positive, Element_Type => SecurityQuestion_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in SecurityQuestion_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in SecurityQuestion_Type_Vectors.Vector); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out SecurityQuestion_Type); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out SecurityQuestion_Type_Vectors.Vector); type SecurityAnswerId_Type is record Id : Integer; end record; package SecurityAnswerId_Type_Vectors is new Ada.Containers.Vectors (Index_Type => Positive, Element_Type => SecurityAnswerId_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in SecurityAnswerId_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in SecurityAnswerId_Type_Vectors.Vector); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out SecurityAnswerId_Type); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out SecurityAnswerId_Type_Vectors.Vector); type SecurityChallenge_Type is record Question : com.github.asyncmc.mojang.api.ada.server.model.Models.SecurityQuestion_Type; Answer : com.github.asyncmc.mojang.api.ada.server.model.Models.SecurityAnswerId_Type; end record; package SecurityChallenge_Type_Vectors is new Ada.Containers.Vectors (Index_Type => Positive, Element_Type => SecurityChallenge_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in SecurityChallenge_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in SecurityChallenge_Type_Vectors.Vector); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out SecurityChallenge_Type); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out SecurityChallenge_Type_Vectors.Vector); type Error_Type is record Error : Swagger.Nullable_UString; Error_Message : Swagger.Nullable_UString; end record; package Error_Type_Vectors is new Ada.Containers.Vectors (Index_Type => Positive, Element_Type => Error_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in Error_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in Error_Type_Vectors.Vector); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out Error_Type); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out Error_Type_Vectors.Vector); type CurrentPlayerIDs_Type is record Id : Swagger.UString; Name : Swagger.UString; Legacy : Swagger.Nullable_Boolean; Demo : Swagger.Nullable_Boolean; end record; package CurrentPlayerIDs_Type_Vectors is new Ada.Containers.Vectors (Index_Type => Positive, Element_Type => CurrentPlayerIDs_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in CurrentPlayerIDs_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in CurrentPlayerIDs_Type_Vectors.Vector); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out CurrentPlayerIDs_Type); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out CurrentPlayerIDs_Type_Vectors.Vector); type NameChange_Type is record Name : Swagger.UString; Changed_To_At : Swagger.Nullable_Long; end record; package NameChange_Type_Vectors is new Ada.Containers.Vectors (Index_Type => Positive, Element_Type => NameChange_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in NameChange_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in NameChange_Type_Vectors.Vector); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out NameChange_Type); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out NameChange_Type_Vectors.Vector); type SkinModel_Type is record end record; package SkinModel_Type_Vectors is new Ada.Containers.Vectors (Index_Type => Positive, Element_Type => SkinModel_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in SkinModel_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in SkinModel_Type_Vectors.Vector); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out SkinModel_Type); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out SkinModel_Type_Vectors.Vector); type ChangeSkinRequest_Type is record Model : com.github.asyncmc.mojang.api.ada.server.model.Models.SkinModel_Type; Url : Swagger.UString; end record; package ChangeSkinRequest_Type_Vectors is new Ada.Containers.Vectors (Index_Type => Positive, Element_Type => ChangeSkinRequest_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ChangeSkinRequest_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ChangeSkinRequest_Type_Vectors.Vector); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ChangeSkinRequest_Type); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ChangeSkinRequest_Type_Vectors.Vector); type SecurityAnswer_Type is record Id : Integer; end record; package SecurityAnswer_Type_Vectors is new Ada.Containers.Vectors (Index_Type => Positive, Element_Type => SecurityAnswer_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in SecurityAnswer_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in SecurityAnswer_Type_Vectors.Vector); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out SecurityAnswer_Type); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out SecurityAnswer_Type_Vectors.Vector); type OrderStatisticsResponse_Type is record Total : Swagger.Long; Last24h : Swagger.Long; Sale_Velocity_Per_Seconds : double; end record; package OrderStatisticsResponse_Type_Vectors is new Ada.Containers.Vectors (Index_Type => Positive, Element_Type => OrderStatisticsResponse_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrderStatisticsResponse_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrderStatisticsResponse_Type_Vectors.Vector); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrderStatisticsResponse_Type); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrderStatisticsResponse_Type_Vectors.Vector); type OrderStatistic_Type is record end record; package OrderStatistic_Type_Vectors is new Ada.Containers.Vectors (Index_Type => Positive, Element_Type => OrderStatistic_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrderStatistic_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrderStatistic_Type_Vectors.Vector); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrderStatistic_Type); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrderStatistic_Type_Vectors.Vector); type OrderStatisticsRequest_Type is record Metric_Keys : com.github.asyncmc.mojang.api.ada.server.model.Models.OrderStatistic_Type_Vectors.Vector; end record; package OrderStatisticsRequest_Type_Vectors is new Ada.Containers.Vectors (Index_Type => Positive, Element_Type => OrderStatisticsRequest_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrderStatisticsRequest_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrderStatisticsRequest_Type_Vectors.Vector); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrderStatisticsRequest_Type); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrderStatisticsRequest_Type_Vectors.Vector); type UploadSkinRequest_Type is record Model : com.github.asyncmc.mojang.api.ada.server.model.Models.SkinModel_Type; File : Swagger.Http_Content_Type; end record; package UploadSkinRequest_Type_Vectors is new Ada.Containers.Vectors (Index_Type => Positive, Element_Type => UploadSkinRequest_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in UploadSkinRequest_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in UploadSkinRequest_Type_Vectors.Vector); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out UploadSkinRequest_Type); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out UploadSkinRequest_Type_Vectors.Vector); end com.github.asyncmc.mojang.api.ada.server.model.Models;
--------------------------------------------------------------------------------- -- Copyright 2004-2005 © Luke A. Guest -- -- This code is to be used for tutorial purposes only. -- You may not redistribute this code in any form without my express permission. --------------------------------------------------------------------------------- with Interfaces.C; use Interfaces.C; with GL; use type GL.GLfloat; use type GL.GLbitfield; with SDL.Types; use SDL.Types; with SDL.Keysym; use SDL.Keysym; with SDL.Video; use SDL.Video; with Ada.Strings.Unbounded; use Ada.Strings.Unbounded; package Example is procedure PrintUsage; function Initialise return Boolean; procedure Uninitialise; procedure Update(Ticks : in Integer); procedure Draw; function GetTitle return String; function GetWidth return Integer; function GetHeight return Integer; function GetBitsPerPixel return Integer; procedure SetLastTickCount(Ticks : in Integer); procedure SetSurface(Surface : in SDL.Video.Surface_Ptr); function GetSurface return SDL.Video.Surface_Ptr; procedure SetKey(Key : in SDL.Keysym.Key; Down : in Boolean); procedure SetActive(Active : in Boolean); function IsActive return Boolean; procedure SetQuit(Quit : in Boolean); function Quit return Boolean; private type KeysArray is array(SDL.Keysym.K_FIRST .. SDL.Keysym.K_LAST) of Boolean; Title : String := "NeHe Base Code in Ada/SDL"; Width : Integer := 640; Height : Integer := 480; BitsPerPixel : Integer := 16; IsFullScreen : Boolean := False; Keys : KeysArray := (others => False); IsVisible : Boolean := False; LastTickCount : Integer := 0; ScreenSurface : SDL.Video.Surface_Ptr := null; AppActive : Boolean := True; AppQuit : Boolean := False; XSpeed : GL.GLfloat := 0.0; YSpeed : GL.GLfloat := 0.0; Zoom : GL.GLfloat := -6.0; end Example;
pragma Style_Checks (Off); -- This spec has been automatically generated from STM32H743x.svd pragma Restrictions (No_Elaboration_Code); with HAL; with System; package STM32_SVD.LPUART is pragma Preelaborate; --------------- -- Registers -- --------------- subtype CR1_DEDT_Field is HAL.UInt5; subtype CR1_DEAT_Field is HAL.UInt5; -- Control register 1 type CR1_Register is record -- USART enable UE : Boolean := False; -- USART enable in Stop mode UESM : Boolean := False; -- Receiver enable RE : Boolean := False; -- Transmitter enable TE : Boolean := False; -- IDLE interrupt enable IDLEIE : Boolean := False; -- RXNE interrupt enable RXNEIE : Boolean := False; -- Transmission complete interrupt enable TCIE : Boolean := False; -- interrupt enable TXEIE : Boolean := False; -- PE interrupt enable PEIE : Boolean := False; -- Parity selection PS : Boolean := False; -- Parity control enable PCE : Boolean := False; -- Receiver wakeup method WAKE : Boolean := False; -- Word length M0 : Boolean := False; -- Mute mode enable MME : Boolean := False; -- Character match interrupt enable CMIE : Boolean := False; -- unspecified Reserved_15_15 : HAL.Bit := 16#0#; -- Driver Enable deassertion time DEDT : CR1_DEDT_Field := 16#0#; -- Driver Enable assertion time DEAT : CR1_DEAT_Field := 16#0#; -- unspecified Reserved_26_27 : HAL.UInt2 := 16#0#; -- Word length M1 : Boolean := False; -- FIFO mode enable FIFOEN : Boolean := False; -- TXFIFO empty interrupt enable TXFEIE : Boolean := False; -- RXFIFO Full interrupt enable RXFFIE : Boolean := False; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for CR1_Register use record UE at 0 range 0 .. 0; UESM at 0 range 1 .. 1; RE at 0 range 2 .. 2; TE at 0 range 3 .. 3; IDLEIE at 0 range 4 .. 4; RXNEIE at 0 range 5 .. 5; TCIE at 0 range 6 .. 6; TXEIE at 0 range 7 .. 7; PEIE at 0 range 8 .. 8; PS at 0 range 9 .. 9; PCE at 0 range 10 .. 10; WAKE at 0 range 11 .. 11; M0 at 0 range 12 .. 12; MME at 0 range 13 .. 13; CMIE at 0 range 14 .. 14; Reserved_15_15 at 0 range 15 .. 15; DEDT at 0 range 16 .. 20; DEAT at 0 range 21 .. 25; Reserved_26_27 at 0 range 26 .. 27; M1 at 0 range 28 .. 28; FIFOEN at 0 range 29 .. 29; TXFEIE at 0 range 30 .. 30; RXFFIE at 0 range 31 .. 31; end record; subtype CR2_STOP_Field is HAL.UInt2; subtype CR2_ADD_Field is HAL.UInt8; -- Control register 2 type CR2_Register is record -- unspecified Reserved_0_3 : HAL.UInt4 := 16#0#; -- 7-bit Address Detection/4-bit Address Detection ADDM7 : Boolean := False; -- unspecified Reserved_5_11 : HAL.UInt7 := 16#0#; -- STOP bits STOP : CR2_STOP_Field := 16#0#; -- unspecified Reserved_14_14 : HAL.Bit := 16#0#; -- Swap TX/RX pins SWAP : Boolean := False; -- RX pin active level inversion RXINV : Boolean := False; -- TX pin active level inversion TXINV : Boolean := False; -- Binary data inversion DATAINV : Boolean := False; -- Most significant bit first MSBFIRST : Boolean := False; -- unspecified Reserved_20_23 : HAL.UInt4 := 16#0#; -- Address of the USART node ADD : CR2_ADD_Field := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for CR2_Register use record Reserved_0_3 at 0 range 0 .. 3; ADDM7 at 0 range 4 .. 4; Reserved_5_11 at 0 range 5 .. 11; STOP at 0 range 12 .. 13; Reserved_14_14 at 0 range 14 .. 14; SWAP at 0 range 15 .. 15; RXINV at 0 range 16 .. 16; TXINV at 0 range 17 .. 17; DATAINV at 0 range 18 .. 18; MSBFIRST at 0 range 19 .. 19; Reserved_20_23 at 0 range 20 .. 23; ADD at 0 range 24 .. 31; end record; subtype CR3_WUS_Field is HAL.UInt2; subtype CR3_RXFTCFG_Field is HAL.UInt3; subtype CR3_TXFTCFG_Field is HAL.UInt3; -- Control register 3 type CR3_Register is record -- Error interrupt enable EIE : Boolean := False; -- unspecified Reserved_1_2 : HAL.UInt2 := 16#0#; -- Half-duplex selection HDSEL : Boolean := False; -- unspecified Reserved_4_5 : HAL.UInt2 := 16#0#; -- DMA enable receiver DMAR : Boolean := False; -- DMA enable transmitter DMAT : Boolean := False; -- RTS enable RTSE : Boolean := False; -- CTS enable CTSE : Boolean := False; -- CTS interrupt enable CTSIE : Boolean := False; -- unspecified Reserved_11_11 : HAL.Bit := 16#0#; -- Overrun Disable OVRDIS : Boolean := False; -- DMA Disable on Reception Error DDRE : Boolean := False; -- Driver enable mode DEM : Boolean := False; -- Driver enable polarity selection DEP : Boolean := False; -- unspecified Reserved_16_19 : HAL.UInt4 := 16#0#; -- Wakeup from Stop mode interrupt flag selection WUS : CR3_WUS_Field := 16#0#; -- Wakeup from Stop mode interrupt enable WUFIE : Boolean := False; -- TXFIFO threshold interrupt enable TXFTIE : Boolean := False; -- unspecified Reserved_24_24 : HAL.Bit := 16#0#; -- Receive FIFO threshold configuration RXFTCFG : CR3_RXFTCFG_Field := 16#0#; -- RXFIFO threshold interrupt enable RXFTIE : Boolean := False; -- TXFIFO threshold configuration TXFTCFG : CR3_TXFTCFG_Field := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for CR3_Register use record EIE at 0 range 0 .. 0; Reserved_1_2 at 0 range 1 .. 2; HDSEL at 0 range 3 .. 3; Reserved_4_5 at 0 range 4 .. 5; DMAR at 0 range 6 .. 6; DMAT at 0 range 7 .. 7; RTSE at 0 range 8 .. 8; CTSE at 0 range 9 .. 9; CTSIE at 0 range 10 .. 10; Reserved_11_11 at 0 range 11 .. 11; OVRDIS at 0 range 12 .. 12; DDRE at 0 range 13 .. 13; DEM at 0 range 14 .. 14; DEP at 0 range 15 .. 15; Reserved_16_19 at 0 range 16 .. 19; WUS at 0 range 20 .. 21; WUFIE at 0 range 22 .. 22; TXFTIE at 0 range 23 .. 23; Reserved_24_24 at 0 range 24 .. 24; RXFTCFG at 0 range 25 .. 27; RXFTIE at 0 range 28 .. 28; TXFTCFG at 0 range 29 .. 31; end record; subtype BRR_BRR_Field is HAL.UInt20; -- Baud rate register type BRR_Register is record -- BRR BRR : BRR_BRR_Field := 16#0#; -- unspecified Reserved_20_31 : HAL.UInt12 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for BRR_Register use record BRR at 0 range 0 .. 19; Reserved_20_31 at 0 range 20 .. 31; end record; subtype GTPR_PSC_Field is HAL.UInt8; subtype GTPR_GT_Field is HAL.UInt8; -- Guard time and prescaler register type GTPR_Register is record -- Prescaler value PSC : GTPR_PSC_Field := 16#0#; -- Guard time value GT : GTPR_GT_Field := 16#0#; -- unspecified Reserved_16_31 : HAL.UInt16 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for GTPR_Register use record PSC at 0 range 0 .. 7; GT at 0 range 8 .. 15; Reserved_16_31 at 0 range 16 .. 31; end record; subtype RTOR_RTO_Field is HAL.UInt24; subtype RTOR_BLEN_Field is HAL.UInt8; -- Receiver timeout register type RTOR_Register is record -- Receiver timeout value RTO : RTOR_RTO_Field := 16#0#; -- Block Length BLEN : RTOR_BLEN_Field := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for RTOR_Register use record RTO at 0 range 0 .. 23; BLEN at 0 range 24 .. 31; end record; -- Request register type RQR_Register is record -- Write-only. Auto baud rate request ABRRQ : Boolean := False; -- Write-only. Send break request SBKRQ : Boolean := False; -- Write-only. Mute mode request MMRQ : Boolean := False; -- Write-only. Receive data flush request RXFRQ : Boolean := False; -- Write-only. Transmit data flush request TXFRQ : Boolean := False; -- unspecified Reserved_5_31 : HAL.UInt27 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for RQR_Register use record ABRRQ at 0 range 0 .. 0; SBKRQ at 0 range 1 .. 1; MMRQ at 0 range 2 .. 2; RXFRQ at 0 range 3 .. 3; TXFRQ at 0 range 4 .. 4; Reserved_5_31 at 0 range 5 .. 31; end record; -- Interrupt & status register type ISR_Register is record -- Read-only. PE PE : Boolean; -- Read-only. FE FE : Boolean; -- Read-only. NE NE : Boolean; -- Read-only. ORE ORE : Boolean; -- Read-only. IDLE IDLE : Boolean; -- Read-only. RXNE RXNE : Boolean; -- Read-only. TC TC : Boolean; -- Read-only. TXE TXE : Boolean; -- unspecified Reserved_8_8 : HAL.Bit; -- Read-only. CTSIF CTSIF : Boolean; -- Read-only. CTS CTS : Boolean; -- unspecified Reserved_11_15 : HAL.UInt5; -- Read-only. BUSY BUSY : Boolean; -- Read-only. CMF CMF : Boolean; -- Read-only. SBKF SBKF : Boolean; -- Read-only. RWU RWU : Boolean; -- Read-only. WUF WUF : Boolean; -- Read-only. TEACK TEACK : Boolean; -- Read-only. REACK REACK : Boolean; -- Read-only. TXFIFO Empty TXFE : Boolean; -- Read-only. RXFIFO Full RXFF : Boolean; -- unspecified Reserved_25_25 : HAL.Bit; -- Read-only. RXFIFO threshold flag RXFT : Boolean; -- Read-only. TXFIFO threshold flag TXFT : Boolean; -- unspecified Reserved_28_31 : HAL.UInt4; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for ISR_Register use record PE at 0 range 0 .. 0; FE at 0 range 1 .. 1; NE at 0 range 2 .. 2; ORE at 0 range 3 .. 3; IDLE at 0 range 4 .. 4; RXNE at 0 range 5 .. 5; TC at 0 range 6 .. 6; TXE at 0 range 7 .. 7; Reserved_8_8 at 0 range 8 .. 8; CTSIF at 0 range 9 .. 9; CTS at 0 range 10 .. 10; Reserved_11_15 at 0 range 11 .. 15; BUSY at 0 range 16 .. 16; CMF at 0 range 17 .. 17; SBKF at 0 range 18 .. 18; RWU at 0 range 19 .. 19; WUF at 0 range 20 .. 20; TEACK at 0 range 21 .. 21; REACK at 0 range 22 .. 22; TXFE at 0 range 23 .. 23; RXFF at 0 range 24 .. 24; Reserved_25_25 at 0 range 25 .. 25; RXFT at 0 range 26 .. 26; TXFT at 0 range 27 .. 27; Reserved_28_31 at 0 range 28 .. 31; end record; -- Interrupt flag clear register type ICR_Register is record -- Write-only. Parity error clear flag PECF : Boolean := False; -- Write-only. Framing error clear flag FECF : Boolean := False; -- Write-only. Noise detected clear flag NCF : Boolean := False; -- Write-only. Overrun error clear flag ORECF : Boolean := False; -- Write-only. Idle line detected clear flag IDLECF : Boolean := False; -- unspecified Reserved_5_5 : HAL.Bit := 16#0#; -- Write-only. Transmission complete clear flag TCCF : Boolean := False; -- unspecified Reserved_7_8 : HAL.UInt2 := 16#0#; -- Write-only. CTS clear flag CTSCF : Boolean := False; -- unspecified Reserved_10_16 : HAL.UInt7 := 16#0#; -- Write-only. Character match clear flag CMCF : Boolean := False; -- unspecified Reserved_18_19 : HAL.UInt2 := 16#0#; -- Write-only. Wakeup from Stop mode clear flag WUCF : Boolean := False; -- unspecified Reserved_21_31 : HAL.UInt11 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for ICR_Register use record PECF at 0 range 0 .. 0; FECF at 0 range 1 .. 1; NCF at 0 range 2 .. 2; ORECF at 0 range 3 .. 3; IDLECF at 0 range 4 .. 4; Reserved_5_5 at 0 range 5 .. 5; TCCF at 0 range 6 .. 6; Reserved_7_8 at 0 range 7 .. 8; CTSCF at 0 range 9 .. 9; Reserved_10_16 at 0 range 10 .. 16; CMCF at 0 range 17 .. 17; Reserved_18_19 at 0 range 18 .. 19; WUCF at 0 range 20 .. 20; Reserved_21_31 at 0 range 21 .. 31; end record; subtype RDR_RDR_Field is HAL.UInt9; -- Receive data register type RDR_Register is record -- Read-only. Receive data value RDR : RDR_RDR_Field; -- unspecified Reserved_9_31 : HAL.UInt23; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for RDR_Register use record RDR at 0 range 0 .. 8; Reserved_9_31 at 0 range 9 .. 31; end record; subtype TDR_TDR_Field is HAL.UInt9; -- Transmit data register type TDR_Register is record -- Transmit data value TDR : TDR_TDR_Field := 16#0#; -- unspecified Reserved_9_31 : HAL.UInt23 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for TDR_Register use record TDR at 0 range 0 .. 8; Reserved_9_31 at 0 range 9 .. 31; end record; subtype PRESC_PRESCALER_Field is HAL.UInt4; -- Prescaler register type PRESC_Register is record -- Clock prescaler PRESCALER : PRESC_PRESCALER_Field := 16#0#; -- unspecified Reserved_4_31 : HAL.UInt28 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for PRESC_Register use record PRESCALER at 0 range 0 .. 3; Reserved_4_31 at 0 range 4 .. 31; end record; ----------------- -- Peripherals -- ----------------- -- LPUART1 type LPUART1_Peripheral is record -- Control register 1 CR1 : aliased CR1_Register; -- Control register 2 CR2 : aliased CR2_Register; -- Control register 3 CR3 : aliased CR3_Register; -- Baud rate register BRR : aliased BRR_Register; -- Guard time and prescaler register GTPR : aliased GTPR_Register; -- Receiver timeout register RTOR : aliased RTOR_Register; -- Request register RQR : aliased RQR_Register; -- Interrupt & status register ISR : aliased ISR_Register; -- Interrupt flag clear register ICR : aliased ICR_Register; -- Receive data register RDR : aliased RDR_Register; -- Transmit data register TDR : aliased TDR_Register; -- Prescaler register PRESC : aliased PRESC_Register; end record with Volatile; for LPUART1_Peripheral use record CR1 at 16#0# range 0 .. 31; CR2 at 16#4# range 0 .. 31; CR3 at 16#8# range 0 .. 31; BRR at 16#C# range 0 .. 31; GTPR at 16#10# range 0 .. 31; RTOR at 16#14# range 0 .. 31; RQR at 16#18# range 0 .. 31; ISR at 16#1C# range 0 .. 31; ICR at 16#20# range 0 .. 31; RDR at 16#24# range 0 .. 31; TDR at 16#28# range 0 .. 31; PRESC at 16#2C# range 0 .. 31; end record; -- LPUART1 LPUART1_Periph : aliased LPUART1_Peripheral with Import, Address => LPUART1_Base; end STM32_SVD.LPUART;
-- Copyright (C)2021,2022 Steve Merrony -- Permission is hereby granted, free of charge, to any person obtaining a copy -- of this software and associated documentation files (the "Software"), to deal -- in the Software without restriction, including without limitation the rights -- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -- copies of the Software, and to permit persons to whom the Software is -- furnished to do so, subject to the following conditions: -- The above copyright notice and this permission notice shall be included in -- all copies or substantial portions of the Software. -- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -- THE SOFTWARE. with Ada.Strings.Unbounded; use Ada.Strings.Unbounded; with GNAT.Sockets; use GNAT.Sockets; package Telnet is Cmd_SE : constant Character := Character'Val(240); Cmd_NOP : constant Character := Character'Val(241); Cmd_DM : constant Character := Character'Val(242); Cmd_BRK : constant Character := Character'Val(243); Cmd_IP : constant Character := Character'Val(244); Cmd_AO : constant Character := Character'Val(245); Cmd_AYT : constant Character := Character'Val(246); Cmd_EC : constant Character := Character'Val(247); Cmd_EL : constant Character := Character'Val(248); Cmd_GA : constant Character := Character'Val(249); Cmd_SB : constant Character := Character'Val(250); Cmd_WILL : constant Character := Character'Val(251); Cmd_WONT : constant Character := Character'Val(252); Cmd_DO : constant Character := Character'Val(253); Cmd_DONT : constant Character := Character'Val(254); Cmd_IAC : constant Character := Character'Val(255); type Message is new String; type Session_T is tagged record Conn : GNAT.Sockets.Socket_Type; Host_Str : Unbounded_String; -- The host as specified by our user Port_Num : Integer; -- The port as specified by our user end record; type Session_Acc_T is access all Session_T; function New_Connection (Host_Str : in String; Port_Num : in Integer) return Session_Acc_T; -- Attempt to initiate a new TCPIP/Telnet connection to the specified Host and Port. -- Data from the remote host will be directed to the supplied Terminal. -- To send data, call the Send procedure procedure Send (Sess : in Session_Acc_T; Str : in String); procedure Close_Connection (Sess : in out Session_T); task type Receiver is entry Start (Sess : in Session_Acc_T); end Receiver; type Receiver_Acc is access Receiver; Receiver_Task : Receiver_Acc; task type Keyboard_Sender is entry Start (S : in Session_Acc_T); entry Accept_Data (Str : in String); entry Stop; end Keyboard_Sender; type Sender_Acc is access Keyboard_Sender; Keyboard_Sender_Task : Sender_Acc; Disconnected : exception; end Telnet;
package body Player is function Build (Race : String; Good_Ability : Good_Type; Bad_Ability : Bad_Type; Victory_Condition : Victory; Homeworld : Planet.Object) return Object is player : Object; begin player.Race := SU.To_Unbounded_String (Race); player.Good_Ability := Good_Ability; player.Bad_Ability := Bad_Ability; player.Victory_Condition := Victory_Condition; player.Homeworld := Homeworld; player.Owner_Planets.Append(Homeworld); return player; end Build; end Player;
with mylog; use mylog; package LogQueue with SPARK_Mode is protected type queue is procedure Put (msg : mylog.logmsg) with Pre => msg.typ in mylog.msgtype'Range; -- SPARK does not know that entry Get (msg : out mylog.logmsg); private buf : mylog.logmsg; -- unconstrained variant record => mutable. GNATprove doesn't see that Not_Empty : Boolean := False; end queue; myqueue : queue; procedure mytest; end LogQueue;
-- Copyright 2007, 2009, 2010, 2011 Free Software Foundation, Inc. -- -- This program is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- the Free Software Foundation; either version 3 of the License, or -- (at your option) any later version. -- -- This program is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- GNU General Public License for more details. -- -- You should have received a copy of the GNU General Public License -- along with this program. If not, see <http://www.gnu.org/licenses/>. procedure Hello is procedure First is begin null; end First; procedure Second is begin First; end Second; procedure Third is begin Second; end Third; begin Third; end Hello;
-- Copyright 2012-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 IO is procedure Put_Line (S : String); end IO;
------------------------------------------------------------------------------ -- -- -- Copyright (C) 2018, 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. -- -- -- ------------------------------------------------------------------------------ with HAL; use HAL; with HAL.SPI; use HAL.SPI; with System; with System.Address_Image; with Interfaces; with Interfaces.C; use Interfaces.C; with Posix; use Posix; with Ada.Unchecked_Conversion; -- TODO: Remove this after finishing Debuging with Ada.Text_IO; use Ada.Text_IO; with Ada.Integer_Text_IO; use Ada.Integer_Text_IO; package Native.SPI is type SPI_Port is new HAL.SPI.SPI_Port with private; type SPI_Clock_Polarity is (High, Low); type SPI_Clock_Phase is (P1Edge, P2Edge); type SPI_First_Bit is (MSB, LSB); type SPI_Slave_Management is (Software_Managed, Hardware_Managed); type SPI_IOC_Transfer is record Tx_Buf : HAL.UInt64; Rx_Buf : HAL.UInt64; Len : HAL.UInt32; Speed_Hz : HAL.UInt32; Delay_Usecs : HAL.UInt16; Bits_Per_Word : HAL.UInt8; Cs_Change : HAL.UInt8; Tx_Nbits : HAL.UInt8; Rx_Nbits : HAL.UInt8; Pad : HAL.Uint16 := 0; end record; pragma Pack (SPI_IOC_Transfer); type SPI_Configuration is record Data_Size : HAL.SPI.SPI_Data_Size; Clock_Polarity : SPI_Clock_Polarity; Clock_Phase : SPI_Clock_Phase; First_Bit : SPI_First_Bit; Slave_Manager : SPI_Slave_Management; Baud_Rate : Positive; end record; function Configure (Device : in String; Conf : in SPI_Configuration; Status : out HAL.SPI.SPI_Status) return SPI_Port; overriding function Data_Size (This : SPI_Port) return HAL.SPI.SPI_Data_Size; overriding procedure Transmit (This : in out SPI_Port; Data : HAL.SPI.SPI_Data_8b; Status : out HAL.SPI.SPI_Status; Timeout : Natural := 1000); overriding procedure Transmit (This : in out SPI_Port; Data : HAL.SPI.SPI_Data_16b; Status : out HAL.SPI.SPI_Status; Timeout : Natural := 1000); overriding procedure Receive (This : in out SPI_Port; Data : out HAL.SPI.SPI_Data_8b; Status : out HAL.SPI.SPI_Status; Timeout : Natural := 1000); procedure Receive (This : in out SPI_Port; Data : out HAL.SPI.SPI_Data_16b; Status : out HAL.SPI.SPI_Status; Timeout : Natural := 1000); private type SPI_Port is new HAL.SPI.SPI_Port with record File_Desc : File_Id; Config : SPI_Configuration; end record; type Tranceive_Mode is (Transmit, Receive, Transceive); procedure Transceive (This : in out SPI_Port; Out_Data : out HAL.SPI.SPI_Data_16b; In_Data : in HAL.SPI.SPI_Data_16b; Mode : Tranceive_Mode; Status : out HAL.SPI.SPI_Status) with Pre => Mode /= Transceive or Out_Data'Length = In_Data'Length; SPI_MAGIC : HAL.UInt8 := HAL.Uint8(107); -- from spidev.h (value of 'k') function SPI_TRANSFER (n : Positive) return Request is (dir => Write, typ => SPI_MAGIC, nr => 0, size => HAL.UInt14(n * (SPI_IOC_Transfer'Size / 8) )); function SPI_MODE (dir : Direction) return Request is (dir => dir, typ => SPI_MAGIC, nr => 1, -- from spidev.h size => 1); -- from spidev.h (size of u8) function SPI_LSB_FIRST (dir : Direction) return Request is (dir => dir, typ => SPI_MAGIC, nr => 2, -- from spidev.h size => 1); -- from spidev.h (size of u8) function SPI_BITS_PER_WORD (dir : Direction) return Request is (dir => dir, typ => SPI_MAGIC, nr => 3, -- from spidev.h size => 1); -- deom spidev.h (size of u8) function SPI_MAX_SPEED_HZ (dir : Direction) return Request is (dir => dir, typ => SPI_MAGIC, nr => 4, -- from spidev.h size => 4); -- from spidev.h (size of u32) end Native.Spi;
-- This file is generated by SWIG. Please do not modify by hand. -- with Interfaces.C; with Interfaces.C; with Interfaces.C.Pointers; package xcb.xcb_glx_get_tex_image_cookie_t is -- Item -- type Item is record sequence : aliased Interfaces.C.unsigned; end record; -- Item_Array -- type Item_Array is array (Interfaces.C .size_t range <>) of aliased xcb.xcb_glx_get_tex_image_cookie_t .Item; -- Pointer -- package C_Pointers is new Interfaces.C.Pointers (Index => Interfaces.C.size_t, Element => xcb.xcb_glx_get_tex_image_cookie_t.Item, Element_Array => xcb.xcb_glx_get_tex_image_cookie_t.Item_Array, Default_Terminator => (others => <>)); subtype Pointer is C_Pointers.Pointer; -- Pointer_Array -- type Pointer_Array is array (Interfaces.C .size_t range <>) of aliased xcb.xcb_glx_get_tex_image_cookie_t .Pointer; -- Pointer_Pointer -- package C_Pointer_Pointers is new Interfaces.C.Pointers (Index => Interfaces.C.size_t, Element => xcb.xcb_glx_get_tex_image_cookie_t.Pointer, Element_Array => xcb.xcb_glx_get_tex_image_cookie_t.Pointer_Array, Default_Terminator => null); subtype Pointer_Pointer is C_Pointer_Pointers.Pointer; end xcb.xcb_glx_get_tex_image_cookie_t;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- S Y S T E M . W C H _ W T S -- -- -- -- S p e c -- -- -- -- Copyright (C) 1992-2005, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 2, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING. If not, write -- -- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, -- -- Boston, MA 02110-1301, USA. -- -- -- -- As a special exception, if other files instantiate generics from this -- -- unit, or you link this unit with other files to produce an executable, -- -- this unit does not by itself cause the resulting executable to be -- -- covered by the GNU General Public License. This exception does not -- -- however invalidate any other reasons why the executable file might be -- -- covered by the GNU Public License. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- This package contains the routine used to convert wide strings and wide -- wide stringsto strings for use by wide and wide wide character attributes -- (value, image etc.) and also by the numeric IO subpackages of -- Ada.Text_IO.Wide_Text_IO and Ada.Text_IO.Wide_Wide_Text_IO. with System.WCh_Con; package System.WCh_WtS is pragma Pure; function Wide_String_To_String (S : Wide_String; EM : System.WCh_Con.WC_Encoding_Method) return String; -- This routine simply takes its argument and converts it to a string, -- using the internal compiler escape sequence convention (defined in -- package Widechar) to translate characters that are out of range -- of type String. In the context of the Wide_Value attribute, the -- argument is the original attribute argument, and the result is used -- in a call to the corresponding Value attribute function. If the method -- for encoding is a shift-in, shift-out convention, then it is assumed -- that normal (non-wide character) mode holds at the start and end of -- the result string. EM indicates the wide character encoding method. -- Note: in the WCEM_Brackets case, we only use the brackets encoding -- for characters greater than 16#FF#. function Wide_Wide_String_To_String (S : Wide_Wide_String; EM : System.WCh_Con.WC_Encoding_Method) return String; -- Same processing, except for Wide_Wide_String end System.WCh_WtS;
with ZMQ.Sockets; with ZMQ.Contexts; with ZMQ.Messages; with Ada.Text_IO; use Ada.Text_IO; procedure ZMQ.examples.Server is ctx : ZMQ.Contexts.Context; s : ZMQ.Sockets.Socket; resultset_string : constant String := "OK"; begin -- Initialise 0MQ context, requesting a single application thread -- and a single I/O thread ctx.Initialize (1); -- Create a ZMQ_REP socket to receive requests and send replies s.Initialize (ctx, ZMQ.Sockets.REP); -- Bind to the TCP transport and port 5555 on the 'lo' interface s.Bind ("tcp://lo:5555"); loop declare query : ZMQ.Messages.Message; begin query.Initialize; -- Receive a message, blocks until one is available s.recv (query); -- Process the query Put_Line (query.getData); declare -- Allocate a response message and fill in an example response resultset : ZMQ.Messages.Message; begin resultset.Initialize (query.getData & "->" & resultset_string); -- Send back our canned response s.Send (resultset); resultset.Finalize; end; query.Finalize; end; end loop; end ZMQ.Examples.Server;
-- Copyright 2010-2016 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 Mixed is procedure Start_Test; end Mixed;
package body AFRL.CMASI.AutomationResponse.SPARK_Boundary with SPARK_Mode => Off is -------------------- -- Get_WaypointEntity_Set -- -------------------- function Get_WaypointEntity_Set (Response : AutomationResponse) return Int64_Set is L : constant Vect_MissionCommand_Acc_Acc := Response.getMissionCommandList; begin return R : Int64_Set do for E of L.all loop Int64_Sets.Include (R, E.getVehicleID); end loop; end return; end Get_WaypointEntity_Set; end AFRL.CMASI.AutomationResponse.SPARK_Boundary;
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- E X P _ C H 7 -- -- -- -- S p e c -- -- -- -- Copyright (C) 1992-2020, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING3. If not, go to -- -- http://www.gnu.org/licenses for a complete copy of the license. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ with Namet; use Namet; with Types; use Types; package Exp_Ch7 is procedure Expand_N_Package_Body (N : Node_Id); procedure Expand_N_Package_Declaration (N : Node_Id); ----------------------------- -- Finalization Management -- ----------------------------- procedure Build_Anonymous_Master (Ptr_Typ : Entity_Id); -- Build a finalization master for an anonymous access-to-controlled type -- denoted by Ptr_Typ. The master is inserted in the declarations of the -- current unit. procedure Build_Controlling_Procs (Typ : Entity_Id); -- Typ is a record, and array type having controlled components. -- Create the procedures Deep_Initialize, Deep_Adjust and Deep_Finalize -- that take care of finalization management at run-time. -- Support of exceptions from user finalization procedures -- There is a specific mechanism to handle these exceptions, continue -- finalization and then raise PE. This mechanism is used by this package -- but also by exp_intr for Ada.Unchecked_Deallocation. -- There are 3 subprograms to use this mechanism, and the type -- Finalization_Exception_Data carries internal data between these -- subprograms: -- -- 1. Build_Object_Declaration: create the variables for the next two -- subprograms. -- 2. Build_Exception_Handler: create the exception handler for a call -- to a user finalization procedure. -- 3. Build_Raise_Stmt: create code to potentially raise a PE exception -- if an exception was raise in a user finalization procedure. type Finalization_Exception_Data is record Loc : Source_Ptr; -- Sloc for the added nodes Abort_Id : Entity_Id; -- Boolean variable set to true if the finalization was triggered by -- an abort. E_Id : Entity_Id; -- Variable containing the exception occurrence raised by user code Raised_Id : Entity_Id; -- Boolean variable set to true if an exception was raised in user code end record; function Build_Exception_Handler (Data : Finalization_Exception_Data; For_Library : Boolean := False) return Node_Id; -- Subsidiary to Build_Finalizer, Make_Deep_Array_Body and Make_Deep_Record -- _Body. Create an exception handler of the following form: -- -- when others => -- if not Raised_Id then -- Raised_Id := True; -- Save_Occurrence (E_Id, Get_Current_Excep.all.all); -- end if; -- -- If flag For_Library is set (and not in restricted profile): -- -- when others => -- if not Raised_Id then -- Raised_Id := True; -- Save_Library_Occurrence (Get_Current_Excep.all); -- end if; -- -- E_Id denotes the defining identifier of a local exception occurrence. -- Raised_Id is the entity of a local boolean flag. Flag For_Library is -- used when operating at the library level, when enabled the current -- exception will be saved to a global location. procedure Build_Finalization_Master (Typ : Entity_Id; For_Lib_Level : Boolean := False; For_Private : Boolean := False; Context_Scope : Entity_Id := Empty; Insertion_Node : Node_Id := Empty); -- Build a finalization master for an access type. The designated type may -- not necessarily be controlled or need finalization actions depending on -- the context. Flag For_Lib_Level must be set when creating a master for a -- build-in-place function call access result type. Flag For_Private must -- be set when the designated type contains a private component. Parameters -- Context_Scope and Insertion_Node must be used in conjunction with flag -- For_Private. Context_Scope is the scope of the context where the -- finalization master must be analyzed. Insertion_Node is the insertion -- point before which the master is to be inserted. procedure Build_Late_Proc (Typ : Entity_Id; Nam : Name_Id); -- Build one controlling procedure when a late body overrides one of the -- controlling operations. procedure Build_Object_Declarations (Data : out Finalization_Exception_Data; Decls : List_Id; Loc : Source_Ptr; For_Package : Boolean := False); -- Subsidiary to Make_Deep_Array_Body and Make_Deep_Record_Body. Create the -- list List containing the object declarations of boolean flag Abort_Id, -- the exception occurrence E_Id and boolean flag Raised_Id. -- -- Abort_Id : constant Boolean := -- Exception_Identity (Get_Current_Excep.all) = -- Standard'Abort_Signal'Identity; -- <or> -- Abort_Id : constant Boolean := False; -- no abort or For_Package -- -- E_Id : Exception_Occurrence; -- Raised_Id : Boolean := False; function Build_Raise_Statement (Data : Finalization_Exception_Data) return Node_Id; -- Subsidiary to routines Build_Finalizer, Make_Deep_Array_Body and Make_ -- Deep_Record_Body. Generate the following conditional raise statement: -- -- if Raised_Id and then not Abort_Id then -- Raise_From_Controlled_Operation (E_Id); -- end if; -- -- Abort_Id is a local boolean flag which is set when the finalization was -- triggered by an abort, E_Id denotes the defining identifier of a local -- exception occurrence, Raised_Id is the entity of a local boolean flag. function CW_Or_Has_Controlled_Part (T : Entity_Id) return Boolean; -- True if T is a class-wide type, or if it has controlled parts ("part" -- means T or any of its subcomponents). Same as Needs_Finalization, except -- when pragma Restrictions (No_Finalization) applies, in which case we -- know that class-wide objects do not contain controlled parts. function Has_New_Controlled_Component (E : Entity_Id) return Boolean; -- E is a type entity. Give the same result as Has_Controlled_Component -- except for tagged extensions where the result is True only if the -- latest extension contains a controlled component. function Make_Adjust_Call (Obj_Ref : Node_Id; Typ : Entity_Id; Skip_Self : Boolean := False) return Node_Id; -- Create a call to either Adjust or Deep_Adjust depending on the structure -- of type Typ. Obj_Ref is an expression with no side effects (not required -- to have been previously analyzed) that references the object to be -- adjusted. Typ is the expected type of Obj_Ref. When Skip_Self is set, -- only the components (if any) are adjusted. Return Empty if Adjust or -- Deep_Adjust is not available, possibly due to previous errors. function Make_Detach_Call (Obj_Ref : Node_Id) return Node_Id; -- Create a call to unhook an object from an arbitrary list. Obj_Ref is the -- object. Generate the following: -- -- Ada.Finalization.Heap_Management.Detach -- (System.Finalization_Root.Root_Controlled_Ptr (Obj_Ref)); function Make_Final_Call (Obj_Ref : Node_Id; Typ : Entity_Id; Skip_Self : Boolean := False) return Node_Id; -- Create a call to either Finalize or Deep_Finalize, depending on the -- structure of type Typ. Obj_Ref is an expression (with no side effects -- and is not required to have been previously analyzed) that references -- the object to be finalized. Typ is the expected type of Obj_Ref. When -- Skip_Self is set, only the components (if any) are finalized. Return -- Empty if Finalize or Deep_Finalize is not available, possibly due to -- previous errors. procedure Make_Finalize_Address_Body (Typ : Entity_Id); -- Create the body of TSS routine Finalize_Address if Typ is controlled and -- does not have a TSS entry for Finalize_Address. The procedure converts -- an address into a pointer and subsequently calls Deep_Finalize on the -- dereference. function Make_Init_Call (Obj_Ref : Node_Id; Typ : Entity_Id) return Node_Id; -- Create a call to either Initialize or Deep_Initialize, depending on the -- structure of type Typ. Obj_Ref is an expression with no side effects -- (not required to have been previously analyzed) that references the -- object to be initialized. Typ is the expected type of Obj_Ref. Return -- Empty if Initialize or Deep_Initialize is not available, possibly due to -- previous errors. function Make_Handler_For_Ctrl_Operation (Loc : Source_Ptr) return Node_Id; -- Generate an implicit exception handler with an 'others' choice, -- converting any occurrence to a raise of Program_Error. function Make_Local_Deep_Finalize (Typ : Entity_Id; Nam : Entity_Id) return Node_Id; -- Create a special version of Deep_Finalize with identifier Nam. The -- routine has state information and can perform partial finalization. function Make_Set_Finalize_Address_Call (Loc : Source_Ptr; Ptr_Typ : Entity_Id) return Node_Id; -- Associate the Finalize_Address primitive of the designated type with the -- finalization master of access type Ptr_Typ. The returned call is: -- -- Set_Finalize_Address -- (<Ptr_Typ>FM, <Desig_Typ>FD'Unrestricted_Access); -------------------------------------------- -- Task and Protected Object finalization -- -------------------------------------------- function Cleanup_Array (N : Node_Id; Obj : Node_Id; Typ : Entity_Id) return List_Id; -- Generate loops to finalize any tasks or simple protected objects that -- are subcomponents of an array. function Cleanup_Protected_Object (N : Node_Id; Ref : Node_Id) return Node_Id; -- Generate code to finalize a protected object without entries function Cleanup_Record (N : Node_Id; Obj : Node_Id; Typ : Entity_Id) return List_Id; -- For each subcomponent of a record that contains tasks or simple -- protected objects, generate the appropriate finalization call. function Cleanup_Task (N : Node_Id; Ref : Node_Id) return Node_Id; -- Generate code to finalize a task function Has_Simple_Protected_Object (T : Entity_Id) return Boolean; -- Check whether composite type contains a simple protected component function Is_Simple_Protected_Type (T : Entity_Id) return Boolean; -- Determine whether T denotes a protected type without entries whose -- _object field is of type System.Tasking.Protected_Objects.Protection. -- Something wrong here, implementation was changed to test Lock_Free -- but this spec does not mention that ??? -------------------------------- -- Transient Scope Management -- -------------------------------- procedure Expand_Cleanup_Actions (N : Node_Id); -- Expand the necessary stuff into a scope to enable finalization of local -- objects and deallocation of transient data when exiting the scope. N is -- a "scope node" that is to say one of the following: N_Block_Statement, -- N_Subprogram_Body, N_Task_Body, N_Entry_Body. procedure Establish_Transient_Scope (N : Node_Id; Manage_Sec_Stack : Boolean); -- Push a new transient scope on the scope stack. N is the node which must -- be serviced by the transient scope. Set Manage_Sec_Stack when the scope -- must mark and release the secondary stack. function Node_To_Be_Wrapped return Node_Id; -- Return the node to be wrapped if the current scope is transient procedure Store_Before_Actions_In_Scope (L : List_Id); -- Append the list L of actions to the end of the before-actions store in -- the top of the scope stack (also analyzes these actions). procedure Store_After_Actions_In_Scope (L : List_Id); -- Prepend the list L of actions to the beginning of the after-actions -- stored in the top of the scope stack (also analyzes these actions). -- -- Note that we are prepending here rather than appending. This means that -- if several calls are made to this procedure for the same scope, the -- actions will be executed in reverse order of the calls (actions for the -- last call executed first). Within the list L for a single call, the -- actions are executed in the order in which they appear in this list. procedure Store_Cleanup_Actions_In_Scope (L : List_Id); -- Prepend the list L of actions to the beginning of the cleanup-actions -- store in the top of the scope stack. procedure Wrap_Transient_Declaration (N : Node_Id); -- N is an object declaration. Expand the finalization calls after the -- declaration and make the outer scope being the transient one. procedure Wrap_Transient_Expression (N : Node_Id); -- N is a sub-expression. Expand a transient block around an expression procedure Wrap_Transient_Statement (N : Node_Id); -- N is a statement. Expand a transient block around an instruction end Exp_Ch7;
pragma Ada_95; pragma Source_File_Name (ada_main, Spec_File_Name => "b__main.ads"); pragma Source_File_Name (ada_main, Body_File_Name => "b__main.adb"); pragma Suppress (Overflow_Check); with Ada.Exceptions; package body ada_main is pragma Warnings (Off); E72 : Short_Integer; pragma Import (Ada, E72, "system__os_lib_E"); E13 : Short_Integer; pragma Import (Ada, E13, "system__soft_links_E"); E23 : Short_Integer; pragma Import (Ada, E23, "system__exception_table_E"); E46 : Short_Integer; pragma Import (Ada, E46, "ada__io_exceptions_E"); E48 : Short_Integer; pragma Import (Ada, E48, "ada__tags_E"); E45 : Short_Integer; pragma Import (Ada, E45, "ada__streams_E"); E70 : Short_Integer; pragma Import (Ada, E70, "interfaces__c_E"); E25 : Short_Integer; pragma Import (Ada, E25, "system__exceptions_E"); E75 : Short_Integer; pragma Import (Ada, E75, "system__file_control_block_E"); E64 : Short_Integer; pragma Import (Ada, E64, "system__file_io_E"); E68 : Short_Integer; pragma Import (Ada, E68, "system__finalization_root_E"); E66 : Short_Integer; pragma Import (Ada, E66, "ada__finalization_E"); E17 : Short_Integer; pragma Import (Ada, E17, "system__secondary_stack_E"); E06 : Short_Integer; pragma Import (Ada, E06, "ada__text_io_E"); E77 : Short_Integer; pragma Import (Ada, E77, "railway_E"); Local_Priority_Specific_Dispatching : constant String := ""; Local_Interrupt_States : constant String := ""; Is_Elaborated : Boolean := False; procedure finalize_library is begin E06 := E06 - 1; declare procedure F1; pragma Import (Ada, F1, "ada__text_io__finalize_spec"); begin F1; end; declare procedure F2; pragma Import (Ada, F2, "system__file_io__finalize_body"); begin E64 := E64 - 1; F2; end; declare procedure Reraise_Library_Exception_If_Any; pragma Import (Ada, Reraise_Library_Exception_If_Any, "__gnat_reraise_library_exception_if_any"); begin Reraise_Library_Exception_If_Any; end; end finalize_library; procedure adafinal is procedure s_stalib_adafinal; pragma Import (C, s_stalib_adafinal, "system__standard_library__adafinal"); procedure Runtime_Finalize; pragma Import (C, Runtime_Finalize, "__gnat_runtime_finalize"); begin if not Is_Elaborated then return; end if; Is_Elaborated := False; Runtime_Finalize; s_stalib_adafinal; end adafinal; type No_Param_Proc is access procedure; procedure adainit is Main_Priority : Integer; pragma Import (C, Main_Priority, "__gl_main_priority"); Time_Slice_Value : Integer; pragma Import (C, Time_Slice_Value, "__gl_time_slice_val"); WC_Encoding : Character; pragma Import (C, WC_Encoding, "__gl_wc_encoding"); Locking_Policy : Character; pragma Import (C, Locking_Policy, "__gl_locking_policy"); Queuing_Policy : Character; pragma Import (C, Queuing_Policy, "__gl_queuing_policy"); Task_Dispatching_Policy : Character; pragma Import (C, Task_Dispatching_Policy, "__gl_task_dispatching_policy"); Priority_Specific_Dispatching : System.Address; pragma Import (C, Priority_Specific_Dispatching, "__gl_priority_specific_dispatching"); Num_Specific_Dispatching : Integer; pragma Import (C, Num_Specific_Dispatching, "__gl_num_specific_dispatching"); Main_CPU : Integer; pragma Import (C, Main_CPU, "__gl_main_cpu"); Interrupt_States : System.Address; pragma Import (C, Interrupt_States, "__gl_interrupt_states"); Num_Interrupt_States : Integer; pragma Import (C, Num_Interrupt_States, "__gl_num_interrupt_states"); Unreserve_All_Interrupts : Integer; pragma Import (C, Unreserve_All_Interrupts, "__gl_unreserve_all_interrupts"); Detect_Blocking : Integer; pragma Import (C, Detect_Blocking, "__gl_detect_blocking"); Default_Stack_Size : Integer; pragma Import (C, Default_Stack_Size, "__gl_default_stack_size"); Leap_Seconds_Support : Integer; pragma Import (C, Leap_Seconds_Support, "__gl_leap_seconds_support"); procedure Runtime_Initialize (Install_Handler : Integer); pragma Import (C, Runtime_Initialize, "__gnat_runtime_initialize"); Finalize_Library_Objects : No_Param_Proc; pragma Import (C, Finalize_Library_Objects, "__gnat_finalize_library_objects"); begin if Is_Elaborated then return; end if; Is_Elaborated := True; Main_Priority := -1; Time_Slice_Value := -1; WC_Encoding := 'b'; Locking_Policy := ' '; Queuing_Policy := ' '; Task_Dispatching_Policy := ' '; Priority_Specific_Dispatching := Local_Priority_Specific_Dispatching'Address; Num_Specific_Dispatching := 0; Main_CPU := -1; Interrupt_States := Local_Interrupt_States'Address; Num_Interrupt_States := 0; Unreserve_All_Interrupts := 0; Detect_Blocking := 0; Default_Stack_Size := -1; Leap_Seconds_Support := 0; Runtime_Initialize (1); Finalize_Library_Objects := finalize_library'access; System.Soft_Links'Elab_Spec; System.Exception_Table'Elab_Body; E23 := E23 + 1; Ada.Io_Exceptions'Elab_Spec; E46 := E46 + 1; Ada.Tags'Elab_Spec; Ada.Streams'Elab_Spec; E45 := E45 + 1; Interfaces.C'Elab_Spec; System.Exceptions'Elab_Spec; E25 := E25 + 1; System.File_Control_Block'Elab_Spec; E75 := E75 + 1; System.Finalization_Root'Elab_Spec; E68 := E68 + 1; Ada.Finalization'Elab_Spec; E66 := E66 + 1; System.File_Io'Elab_Body; E64 := E64 + 1; E70 := E70 + 1; Ada.Tags'Elab_Body; E48 := E48 + 1; System.Soft_Links'Elab_Body; E13 := E13 + 1; System.Os_Lib'Elab_Body; E72 := E72 + 1; System.Secondary_Stack'Elab_Body; E17 := E17 + 1; Ada.Text_Io'Elab_Spec; Ada.Text_Io'Elab_Body; E06 := E06 + 1; E77 := E77 + 1; end adainit; procedure Ada_Main_Program; pragma Import (Ada, Ada_Main_Program, "_ada_main"); function main (argc : Integer; argv : System.Address; envp : System.Address) return Integer is procedure Initialize (Addr : System.Address); pragma Import (C, Initialize, "__gnat_initialize"); procedure Finalize; pragma Import (C, Finalize, "__gnat_finalize"); SEH : aliased array (1 .. 2) of Integer; Ensure_Reference : aliased System.Address := Ada_Main_Program_Name'Address; pragma Volatile (Ensure_Reference); begin gnat_argc := argc; gnat_argv := argv; gnat_envp := envp; Initialize (SEH'Address); adainit; Ada_Main_Program; adafinal; Finalize; return (gnat_exit_status); end; -- BEGIN Object file/option list -- /Users/arkadiuszlewandowski/Documents/ada_railway/NIEZAWODNE_SYSTEMY_INFORMATYCZNE/railway.o -- /Users/arkadiuszlewandowski/Documents/ada_railway/NIEZAWODNE_SYSTEMY_INFORMATYCZNE/main.o -- -L/Users/arkadiuszlewandowski/Documents/ada_railway/NIEZAWODNE_SYSTEMY_INFORMATYCZNE/ -- -L/Users/arkadiuszlewandowski/Documents/ada_railway/NIEZAWODNE_SYSTEMY_INFORMATYCZNE/ -- -L/usr/local/gnat/lib/gcc/x86_64-apple-darwin13.4.0/4.9.3/adalib/ -- -static -- -lgnat -- END Object file/option list end ada_main;
----------------------------------------------------------------------- -- AUnit utils - Helper for writing unit tests -- Copyright (C) 2009, 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. ----------------------------------------------------------------------- with AUnit.Assertions; with GNAT.Source_Info; package Util.Assertions is -- Check that the value matches what we expect. generic type Value_Type is (<>); procedure Assert_Equals_T (T : in AUnit.Assertions.Test'Class; Expect : in Value_Type; Value : in Value_Type; Message : in String := "Test failed"; Source : in String := GNAT.Source_Info.File; Line : in Natural := GNAT.Source_Info.Line); end Util.Assertions;
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- S Y S T E M . V A L _ D E C I M A L _ 3 2 -- -- -- -- 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 contains routines for scanning values for decimal fixed point -- types up to 32-bit mantissa, for use in Text_IO.Decimal_IO, and the Value -- attribute for such decimal types. with Interfaces; with System.Arith_32; with System.Value_D; package System.Val_Decimal_32 is pragma Preelaborate; subtype Int32 is Interfaces.Integer_32; subtype Uns32 is Interfaces.Unsigned_32; package Impl is new Value_D (Int32, Uns32, Arith_32.Scaled_Divide32); function Scan_Decimal32 (Str : String; Ptr : not null access Integer; Max : Integer; Scale : Integer) return Int32 renames Impl.Scan_Decimal; function Value_Decimal32 (Str : String; Scale : Integer) return Int32 renames Impl.Value_Decimal; end System.Val_Decimal_32;
-- Copyright 2007-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/>. with System; package Pck is procedure Do_Nothing (A : System.Address); end Pck;
with TEXT_IO; with STRINGS_PACKAGE; use STRINGS_PACKAGE; with LATIN_FILE_NAMES; use LATIN_FILE_NAMES; with INFLECTIONS_PACKAGE; use INFLECTIONS_PACKAGE; with DICTIONARY_PACKAGE; use DICTIONARY_PACKAGE; with LINE_STUFF; use LINE_STUFF; with ENGLISH_SUPPORT_PACKAGE; use ENGLISH_SUPPORT_PACKAGE; with WEED; with WEED_ALL; with DICTIONARY_FORM; procedure MAKEEWDS is package INTEGER_IO is new TEXT_IO.INTEGER_IO(INTEGER); use TEXT_IO; use INTEGER_IO; use STEM_KEY_TYPE_IO; use DICTIONARY_ENTRY_IO; use PART_ENTRY_IO; use PART_OF_SPEECH_TYPE_IO; use KIND_ENTRY_IO; use TRANSLATION_RECORD_IO; use AGE_TYPE_IO; use AREA_TYPE_IO; use GEO_TYPE_IO; use FREQUENCY_TYPE_IO; use SOURCE_TYPE_IO; use EWDS_Record_io; PORTING : constant BOOLEAN := FALSE; CHECKING : constant BOOLEAN := TRUE; D_K : DICTIONARY_KIND := XXX; -- ###################### START_STEM_1 : constant := 1; START_STEM_2 : constant := START_STEM_1 + MAX_STEM_SIZE + 1; START_STEM_3 : constant := START_STEM_2 + MAX_STEM_SIZE + 1; START_STEM_4 : constant := START_STEM_3 + MAX_STEM_SIZE + 1; START_PART : constant := START_STEM_4 + MAX_STEM_SIZE + 1; START_TRAN : constant INTEGER := START_PART + INTEGER(PART_ENTRY_IO.DEFAULT_WIDTH + 1); FINISH_LINE : constant INTEGER := START_TRAN + TRANSLATION_RECORD_IO.DEFAULT_WIDTH - 1; LINE_NUMBER : INTEGER := 0; subtype WORD_TYPE is STRING(1..MAX_MEANING_SIZE); subtype LINE_TYPE is STRING(1..400); N : INTEGER := 0; INPUT, OUTPUT, CHECK : TEXT_IO.FILE_TYPE; DE : DICTIONARY_ENTRY; NULL_WORD_TYPE, BLANK_WORD : WORD_TYPE := (others => ' '); S, LINE, BLANK_LINE : LINE_TYPE := (others => ' '); L, LL, LAST : INTEGER := 0; EWA : EWDS_ARRAY(1..40) := (others => NULL_EWDS_RECORD); EWR : EWDS_RECORD := NULL_EWDS_RECORD; -- First we supplement MEAN with singles of any hyphenated words -- In principle this could be done in the main EXTRACT, much same logic/code -- However this is difficult code for an old man, EXTRACT was hard when I was a bit younger -- And I cannot remember anything about it. Separating them out makes it much easier to test function ADD_HYPHENATED(S : STRING) return STRING is -------- I tried to do something with hyphenated but so far it does not work ---------- -- Find hyphenated words and add them to MEAN with a / connector, right before the parse -- so one has both the individual words (may be more than two) and a single combined word -- counting-board -> counting board/countingboard T : STRING (1..MAX_MEANING_SIZE*2 + 20) := (others => ' '); -- Cannot be bigger WORD_START : INTEGER := 1; WORD_END : INTEGER := 0; I, J, JMAX : INTEGER := 0; HYPHENATED : BOOLEAN := FALSE; WW : INTEGER := 0; -- For debug begin --PUT_LINE("S " & INTEGER'IMAGE(LINE_NUMBER) & " " & INTEGER'IMAGE(S'FIRST) & " " & INTEGER'IMAGE(S'LAST)); --PUT_LINE(S); while I < S'LAST loop I := I + 1; J := J + 1; WORD_END := 0; --PUT(INTEGER'IMAGE(I) & "-"); -- First clear away or ignore all the non-words stuff if S(I) = '|' then -- Skip continuation |'s WORD_START := I + 1; T(J) := S(I); J := J + 1; JMAX := JMAX + 1; null; I := I + 1; --PUT_LINE("||| " & INTEGER'IMAGE(LINE_NUMBER) & " " & S(I) & '_' & S(WORD_START..S'LAST)); elsif S(I) = '"' then -- Skip "'s WORD_START := I + 1; T(J) := S(I); J := J + 1; JMAX := JMAX + 1; null; I := I + 1; --PUT_LINE('"' & " " & INTEGER'IMAGE(LINE_NUMBER) & " ->" & S(WORD_START..S'LAST)); else if S(I) = '(' then -- (...) not to be parsed T(J) := S(I); J := J + 1; JMAX := JMAX + 1; I := I + 1; while S(I) /= ')' loop T(J) := S(I); J := J + 1; JMAX := JMAX + 1; I := I + 1; end loop; WORD_START := I + 2; -- Skip }; WORD_END := 0; elsif S(I) = '[' then -- (...) not to be parsed T(J) := S(I); J := J + 1; JMAX := JMAX + 1; I := I + 1; while S(I-1..I) /= "=>" loop T(J) := S(I); J := J + 1; JMAX := JMAX + 1; I := I + 1; end loop; WORD_START := I + 2; WORD_END := 0; end if; -- Finished with the non-word stuff if (S(I) = '-') then WORD_END := I - 1; -- if (I /= S'FIRST) and then -- Not -word -- ( (S(I-1) /= ' ') and -- (S(I-1) /= '/') ) then -- HYPHENATED := TRUE; -- end if; --PUT_LINE("--- " & INTEGER'IMAGE(LINE_NUMBER) & " " & INTEGER'IMAGE(I) & --" " & INTEGER'IMAGE(WORD_START) & " " & INTEGER'IMAGE(WORD_END) & " ->" & S(WORD_START..WORD_END)); end if; if S(I) = ' ' or S(I) = '/' or S(I) = ',' or S(I) = ';' or S(I) = '!' or S(I) = '?' or S(I) = '+' or S(I) = '*' or S(I) = '"' or S(I) = '(' then WORD_END := I - 1; --PUT_LINE(INTEGER'IMAGE(LINE_NUMBER) & " NNN " & S(I) & " " & INTEGER'IMAGE(I) & " " --& INTEGER'IMAGE(WORD_START)& " " & INTEGER'IMAGE(WORD_END) & " " & S(WORD_START..WORD_END)); if HYPHENATED then T(J) := '/'; J := J + 1; JMAX := JMAX + 1; for K in WORD_START..WORD_END loop if S(K) /= '-' then T(J) := S(K); J := J + 1; JMAX := JMAX + 1; end if; end loop; HYPHENATED := FALSE; end if; end if; if --WORD_END /= 0 and then (S(I) = ' ' or S(I) = '/' ) then WORD_START := I + 1; WORD_END := 0; end if; --PUT_LINE(INTEGER'IMAGE(LINE_NUMBER) & " TTT " & S(I) & " " & INTEGER'IMAGE(I) & --" " & INTEGER'IMAGE(WORD_START) & " " & INTEGER'IMAGE(WORD_END) & " " & S(WORD_START..WORD_END)); end if; -- On '|' -- Set up the output to return --PUT('|' & INTEGER'IMAGE(J) & '/' & INTEGER'IMAGE(I)); T(J) := S(I); JMAX := JMAX + 1; end loop; -- Over S'RANGE --PUT_LINE("RRR ->" & INTEGER'IMAGE(LINE_NUMBER) & " " & T(1..JMAX)); return T(1..JMAX); exception when others => PUT_LINE("ADD_HYPHENATED Exception LINE = " & INTEGER'IMAGE(LINE_NUMBER)); PUT_LINE(S); PUT(DE); NEW_LINE; return T(1..JMAX); end ADD_HYPHENATED; procedure EXTRACT_WORDS (S : in STRING; POFS : in PART_OF_SPEECH_TYPE; N : out INTEGER; EWA : out EWDS_ARRAY) is I, J, JS, K, L, M, IM, IC : INTEGER := 0; START_SEMI, END_SEMI : INTEGER := 1; -- Have to expand type to take care of hyphenated subtype X_MEANING_TYPE is STRING(1..MAX_MEANING_SIZE*2+20); NULL_X_MEANING_TYPE : constant X_MEANING_TYPE := (others => ' '); SEMI, COMMA : X_MEANING_TYPE := NULL_X_MEANING_TYPE; SM1, SM2 : INTEGER := 0; WW : INTEGER := 0; -- For debug begin --NEW_LINE(2); --PUT_LINE("MEAN " & INTEGER'IMAGE(LINE_NUMBER) & " =>" & S); --PUT_LINE("MEAN=>" & INTEGER'IMAGE(S'FIRST) & " " & INTEGER'IMAGE(S'LAST) & "|::::::::"); I := 1; -- Element Position in line, per SEMI J := 1; -- Position in word K := 0; -- SEMI - Division in line L := 1; -- Position in MEAN, for EXTRACTing SEMI M := 1; -- COMMA in SEMI N := 1; -- Word number IM := 0; -- Position in SEMI IC := 0; -- Position in COMMA EWA(N) := NULL_EWDS_RECORD; -- Slightly disparage extension if S(1) = '|' then K := 3; end if; while L <= S'LAST loop -- loop over MEAN if S(L) = ' ' then -- Clear initial blanks L := L + 1; end if; SEMI := NULL_X_MEANING_TYPE; IM := 1; SM1 := 1; SM2 := 0; EXTRACT_SEMI: loop --PUT('/'); --PUT(S(L)); if S(L) = '|' then null; -- Ignore continuation flag | as word elsif S(L) in '0'..'9' then null; -- Ignore numbers elsif S(L) = ';' then -- Division Terminator --PUT(':'); K := K + 1; SM2 := IM - 1; --PUT('+'); L := L + 1; -- Clear ; exit; elsif S(L) = '(' then -- Skip (...) ! --PUT('['); while S(L) /= ')' loop --PUT('+'); --PUT(INTEGER'IMAGE(L)); --PUT(S(L)); exit when L = S'LAST; -- Run out L := L + 1; end loop; -- L := L + 1; -- Clear the ')' --PUT('^'); --PUT(INTEGER'IMAGE(L)); --PUT(S(L)); if L > S'LAST then L := S'LAST; SM2 := IM; else if S(L) = ';' then -- ); SM2 := IM - 1; exit EXTRACT_SEMI; end if; end if; --PUT(']'); if L >= S'LAST then -- Ends in ) --PUT('!'); SM2 := IM; exit; end if; --PUT('+'); --L := L + 1; -- Clear the ')' elsif L = S'LAST then --PUT('|'); SM2 := IM; L := L + 1; -- To end the loop exit; else SEMI(IM) := S(L); SM2 := IM; IM := IM + 1; end if; --PUT('+'); --IM := IM + 1; -- To next character L := L + 1; -- To next character end loop EXTRACT_SEMI; WW := 10; --if LINE_NUMBER = 8399 then --NEW_LINE; --PUT_LINE("NEW SEMI=>" & SEMI(SM1..SM2) & "|::::::::"); --PUT_LINE("NEW SEMI INDEX=>" & INTEGER'IMAGE(SM1) & " " & INTEGER'IMAGE(SM2) & "|::::::::"); --end if; PROCESS_SEMI: declare ST : constant STRING := TRIM(SEMI); SM : STRING(ST'FIRST..ST'LAST) := ST; START_COMMA, END_COMMA : INTEGER := 0; begin if ST'LENGTH > 0 then COMMA := NULL_X_MEANING_TYPE; IM := SM'FIRST; M := 0; --I := SM'FIRST; --while I <= ST'LAST loop --PUT(S(I)); --PUT('*'); --COMMA := NULL_X_MEANING_TYPE; IC := 1; LOOP_OVER_SEMI: while IM <= SM'LAST loop COMMA := NULL_X_MEANING_TYPE; WW := 20; FIND_COMMA: loop --PUT(INTEGER'IMAGE(IM) & " ( " & SM(IM)); if SM(IM) = '(' then -- Skip (...) ! while SM(IM) /= ')' loop IM := IM + 1; end loop; IM := IM + 1; -- Clear the ')' -- IM := IM + 1; -- Go to next character --PUT_LINE("Cleared (+" & " IM = " & INTEGER'IMAGE(IM)); if IM >= END_SEMI then --PUT_LINE("exit on SM'LAST " & INTEGER'IMAGE(SM'LAST) & " I = " & INTEGER'IMAGE(IM)); exit; end if; --PUT_LINE("No exit on SM'LAST " & INTEGER'IMAGE(SM'LAST) & " I = " & INTEGER'IMAGE(IM) & "|" & SM(IM) & "|"); if (SM(IM) = ';') or (SM(IM) = ',') then --PUT_LINE("Found ;, COMMA IM = " & INTEGER'IMAGE(IM)); -- Foumd COMMA M := M + 1; IC := 1; IM := IM + 1; -- Clear ;, exit; elsif SM(IM) = ' ' then --PUT_LINE("Found blank - IM = " & INTEGER'IMAGE(IM)); IM := IM + 1; --PUT_LINE("Found blank + IM = " & INTEGER'IMAGE(IM)); end if; --PUT_LINE("------------------------"); end if; if SM(IM) = '[' then -- Take end of [=>] while SM(IM) /= '>' loop exit when SM(IM) = ']'; -- If no > IM := IM + 1; end loop; IM := IM + 1; -- Clear the '>' or ']' if SM(IM) = ';' then -- Foumd COMMA M := M + 1; IC := 1; IM := IM + 1; -- Clear ; exit; elsif SM(IM) = ' ' then IM := IM + 1; end if; end if; -- But could be 2 =>! --PUT_LINE("Through ()[] I = " & INTEGER'IMAGE(I)); exit when IM > SM'LAST; --PUT(INTEGER'IMAGE(IM) & " ) " & SM(IM)); if SM(IM) = ',' then -- Foumd COMMA M := M + 1; IC := 1; IM := IM + 1; -- Clear , exit; elsif IM >= SM'LAST or IM = S'LAST then -- Foumd COMMA COMMA(IC) := SM(IM); M := M + 1; IC := 1; exit; else COMMA(IC) := SM(IM); IM := IM + 1; IC := IC + 1; end if; --PUT(INTEGER'IMAGE(IM) & " ! " & SM(IM)); end loop FIND_COMMA; --PUT_LINE("COMMA " & INTEGER'IMAGE(LINE_NUMBER) & INTEGER'IMAGE(IM) & "=>" & TRIM(COMMA)); IM := IM + 1; WW := 30; PROCESS_COMMA: declare CT : constant STRING := TRIM(COMMA); CS : STRING(CT'FIRST..CT'LAST) := CT; PURE : BOOLEAN := TRUE; W_START, W_END : INTEGER := 0; begin WW := 31; --PUT_LINE("PROCESS COMMA " & INTEGER'IMAGE(LINE_NUMBER) & INTEGER'IMAGE(CT'FIRST) & INTEGER'IMAGE(CT'LAST) & "=>" & TRIM(COMMA)); if CT'LENGTH > 0 then -- Is COMMA non empty -- Are there any blanks? -- If not then it is a pure word -- Or words with / for IP in CS'RANGE loop if CS(IP) = ' ' then PURE := FALSE; end if; end loop; WW := 32; -- Check for WEED words and eliminate them W_START := CS'FIRST; W_END := CS'LAST; for IW in CS'RANGE loop --PUT('-'); --PUT(CS(IW)); if (CS(IW) = '(') or (CS(IW) = '[') then WW := 33; W_START := IW + 1; else WW := 34; if (CS(IW) = ' ') or (CS(IW) = '_') or (CS(IW) = '-') or (CS(IW) = ''') or (CS(IW) = '!') or (CS(IW) = '/') or (CS(IW) = ':') or (CS(IW) = '.') or (CS(IW) = '!') or (CS(IW) = ')') or (CS(IW) = ']') or (IW = CS'LAST) then --PUT_LINE("HIT " & CS(IW) & " IW = " & INTEGER'IMAGE(IW) & " CS'LAST = " & INTEGER'IMAGE(CS'LAST)); WW := 35; if IW = CS'LAST then W_END := IW; elsif IW /= CS'FIRST then W_END := IW - 1; end if; WW := 36; -- KLUDGE if CS(W_START) = '"' then WW := 361; W_START := W_START + 1; WW := 362; elsif CS(W_END) = '"' then WW := 364; W_END := W_END - 1; WW := 365; end if; WW := 37; --PUT_LINE(INTEGER'IMAGE(LINE_NUMBER) & "WEEDing " & --INTEGER'IMAGE(W_START) & " " & INTEGER'IMAGE(W_END) --& " " & CS(W_START..W_END) --); WEED_ALL(CS(W_START..W_END), POFS); if not PURE then WEED(CS(W_START..W_END), POFS); end if; W_START := IW + 1; end if; WW := 38; end if; WW := 39; end loop; -- On CS'RANGE --PUT_LINE(INTEGER'IMAGE(LINE_NUMBER) & "WEED done"); WW := 40; -- Main process of COMMA IC := 1; J := 1; while IC <= CS'LAST loop --PUT(CS(IC)); if CS(IC) = '"' or -- Skip all " CS(IC) = '(' or -- Skip initial ( --CS(IC) = '-' or -- Skip hyphen -> one word! CS(IC) = '?' or -- Ignore ? CS(IC) = '~' or -- Ignore about ~ CS(IC) = '*' or CS(IC) = '%' or -- Ignore percent unless word CS(IC) = '.' or -- Ignore ... CS(IC) = '\' or -- Ignore weed (CS(IC) in '0'..'9') then -- Skip numbers IC := IC + 1; WW := 50; ----PUT('-'); else if -- S(IC) = ',' or -- Terminators -- S(IC) = '.' or -- Would be typo -- S(IC) = ';' or -- Should catch at SEMI CS(IC) = '/' or CS(IC) = ' ' or CS(IC) = ''' or -- Ignore all ' incl 's ??? CS(IC) = '-' or -- Hyphen causes 2 words XXX CS(IC) = '+' or -- Plus causes 2 words CS(IC) = '_' or -- Underscore causes 2 words CS(IC) = '=' or -- = space/terminates CS(IC) = '>' or CS(IC) = ')' or CS(IC) = ']' or CS(IC) = '!' or CS(IC) = '?' or CS(IC) = '+' or CS(IC) = ':' or CS(IC) = ']' then -- Found word WW := 60; --PUT('/'); EWA(N).SEMI := K; if PURE then if K = 1 then EWA(N).KIND := 15; else EWA(N).KIND := 10; end if; else EWA(N).KIND := 0; end if; WW := 70; --PUT_LINE("====1 K J = " & INTEGER'IMAGE(K) & " " & INTEGER'IMAGE(J) & " ." & EWA(N).W(1..J-1) & "."); N := N + 1; -- Start new word in COMMA IC := IC + 1; J := 1; EWA(N) := NULL_EWDS_RECORD; elsif -- Order of if important IC = CS'LAST then -- End, Found word --PUT('!'); EWA(N).W(J) := CS(IC); EWA(N).SEMI := K; if PURE then if K = 1 then EWA(N).KIND := 15; else EWA(N).KIND := 10; end if; else EWA(N).KIND := 0; end if; --PUT_LINE("====2 K J = " & INTEGER'IMAGE(K) & " " & INTEGER'IMAGE(J) & " ." & EWA(N).W(1..J) & "."); N := N + 1; -- Start new word/COMMA EWA(N) := NULL_EWDS_RECORD; exit; else WW := 80; --PUT('+'); EWA(N).W(J) := CS(IC); J := J + 1; IC := IC + 1; end if; end if; WW := 90; end loop; end if; -- On COMMA being empty end PROCESS_COMMA; --PUT_LINE("COMMA Processed "); end loop LOOP_OVER_SEMI; --PUT_LINE("LOOP OVER SEMI Processed "); end if; -- On ST'LENGTH > 0 --PUT_LINE("LOOP OVER SEMI after ST'LENGTH 0 "); end PROCESS_SEMI; --PUT_LINE("SEMI Processed "); -- I = " & INTEGER'IMAGE(I) --& " S(I) = " & S(I) --); if (L < S'LAST) and then (S(L) = ';') then -- ?????? --PUT_LINE("Clear L = " & INTEGER'IMAGE(L)); L := L + 1; end if; JS := L; -- Odd but necessary ????? for J in L..S'LAST loop exit when J >= S'LAST; if S(J) = ' ' then L := L + 1; else exit; end if; end loop; START_SEMI := L; --PUT_LINE("SEMI Processed Completely L = " & INTEGER'IMAGE(L) & " S'LAST = " & INTEGER'IMAGE(S'LAST)); exit when L >= S'LAST; end loop; -- loop over MEAN --PUT_LINE("SEMI loop Processed"); if EWA(N) = NULL_EWDS_RECORD then N := N -1; -- Clean up danglers end if; if EWA(N) = NULL_EWDS_RECORD then -- AGAIN!!!!!! N := N -1; -- Clean up danglers end if; exception when others => if (S(S'LAST) /= ')') or (S(S'LAST) /= ']') then -- KLUDGE NEW_LINE; PUT_LINE("Extract Exception WW = " & INTEGER'IMAGE(WW) & " LINE = " & INTEGER'IMAGE(LINE_NUMBER)); PUT_LINE(S); PUT(DE); NEW_LINE; end if; end EXTRACT_WORDS; begin PUT_LINE( "Takes a DICTLINE.D_K and produces a EWDSLIST.D_K "); PUT("What dictionary to list, GENERAL or SPECIAL =>"); GET_LINE(LINE, LAST); if LAST > 0 then if TRIM(LINE(1..LAST))(1) = 'G' or else TRIM(LINE(1..LAST))(1) = 'g' then D_K := GENERAL; -- LINE_NUMBER := LINE_NUMBER + 1; -- Because of ESSE DICTFILE line -- no longer elsif TRIM(LINE(1..LAST))(1) = 'S' or else TRIM(LINE(1..LAST))(1) = 's' then D_K := SPECIAL; else PUT_LINE("No such dictionary"); raise TEXT_IO.DATA_ERROR; end if; end if; --PUT_LINE("OPENING " & -- ADD_FILE_NAME_EXTENSION(DICT_LINE_NAME, DICTIONARY_KIND'IMAGE(D_K))); OPEN(INPUT, IN_FILE, ADD_FILE_NAME_EXTENSION(DICT_LINE_NAME, DICTIONARY_KIND'IMAGE(D_K))); --PUT_LINE("OPEN"); if not PORTING then --PUT_LINE("CREATING"); CREATE(OUTPUT, OUT_FILE, ADD_FILE_NAME_EXTENSION("EWDSLIST", DICTIONARY_KIND'IMAGE(D_K))); if CHECKING then CREATE(CHECK, OUT_FILE, "CHECKEWD."); end if; --PUT_LINE("CREATED"); end if; -- Now do the rest OVER_LINES: while not END_OF_FILE(INPUT) loop S := BLANK_LINE; GET_LINE(INPUT, S, LAST); if TRIM(S(1..LAST)) /= "" then -- If non-blank line L := 0; FORM_DE: begin DE.STEMS(1) := S(START_STEM_1..MAX_STEM_SIZE); --NEW_LINE; PUT(DE.STEMS(1)); DE.STEMS(2) := S(START_STEM_2..START_STEM_2+MAX_STEM_SIZE-1); DE.STEMS(3) := S(START_STEM_3..START_STEM_3+MAX_STEM_SIZE-1); DE.STEMS(4) := S(START_STEM_4..START_STEM_4+MAX_STEM_SIZE-1); --PUT('#'); PUT(INTEGER'IMAGE(L)); PUT(INTEGER'IMAGE(LAST)); --PUT('@'); GET(S(START_PART..LAST), DE.PART, L); --PUT('%'); PUT(INTEGER'IMAGE(L)); PUT(INTEGER'IMAGE(LAST)); --PUT('&'); PUT(S(L+1..LAST)); PUT('3'); --GET(S(L+1..LAST), DE.PART.POFS, DE.KIND, L); GET(S(L+1..LAST), DE.TRAN.AGE, L); GET(S(L+1..LAST), DE.TRAN.AREA, L); GET(S(L+1..LAST), DE.TRAN.GEO, L); GET(S(L+1..LAST), DE.TRAN.FREQ, L); GET(S(L+1..LAST), DE.TRAN.SOURCE, L); DE.MEAN := HEAD(S(L+2..LAST), MAX_MEANING_SIZE); -- Note that this allows initial blanks -- L+2 skips over the SPACER, required because this is STRING, not ENUM exception when others => NEW_LINE; PUT_LINE("GET Exception LAST = " & INTEGER'IMAGE(LAST)); PUT_LINE(S(1..LAST)); INTEGER_IO.PUT(LINE_NUMBER); NEW_LINE; PUT(DE); NEW_LINE; end FORM_DE; LINE_NUMBER := LINE_NUMBER + 1; if DE.PART.POFS = V and then DE.PART.V.CON.WHICH = 8 then -- V 8 is a kludge for variant forms of verbs that have regular forms elsewhere null; else -- Extract words EXTRACT_WORDS(ADD_HYPHENATED(TRIM(DE.MEAN)), DE.PART.POFS, N, EWA); -- EWORD_SIZE : constant := 38; -- AUX_WORD_SIZE : constant := 9; -- LINE_NUMBER_WIDTH : constant := 10; -- -- type EWDS_RECORD is -- record -- POFS : PART_OF_SPEECH_TYPE := X; -- W : STRING(1..EWORD_SIZE); -- AUX : STRING(1..AUX_WORD_SIZE); -- N : INTEGER; -- end record; for I in 1..N loop if TRIM(EWA(I).W)'LENGTH /= 0 then EWR.W := HEAD(TRIM(EWA(I).W), EWORD_SIZE); EWR.AUX := HEAD("", AUX_WORD_SIZE); EWR.N := LINE_NUMBER; EWR.POFS := DE.PART.POFS; EWR.FREQ := DE.TRAN.FREQ; EWR.SEMI := EWA(I).SEMI; EWR.KIND := EWA(I).KIND; EWR.RANK := 80-FREQUENCY_TYPE'POS(EWR.FREQ)*10 + EWR.KIND + (EWR.SEMI-1)*(-3); if EWR.FREQ = INFLECTIONS_PACKAGE.N then EWR.RANK := EWR.RANK + 25; end if; --PUT(EWA(I)); NEW_LINE; --PUT(EWR); NEW_LINE; PUT(OUTPUT, EWR); -- SET_COL(OUTPUT, 71); -- INTEGER_IO.PUT(OUTPUT, I, 2); NEW_LINE(OUTPUT); if CHECKING then -- Now make the CHECK file PUT(CHECK, EWR.W); SET_COL(CHECK, 25); declare DF : constant STRING := DICTIONARY_FORM(DE); II : INTEGER := 1; begin if DF'LENGTH > 0 then while DF(II) /= ' ' and DF(II) /= '.' and DF(II) /= ',' loop PUT(CHECK, DF(II)); II := II+ 1; exit when II = 19; end loop; end if; end; SET_COL(CHECK, 44); PUT(CHECK, EWR.N, 6); PUT(CHECK, ' '); PUT(CHECK, EWR.POFS); PUT(CHECK, ' '); PUT(CHECK, EWR.FREQ); PUT(CHECK, ' '); PUT(CHECK, EWR.SEMI, 5); PUT(CHECK, ' '); PUT(CHECK, EWR.KIND, 5); PUT(CHECK, ' '); PUT(CHECK, EWR.RANK, 5); PUT(CHECK, ' '); PUT(CHECK, DE.MEAN); NEW_LINE(CHECK); end if; end if; end loop; end if; -- If non-blank line end if; end loop OVER_LINES; PUT_LINE("NUMBER_OF_LINES = " & INTEGER'IMAGE(LINE_NUMBER)); if not PORTING then CLOSE(OUTPUT); if CHECKING then CLOSE(CHECK); end if; end if; exception when TEXT_IO.DATA_ERROR => null; when others => PUT_LINE(S(1..LAST)); INTEGER_IO.PUT(INTEGER(LINE_NUMBER)); NEW_LINE; CLOSE(OUTPUT); if CHECKING then CLOSE(CHECK); end if; end MAKEEWDS;
pragma Ada_2012; pragma Style_Checks (Off); with Interfaces.C; use Interfaces.C; with Interfaces.C.Strings; with Interfaces.C_Streams; package Sensors.libSensors.sensors_sensors_h is SENSORS_API_VERSION : constant := 16#500#; -- /usr/include/sensors/sensors.h:34 -- unsupported macro: SENSORS_CHIP_NAME_PREFIX_ANY NULL SENSORS_CHIP_NAME_ADDR_ANY : constant := (-1); -- /usr/include/sensors/sensors.h:37 SENSORS_BUS_TYPE_ANY : constant := (-1); -- /usr/include/sensors/sensors.h:39 SENSORS_BUS_TYPE_I2C : constant := 0; -- /usr/include/sensors/sensors.h:40 SENSORS_BUS_TYPE_ISA : constant := 1; -- /usr/include/sensors/sensors.h:41 SENSORS_BUS_TYPE_PCI : constant := 2; -- /usr/include/sensors/sensors.h:42 SENSORS_BUS_TYPE_SPI : constant := 3; -- /usr/include/sensors/sensors.h:43 SENSORS_BUS_TYPE_VIRTUAL : constant := 4; -- /usr/include/sensors/sensors.h:44 SENSORS_BUS_TYPE_ACPI : constant := 5; -- /usr/include/sensors/sensors.h:45 SENSORS_BUS_TYPE_HID : constant := 6; -- /usr/include/sensors/sensors.h:46 SENSORS_BUS_TYPE_MDIO : constant := 7; -- /usr/include/sensors/sensors.h:47 SENSORS_BUS_TYPE_SCSI : constant := 8; -- /usr/include/sensors/sensors.h:48 SENSORS_BUS_NR_ANY : constant := (-1); -- /usr/include/sensors/sensors.h:49 SENSORS_BUS_NR_IGNORE : constant := (-2); -- /usr/include/sensors/sensors.h:50 SENSORS_MODE_R : constant := 1; -- /usr/include/sensors/sensors.h:134 SENSORS_MODE_W : constant := 2; -- /usr/include/sensors/sensors.h:135 SENSORS_COMPUTE_MAPPING : constant := 4; -- /usr/include/sensors/sensors.h:136 -- sensors.h - Part of libsensors, a Linux library for reading sensor data. -- Copyright (c) 1998, 1999 Frodo Looijaard <frodol@dds.nl> -- Copyright (C) 2007-2014 Jean Delvare <jdelvare@suse.de> -- This library is free software; you can redistribute it and/or -- modify it under the terms of the GNU Lesser General Public -- License as published by the Free Software Foundation; either -- version 2.1 of the License, or (at your option) any later version. -- This library is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- GNU Lesser General Public License for more details. -- You should have received a copy of the GNU General Public License -- along with this program; if not, write to the Free Software -- Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, -- MA 02110-1301 USA. -- -- Publicly accessible library functions -- libsensors API version define, first digit is the major version (changed -- when the API or ABI breaks), the third digit is incremented to track small -- API additions like new flags / enum values. The second digit is for tracking -- larger additions like new methods. libsensors_version : Interfaces.C.Strings.chars_ptr -- /usr/include/sensors/sensors.h:56 with Import => True, Convention => C, External_Name => "libsensors_version"; type sensors_bus_id is record c_type : aliased short; -- /usr/include/sensors/sensors.h:59 nr : aliased short; -- /usr/include/sensors/sensors.h:60 end record with Convention => C_Pass_By_Copy; -- /usr/include/sensors/sensors.h:58 -- A chip name is encoded in this structure type sensors_chip_name is record prefix : Interfaces.C.Strings.chars_ptr; -- /usr/include/sensors/sensors.h:65 bus : aliased sensors_bus_id; -- /usr/include/sensors/sensors.h:66 addr : aliased int; -- /usr/include/sensors/sensors.h:67 path : Interfaces.C.Strings.chars_ptr; -- /usr/include/sensors/sensors.h:68 end record with Convention => C_Pass_By_Copy; -- /usr/include/sensors/sensors.h:64 -- Load the configuration file and the detected chips list. If this -- returns a value unequal to zero, you are in trouble; you can not -- assume anything will be initialized properly. If you want to -- reload the configuration file, call sensors_cleanup() below before -- calling sensors_init() again. function sensors_init (input : Interfaces.C_Streams.FILEs) return int -- /usr/include/sensors/sensors.h:76 with Import => True, Convention => C, External_Name => "sensors_init"; -- Clean-up function: You can't access anything after -- this, until the next sensors_init() call! procedure sensors_cleanup -- /usr/include/sensors/sensors.h:80 with Import => True, Convention => C, External_Name => "sensors_cleanup"; -- Parse a chip name to the internal representation. Return 0 on success, <0 -- on error. function sensors_parse_chip_name (orig_name : Interfaces.C.Strings.chars_ptr; res : access sensors_chip_name) return int -- /usr/include/sensors/sensors.h:84 with Import => True, Convention => C, External_Name => "sensors_parse_chip_name"; -- Free memory allocated for the internal representation of a chip name. procedure sensors_free_chip_name (chip : access sensors_chip_name) -- /usr/include/sensors/sensors.h:87 with Import => True, Convention => C, External_Name => "sensors_free_chip_name"; -- Print a chip name from its internal representation. Note that chip should -- not contain wildcard values! Return the number of characters printed on -- success (same as snprintf), <0 on error. function sensors_snprintf_chip_name (str : Interfaces.C.Strings.chars_ptr; size : size_t; chip : access constant sensors_chip_name) return int -- /usr/include/sensors/sensors.h:92 with Import => True, Convention => C, External_Name => "sensors_snprintf_chip_name"; -- This function returns the adapter name of a bus, -- as used within the sensors_chip_name structure. If it could not be found, -- it returns NULL function sensors_get_adapter_name (bus : access constant sensors_bus_id) return Interfaces.C.Strings.chars_ptr -- /usr/include/sensors/sensors.h:98 with Import => True, Convention => C, External_Name => "sensors_get_adapter_name"; type sensors_feature; -- Look up the label for a given feature. Note that chip should not -- contain wildcard values! The returned string is newly allocated (free it -- yourself). On failure, NULL is returned. -- If no label exists for this feature, its name is returned itself. function sensors_get_label (name : access constant sensors_chip_name; feature : access constant sensors_feature) return Interfaces.C.Strings.chars_ptr -- /usr/include/sensors/sensors.h:106 with Import => True, Convention => C, External_Name => "sensors_get_label"; -- Read the value of a subfeature of a certain chip. Note that chip should not -- contain wildcard values! This function will return 0 on success, and <0 -- on failure. function sensors_get_value (name : access constant sensors_chip_name; subfeat_nr : int; value : access double) return int -- /usr/include/sensors/sensors.h:112 with Import => True, Convention => C, External_Name => "sensors_get_value"; -- Set the value of a subfeature of a certain chip. Note that chip should not -- contain wildcard values! This function will return 0 on success, and <0 -- on failure. function sensors_set_value (name : access constant sensors_chip_name; subfeat_nr : int; value : double) return int -- /usr/include/sensors/sensors.h:118 with Import => True, Convention => C, External_Name => "sensors_set_value"; -- Execute all set statements for this particular chip. The chip may contain -- wildcards! This function will return 0 on success, and <0 on failure. function sensors_do_chip_sets (name : access constant sensors_chip_name) return int -- /usr/include/sensors/sensors.h:123 with Import => True, Convention => C, External_Name => "sensors_do_chip_sets"; -- This function returns all detected chips that match a given chip name, -- one by one. If no chip name is provided, all detected chips are returned. -- To start at the beginning of the list, use 0 for nr; NULL is returned if -- we are at the end of the list. Do not try to change these chip names, as -- they point to internal structures! function sensors_get_detected_chips (match : access constant sensors_chip_name; nr : access int) return access constant sensors_chip_name -- /usr/include/sensors/sensors.h:130 with Import => True, Convention => C, External_Name => "sensors_get_detected_chips"; -- These defines are used in the flags field of sensors_subfeature subtype sensors_feature_type is unsigned; SENSORS_FEATURE_IN : constant unsigned := 0; SENSORS_FEATURE_FAN : constant unsigned := 1; SENSORS_FEATURE_TEMP : constant unsigned := 2; SENSORS_FEATURE_POWER : constant unsigned := 3; SENSORS_FEATURE_ENERGY : constant unsigned := 4; SENSORS_FEATURE_CURR : constant unsigned := 5; SENSORS_FEATURE_HUMIDITY : constant unsigned := 6; SENSORS_FEATURE_MAX_MAIN : constant unsigned := 7; SENSORS_FEATURE_VID : constant unsigned := 16; SENSORS_FEATURE_INTRUSION : constant unsigned := 17; SENSORS_FEATURE_MAX_OTHER : constant unsigned := 18; SENSORS_FEATURE_BEEP_ENABLE : constant unsigned := 24; SENSORS_FEATURE_MAX : constant unsigned := 25; SENSORS_FEATURE_UNKNOWN : constant unsigned := 2147483647; -- /usr/include/sensors/sensors.h:138 -- All the sensor types (in, fan, temp, vid) are a multiple of 0x100 apart, -- and sensor subfeatures which have no compute mapping have bit 7 set. subtype sensors_subfeature_type is unsigned; SENSORS_SUBFEATURE_IN_INPUT : constant unsigned := 0; SENSORS_SUBFEATURE_IN_MIN : constant unsigned := 1; SENSORS_SUBFEATURE_IN_MAX : constant unsigned := 2; SENSORS_SUBFEATURE_IN_LCRIT : constant unsigned := 3; SENSORS_SUBFEATURE_IN_CRIT : constant unsigned := 4; SENSORS_SUBFEATURE_IN_AVERAGE : constant unsigned := 5; SENSORS_SUBFEATURE_IN_LOWEST : constant unsigned := 6; SENSORS_SUBFEATURE_IN_HIGHEST : constant unsigned := 7; SENSORS_SUBFEATURE_IN_ALARM : constant unsigned := 128; SENSORS_SUBFEATURE_IN_MIN_ALARM : constant unsigned := 129; SENSORS_SUBFEATURE_IN_MAX_ALARM : constant unsigned := 130; SENSORS_SUBFEATURE_IN_BEEP : constant unsigned := 131; SENSORS_SUBFEATURE_IN_LCRIT_ALARM : constant unsigned := 132; SENSORS_SUBFEATURE_IN_CRIT_ALARM : constant unsigned := 133; SENSORS_SUBFEATURE_FAN_INPUT : constant unsigned := 256; SENSORS_SUBFEATURE_FAN_MIN : constant unsigned := 257; SENSORS_SUBFEATURE_FAN_MAX : constant unsigned := 258; SENSORS_SUBFEATURE_FAN_ALARM : constant unsigned := 384; SENSORS_SUBFEATURE_FAN_FAULT : constant unsigned := 385; SENSORS_SUBFEATURE_FAN_DIV : constant unsigned := 386; SENSORS_SUBFEATURE_FAN_BEEP : constant unsigned := 387; SENSORS_SUBFEATURE_FAN_PULSES : constant unsigned := 388; SENSORS_SUBFEATURE_FAN_MIN_ALARM : constant unsigned := 389; SENSORS_SUBFEATURE_FAN_MAX_ALARM : constant unsigned := 390; SENSORS_SUBFEATURE_TEMP_INPUT : constant unsigned := 512; SENSORS_SUBFEATURE_TEMP_MAX : constant unsigned := 513; SENSORS_SUBFEATURE_TEMP_MAX_HYST : constant unsigned := 514; SENSORS_SUBFEATURE_TEMP_MIN : constant unsigned := 515; SENSORS_SUBFEATURE_TEMP_CRIT : constant unsigned := 516; SENSORS_SUBFEATURE_TEMP_CRIT_HYST : constant unsigned := 517; SENSORS_SUBFEATURE_TEMP_LCRIT : constant unsigned := 518; SENSORS_SUBFEATURE_TEMP_EMERGENCY : constant unsigned := 519; SENSORS_SUBFEATURE_TEMP_EMERGENCY_HYST : constant unsigned := 520; SENSORS_SUBFEATURE_TEMP_LOWEST : constant unsigned := 521; SENSORS_SUBFEATURE_TEMP_HIGHEST : constant unsigned := 522; SENSORS_SUBFEATURE_TEMP_MIN_HYST : constant unsigned := 523; SENSORS_SUBFEATURE_TEMP_LCRIT_HYST : constant unsigned := 524; SENSORS_SUBFEATURE_TEMP_ALARM : constant unsigned := 640; SENSORS_SUBFEATURE_TEMP_MAX_ALARM : constant unsigned := 641; SENSORS_SUBFEATURE_TEMP_MIN_ALARM : constant unsigned := 642; SENSORS_SUBFEATURE_TEMP_CRIT_ALARM : constant unsigned := 643; SENSORS_SUBFEATURE_TEMP_FAULT : constant unsigned := 644; SENSORS_SUBFEATURE_TEMP_TYPE : constant unsigned := 645; SENSORS_SUBFEATURE_TEMP_OFFSET : constant unsigned := 646; SENSORS_SUBFEATURE_TEMP_BEEP : constant unsigned := 647; SENSORS_SUBFEATURE_TEMP_EMERGENCY_ALARM : constant unsigned := 648; SENSORS_SUBFEATURE_TEMP_LCRIT_ALARM : constant unsigned := 649; SENSORS_SUBFEATURE_POWER_AVERAGE : constant unsigned := 768; SENSORS_SUBFEATURE_POWER_AVERAGE_HIGHEST : constant unsigned := 769; SENSORS_SUBFEATURE_POWER_AVERAGE_LOWEST : constant unsigned := 770; SENSORS_SUBFEATURE_POWER_INPUT : constant unsigned := 771; SENSORS_SUBFEATURE_POWER_INPUT_HIGHEST : constant unsigned := 772; SENSORS_SUBFEATURE_POWER_INPUT_LOWEST : constant unsigned := 773; SENSORS_SUBFEATURE_POWER_CAP : constant unsigned := 774; SENSORS_SUBFEATURE_POWER_CAP_HYST : constant unsigned := 775; SENSORS_SUBFEATURE_POWER_MAX : constant unsigned := 776; SENSORS_SUBFEATURE_POWER_CRIT : constant unsigned := 777; SENSORS_SUBFEATURE_POWER_MIN : constant unsigned := 778; SENSORS_SUBFEATURE_POWER_LCRIT : constant unsigned := 779; SENSORS_SUBFEATURE_POWER_AVERAGE_INTERVAL : constant unsigned := 896; SENSORS_SUBFEATURE_POWER_ALARM : constant unsigned := 897; SENSORS_SUBFEATURE_POWER_CAP_ALARM : constant unsigned := 898; SENSORS_SUBFEATURE_POWER_MAX_ALARM : constant unsigned := 899; SENSORS_SUBFEATURE_POWER_CRIT_ALARM : constant unsigned := 900; SENSORS_SUBFEATURE_POWER_MIN_ALARM : constant unsigned := 901; SENSORS_SUBFEATURE_POWER_LCRIT_ALARM : constant unsigned := 902; SENSORS_SUBFEATURE_ENERGY_INPUT : constant unsigned := 1024; SENSORS_SUBFEATURE_CURR_INPUT : constant unsigned := 1280; SENSORS_SUBFEATURE_CURR_MIN : constant unsigned := 1281; SENSORS_SUBFEATURE_CURR_MAX : constant unsigned := 1282; SENSORS_SUBFEATURE_CURR_LCRIT : constant unsigned := 1283; SENSORS_SUBFEATURE_CURR_CRIT : constant unsigned := 1284; SENSORS_SUBFEATURE_CURR_AVERAGE : constant unsigned := 1285; SENSORS_SUBFEATURE_CURR_LOWEST : constant unsigned := 1286; SENSORS_SUBFEATURE_CURR_HIGHEST : constant unsigned := 1287; SENSORS_SUBFEATURE_CURR_ALARM : constant unsigned := 1408; SENSORS_SUBFEATURE_CURR_MIN_ALARM : constant unsigned := 1409; SENSORS_SUBFEATURE_CURR_MAX_ALARM : constant unsigned := 1410; SENSORS_SUBFEATURE_CURR_BEEP : constant unsigned := 1411; SENSORS_SUBFEATURE_CURR_LCRIT_ALARM : constant unsigned := 1412; SENSORS_SUBFEATURE_CURR_CRIT_ALARM : constant unsigned := 1413; SENSORS_SUBFEATURE_HUMIDITY_INPUT : constant unsigned := 1536; SENSORS_SUBFEATURE_VID : constant unsigned := 4096; SENSORS_SUBFEATURE_INTRUSION_ALARM : constant unsigned := 4352; SENSORS_SUBFEATURE_INTRUSION_BEEP : constant unsigned := 4353; SENSORS_SUBFEATURE_BEEP_ENABLE : constant unsigned := 6144; SENSORS_SUBFEATURE_UNKNOWN : constant unsigned := 2147483647; -- /usr/include/sensors/sensors.h:157 -- Data about a single chip feature (or category leader) type sensors_feature is record name : Interfaces.C.Strings.chars_ptr; -- /usr/include/sensors/sensors.h:259 number : aliased int; -- /usr/include/sensors/sensors.h:260 c_type : aliased sensors_feature_type; -- /usr/include/sensors/sensors.h:261 first_subfeature : aliased int; -- /usr/include/sensors/sensors.h:263 padding1 : aliased int; -- /usr/include/sensors/sensors.h:264 end record with Convention => C_Pass_By_Copy; -- /usr/include/sensors/sensors.h:258 -- Members below are for libsensors internal use only -- Data about a single chip subfeature: -- name is the string name used to refer to this subfeature (in config files) -- number is the internal subfeature number, used in many functions to refer -- to this subfeature -- type is the subfeature type -- mapping is the number of a main feature this subfeature belongs to -- (for example subfeatures fan1_input, fan1_min, fan1_div and fan1_alarm -- are mapped to main feature fan1) -- flags is a bitfield, its value is a combination of SENSORS_MODE_R (readable), -- SENSORS_MODE_W (writable) and SENSORS_COMPUTE_MAPPING (affected by the -- computation rules of the main feature) type sensors_subfeature is record name : Interfaces.C.Strings.chars_ptr; -- /usr/include/sensors/sensors.h:279 number : aliased int; -- /usr/include/sensors/sensors.h:280 c_type : aliased sensors_subfeature_type; -- /usr/include/sensors/sensors.h:281 mapping : aliased int; -- /usr/include/sensors/sensors.h:282 flags : aliased unsigned; -- /usr/include/sensors/sensors.h:283 end record with Convention => C_Pass_By_Copy; -- /usr/include/sensors/sensors.h:278 -- This returns all main features of a specific chip. nr is an internally -- used variable. Set it to zero to start at the begin of the list. If no -- more features are found NULL is returned. -- Do not try to change the returned structure; you will corrupt internal -- data structures. function sensors_get_features (name : access constant sensors_chip_name; nr : access int) return access constant sensors_feature -- /usr/include/sensors/sensors.h:292 with Import => True, Convention => C, External_Name => "sensors_get_features"; -- This returns all subfeatures of a given main feature. nr is an internally -- used variable. Set it to zero to start at the begin of the list. If no -- more features are found NULL is returned. -- Do not try to change the returned structure; you will corrupt internal -- data structures. function sensors_get_all_subfeatures (name : access constant sensors_chip_name; feature : access constant sensors_feature; nr : access int) return access constant sensors_subfeature -- /usr/include/sensors/sensors.h:300 with Import => True, Convention => C, External_Name => "sensors_get_all_subfeatures"; -- This returns the subfeature of the given type for a given main feature, -- if it exists, NULL otherwise. -- Do not try to change the returned structure; you will corrupt internal -- data structures. function sensors_get_subfeature (name : access constant sensors_chip_name; feature : access constant sensors_feature; c_type : sensors_subfeature_type) return access constant sensors_subfeature -- /usr/include/sensors/sensors.h:308 with Import => True, Convention => C, External_Name => "sensors_get_subfeature"; end Sensors.libSensors.sensors_sensors_h;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- G N A T . S E C O N D A R Y _ S T A C K _ I N F O -- -- -- -- S p e c -- -- -- -- Copyright (C) 2004-2019, AdaCore -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- This package provides facilities for obtaining information on secondary -- stack usage. See System.Secondary_Stack for documentation. with System.Secondary_Stack; package GNAT.Secondary_Stack_Info is function SS_Get_Max return Long_Long_Integer renames System.Secondary_Stack.SS_Get_Max; end GNAT.Secondary_Stack_Info;
-- part of OpenGLAda, (c) 2017 Felix Krause -- released under the terms of the MIT license, see the file "COPYING" with GL.Buffers; use GL.Buffers; with GL.Immediate; use GL.Immediate; with GL.Fixed.Matrix; use GL.Fixed.Matrix; with GL.Types.Colors; use GL.Types; use GL.Fixed; with GL_Test.Display_Backend; procedure GL_Test.Immediate is use GL.Types.Doubles; begin Display_Backend.Init; Display_Backend.Open_Window (Width => 500, Height => 500); Projection.Load_Identity; Projection.Apply_Orthogonal (-1.0, 1.0, -1.0, 1.0, -1.0, 1.0); while not Display_Backend.Escape_Pressed and Display_Backend.Window_Opened loop Clear (Buffer_Bits'(others => True)); Projection.Push; for I in 1 .. 12 loop declare Token : Input_Token := Start (Line_Strip); begin Set_Color (Colors.Color'(1.0, 0.0, 0.0, 0.0)); Token.Add_Vertex (Vector4'(0.1, 0.4, 0.0, 1.0)); Token.Add_Vertex (Vector4'(0.1, 0.6, 0.0, 1.0)); Token.Add_Vertex (Vector4'(-0.1, 0.6, 0.0, 1.0)); Token.Add_Vertex (Vector4'(-0.1, 0.4, 0.0, 1.0)); end; Projection.Apply_Rotation (360.0 / 12.0, 0.0, 0.0, 1.0); end loop; Projection.Pop; Projection.Apply_Rotation (0.8, 0.0, 0.0, 1.0); GL.Flush; Display_Backend.Swap_Buffers; Display_Backend.Poll_Events; end loop; Display_Backend.Shutdown; end GL_Test.Immediate;
with Primes_IDL_File.PrimeNumberRequest_DataWriter; with Primes_IDL_File.PrimeNumberReply_DataReader; with DDS.Request_Reply.Typed_Requester_Generic; package Primes.PrimeNumberRequester is new DDS.Request_Reply.Typed_Requester_Generic (Request_DataWriters => Primes_IDL_File.PrimeNumberRequest_DataWriter, Reply_DataReaders => Primes_IDL_File.PrimeNumberReply_DataReader);
------------------------------------------------------------------------------ -- -- -- 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$ ------------------------------------------------------------------------------ with AMF.Elements; with AMF.Internals.Element_Collections; with AMF.Internals.Helpers; with AMF.Internals.Tables.UML_Attributes; with AMF.Visitors.UMLDI_Iterators; with AMF.Visitors.UMLDI_Visitors; package body AMF.Internals.UMLDI_UML_Compartmentable_Shapes is --------------------- -- Get_Compartment -- --------------------- overriding function Get_Compartment (Self : not null access constant UMLDI_UML_Compartmentable_Shape_Proxy) return AMF.UMLDI.UML_Compartments.Collections.Ordered_Set_Of_UMLDI_UML_Compartment is begin return AMF.UMLDI.UML_Compartments.Collections.Wrap (AMF.Internals.Element_Collections.Wrap (AMF.Internals.Tables.UML_Attributes.Internal_Get_Compartment (Self.Element))); end Get_Compartment; ----------------- -- Get_Is_Icon -- ----------------- overriding function Get_Is_Icon (Self : not null access constant UMLDI_UML_Compartmentable_Shape_Proxy) return Boolean is begin return AMF.Internals.Tables.UML_Attributes.Internal_Get_Is_Icon (Self.Element); end Get_Is_Icon; ----------------- -- Set_Is_Icon -- ----------------- overriding procedure Set_Is_Icon (Self : not null access UMLDI_UML_Compartmentable_Shape_Proxy; To : Boolean) is begin AMF.Internals.Tables.UML_Attributes.Internal_Set_Is_Icon (Self.Element, To); end Set_Is_Icon; --------------------- -- Get_Local_Style -- --------------------- overriding function Get_Local_Style (Self : not null access constant UMLDI_UML_Compartmentable_Shape_Proxy) return AMF.UMLDI.UML_Styles.UMLDI_UML_Style_Access is begin return AMF.UMLDI.UML_Styles.UMLDI_UML_Style_Access (AMF.Internals.Helpers.To_Element (AMF.Internals.Tables.UML_Attributes.Internal_Get_Local_Style (Self.Element))); end Get_Local_Style; --------------------- -- Set_Local_Style -- --------------------- overriding procedure Set_Local_Style (Self : not null access UMLDI_UML_Compartmentable_Shape_Proxy; To : AMF.UMLDI.UML_Styles.UMLDI_UML_Style_Access) is begin AMF.Internals.Tables.UML_Attributes.Internal_Set_Local_Style (Self.Element, AMF.Internals.Helpers.To_Element (AMF.Elements.Element_Access (To))); end Set_Local_Style; ----------------------- -- Get_Model_Element -- ----------------------- overriding function Get_Model_Element (Self : not null access constant UMLDI_UML_Compartmentable_Shape_Proxy) return AMF.UML.Elements.Collections.Set_Of_UML_Element is begin raise Program_Error; return X : AMF.UML.Elements.Collections.Set_Of_UML_Element; -- return -- AMF.UML.Elements.Collections.Wrap -- (AMF.Internals.Element_Collections.Wrap -- (AMF.Internals.Tables.UML_Attributes.Internal_Get_Model_Element -- (Self.Element))); end Get_Model_Element; ----------------------- -- Get_Model_Element -- ----------------------- overriding function Get_Model_Element (Self : not null access constant UMLDI_UML_Compartmentable_Shape_Proxy) return AMF.CMOF.Elements.CMOF_Element_Access is begin return AMF.CMOF.Elements.CMOF_Element_Access (AMF.Internals.Helpers.To_Element (AMF.Internals.Tables.UML_Attributes.Internal_Get_Model_Element (Self.Element))); end Get_Model_Element; --------------------- -- Get_Local_Style -- --------------------- overriding function Get_Local_Style (Self : not null access constant UMLDI_UML_Compartmentable_Shape_Proxy) return AMF.DI.Styles.DI_Style_Access is begin return AMF.DI.Styles.DI_Style_Access (AMF.Internals.Helpers.To_Element (AMF.Internals.Tables.UML_Attributes.Internal_Get_Local_Style (Self.Element))); end Get_Local_Style; --------------------- -- Set_Local_Style -- --------------------- overriding procedure Set_Local_Style (Self : not null access UMLDI_UML_Compartmentable_Shape_Proxy; To : AMF.DI.Styles.DI_Style_Access) is begin AMF.Internals.Tables.UML_Attributes.Internal_Set_Local_Style (Self.Element, AMF.Internals.Helpers.To_Element (AMF.Elements.Element_Access (To))); end Set_Local_Style; ------------------- -- Enter_Element -- ------------------- overriding procedure Enter_Element (Self : not null access constant UMLDI_UML_Compartmentable_Shape_Proxy; Visitor : in out AMF.Visitors.Abstract_Visitor'Class; Control : in out AMF.Visitors.Traverse_Control) is begin if Visitor in AMF.Visitors.UMLDI_Visitors.UMLDI_Visitor'Class then AMF.Visitors.UMLDI_Visitors.UMLDI_Visitor'Class (Visitor).Enter_UML_Compartmentable_Shape (AMF.UMLDI.UML_Compartmentable_Shapes.UMLDI_UML_Compartmentable_Shape_Access (Self), Control); end if; end Enter_Element; ------------------- -- Leave_Element -- ------------------- overriding procedure Leave_Element (Self : not null access constant UMLDI_UML_Compartmentable_Shape_Proxy; Visitor : in out AMF.Visitors.Abstract_Visitor'Class; Control : in out AMF.Visitors.Traverse_Control) is begin if Visitor in AMF.Visitors.UMLDI_Visitors.UMLDI_Visitor'Class then AMF.Visitors.UMLDI_Visitors.UMLDI_Visitor'Class (Visitor).Leave_UML_Compartmentable_Shape (AMF.UMLDI.UML_Compartmentable_Shapes.UMLDI_UML_Compartmentable_Shape_Access (Self), Control); end if; end Leave_Element; ------------------- -- Visit_Element -- ------------------- overriding procedure Visit_Element (Self : not null access constant UMLDI_UML_Compartmentable_Shape_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.UMLDI_Iterators.UMLDI_Iterator'Class then AMF.Visitors.UMLDI_Iterators.UMLDI_Iterator'Class (Iterator).Visit_UML_Compartmentable_Shape (Visitor, AMF.UMLDI.UML_Compartmentable_Shapes.UMLDI_UML_Compartmentable_Shape_Access (Self), Control); end if; end Visit_Element; end AMF.Internals.UMLDI_UML_Compartmentable_Shapes;
------------------------------------------------------------------------------ -- G E L A A S I S -- -- ASIS implementation for Gela project, a portable Ada compiler -- -- http://gela.ada-ru.org -- -- - - - - - - - - - - - - - - - -- -- Read copyright and license at the end of this file -- ------------------------------------------------------------------------------ -- $Revision: 209 $ $Date: 2013-11-30 21:03:24 +0200 (Сб., 30 нояб. 2013) $ -- Purpose: -- Decoder constructor. with Gela.Encodings; function Gela.Decoders.Create (Encoding : Encodings.Encoding) return Decoder_Access; ------------------------------------------------------------------------------ -- Copyright (c) 2008, 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. -- ------------------------------------------------------------------------------
----------------------------------------------------------------------- -- html-pages -- HTML Page Components -- Copyright (C) 2011, 2014, 2019 Stephane Carrez -- Written by Stephane Carrez (Stephane.Carrez@gmail.com) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- with Util.Strings; with Util.Beans.Objects; with ASF.Utils; with ASF.Requests; -- The <b>Pages</b> package implements various components used when building an HTML page. -- package body ASF.Components.Html.Pages is BODY_ATTRIBUTE_NAMES : Util.Strings.String_Set.Set; HEAD_ATTRIBUTE_NAMES : Util.Strings.String_Set.Set; -- ------------------------------ -- Head Component -- ------------------------------ -- ------------------------------ -- Encode the HTML head element. -- ------------------------------ overriding procedure Encode_Begin (UI : in UIHead; Context : in out Contexts.Faces.Faces_Context'Class) is Writer : constant Response_Writer_Access := Context.Get_Response_Writer; begin Writer.Start_Element ("head"); UI.Render_Attributes (Context, HEAD_ATTRIBUTE_NAMES, Writer); end Encode_Begin; -- ------------------------------ -- Terminate the HTML head element. Before closing the head, generate the resource -- links that have been queued for the head generation. -- ------------------------------ overriding procedure Encode_End (UI : in UIHead; Context : in out Contexts.Faces.Faces_Context'Class) is pragma Unreferenced (UI); Writer : constant Response_Writer_Access := Context.Get_Response_Writer; begin Writer.Write_Scripts; Writer.End_Element ("head"); end Encode_End; -- ------------------------------ -- Encode the HTML body element. -- ------------------------------ overriding procedure Encode_Begin (UI : in UIBody; Context : in out Contexts.Faces.Faces_Context'Class) is Writer : constant Response_Writer_Access := Context.Get_Response_Writer; begin Writer.Start_Element ("body"); UI.Render_Attributes (Context, BODY_ATTRIBUTE_NAMES, Writer); end Encode_Begin; -- ------------------------------ -- Terminate the HTML body element. Before closing the body, generate the inclusion -- of differed resources (pending javascript, inclusion of javascript files) -- ------------------------------ overriding procedure Encode_End (UI : in UIBody; Context : in out Contexts.Faces.Faces_Context'Class) is pragma Unreferenced (UI); Writer : constant Response_Writer_Access := Context.Get_Response_Writer; begin Writer.Write_Scripts; Writer.End_Element ("body"); end Encode_End; -- ------------------------------ -- Get the link to be rendered in the <b>href</b> attribute. -- ------------------------------ function Get_Link (UI : in UIOutputStylesheet; Context : in Faces_Context'Class) return String is Req : constant ASF.Requests.Request_Access := Context.Get_Request; Name : constant String := UI.Get_Attribute ("name", Context, ""); Lib : constant String := UI.Get_Attribute ("library", Context, ""); Ctx : constant String := Req.Get_Context_Path; begin if Lib'Length > 0 then return Ctx & "/resources/" & Lib & "/" & Name; else return Ctx & "/resources/" & Name; end if; end Get_Link; -- ------------------------------ -- Terminate the HTML body element. Before closing the body, generate the inclusion -- of differed resources (pending javascript, inclusion of javascript files) -- ------------------------------ overriding procedure Encode_End (UI : in UIOutputStylesheet; Context : in out Contexts.Faces.Faces_Context'Class) is Writer : constant Response_Writer_Access := Context.Get_Response_Writer; begin if not UI.Is_Rendered (Context) then return; end if; Writer.Start_Element ("link"); Writer.Write_Attribute ("type", "text/css"); Writer.Write_Attribute ("rel", "stylesheet"); Writer.Write_Attribute ("href", UI.Get_Link (Context)); Writer.End_Element ("link"); end Encode_End; -- ------------------------------ -- Encode the DOCTYPE element. -- ------------------------------ overriding procedure Encode_Begin (UI : in UIDoctype; Context : in out Contexts.Faces.Faces_Context'Class) is Writer : constant Response_Writer_Access := Context.Get_Response_Writer; begin if UI.Is_Rendered (Context) then Writer.Write ("<!DOCTYPE "); Writer.Write (UI.Get_Attribute ("rootElement", Context, "")); declare Public : constant Util.Beans.Objects.Object := UI.Get_Attribute (Context, "public"); System : constant Util.Beans.Objects.Object := UI.Get_Attribute (Context, "system"); begin if not Util.Beans.Objects.Is_Null (Public) then Writer.Write (" PUBLIC """); Writer.Write (Public); Writer.Write ('"'); end if; if not Util.Beans.Objects.Is_Null (System) then Writer.Write (" """); Writer.Write (System); Writer.Write ('"'); end if; end; Writer.Write ('>'); Writer.Write (ASCII.LF); end if; end Encode_Begin; begin Utils.Set_Head_Attributes (HEAD_ATTRIBUTE_NAMES); Utils.Set_Text_Attributes (BODY_ATTRIBUTE_NAMES); Utils.Set_Body_Attributes (BODY_ATTRIBUTE_NAMES); end ASF.Components.Html.Pages;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- A D A . T E X T _ I O . E N U M E R A T I O N _ A U X -- -- -- -- S p e c -- -- -- -- Copyright (C) 1992-2019, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- This package contains the routines for Ada.Text_IO.Enumeration_IO -- that are shared among separate instantiations of this package. private package Ada.Text_IO.Enumeration_Aux is procedure Get_Enum_Lit (File : File_Type; Buf : out String; Buflen : out Natural); -- Reads an enumeration literal value from the file, folds to upper case, -- and stores the result in Buf, setting Buflen to the number of stored -- characters (Buf has a lower bound of 1). If more than Buflen characters -- are present in the literal, Data_Error is raised. procedure Scan_Enum_Lit (From : String; Start : out Natural; Stop : out Natural); -- Scans an enumeration literal at the start of From, skipping any leading -- spaces. Sets Start to the first character, Stop to the last character. -- Raises End_Error if no enumeration literal is found. procedure Put (File : File_Type; Item : String; Width : Field; Set : Type_Set); -- Outputs the enumeration literal image stored in Item to the given File, -- using the given Width and Set parameters (Item is always in upper case). procedure Puts (To : out String; Item : String; Set : Type_Set); -- Stores the enumeration literal image stored in Item to the string To, -- padding with trailing spaces if necessary to fill To. Set is used to end Ada.Text_IO.Enumeration_Aux;
-- { dg-do run } -- with Init12; use Init12; with Text_IO; use Text_IO; with Dump; procedure T12 is Local_A11 : Arr11; Local_A22 : Arr22; begin Local_A11(1,1) := My_A11(1,1) + 1; Local_A11(1,2) := My_A11(1,2) + 1; Local_A11(2,1) := My_A11(2,1) + 1; Local_A11(2,2) := My_A11(2,2) + 1; Put ("Local_A11 :"); Dump (Local_A11'Address, Arr11'Max_Size_In_Storage_Elements); New_Line; -- { dg-output "Local_A11 : 13 00 ab 00 35 00 cd 00 13 00 ab 00 35 00 cd 00.*\n" } Local_A22(1,1) := My_A22(1,1) + 1; Local_A22(1,2) := My_A22(1,2) + 1; Local_A22(2,1) := My_A22(2,1) + 1; Local_A22(2,2) := My_A22(2,2) + 1; Put ("Local_A22 :"); Dump (Local_A22'Address, Arr22'Max_Size_In_Storage_Elements); New_Line; -- { dg-output "Local_A22 : 00 ab 00 13 00 cd 00 35 00 ab 00 13 00 cd 00 35.*\n" } Local_A11 := (1 => (16#AB0012#, 16#CD0034#), 2 => (16#AB0012#, 16#CD0034#)); Put ("Local_A11 :"); Dump (Local_A11'Address, Arr11'Max_Size_In_Storage_Elements); New_Line; -- { dg-output "Local_A11 : 12 00 ab 00 34 00 cd 00 12 00 ab 00 34 00 cd 00.*\n" } Local_A22 := (1 => (16#AB0012#, 16#CD0034#), 2 => (16#AB0012#, 16#CD0034#)); Put ("Local_A22 :"); Dump (Local_A22'Address, Arr22'Max_Size_In_Storage_Elements); New_Line; -- { dg-output "Local_A22 : 00 ab 00 12 00 cd 00 34 00 ab 00 12 00 cd 00 34.*\n" } Local_A11(1,1) := Local_A11(1,1) + 1; Local_A11(1,2) := Local_A11(1,2) + 1; Local_A11(2,1) := Local_A11(2,1) + 1; Local_A11(2,2) := Local_A11(2,2) + 1; Put ("Local_A11 :"); Dump (Local_A11'Address, Arr11'Max_Size_In_Storage_Elements); New_Line; -- { dg-output "Local_A11 : 13 00 ab 00 35 00 cd 00 13 00 ab 00 35 00 cd 00.*\n" } Local_A22(1,1) := Local_A22(1,1) + 1; Local_A22(1,2) := Local_A22(1,2) + 1; Local_A22(2,1) := Local_A22(2,1) + 1; Local_A22(2,2) := Local_A22(2,2) + 1; Put ("Local_A22 :"); Dump (Local_A22'Address, Arr22'Max_Size_In_Storage_Elements); New_Line; -- { dg-output "Local_A22 : 00 ab 00 13 00 cd 00 35 00 ab 00 13 00 cd 00 35.*\n" } end;
package body P is -- The implementation of P, invisible to anybody procedure W (X : in out T); -- Operation used only internally end P;
with Text_IO; procedure Hello_World is begin Text_IO.Put_line("Happy New Year 1396!"); end Hello_World;
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Ada Modeling Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2011-2012, Vadim Godunko <vgodunko@gmail.com> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ -- This file is generated, don't edit it. ------------------------------------------------------------------------------ -- An interval constraint is a constraint that refers to an interval. ------------------------------------------------------------------------------ with AMF.UML.Constraints; limited with AMF.UML.Intervals; package AMF.UML.Interval_Constraints is pragma Preelaborate; type UML_Interval_Constraint is limited interface and AMF.UML.Constraints.UML_Constraint; type UML_Interval_Constraint_Access is access all UML_Interval_Constraint'Class; for UML_Interval_Constraint_Access'Storage_Size use 0; not overriding function Get_Specification (Self : not null access constant UML_Interval_Constraint) return AMF.UML.Intervals.UML_Interval_Access is abstract; -- Getter of IntervalConstraint::specification. -- -- A condition that must be true when evaluated in order for the -- constraint to be satisfied. not overriding procedure Set_Specification (Self : not null access UML_Interval_Constraint; To : AMF.UML.Intervals.UML_Interval_Access) is abstract; -- Setter of IntervalConstraint::specification. -- -- A condition that must be true when evaluated in order for the -- constraint to be satisfied. end AMF.UML.Interval_Constraints;
------------------------------------------------------------------------------ -- -- -- Copyright (C) 2018, Universidad Politécnica de Madrid -- -- -- -- This 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. This software is distributed in the hope that it will be useful, -- -- but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHAN- -- -- TABILITY 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 software; see file -- -- COPYING3. If not, go to http://www.gnu.org/licenses for a complete copy -- -- of the license. -- -- -- ------------------------------------------------------------------------------ -- TTC subsystem. -- This package provides communication facilities -- for telemetry, tracking, and control of the satellite. with TTC_Data; use TTC_Data; package TTC is -- protected procedure Send (TM : TM_Message); -- Send a telemetry message end TTC;
with Program.Parsers.Nodes; use Program.Parsers.Nodes; pragma Style_Checks ("N"); procedure Program.Parsers.On_Reduce_1501 (Self : access Parse_Context; Prod : Anagram.Grammars.Production_Index; Nodes : in out Program.Parsers.Nodes.Node_Array) is begin case Prod is when 1501 => Nodes (1) := Self.Factory. Interface_Type_Definition (No_Token, Nodes (1), Nodes (2)); when 1502 => Nodes (1) := Self.Factory. Interface_Type_Definition (No_Token, Nodes (1), (Self.Factory.Subtype_Mark_Sequence)); when 1503 => Nodes (1) := Self.Factory. Element_Iterator_Specification (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6)); when 1504 => Nodes (1) := Self.Factory. Element_Iterator_Specification (Nodes (1), Nodes (2), Nodes (3), Nodes (4), No_Token, Nodes (5)); when 1505 => Nodes (1) := Self.Factory. Element_Iterator_Specification (Nodes (1), No_Token, None, Nodes (2), Nodes (3), Nodes (4)); when 1506 => Nodes (1) := Self.Factory. Element_Iterator_Specification (Nodes (1), No_Token, None, Nodes (2), No_Token, Nodes (3)); when 1507 => declare List : Node := Nodes (3); begin Self.Factory.Prepend_Discriminant_Specification (List, Nodes (2)); Nodes (1) := Self.Factory.Known_Discriminant_Part (Nodes (1), List, Nodes (4)); end; when 1508 => declare List : Node := Self. Factory.Discriminant_Specification_Sequence; begin Self.Factory.Prepend_Discriminant_Specification (List, Nodes (2)); Nodes (1) := Self.Factory.Known_Discriminant_Part (Nodes (1), List, Nodes (3)); end; when 1509 => Nodes (1) := Nodes (2); when 1510 => declare List : Node := Nodes (1); begin Self.Factory.Append_Defining_Identifier (List, Nodes (2)); Nodes (1) := List; end; when 1511 => declare List : Node := Self. Factory.Defining_Identifier_Sequence; begin Self.Factory.Append_Defining_Identifier (List, Nodes (1)); Nodes (1) := List; end; when 1512 => Nodes (1) := Self.Factory.Compilation_Unit_Declaration (Nodes (1), Nodes (2), Nodes (3)); when 1513 => Nodes (1) := Self.Factory.Compilation_Unit_Declaration (Nodes (1), No_Token, Nodes (2)); when 1514 => Nodes (1) := Self.Factory.Compilation_Unit_Declaration ((Self.Factory.Context_Item_Sequence), Nodes (1), Nodes (2)); when 1515 => Nodes (1) := Self.Factory.Compilation_Unit_Declaration ((Self.Factory.Context_Item_Sequence), No_Token, Nodes (1)); when 1516 => Nodes (1) := Self.Factory.Compilation_Unit_Body (Nodes (1), Nodes (2)); when 1517 => Nodes (1) := Self.Factory.Compilation_Unit_Body ((Self.Factory.Context_Item_Sequence), Nodes (1)); when 1518 => null; when 1519 => null; when 1520 => null; when 1521 => null; when 1522 => null; when 1523 => null; when 1524 => null; when 1525 => null; when 1526 => null; when 1527 => null; when 1528 => null; when 1529 => null; when 1530 => Nodes (1) := Self.Factory.Loop_Parameter_Specification (Nodes (1), Nodes (2), Nodes (3), Nodes (4)); when 1531 => Nodes (1) := Self.Factory.Loop_Parameter_Specification (Nodes (1), Nodes (2), No_Token, Nodes (3)); when 1532 => Nodes (1) := Self.Factory.While_Loop_Statement (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), Nodes (8), Nodes (9), Nodes (10)); when 1533 => Nodes (1) := Self.Factory.While_Loop_Statement (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), Nodes (8), No_Token, Nodes (9)); when 1534 => Nodes (1) := Self.Factory.For_Loop_Statement (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), Nodes (8), Nodes (9), Nodes (10)); when 1535 => Nodes (1) := Self.Factory.For_Loop_Statement (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), Nodes (8), No_Token, Nodes (9)); when 1536 => Nodes (1) := Self.Factory.For_Loop_Statement (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), Nodes (8), Nodes (9), Nodes (10)); when 1537 => Nodes (1) := Self.Factory.For_Loop_Statement (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), Nodes (8), No_Token, Nodes (9)); when 1538 => Nodes (1) := Self.Factory.Loop_Statement (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), Nodes (8)); when 1539 => Nodes (1) := Self.Factory.Loop_Statement (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), No_Token, Nodes (7)); when 1540 => Nodes (1) := Self.Factory.While_Loop_Statement (None, No_Token, Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), Nodes (8)); when 1541 => Nodes (1) := Self.Factory.While_Loop_Statement (None, No_Token, Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), No_Token, Nodes (7)); when 1542 => Nodes (1) := Self.Factory.For_Loop_Statement (None, No_Token, Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), Nodes (8)); when 1543 => Nodes (1) := Self.Factory.For_Loop_Statement (None, No_Token, Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), No_Token, Nodes (7)); when 1544 => Nodes (1) := Self.Factory.For_Loop_Statement (None, No_Token, Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), Nodes (8)); when 1545 => Nodes (1) := Self.Factory.For_Loop_Statement (None, No_Token, Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), No_Token, Nodes (7)); when 1546 => Nodes (1) := Self.Factory.Loop_Statement (None, No_Token, Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6)); when 1547 => Nodes (1) := Self.Factory.Loop_Statement (None, No_Token, Nodes (1), Nodes (2), Nodes (3), Nodes (4), No_Token, Nodes (5)); when 1548 => declare List : Node := Nodes (1); begin Self.Factory.Append_Membership_Choice (List, Nodes (3)); Nodes (1) := List; end; when 1549 => declare List : Node := Self.Factory.Membership_Choice_Sequence; begin Self.Factory.Append_Membership_Choice (List, Nodes (2)); Nodes (1) := List; end; when 1550 => null; when 1551 => null; when 1552 => declare List : Node := Nodes (2); begin Self.Factory.Prepend_Membership_Choice (List, Nodes (1)); Nodes (1) := List; end; when 1553 => declare List : Node := Self.Factory.Membership_Choice_Sequence; begin Self.Factory.Prepend_Membership_Choice (List, Nodes (1)); Nodes (1) := List; end; when 1554 => Nodes (1) := Self.Factory.Modular_Type_Definition (Nodes (1), Nodes (2)); when 1555 => null; when 1556 => null; when 1557 => null; when 1558 => null; when 1559 => null; when 1560 => Nodes (1) := Self.Factory.Character_Literal (Nodes (1)); when 1561 => null; when 1562 => declare List : Node := Nodes (1); begin Self.Factory.Append_Name (List, Nodes (3)); Nodes (1) := List; end; when 1563 => declare List : Node := Self.Factory.Name_Sequence; begin Self.Factory.Append_Name (List, Nodes (2)); Nodes (1) := List; end; when 1564 => null; when 1565 => null; when 1566 => Nodes (1) := Self.Factory.Null_Statement (Nodes (1), Nodes (2)); when 1567 => Nodes (1) := Self.Factory.Number_Declaration (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6)); when 1568 => Nodes (1) := Self.Factory.Object_Declaration (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), Nodes (8), Nodes (9)); when 1569 => Nodes (1) := Self.Factory.Object_Declaration (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), (Self.Factory.Aspect_Specification_Sequence), Nodes (8)); when 1570 => Nodes (1) := Self.Factory.Object_Declaration (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), No_Token, None, Nodes (6), Nodes (7)); when 1571 => Nodes (1) := Self.Factory.Object_Declaration (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), No_Token, None, (Self.Factory.Aspect_Specification_Sequence), Nodes (6)); when 1572 => Nodes (1) := Self.Factory.Object_Declaration (Nodes (1), Nodes (2), Nodes (3), No_Token, Nodes (4), Nodes (5), Nodes (6), Nodes (7), Nodes (8)); when 1573 => Nodes (1) := Self.Factory.Object_Declaration (Nodes (1), Nodes (2), Nodes (3), No_Token, Nodes (4), Nodes (5), Nodes (6), (Self.Factory.Aspect_Specification_Sequence), Nodes (7)); when 1574 => Nodes (1) := Self.Factory.Object_Declaration (Nodes (1), Nodes (2), Nodes (3), No_Token, Nodes (4), No_Token, None, Nodes (5), Nodes (6)); when 1575 => Nodes (1) := Self.Factory.Object_Declaration (Nodes (1), Nodes (2), Nodes (3), No_Token, Nodes (4), No_Token, None, (Self.Factory.Aspect_Specification_Sequence), Nodes (5)); when 1576 => Nodes (1) := Self.Factory.Object_Declaration (Nodes (1), Nodes (2), No_Token, Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), Nodes (8)); when 1577 => Nodes (1) := Self.Factory.Object_Declaration (Nodes (1), Nodes (2), No_Token, Nodes (3), Nodes (4), Nodes (5), Nodes (6), (Self.Factory.Aspect_Specification_Sequence), Nodes (7)); when 1578 => Nodes (1) := Self.Factory.Object_Declaration (Nodes (1), Nodes (2), No_Token, Nodes (3), Nodes (4), No_Token, None, Nodes (5), Nodes (6)); when 1579 => Nodes (1) := Self.Factory.Object_Declaration (Nodes (1), Nodes (2), No_Token, Nodes (3), Nodes (4), No_Token, None, (Self.Factory.Aspect_Specification_Sequence), Nodes (5)); when 1580 => Nodes (1) := Self.Factory.Object_Declaration (Nodes (1), Nodes (2), No_Token, No_Token, Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7)); when 1581 => Nodes (1) := Self.Factory.Object_Declaration (Nodes (1), Nodes (2), No_Token, No_Token, Nodes (3), Nodes (4), Nodes (5), (Self.Factory.Aspect_Specification_Sequence), Nodes (6)); when 1582 => Nodes (1) := Self.Factory.Object_Declaration (Nodes (1), Nodes (2), No_Token, No_Token, Nodes (3), No_Token, None, Nodes (4), Nodes (5)); when 1583 => Nodes (1) := Self.Factory.Object_Declaration (Nodes (1), Nodes (2), No_Token, No_Token, Nodes (3), No_Token, None, (Self.Factory.Aspect_Specification_Sequence), Nodes (4)); when 1584 => null; when 1585 => null; when 1586 => null; when 1587 => null; when 1588 => null; when 1589 => null; when 1590 => Nodes (1) := Self.Factory.Object_Renaming_Declaration (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), Nodes (8), Nodes (9)); when 1591 => Nodes (1) := Self.Factory.Object_Renaming_Declaration (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), (Self.Factory.Aspect_Specification_Sequence), Nodes (8)); when 1592 => Nodes (1) := Self.Factory.Object_Renaming_Declaration (Nodes (1), Nodes (2), No_Token, No_Token, Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7)); when 1593 => Nodes (1) := Self.Factory.Object_Renaming_Declaration (Nodes (1), Nodes (2), No_Token, No_Token, Nodes (3), Nodes (4), Nodes (5), (Self.Factory.Aspect_Specification_Sequence), Nodes (6)); when 1594 => Nodes (1) := Self.Factory.Object_Renaming_Declaration (Nodes (1), Nodes (2), No_Token, No_Token, Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7)); when 1595 => Nodes (1) := Self.Factory.Object_Renaming_Declaration (Nodes (1), Nodes (2), No_Token, No_Token, Nodes (3), Nodes (4), Nodes (5), (Self.Factory.Aspect_Specification_Sequence), Nodes (6)); when 1596 => Nodes (1) := Self.Factory.Operator_Symbol (Nodes (1)); when 1597 => Nodes (1) := Self.Factory.Ordinary_Fixed_Point_Definition (Nodes (1), Nodes (2), Nodes (3)); when 1598 => Nodes (1) := Self.Factory.Others_Choice (Nodes (1)); when 1599 => Nodes (1) := Self.Factory.Package_Body (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), Nodes (8), Nodes (9), Nodes (10), Nodes (11), Nodes (12), Nodes (13)); when 1600 => Nodes (1) := Self.Factory.Package_Body (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), Nodes (8), Nodes (9), Nodes (10), Nodes (11), None, Nodes (12)); when 1601 => Nodes (1) := Self.Factory.Package_Body (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), Nodes (8), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (9), Nodes (10), Nodes (11)); when 1602 => Nodes (1) := Self.Factory.Package_Body (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), Nodes (8), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (9), None, Nodes (10)); when 1603 => Nodes (1) := Self.Factory.Package_Body (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), No_Token, (Self.Factory.Statement_Sequence), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (7), Nodes (8), Nodes (9)); when 1604 => Nodes (1) := Self.Factory.Package_Body (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), No_Token, (Self.Factory.Statement_Sequence), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (7), None, Nodes (8)); when 1605 => Nodes (1) := Self.Factory.Package_Body (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), (Self.Factory.Declarative_Item_Sequence), Nodes (6), Nodes (7), Nodes (8), Nodes (9), Nodes (10), Nodes (11), Nodes (12)); when 1606 => Nodes (1) := Self.Factory.Package_Body (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), (Self.Factory.Declarative_Item_Sequence), Nodes (6), Nodes (7), Nodes (8), Nodes (9), Nodes (10), None, Nodes (11)); when 1607 => Nodes (1) := Self.Factory.Package_Body (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), (Self.Factory.Declarative_Item_Sequence), Nodes (6), Nodes (7), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (8), Nodes (9), Nodes (10)); when 1608 => Nodes (1) := Self.Factory.Package_Body (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), (Self.Factory.Declarative_Item_Sequence), Nodes (6), Nodes (7), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (8), None, Nodes (9)); when 1609 => Nodes (1) := Self.Factory.Package_Body (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), (Self.Factory.Declarative_Item_Sequence), No_Token, (Self.Factory.Statement_Sequence), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (6), Nodes (7), Nodes (8)); when 1610 => Nodes (1) := Self.Factory.Package_Body (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), (Self.Factory.Declarative_Item_Sequence), No_Token, (Self.Factory.Statement_Sequence), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (6), None, Nodes (7)); when 1611 => Nodes (1) := Self.Factory.Package_Body (Nodes (1), Nodes (2), Nodes (3), (Self.Factory.Aspect_Specification_Sequence), Nodes (4), Nodes (5), Nodes (6), Nodes (7), Nodes (8), Nodes (9), Nodes (10), Nodes (11), Nodes (12)); when 1612 => Nodes (1) := Self.Factory.Package_Body (Nodes (1), Nodes (2), Nodes (3), (Self.Factory.Aspect_Specification_Sequence), Nodes (4), Nodes (5), Nodes (6), Nodes (7), Nodes (8), Nodes (9), Nodes (10), None, Nodes (11)); when 1613 => Nodes (1) := Self.Factory.Package_Body (Nodes (1), Nodes (2), Nodes (3), (Self.Factory.Aspect_Specification_Sequence), Nodes (4), Nodes (5), Nodes (6), Nodes (7), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (8), Nodes (9), Nodes (10)); when 1614 => Nodes (1) := Self.Factory.Package_Body (Nodes (1), Nodes (2), Nodes (3), (Self.Factory.Aspect_Specification_Sequence), Nodes (4), Nodes (5), Nodes (6), Nodes (7), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (8), None, Nodes (9)); when 1615 => Nodes (1) := Self.Factory.Package_Body (Nodes (1), Nodes (2), Nodes (3), (Self.Factory.Aspect_Specification_Sequence), Nodes (4), Nodes (5), No_Token, (Self.Factory.Statement_Sequence), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (6), Nodes (7), Nodes (8)); when 1616 => Nodes (1) := Self.Factory.Package_Body (Nodes (1), Nodes (2), Nodes (3), (Self.Factory.Aspect_Specification_Sequence), Nodes (4), Nodes (5), No_Token, (Self.Factory.Statement_Sequence), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (6), None, Nodes (7)); when 1617 => Nodes (1) := Self.Factory.Package_Body (Nodes (1), Nodes (2), Nodes (3), (Self.Factory.Aspect_Specification_Sequence), Nodes (4), (Self.Factory.Declarative_Item_Sequence), Nodes (5), Nodes (6), Nodes (7), Nodes (8), Nodes (9), Nodes (10), Nodes (11)); when 1618 => Nodes (1) := Self.Factory.Package_Body (Nodes (1), Nodes (2), Nodes (3), (Self.Factory.Aspect_Specification_Sequence), Nodes (4), (Self.Factory.Declarative_Item_Sequence), Nodes (5), Nodes (6), Nodes (7), Nodes (8), Nodes (9), None, Nodes (10)); when 1619 => Nodes (1) := Self.Factory.Package_Body (Nodes (1), Nodes (2), Nodes (3), (Self.Factory.Aspect_Specification_Sequence), Nodes (4), (Self.Factory.Declarative_Item_Sequence), Nodes (5), Nodes (6), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (7), Nodes (8), Nodes (9)); when 1620 => Nodes (1) := Self.Factory.Package_Body (Nodes (1), Nodes (2), Nodes (3), (Self.Factory.Aspect_Specification_Sequence), Nodes (4), (Self.Factory.Declarative_Item_Sequence), Nodes (5), Nodes (6), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (7), None, Nodes (8)); when 1621 => Nodes (1) := Self.Factory.Package_Body (Nodes (1), Nodes (2), Nodes (3), (Self.Factory.Aspect_Specification_Sequence), Nodes (4), (Self.Factory.Declarative_Item_Sequence), No_Token, (Self.Factory.Statement_Sequence), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (5), Nodes (6), Nodes (7)); when 1622 => Nodes (1) := Self.Factory.Package_Body (Nodes (1), Nodes (2), Nodes (3), (Self.Factory.Aspect_Specification_Sequence), Nodes (4), (Self.Factory.Declarative_Item_Sequence), No_Token, (Self.Factory.Statement_Sequence), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (5), None, Nodes (6)); when 1623 => Nodes (1) := Self.Factory.Package_Body_Stub (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7)); when 1624 => Nodes (1) := Self.Factory.Package_Body_Stub (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), (Self.Factory.Aspect_Specification_Sequence), Nodes (6)); when 1625 => Nodes (1) := Self.Factory.Package_Declaration (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), Nodes (8), Nodes (9), Nodes (10)); when 1626 => Nodes (1) := Self.Factory.Package_Declaration (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), Nodes (8), None, Nodes (9)); when 1627 => Nodes (1) := Self.Factory.Package_Declaration (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), (Self.Factory.Basic_Declarative_Item_Sequence), Nodes (7), Nodes (8), Nodes (9)); when 1628 => Nodes (1) := Self.Factory.Package_Declaration (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), (Self.Factory.Basic_Declarative_Item_Sequence), Nodes (7), None, Nodes (8)); when 1629 => Nodes (1) := Self.Factory.Package_Declaration (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), No_Token, (Self.Factory.Basic_Declarative_Item_Sequence), Nodes (6), Nodes (7), Nodes (8)); when 1630 => Nodes (1) := Self.Factory.Package_Declaration (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), No_Token, (Self.Factory.Basic_Declarative_Item_Sequence), Nodes (6), None, Nodes (7)); when 1631 => Nodes (1) := Self.Factory.Package_Declaration (Nodes (1), Nodes (2), Nodes (3), Nodes (4), (Self.Factory.Basic_Declarative_Item_Sequence), Nodes (5), Nodes (6), Nodes (7), Nodes (8), Nodes (9)); when 1632 => Nodes (1) := Self.Factory.Package_Declaration (Nodes (1), Nodes (2), Nodes (3), Nodes (4), (Self.Factory.Basic_Declarative_Item_Sequence), Nodes (5), Nodes (6), Nodes (7), None, Nodes (8)); when 1633 => Nodes (1) := Self.Factory.Package_Declaration (Nodes (1), Nodes (2), Nodes (3), Nodes (4), (Self.Factory.Basic_Declarative_Item_Sequence), Nodes (5), (Self.Factory.Basic_Declarative_Item_Sequence), Nodes (6), Nodes (7), Nodes (8)); when 1634 => Nodes (1) := Self.Factory.Package_Declaration (Nodes (1), Nodes (2), Nodes (3), Nodes (4), (Self.Factory.Basic_Declarative_Item_Sequence), Nodes (5), (Self.Factory.Basic_Declarative_Item_Sequence), Nodes (6), None, Nodes (7)); when 1635 => Nodes (1) := Self.Factory.Package_Declaration (Nodes (1), Nodes (2), Nodes (3), Nodes (4), (Self.Factory.Basic_Declarative_Item_Sequence), No_Token, (Self.Factory.Basic_Declarative_Item_Sequence), Nodes (5), Nodes (6), Nodes (7)); when 1636 => Nodes (1) := Self.Factory.Package_Declaration (Nodes (1), Nodes (2), Nodes (3), Nodes (4), (Self.Factory.Basic_Declarative_Item_Sequence), No_Token, (Self.Factory.Basic_Declarative_Item_Sequence), Nodes (5), None, Nodes (6)); when 1637 => Nodes (1) := Self.Factory.Package_Declaration (Nodes (1), Nodes (2), (Self.Factory.Aspect_Specification_Sequence), Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), Nodes (8), Nodes (9)); when 1638 => Nodes (1) := Self.Factory.Package_Declaration (Nodes (1), Nodes (2), (Self.Factory.Aspect_Specification_Sequence), Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), None, Nodes (8)); when 1639 => Nodes (1) := Self.Factory.Package_Declaration (Nodes (1), Nodes (2), (Self.Factory.Aspect_Specification_Sequence), Nodes (3), Nodes (4), Nodes (5), (Self.Factory.Basic_Declarative_Item_Sequence), Nodes (6), Nodes (7), Nodes (8)); when 1640 => Nodes (1) := Self.Factory.Package_Declaration (Nodes (1), Nodes (2), (Self.Factory.Aspect_Specification_Sequence), Nodes (3), Nodes (4), Nodes (5), (Self.Factory.Basic_Declarative_Item_Sequence), Nodes (6), None, Nodes (7)); when 1641 => Nodes (1) := Self.Factory.Package_Declaration (Nodes (1), Nodes (2), (Self.Factory.Aspect_Specification_Sequence), Nodes (3), Nodes (4), No_Token, (Self.Factory.Basic_Declarative_Item_Sequence), Nodes (5), Nodes (6), Nodes (7)); when 1642 => Nodes (1) := Self.Factory.Package_Declaration (Nodes (1), Nodes (2), (Self.Factory.Aspect_Specification_Sequence), Nodes (3), Nodes (4), No_Token, (Self.Factory.Basic_Declarative_Item_Sequence), Nodes (5), None, Nodes (6)); when 1643 => Nodes (1) := Self.Factory.Package_Declaration (Nodes (1), Nodes (2), (Self.Factory.Aspect_Specification_Sequence), Nodes (3), (Self.Factory.Basic_Declarative_Item_Sequence), Nodes (4), Nodes (5), Nodes (6), Nodes (7), Nodes (8)); when 1644 => Nodes (1) := Self.Factory.Package_Declaration (Nodes (1), Nodes (2), (Self.Factory.Aspect_Specification_Sequence), Nodes (3), (Self.Factory.Basic_Declarative_Item_Sequence), Nodes (4), Nodes (5), Nodes (6), None, Nodes (7)); when 1645 => Nodes (1) := Self.Factory.Package_Declaration (Nodes (1), Nodes (2), (Self.Factory.Aspect_Specification_Sequence), Nodes (3), (Self.Factory.Basic_Declarative_Item_Sequence), Nodes (4), (Self.Factory.Basic_Declarative_Item_Sequence), Nodes (5), Nodes (6), Nodes (7)); when 1646 => Nodes (1) := Self.Factory.Package_Declaration (Nodes (1), Nodes (2), (Self.Factory.Aspect_Specification_Sequence), Nodes (3), (Self.Factory.Basic_Declarative_Item_Sequence), Nodes (4), (Self.Factory.Basic_Declarative_Item_Sequence), Nodes (5), None, Nodes (6)); when 1647 => Nodes (1) := Self.Factory.Package_Declaration (Nodes (1), Nodes (2), (Self.Factory.Aspect_Specification_Sequence), Nodes (3), (Self.Factory.Basic_Declarative_Item_Sequence), No_Token, (Self.Factory.Basic_Declarative_Item_Sequence), Nodes (4), Nodes (5), Nodes (6)); when 1648 => Nodes (1) := Self.Factory.Package_Declaration (Nodes (1), Nodes (2), (Self.Factory.Aspect_Specification_Sequence), Nodes (3), (Self.Factory.Basic_Declarative_Item_Sequence), No_Token, (Self.Factory.Basic_Declarative_Item_Sequence), Nodes (4), None, Nodes (5)); when 1649 => Nodes (1) := Self.Factory.Package_Renaming_Declaration (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6)); when 1650 => Nodes (1) := Self.Factory.Package_Renaming_Declaration (Nodes (1), Nodes (2), Nodes (3), Nodes (4), (Self.Factory.Aspect_Specification_Sequence), Nodes (5)); when 1651 => Nodes (1) := Self.Factory.Parameter_Specification (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), Nodes (8), Nodes (9), Nodes (10)); when 1652 => Nodes (1) := Self.Factory.Parameter_Specification (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), Nodes (8), No_Token, None); when 1653 => Nodes (1) := Self.Factory.Parameter_Specification (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), No_Token, No_Token, Nodes (6), Nodes (7), Nodes (8)); when 1654 => Nodes (1) := Self.Factory.Parameter_Specification (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), No_Token, No_Token, Nodes (6), No_Token, None); when 1655 => Nodes (1) := Self.Factory.Parameter_Specification (Nodes (1), Nodes (2), Nodes (3), Nodes (4), No_Token, Nodes (5), Nodes (6), Nodes (7), Nodes (8), Nodes (9)); when 1656 => Nodes (1) := Self.Factory.Parameter_Specification (Nodes (1), Nodes (2), Nodes (3), Nodes (4), No_Token, Nodes (5), Nodes (6), Nodes (7), No_Token, None); when 1657 => Nodes (1) := Self.Factory.Parameter_Specification (Nodes (1), Nodes (2), Nodes (3), Nodes (4), No_Token, No_Token, No_Token, Nodes (5), Nodes (6), Nodes (7)); when 1658 => Nodes (1) := Self.Factory.Parameter_Specification (Nodes (1), Nodes (2), Nodes (3), Nodes (4), No_Token, No_Token, No_Token, Nodes (5), No_Token, None); when 1659 => Nodes (1) := Self.Factory.Parameter_Specification (Nodes (1), Nodes (2), Nodes (3), No_Token, Nodes (4), Nodes (5), Nodes (6), Nodes (7), Nodes (8), Nodes (9)); when 1660 => Nodes (1) := Self.Factory.Parameter_Specification (Nodes (1), Nodes (2), Nodes (3), No_Token, Nodes (4), Nodes (5), Nodes (6), Nodes (7), No_Token, None); when 1661 => Nodes (1) := Self.Factory.Parameter_Specification (Nodes (1), Nodes (2), Nodes (3), No_Token, Nodes (4), No_Token, No_Token, Nodes (5), Nodes (6), Nodes (7)); when 1662 => Nodes (1) := Self.Factory.Parameter_Specification (Nodes (1), Nodes (2), Nodes (3), No_Token, Nodes (4), No_Token, No_Token, Nodes (5), No_Token, None); when 1663 => Nodes (1) := Self.Factory.Parameter_Specification (Nodes (1), Nodes (2), Nodes (3), No_Token, No_Token, Nodes (4), Nodes (5), Nodes (6), Nodes (7), Nodes (8)); when 1664 => Nodes (1) := Self.Factory.Parameter_Specification (Nodes (1), Nodes (2), Nodes (3), No_Token, No_Token, Nodes (4), Nodes (5), Nodes (6), No_Token, None); when 1665 => Nodes (1) := Self.Factory.Parameter_Specification (Nodes (1), Nodes (2), Nodes (3), No_Token, No_Token, No_Token, No_Token, Nodes (4), Nodes (5), Nodes (6)); when 1666 => Nodes (1) := Self.Factory.Parameter_Specification (Nodes (1), Nodes (2), Nodes (3), No_Token, No_Token, No_Token, No_Token, Nodes (4), No_Token, None); when 1667 => Nodes (1) := Self.Factory.Parameter_Specification (Nodes (1), Nodes (2), No_Token, Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), Nodes (8), Nodes (9)); when 1668 => Nodes (1) := Self.Factory.Parameter_Specification (Nodes (1), Nodes (2), No_Token, Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), No_Token, None); when 1669 => Nodes (1) := Self.Factory.Parameter_Specification (Nodes (1), Nodes (2), No_Token, Nodes (3), Nodes (4), No_Token, No_Token, Nodes (5), Nodes (6), Nodes (7)); when 1670 => Nodes (1) := Self.Factory.Parameter_Specification (Nodes (1), Nodes (2), No_Token, Nodes (3), Nodes (4), No_Token, No_Token, Nodes (5), No_Token, None); when 1671 => Nodes (1) := Self.Factory.Parameter_Specification (Nodes (1), Nodes (2), No_Token, Nodes (3), No_Token, Nodes (4), Nodes (5), Nodes (6), Nodes (7), Nodes (8)); when 1672 => Nodes (1) := Self.Factory.Parameter_Specification (Nodes (1), Nodes (2), No_Token, Nodes (3), No_Token, Nodes (4), Nodes (5), Nodes (6), No_Token, None); when 1673 => Nodes (1) := Self.Factory.Parameter_Specification (Nodes (1), Nodes (2), No_Token, Nodes (3), No_Token, No_Token, No_Token, Nodes (4), Nodes (5), Nodes (6)); when 1674 => Nodes (1) := Self.Factory.Parameter_Specification (Nodes (1), Nodes (2), No_Token, Nodes (3), No_Token, No_Token, No_Token, Nodes (4), No_Token, None); when 1675 => Nodes (1) := Self.Factory.Parameter_Specification (Nodes (1), Nodes (2), No_Token, No_Token, Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), Nodes (8)); when 1676 => Nodes (1) := Self.Factory.Parameter_Specification (Nodes (1), Nodes (2), No_Token, No_Token, Nodes (3), Nodes (4), Nodes (5), Nodes (6), No_Token, None); when 1677 => Nodes (1) := Self.Factory.Parameter_Specification (Nodes (1), Nodes (2), No_Token, No_Token, Nodes (3), No_Token, No_Token, Nodes (4), Nodes (5), Nodes (6)); when 1678 => Nodes (1) := Self.Factory.Parameter_Specification (Nodes (1), Nodes (2), No_Token, No_Token, Nodes (3), No_Token, No_Token, Nodes (4), No_Token, None); when 1679 => Nodes (1) := Self.Factory.Parameter_Specification (Nodes (1), Nodes (2), No_Token, No_Token, No_Token, Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7)); when 1680 => Nodes (1) := Self.Factory.Parameter_Specification (Nodes (1), Nodes (2), No_Token, No_Token, No_Token, Nodes (3), Nodes (4), Nodes (5), No_Token, None); when 1681 => Nodes (1) := Self.Factory.Parameter_Specification (Nodes (1), Nodes (2), No_Token, No_Token, No_Token, No_Token, No_Token, Nodes (3), Nodes (4), Nodes (5)); when 1682 => Nodes (1) := Self.Factory.Parameter_Specification (Nodes (1), Nodes (2), No_Token, No_Token, No_Token, No_Token, No_Token, Nodes (3), No_Token, None); when 1683 => Nodes (1) := Self.Factory.Parameter_Specification (Nodes (1), Nodes (2), No_Token, No_Token, No_Token, No_Token, No_Token, Nodes (3), Nodes (4), Nodes (5)); when 1684 => Nodes (1) := Self.Factory.Parameter_Specification (Nodes (1), Nodes (2), No_Token, No_Token, No_Token, No_Token, No_Token, Nodes (3), No_Token, None); when 1685 => declare List : Node := Nodes (1); begin Self.Factory.Append_Parameter_Specification (List, Nodes (3)); Nodes (1) := List; end; when 1686 => declare List : Node := Self.Factory.Parameter_Specification_Sequence; begin Self.Factory.Append_Parameter_Specification (List, Nodes (2)); Nodes (1) := List; end; when 1687 => declare List : Node := Nodes (5); begin Self.Factory.Prepend_Pragma_Argument_Association (List, Nodes (4)); Nodes (1) := Self.Factory.Pragma_Node (Nodes (1), Nodes (2), Nodes (3), List, Nodes (6), Nodes (7)); end; when 1688 => declare List : Node := Self. Factory.Pragma_Argument_Association_Sequence; begin Self.Factory.Prepend_Pragma_Argument_Association (List, Nodes (4)); Nodes (1) := Self.Factory.Pragma_Node (Nodes (1), Nodes (2), Nodes (3), List, Nodes (5), Nodes (6)); end; when 1689 => Nodes (1) := Self.Factory.Pragma_Node (Nodes (1), Nodes (2), No_Token, Self.Factory.Pragma_Argument_Association_Sequence, No_Token, Nodes (3)); when 1690 => Nodes (1) := Self.Factory. Pragma_Argument_Association (Nodes (1), Nodes (2), Nodes (3)); when 1691 => Nodes (1) := Self.Factory. Pragma_Argument_Association (None, No_Token, Nodes (1)); when 1692 => declare List : Node := Nodes (1); begin Self.Factory.Append_Pragma_Argument_Association (List, Nodes (3)); Nodes (1) := List; end; when 1693 => declare List : Node := Self. Factory.Pragma_Argument_Association_Sequence; begin Self.Factory.Append_Pragma_Argument_Association (List, Nodes (2)); Nodes (1) := List; end; when 1694 => null; when 1695 => declare Def : constant Node := Self.Factory.Private_Extension_Definition (Nodes (5), Nodes (6), No_Token, Nodes (7), Nodes (8), Nodes (9), Nodes (10), Nodes (11)); begin Nodes (1) := Self.Factory.Private_Extension_Declaration (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Def, Nodes (12), Nodes (13)); end; when 1696 => declare Def : constant Node := Self.Factory.Private_Extension_Definition (Nodes (5), Nodes (6), No_Token, Nodes (7), Nodes (8), Nodes (9), Nodes (10), Nodes (11)); begin Nodes (1) := Self.Factory.Private_Extension_Declaration (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Def, (Self.Factory.Aspect_Specification_Sequence), Nodes (12)); end; when 1697 => declare Def : constant Node := Self.Factory.Private_Extension_Definition (Nodes (5), Nodes (6), No_Token, Nodes (7), Nodes (8), (Self.Factory.Subtype_Mark_Sequence), Nodes (9), Nodes (10)); begin Nodes (1) := Self.Factory.Private_Extension_Declaration (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Def, Nodes (11), Nodes (12)); end; when 1698 => declare Def : constant Node := Self.Factory.Private_Extension_Definition (Nodes (5), Nodes (6), No_Token, Nodes (7), Nodes (8), (Self.Factory.Subtype_Mark_Sequence), Nodes (9), Nodes (10)); begin Nodes (1) := Self.Factory.Private_Extension_Declaration (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Def, (Self.Factory.Aspect_Specification_Sequence), Nodes (11)); end; when 1699 => declare Def : constant Node := Self.Factory.Private_Extension_Definition (Nodes (5), No_Token, Nodes (6), Nodes (7), Nodes (8), Nodes (9), Nodes (10), Nodes (11)); begin Nodes (1) := Self.Factory.Private_Extension_Declaration (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Def, Nodes (12), Nodes (13)); end; when 1700 => declare Def : constant Node := Self.Factory.Private_Extension_Definition (Nodes (5), No_Token, Nodes (6), Nodes (7), Nodes (8), Nodes (9), Nodes (10), Nodes (11)); begin Nodes (1) := Self.Factory.Private_Extension_Declaration (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Def, (Self.Factory.Aspect_Specification_Sequence), Nodes (12)); end; when 1701 => declare Def : constant Node := Self.Factory.Private_Extension_Definition (Nodes (5), No_Token, Nodes (6), Nodes (7), Nodes (8), (Self.Factory.Subtype_Mark_Sequence), Nodes (9), Nodes (10)); begin Nodes (1) := Self.Factory.Private_Extension_Declaration (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Def, Nodes (11), Nodes (12)); end; when 1702 => declare Def : constant Node := Self.Factory.Private_Extension_Definition (Nodes (5), No_Token, Nodes (6), Nodes (7), Nodes (8), (Self.Factory.Subtype_Mark_Sequence), Nodes (9), Nodes (10)); begin Nodes (1) := Self.Factory.Private_Extension_Declaration (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Def, (Self.Factory.Aspect_Specification_Sequence), Nodes (11)); end; when 1703 => declare Def : constant Node := Self.Factory.Private_Extension_Definition (Nodes (5), No_Token, No_Token, Nodes (6), Nodes (7), Nodes (8), Nodes (9), Nodes (10)); begin Nodes (1) := Self.Factory.Private_Extension_Declaration (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Def, Nodes (11), Nodes (12)); end; when 1704 => declare Def : constant Node := Self.Factory.Private_Extension_Definition (Nodes (5), No_Token, No_Token, Nodes (6), Nodes (7), Nodes (8), Nodes (9), Nodes (10)); begin Nodes (1) := Self.Factory.Private_Extension_Declaration (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Def, (Self.Factory.Aspect_Specification_Sequence), Nodes (11)); end; when 1705 => declare Def : constant Node := Self.Factory.Private_Extension_Definition (Nodes (5), No_Token, No_Token, Nodes (6), Nodes (7), (Self.Factory.Subtype_Mark_Sequence), Nodes (8), Nodes (9)); begin Nodes (1) := Self.Factory.Private_Extension_Declaration (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Def, Nodes (10), Nodes (11)); end; when 1706 => declare Def : constant Node := Self.Factory.Private_Extension_Definition (Nodes (5), No_Token, No_Token, Nodes (6), Nodes (7), (Self.Factory.Subtype_Mark_Sequence), Nodes (8), Nodes (9)); begin Nodes (1) := Self.Factory.Private_Extension_Declaration (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Def, (Self.Factory.Aspect_Specification_Sequence), Nodes (10)); end; when 1707 => declare Def : constant Node := Self.Factory.Private_Extension_Definition (No_Token, Nodes (5), No_Token, Nodes (6), Nodes (7), Nodes (8), Nodes (9), Nodes (10)); begin Nodes (1) := Self.Factory.Private_Extension_Declaration (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Def, Nodes (11), Nodes (12)); end; when 1708 => declare Def : constant Node := Self.Factory.Private_Extension_Definition (No_Token, Nodes (5), No_Token, Nodes (6), Nodes (7), Nodes (8), Nodes (9), Nodes (10)); begin Nodes (1) := Self.Factory.Private_Extension_Declaration (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Def, (Self.Factory.Aspect_Specification_Sequence), Nodes (11)); end; when 1709 => declare Def : constant Node := Self.Factory.Private_Extension_Definition (No_Token, Nodes (5), No_Token, Nodes (6), Nodes (7), (Self.Factory.Subtype_Mark_Sequence), Nodes (8), Nodes (9)); begin Nodes (1) := Self.Factory.Private_Extension_Declaration (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Def, Nodes (10), Nodes (11)); end; when 1710 => declare Def : constant Node := Self.Factory.Private_Extension_Definition (No_Token, Nodes (5), No_Token, Nodes (6), Nodes (7), (Self.Factory.Subtype_Mark_Sequence), Nodes (8), Nodes (9)); begin Nodes (1) := Self.Factory.Private_Extension_Declaration (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Def, (Self.Factory.Aspect_Specification_Sequence), Nodes (10)); end; when 1711 => declare Def : constant Node := Self.Factory.Private_Extension_Definition (No_Token, No_Token, Nodes (5), Nodes (6), Nodes (7), Nodes (8), Nodes (9), Nodes (10)); begin Nodes (1) := Self.Factory.Private_Extension_Declaration (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Def, Nodes (11), Nodes (12)); end; when 1712 => declare Def : constant Node := Self.Factory.Private_Extension_Definition (No_Token, No_Token, Nodes (5), Nodes (6), Nodes (7), Nodes (8), Nodes (9), Nodes (10)); begin Nodes (1) := Self.Factory.Private_Extension_Declaration (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Def, (Self.Factory.Aspect_Specification_Sequence), Nodes (11)); end; when 1713 => declare Def : constant Node := Self.Factory.Private_Extension_Definition (No_Token, No_Token, Nodes (5), Nodes (6), Nodes (7), (Self.Factory.Subtype_Mark_Sequence), Nodes (8), Nodes (9)); begin Nodes (1) := Self.Factory.Private_Extension_Declaration (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Def, Nodes (10), Nodes (11)); end; when 1714 => declare Def : constant Node := Self.Factory.Private_Extension_Definition (No_Token, No_Token, Nodes (5), Nodes (6), Nodes (7), (Self.Factory.Subtype_Mark_Sequence), Nodes (8), Nodes (9)); begin Nodes (1) := Self.Factory.Private_Extension_Declaration (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Def, (Self.Factory.Aspect_Specification_Sequence), Nodes (10)); end; when 1715 => declare Def : constant Node := Self.Factory.Private_Extension_Definition (No_Token, No_Token, No_Token, Nodes (5), Nodes (6), Nodes (7), Nodes (8), Nodes (9)); begin Nodes (1) := Self.Factory.Private_Extension_Declaration (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Def, Nodes (10), Nodes (11)); end; when 1716 => declare Def : constant Node := Self.Factory.Private_Extension_Definition (No_Token, No_Token, No_Token, Nodes (5), Nodes (6), Nodes (7), Nodes (8), Nodes (9)); begin Nodes (1) := Self.Factory.Private_Extension_Declaration (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Def, (Self.Factory.Aspect_Specification_Sequence), Nodes (10)); end; when 1717 => declare Def : constant Node := Self.Factory.Private_Extension_Definition (No_Token, No_Token, No_Token, Nodes (5), Nodes (6), (Self.Factory.Subtype_Mark_Sequence), Nodes (7), Nodes (8)); begin Nodes (1) := Self.Factory.Private_Extension_Declaration (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Def, Nodes (9), Nodes (10)); end; when 1718 => declare Def : constant Node := Self.Factory.Private_Extension_Definition (No_Token, No_Token, No_Token, Nodes (5), Nodes (6), (Self.Factory.Subtype_Mark_Sequence), Nodes (7), Nodes (8)); begin Nodes (1) := Self.Factory.Private_Extension_Declaration (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Def, (Self.Factory.Aspect_Specification_Sequence), Nodes (9)); end; when 1719 => declare Def : constant Node := Self.Factory.Private_Extension_Definition (Nodes (4), Nodes (5), No_Token, Nodes (6), Nodes (7), Nodes (8), Nodes (9), Nodes (10)); begin Nodes (1) := Self.Factory.Private_Extension_Declaration (Nodes (1), Nodes (2), None, Nodes (3), Def, Nodes (11), Nodes (12)); end; when 1720 => declare Def : constant Node := Self.Factory.Private_Extension_Definition (Nodes (4), Nodes (5), No_Token, Nodes (6), Nodes (7), Nodes (8), Nodes (9), Nodes (10)); begin Nodes (1) := Self.Factory.Private_Extension_Declaration (Nodes (1), Nodes (2), None, Nodes (3), Def, (Self.Factory.Aspect_Specification_Sequence), Nodes (11)); end; when 1721 => declare Def : constant Node := Self.Factory.Private_Extension_Definition (Nodes (4), Nodes (5), No_Token, Nodes (6), Nodes (7), (Self.Factory.Subtype_Mark_Sequence), Nodes (8), Nodes (9)); begin Nodes (1) := Self.Factory.Private_Extension_Declaration (Nodes (1), Nodes (2), None, Nodes (3), Def, Nodes (10), Nodes (11)); end; when 1722 => declare Def : constant Node := Self.Factory.Private_Extension_Definition (Nodes (4), Nodes (5), No_Token, Nodes (6), Nodes (7), (Self.Factory.Subtype_Mark_Sequence), Nodes (8), Nodes (9)); begin Nodes (1) := Self.Factory.Private_Extension_Declaration (Nodes (1), Nodes (2), None, Nodes (3), Def, (Self.Factory.Aspect_Specification_Sequence), Nodes (10)); end; when 1723 => declare Def : constant Node := Self.Factory.Private_Extension_Definition (Nodes (4), No_Token, Nodes (5), Nodes (6), Nodes (7), Nodes (8), Nodes (9), Nodes (10)); begin Nodes (1) := Self.Factory.Private_Extension_Declaration (Nodes (1), Nodes (2), None, Nodes (3), Def, Nodes (11), Nodes (12)); end; when 1724 => declare Def : constant Node := Self.Factory.Private_Extension_Definition (Nodes (4), No_Token, Nodes (5), Nodes (6), Nodes (7), Nodes (8), Nodes (9), Nodes (10)); begin Nodes (1) := Self.Factory.Private_Extension_Declaration (Nodes (1), Nodes (2), None, Nodes (3), Def, (Self.Factory.Aspect_Specification_Sequence), Nodes (11)); end; when 1725 => declare Def : constant Node := Self.Factory.Private_Extension_Definition (Nodes (4), No_Token, Nodes (5), Nodes (6), Nodes (7), (Self.Factory.Subtype_Mark_Sequence), Nodes (8), Nodes (9)); begin Nodes (1) := Self.Factory.Private_Extension_Declaration (Nodes (1), Nodes (2), None, Nodes (3), Def, Nodes (10), Nodes (11)); end; when 1726 => declare Def : constant Node := Self.Factory.Private_Extension_Definition (Nodes (4), No_Token, Nodes (5), Nodes (6), Nodes (7), (Self.Factory.Subtype_Mark_Sequence), Nodes (8), Nodes (9)); begin Nodes (1) := Self.Factory.Private_Extension_Declaration (Nodes (1), Nodes (2), None, Nodes (3), Def, (Self.Factory.Aspect_Specification_Sequence), Nodes (10)); end; when 1727 => declare Def : constant Node := Self.Factory.Private_Extension_Definition (Nodes (4), No_Token, No_Token, Nodes (5), Nodes (6), Nodes (7), Nodes (8), Nodes (9)); begin Nodes (1) := Self.Factory.Private_Extension_Declaration (Nodes (1), Nodes (2), None, Nodes (3), Def, Nodes (10), Nodes (11)); end; when 1728 => declare Def : constant Node := Self.Factory.Private_Extension_Definition (Nodes (4), No_Token, No_Token, Nodes (5), Nodes (6), Nodes (7), Nodes (8), Nodes (9)); begin Nodes (1) := Self.Factory.Private_Extension_Declaration (Nodes (1), Nodes (2), None, Nodes (3), Def, (Self.Factory.Aspect_Specification_Sequence), Nodes (10)); end; when 1729 => declare Def : constant Node := Self.Factory.Private_Extension_Definition (Nodes (4), No_Token, No_Token, Nodes (5), Nodes (6), (Self.Factory.Subtype_Mark_Sequence), Nodes (7), Nodes (8)); begin Nodes (1) := Self.Factory.Private_Extension_Declaration (Nodes (1), Nodes (2), None, Nodes (3), Def, Nodes (9), Nodes (10)); end; when 1730 => declare Def : constant Node := Self.Factory.Private_Extension_Definition (Nodes (4), No_Token, No_Token, Nodes (5), Nodes (6), (Self.Factory.Subtype_Mark_Sequence), Nodes (7), Nodes (8)); begin Nodes (1) := Self.Factory.Private_Extension_Declaration (Nodes (1), Nodes (2), None, Nodes (3), Def, (Self.Factory.Aspect_Specification_Sequence), Nodes (9)); end; when 1731 => declare Def : constant Node := Self.Factory.Private_Extension_Definition (No_Token, Nodes (4), No_Token, Nodes (5), Nodes (6), Nodes (7), Nodes (8), Nodes (9)); begin Nodes (1) := Self.Factory.Private_Extension_Declaration (Nodes (1), Nodes (2), None, Nodes (3), Def, Nodes (10), Nodes (11)); end; when 1732 => declare Def : constant Node := Self.Factory.Private_Extension_Definition (No_Token, Nodes (4), No_Token, Nodes (5), Nodes (6), Nodes (7), Nodes (8), Nodes (9)); begin Nodes (1) := Self.Factory.Private_Extension_Declaration (Nodes (1), Nodes (2), None, Nodes (3), Def, (Self.Factory.Aspect_Specification_Sequence), Nodes (10)); end; when 1733 => declare Def : constant Node := Self.Factory.Private_Extension_Definition (No_Token, Nodes (4), No_Token, Nodes (5), Nodes (6), (Self.Factory.Subtype_Mark_Sequence), Nodes (7), Nodes (8)); begin Nodes (1) := Self.Factory.Private_Extension_Declaration (Nodes (1), Nodes (2), None, Nodes (3), Def, Nodes (9), Nodes (10)); end; when 1734 => declare Def : constant Node := Self.Factory.Private_Extension_Definition (No_Token, Nodes (4), No_Token, Nodes (5), Nodes (6), (Self.Factory.Subtype_Mark_Sequence), Nodes (7), Nodes (8)); begin Nodes (1) := Self.Factory.Private_Extension_Declaration (Nodes (1), Nodes (2), None, Nodes (3), Def, (Self.Factory.Aspect_Specification_Sequence), Nodes (9)); end; when 1735 => declare Def : constant Node := Self.Factory.Private_Extension_Definition (No_Token, No_Token, Nodes (4), Nodes (5), Nodes (6), Nodes (7), Nodes (8), Nodes (9)); begin Nodes (1) := Self.Factory.Private_Extension_Declaration (Nodes (1), Nodes (2), None, Nodes (3), Def, Nodes (10), Nodes (11)); end; when 1736 => declare Def : constant Node := Self.Factory.Private_Extension_Definition (No_Token, No_Token, Nodes (4), Nodes (5), Nodes (6), Nodes (7), Nodes (8), Nodes (9)); begin Nodes (1) := Self.Factory.Private_Extension_Declaration (Nodes (1), Nodes (2), None, Nodes (3), Def, (Self.Factory.Aspect_Specification_Sequence), Nodes (10)); end; when 1737 => declare Def : constant Node := Self.Factory.Private_Extension_Definition (No_Token, No_Token, Nodes (4), Nodes (5), Nodes (6), (Self.Factory.Subtype_Mark_Sequence), Nodes (7), Nodes (8)); begin Nodes (1) := Self.Factory.Private_Extension_Declaration (Nodes (1), Nodes (2), None, Nodes (3), Def, Nodes (9), Nodes (10)); end; when 1738 => declare Def : constant Node := Self.Factory.Private_Extension_Definition (No_Token, No_Token, Nodes (4), Nodes (5), Nodes (6), (Self.Factory.Subtype_Mark_Sequence), Nodes (7), Nodes (8)); begin Nodes (1) := Self.Factory.Private_Extension_Declaration (Nodes (1), Nodes (2), None, Nodes (3), Def, (Self.Factory.Aspect_Specification_Sequence), Nodes (9)); end; when 1739 => declare Def : constant Node := Self.Factory.Private_Extension_Definition (No_Token, No_Token, No_Token, Nodes (4), Nodes (5), Nodes (6), Nodes (7), Nodes (8)); begin Nodes (1) := Self.Factory.Private_Extension_Declaration (Nodes (1), Nodes (2), None, Nodes (3), Def, Nodes (9), Nodes (10)); end; when 1740 => declare Def : constant Node := Self.Factory.Private_Extension_Definition (No_Token, No_Token, No_Token, Nodes (4), Nodes (5), Nodes (6), Nodes (7), Nodes (8)); begin Nodes (1) := Self.Factory.Private_Extension_Declaration (Nodes (1), Nodes (2), None, Nodes (3), Def, (Self.Factory.Aspect_Specification_Sequence), Nodes (9)); end; when 1741 => declare Def : constant Node := Self.Factory.Private_Extension_Definition (No_Token, No_Token, No_Token, Nodes (4), Nodes (5), (Self.Factory.Subtype_Mark_Sequence), Nodes (6), Nodes (7)); begin Nodes (1) := Self.Factory.Private_Extension_Declaration (Nodes (1), Nodes (2), None, Nodes (3), Def, Nodes (8), Nodes (9)); end; when 1742 => declare Def : constant Node := Self.Factory.Private_Extension_Definition (No_Token, No_Token, No_Token, Nodes (4), Nodes (5), (Self.Factory.Subtype_Mark_Sequence), Nodes (6), Nodes (7)); begin Nodes (1) := Self.Factory.Private_Extension_Declaration (Nodes (1), Nodes (2), None, Nodes (3), Def, (Self.Factory.Aspect_Specification_Sequence), Nodes (8)); end; when 1743 => declare Def : constant Node:= Self.Factory.Private_Type_Definition (Nodes (5), Nodes (6), Nodes (7), Nodes (8)); begin Nodes (1) := Self.Factory.Private_Type_Declaration (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Def, Nodes (9), Nodes (10)); end; when 1744 => declare Def : constant Node:= Self.Factory.Private_Type_Definition (Nodes (5), Nodes (6), Nodes (7), Nodes (8)); begin Nodes (1) := Self.Factory.Private_Type_Declaration (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Def, (Self.Factory.Aspect_Specification_Sequence), Nodes (9)); end; when 1745 => declare Def : constant Node:= Self.Factory.Private_Type_Definition (Nodes (5), Nodes (6), No_Token, Nodes (7)); begin Nodes (1) := Self.Factory.Private_Type_Declaration (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Def, Nodes (8), Nodes (9)); end; when 1746 => declare Def : constant Node:= Self.Factory.Private_Type_Definition (Nodes (5), Nodes (6), No_Token, Nodes (7)); begin Nodes (1) := Self.Factory.Private_Type_Declaration (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Def, (Self.Factory.Aspect_Specification_Sequence), Nodes (8)); end; when 1747 => declare Def : constant Node:= Self.Factory.Private_Type_Definition (No_Token, Nodes (5), Nodes (6), Nodes (7)); begin Nodes (1) := Self.Factory.Private_Type_Declaration (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Def, Nodes (8), Nodes (9)); end; when 1748 => declare Def : constant Node:= Self.Factory.Private_Type_Definition (No_Token, Nodes (5), Nodes (6), Nodes (7)); begin Nodes (1) := Self.Factory.Private_Type_Declaration (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Def, (Self.Factory.Aspect_Specification_Sequence), Nodes (8)); end; when 1749 => declare Def : constant Node:= Self.Factory.Private_Type_Definition (No_Token, Nodes (5), No_Token, Nodes (6)); begin Nodes (1) := Self.Factory.Private_Type_Declaration (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Def, Nodes (7), Nodes (8)); end; when 1750 => declare Def : constant Node:= Self.Factory.Private_Type_Definition (No_Token, Nodes (5), No_Token, Nodes (6)); begin Nodes (1) := Self.Factory.Private_Type_Declaration (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Def, (Self.Factory.Aspect_Specification_Sequence), Nodes (7)); end; when 1751 => declare Def : constant Node:= Self.Factory.Private_Type_Definition (No_Token, No_Token, Nodes (5), Nodes (6)); begin Nodes (1) := Self.Factory.Private_Type_Declaration (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Def, Nodes (7), Nodes (8)); end; when 1752 => declare Def : constant Node:= Self.Factory.Private_Type_Definition (No_Token, No_Token, Nodes (5), Nodes (6)); begin Nodes (1) := Self.Factory.Private_Type_Declaration (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Def, (Self.Factory.Aspect_Specification_Sequence), Nodes (7)); end; when 1753 => declare Def : constant Node:= Self.Factory.Private_Type_Definition (No_Token, No_Token, No_Token, Nodes (5)); begin Nodes (1) := Self.Factory.Private_Type_Declaration (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Def, Nodes (6), Nodes (7)); end; when 1754 => declare Def : constant Node:= Self.Factory.Private_Type_Definition (No_Token, No_Token, No_Token, Nodes (5)); begin Nodes (1) := Self.Factory.Private_Type_Declaration (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Def, (Self.Factory.Aspect_Specification_Sequence), Nodes (6)); end; when 1755 => declare Def : constant Node:= Self.Factory.Private_Type_Definition (Nodes (4), Nodes (5), Nodes (6), Nodes (7)); begin Nodes (1) := Self.Factory.Private_Type_Declaration (Nodes (1), Nodes (2), None, Nodes (3), Def, Nodes (8), Nodes (9)); end; when 1756 => declare Def : constant Node:= Self.Factory.Private_Type_Definition (Nodes (4), Nodes (5), Nodes (6), Nodes (7)); begin Nodes (1) := Self.Factory.Private_Type_Declaration (Nodes (1), Nodes (2), None, Nodes (3), Def, (Self.Factory.Aspect_Specification_Sequence), Nodes (8)); end; when 1757 => declare Def : constant Node:= Self.Factory.Private_Type_Definition (Nodes (4), Nodes (5), No_Token, Nodes (6)); begin Nodes (1) := Self.Factory.Private_Type_Declaration (Nodes (1), Nodes (2), None, Nodes (3), Def, Nodes (7), Nodes (8)); end; when 1758 => declare Def : constant Node:= Self.Factory.Private_Type_Definition (Nodes (4), Nodes (5), No_Token, Nodes (6)); begin Nodes (1) := Self.Factory.Private_Type_Declaration (Nodes (1), Nodes (2), None, Nodes (3), Def, (Self.Factory.Aspect_Specification_Sequence), Nodes (7)); end; when 1759 => declare Def : constant Node:= Self.Factory.Private_Type_Definition (No_Token, Nodes (4), Nodes (5), Nodes (6)); begin Nodes (1) := Self.Factory.Private_Type_Declaration (Nodes (1), Nodes (2), None, Nodes (3), Def, Nodes (7), Nodes (8)); end; when 1760 => declare Def : constant Node:= Self.Factory.Private_Type_Definition (No_Token, Nodes (4), Nodes (5), Nodes (6)); begin Nodes (1) := Self.Factory.Private_Type_Declaration (Nodes (1), Nodes (2), None, Nodes (3), Def, (Self.Factory.Aspect_Specification_Sequence), Nodes (7)); end; when 1761 => declare Def : constant Node:= Self.Factory.Private_Type_Definition (No_Token, Nodes (4), No_Token, Nodes (5)); begin Nodes (1) := Self.Factory.Private_Type_Declaration (Nodes (1), Nodes (2), None, Nodes (3), Def, Nodes (6), Nodes (7)); end; when 1762 => declare Def : constant Node:= Self.Factory.Private_Type_Definition (No_Token, Nodes (4), No_Token, Nodes (5)); begin Nodes (1) := Self.Factory.Private_Type_Declaration (Nodes (1), Nodes (2), None, Nodes (3), Def, (Self.Factory.Aspect_Specification_Sequence), Nodes (6)); end; when 1763 => declare Def : constant Node:= Self.Factory.Private_Type_Definition (No_Token, No_Token, Nodes (4), Nodes (5)); begin Nodes (1) := Self.Factory.Private_Type_Declaration (Nodes (1), Nodes (2), None, Nodes (3), Def, Nodes (6), Nodes (7)); end; when 1764 => declare Def : constant Node:= Self.Factory.Private_Type_Definition (No_Token, No_Token, Nodes (4), Nodes (5)); begin Nodes (1) := Self.Factory.Private_Type_Declaration (Nodes (1), Nodes (2), None, Nodes (3), Def, (Self.Factory.Aspect_Specification_Sequence), Nodes (6)); end; when 1765 => declare Def : constant Node:= Self.Factory.Private_Type_Definition (No_Token, No_Token, No_Token, Nodes (4)); begin Nodes (1) := Self.Factory.Private_Type_Declaration (Nodes (1), Nodes (2), None, Nodes (3), Def, Nodes (5), Nodes (6)); end; when 1766 => declare Def : constant Node:= Self.Factory.Private_Type_Definition (No_Token, No_Token, No_Token, Nodes (4)); begin Nodes (1) := Self.Factory.Private_Type_Declaration (Nodes (1), Nodes (2), None, Nodes (3), Def, (Self.Factory.Aspect_Specification_Sequence), Nodes (5)); end; when 1767 => Nodes (1) := Self.Factory.Procedure_Body (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), Nodes (8), Nodes (9), Nodes (10), Nodes (11), Nodes (12), Nodes (13), Nodes (14), Nodes (15), Nodes (16), Nodes (17)); when 1768 => Nodes (1) := Self.Factory.Procedure_Body (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), Nodes (8), Nodes (9), Nodes (10), Nodes (11), Nodes (12), Nodes (13), Nodes (14), Nodes (15), None, Nodes (16)); when 1769 => Nodes (1) := Self.Factory.Procedure_Body (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), Nodes (8), Nodes (9), Nodes (10), Nodes (11), Nodes (12), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (13), Nodes (14), Nodes (15)); when 1770 => Nodes (1) := Self.Factory.Procedure_Body (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), Nodes (8), Nodes (9), Nodes (10), Nodes (11), Nodes (12), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (13), None, Nodes (14)); when 1771 => Nodes (1) := Self.Factory.Procedure_Body (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), Nodes (8), Nodes (9), Nodes (10), No_Token, (Self.Factory.Statement_Sequence), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (11), Nodes (12), Nodes (13)); when 1772 => Nodes (1) := Self.Factory.Procedure_Body (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), Nodes (8), Nodes (9), Nodes (10), No_Token, (Self.Factory.Statement_Sequence), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (11), None, Nodes (12)); when 1773 => Nodes (1) := Self.Factory.Procedure_Body (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), Nodes (8), Nodes (9), (Self.Factory.Declarative_Item_Sequence), Nodes (10), Nodes (11), Nodes (12), Nodes (13), Nodes (14), Nodes (15), Nodes (16)); when 1774 => Nodes (1) := Self.Factory.Procedure_Body (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), Nodes (8), Nodes (9), (Self.Factory.Declarative_Item_Sequence), Nodes (10), Nodes (11), Nodes (12), Nodes (13), Nodes (14), None, Nodes (15)); when 1775 => Nodes (1) := Self.Factory.Procedure_Body (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), Nodes (8), Nodes (9), (Self.Factory.Declarative_Item_Sequence), Nodes (10), Nodes (11), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (12), Nodes (13), Nodes (14)); when 1776 => Nodes (1) := Self.Factory.Procedure_Body (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), Nodes (8), Nodes (9), (Self.Factory.Declarative_Item_Sequence), Nodes (10), Nodes (11), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (12), None, Nodes (13)); when 1777 => Nodes (1) := Self.Factory.Procedure_Body (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), Nodes (8), Nodes (9), (Self.Factory.Declarative_Item_Sequence), No_Token, (Self.Factory.Statement_Sequence), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (10), Nodes (11), Nodes (12)); when 1778 => Nodes (1) := Self.Factory.Procedure_Body (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), Nodes (8), Nodes (9), (Self.Factory.Declarative_Item_Sequence), No_Token, (Self.Factory.Statement_Sequence), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (10), None, Nodes (11)); when 1779 => Nodes (1) := Self.Factory.Procedure_Body (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), (Self.Factory.Aspect_Specification_Sequence), Nodes (8), Nodes (9), Nodes (10), Nodes (11), Nodes (12), Nodes (13), Nodes (14), Nodes (15), Nodes (16)); when 1780 => Nodes (1) := Self.Factory.Procedure_Body (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), (Self.Factory.Aspect_Specification_Sequence), Nodes (8), Nodes (9), Nodes (10), Nodes (11), Nodes (12), Nodes (13), Nodes (14), None, Nodes (15)); when 1781 => Nodes (1) := Self.Factory.Procedure_Body (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), (Self.Factory.Aspect_Specification_Sequence), Nodes (8), Nodes (9), Nodes (10), Nodes (11), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (12), Nodes (13), Nodes (14)); when 1782 => Nodes (1) := Self.Factory.Procedure_Body (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), (Self.Factory.Aspect_Specification_Sequence), Nodes (8), Nodes (9), Nodes (10), Nodes (11), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (12), None, Nodes (13)); when 1783 => Nodes (1) := Self.Factory.Procedure_Body (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), (Self.Factory.Aspect_Specification_Sequence), Nodes (8), Nodes (9), No_Token, (Self.Factory.Statement_Sequence), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (10), Nodes (11), Nodes (12)); when 1784 => Nodes (1) := Self.Factory.Procedure_Body (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), (Self.Factory.Aspect_Specification_Sequence), Nodes (8), Nodes (9), No_Token, (Self.Factory.Statement_Sequence), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (10), None, Nodes (11)); when 1785 => Nodes (1) := Self.Factory.Procedure_Body (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), (Self.Factory.Aspect_Specification_Sequence), Nodes (8), (Self.Factory.Declarative_Item_Sequence), Nodes (9), Nodes (10), Nodes (11), Nodes (12), Nodes (13), Nodes (14), Nodes (15)); when 1786 => Nodes (1) := Self.Factory.Procedure_Body (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), (Self.Factory.Aspect_Specification_Sequence), Nodes (8), (Self.Factory.Declarative_Item_Sequence), Nodes (9), Nodes (10), Nodes (11), Nodes (12), Nodes (13), None, Nodes (14)); when 1787 => Nodes (1) := Self.Factory.Procedure_Body (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), (Self.Factory.Aspect_Specification_Sequence), Nodes (8), (Self.Factory.Declarative_Item_Sequence), Nodes (9), Nodes (10), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (11), Nodes (12), Nodes (13)); when 1788 => Nodes (1) := Self.Factory.Procedure_Body (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), (Self.Factory.Aspect_Specification_Sequence), Nodes (8), (Self.Factory.Declarative_Item_Sequence), Nodes (9), Nodes (10), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (11), None, Nodes (12)); when 1789 => Nodes (1) := Self.Factory.Procedure_Body (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), (Self.Factory.Aspect_Specification_Sequence), Nodes (8), (Self.Factory.Declarative_Item_Sequence), No_Token, (Self.Factory.Statement_Sequence), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (9), Nodes (10), Nodes (11)); when 1790 => Nodes (1) := Self.Factory.Procedure_Body (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), (Self.Factory.Aspect_Specification_Sequence), Nodes (8), (Self.Factory.Declarative_Item_Sequence), No_Token, (Self.Factory.Statement_Sequence), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (9), None, Nodes (10)); when 1791 => Nodes (1) := Self.Factory.Procedure_Body (Nodes (1), Nodes (2), Nodes (3), Nodes (4), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, Nodes (5), Nodes (6), Nodes (7), Nodes (8), Nodes (9), Nodes (10), Nodes (11), Nodes (12), Nodes (13), Nodes (14)); when 1792 => Nodes (1) := Self.Factory.Procedure_Body (Nodes (1), Nodes (2), Nodes (3), Nodes (4), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, Nodes (5), Nodes (6), Nodes (7), Nodes (8), Nodes (9), Nodes (10), Nodes (11), Nodes (12), None, Nodes (13)); when 1793 => Nodes (1) := Self.Factory.Procedure_Body (Nodes (1), Nodes (2), Nodes (3), Nodes (4), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, Nodes (5), Nodes (6), Nodes (7), Nodes (8), Nodes (9), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (10), Nodes (11), Nodes (12)); when 1794 => Nodes (1) := Self.Factory.Procedure_Body (Nodes (1), Nodes (2), Nodes (3), Nodes (4), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, Nodes (5), Nodes (6), Nodes (7), Nodes (8), Nodes (9), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (10), None, Nodes (11)); when 1795 => Nodes (1) := Self.Factory.Procedure_Body (Nodes (1), Nodes (2), Nodes (3), Nodes (4), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, Nodes (5), Nodes (6), Nodes (7), No_Token, (Self.Factory.Statement_Sequence), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (8), Nodes (9), Nodes (10)); when 1796 => Nodes (1) := Self.Factory.Procedure_Body (Nodes (1), Nodes (2), Nodes (3), Nodes (4), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, Nodes (5), Nodes (6), Nodes (7), No_Token, (Self.Factory.Statement_Sequence), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (8), None, Nodes (9)); when 1797 => Nodes (1) := Self.Factory.Procedure_Body (Nodes (1), Nodes (2), Nodes (3), Nodes (4), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, Nodes (5), Nodes (6), (Self.Factory.Declarative_Item_Sequence), Nodes (7), Nodes (8), Nodes (9), Nodes (10), Nodes (11), Nodes (12), Nodes (13)); when 1798 => Nodes (1) := Self.Factory.Procedure_Body (Nodes (1), Nodes (2), Nodes (3), Nodes (4), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, Nodes (5), Nodes (6), (Self.Factory.Declarative_Item_Sequence), Nodes (7), Nodes (8), Nodes (9), Nodes (10), Nodes (11), None, Nodes (12)); when 1799 => Nodes (1) := Self.Factory.Procedure_Body (Nodes (1), Nodes (2), Nodes (3), Nodes (4), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, Nodes (5), Nodes (6), (Self.Factory.Declarative_Item_Sequence), Nodes (7), Nodes (8), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (9), Nodes (10), Nodes (11)); when 1800 => Nodes (1) := Self.Factory.Procedure_Body (Nodes (1), Nodes (2), Nodes (3), Nodes (4), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, Nodes (5), Nodes (6), (Self.Factory.Declarative_Item_Sequence), Nodes (7), Nodes (8), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (9), None, Nodes (10)); when 1801 => Nodes (1) := Self.Factory.Procedure_Body (Nodes (1), Nodes (2), Nodes (3), Nodes (4), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, Nodes (5), Nodes (6), (Self.Factory.Declarative_Item_Sequence), No_Token, (Self.Factory.Statement_Sequence), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (7), Nodes (8), Nodes (9)); when 1802 => Nodes (1) := Self.Factory.Procedure_Body (Nodes (1), Nodes (2), Nodes (3), Nodes (4), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, Nodes (5), Nodes (6), (Self.Factory.Declarative_Item_Sequence), No_Token, (Self.Factory.Statement_Sequence), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (7), None, Nodes (8)); when 1803 => Nodes (1) := Self.Factory.Procedure_Body (Nodes (1), Nodes (2), Nodes (3), Nodes (4), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, (Self.Factory.Aspect_Specification_Sequence), Nodes (5), Nodes (6), Nodes (7), Nodes (8), Nodes (9), Nodes (10), Nodes (11), Nodes (12), Nodes (13)); when 1804 => Nodes (1) := Self.Factory.Procedure_Body (Nodes (1), Nodes (2), Nodes (3), Nodes (4), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, (Self.Factory.Aspect_Specification_Sequence), Nodes (5), Nodes (6), Nodes (7), Nodes (8), Nodes (9), Nodes (10), Nodes (11), None, Nodes (12)); when 1805 => Nodes (1) := Self.Factory.Procedure_Body (Nodes (1), Nodes (2), Nodes (3), Nodes (4), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, (Self.Factory.Aspect_Specification_Sequence), Nodes (5), Nodes (6), Nodes (7), Nodes (8), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (9), Nodes (10), Nodes (11)); when 1806 => Nodes (1) := Self.Factory.Procedure_Body (Nodes (1), Nodes (2), Nodes (3), Nodes (4), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, (Self.Factory.Aspect_Specification_Sequence), Nodes (5), Nodes (6), Nodes (7), Nodes (8), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (9), None, Nodes (10)); when 1807 => Nodes (1) := Self.Factory.Procedure_Body (Nodes (1), Nodes (2), Nodes (3), Nodes (4), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, (Self.Factory.Aspect_Specification_Sequence), Nodes (5), Nodes (6), No_Token, (Self.Factory.Statement_Sequence), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (7), Nodes (8), Nodes (9)); when 1808 => Nodes (1) := Self.Factory.Procedure_Body (Nodes (1), Nodes (2), Nodes (3), Nodes (4), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, (Self.Factory.Aspect_Specification_Sequence), Nodes (5), Nodes (6), No_Token, (Self.Factory.Statement_Sequence), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (7), None, Nodes (8)); when 1809 => Nodes (1) := Self.Factory.Procedure_Body (Nodes (1), Nodes (2), Nodes (3), Nodes (4), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, (Self.Factory.Aspect_Specification_Sequence), Nodes (5), (Self.Factory.Declarative_Item_Sequence), Nodes (6), Nodes (7), Nodes (8), Nodes (9), Nodes (10), Nodes (11), Nodes (12)); when 1810 => Nodes (1) := Self.Factory.Procedure_Body (Nodes (1), Nodes (2), Nodes (3), Nodes (4), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, (Self.Factory.Aspect_Specification_Sequence), Nodes (5), (Self.Factory.Declarative_Item_Sequence), Nodes (6), Nodes (7), Nodes (8), Nodes (9), Nodes (10), None, Nodes (11)); when 1811 => Nodes (1) := Self.Factory.Procedure_Body (Nodes (1), Nodes (2), Nodes (3), Nodes (4), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, (Self.Factory.Aspect_Specification_Sequence), Nodes (5), (Self.Factory.Declarative_Item_Sequence), Nodes (6), Nodes (7), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (8), Nodes (9), Nodes (10)); when 1812 => Nodes (1) := Self.Factory.Procedure_Body (Nodes (1), Nodes (2), Nodes (3), Nodes (4), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, (Self.Factory.Aspect_Specification_Sequence), Nodes (5), (Self.Factory.Declarative_Item_Sequence), Nodes (6), Nodes (7), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (8), None, Nodes (9)); when 1813 => Nodes (1) := Self.Factory.Procedure_Body (Nodes (1), Nodes (2), Nodes (3), Nodes (4), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, (Self.Factory.Aspect_Specification_Sequence), Nodes (5), (Self.Factory.Declarative_Item_Sequence), No_Token, (Self.Factory.Statement_Sequence), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (6), Nodes (7), Nodes (8)); when 1814 => Nodes (1) := Self.Factory.Procedure_Body (Nodes (1), Nodes (2), Nodes (3), Nodes (4), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, (Self.Factory.Aspect_Specification_Sequence), Nodes (5), (Self.Factory.Declarative_Item_Sequence), No_Token, (Self.Factory.Statement_Sequence), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (6), None, Nodes (7)); when 1815 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), Nodes (8), Nodes (9), Nodes (10), Nodes (11), Nodes (12), Nodes (13), Nodes (14), Nodes (15), Nodes (16)); when 1816 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), Nodes (8), Nodes (9), Nodes (10), Nodes (11), Nodes (12), Nodes (13), Nodes (14), None, Nodes (15)); when 1817 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), Nodes (8), Nodes (9), Nodes (10), Nodes (11), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (12), Nodes (13), Nodes (14)); when 1818 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), Nodes (8), Nodes (9), Nodes (10), Nodes (11), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (12), None, Nodes (13)); when 1819 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), Nodes (8), Nodes (9), No_Token, (Self.Factory.Statement_Sequence), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (10), Nodes (11), Nodes (12)); when 1820 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), Nodes (8), Nodes (9), No_Token, (Self.Factory.Statement_Sequence), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (10), None, Nodes (11)); when 1821 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), Nodes (8), (Self.Factory.Declarative_Item_Sequence), Nodes (9), Nodes (10), Nodes (11), Nodes (12), Nodes (13), Nodes (14), Nodes (15)); when 1822 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), Nodes (8), (Self.Factory.Declarative_Item_Sequence), Nodes (9), Nodes (10), Nodes (11), Nodes (12), Nodes (13), None, Nodes (14)); when 1823 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), Nodes (8), (Self.Factory.Declarative_Item_Sequence), Nodes (9), Nodes (10), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (11), Nodes (12), Nodes (13)); when 1824 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), Nodes (8), (Self.Factory.Declarative_Item_Sequence), Nodes (9), Nodes (10), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (11), None, Nodes (12)); when 1825 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), Nodes (8), (Self.Factory.Declarative_Item_Sequence), No_Token, (Self.Factory.Statement_Sequence), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (9), Nodes (10), Nodes (11)); when 1826 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), Nodes (8), (Self.Factory.Declarative_Item_Sequence), No_Token, (Self.Factory.Statement_Sequence), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (9), None, Nodes (10)); when 1827 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), (Self.Factory.Aspect_Specification_Sequence), Nodes (7), Nodes (8), Nodes (9), Nodes (10), Nodes (11), Nodes (12), Nodes (13), Nodes (14), Nodes (15)); when 1828 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), (Self.Factory.Aspect_Specification_Sequence), Nodes (7), Nodes (8), Nodes (9), Nodes (10), Nodes (11), Nodes (12), Nodes (13), None, Nodes (14)); when 1829 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), (Self.Factory.Aspect_Specification_Sequence), Nodes (7), Nodes (8), Nodes (9), Nodes (10), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (11), Nodes (12), Nodes (13)); when 1830 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), (Self.Factory.Aspect_Specification_Sequence), Nodes (7), Nodes (8), Nodes (9), Nodes (10), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (11), None, Nodes (12)); when 1831 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), (Self.Factory.Aspect_Specification_Sequence), Nodes (7), Nodes (8), No_Token, (Self.Factory.Statement_Sequence), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (9), Nodes (10), Nodes (11)); when 1832 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), (Self.Factory.Aspect_Specification_Sequence), Nodes (7), Nodes (8), No_Token, (Self.Factory.Statement_Sequence), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (9), None, Nodes (10)); when 1833 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), (Self.Factory.Aspect_Specification_Sequence), Nodes (7), (Self.Factory.Declarative_Item_Sequence), Nodes (8), Nodes (9), Nodes (10), Nodes (11), Nodes (12), Nodes (13), Nodes (14)); when 1834 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), (Self.Factory.Aspect_Specification_Sequence), Nodes (7), (Self.Factory.Declarative_Item_Sequence), Nodes (8), Nodes (9), Nodes (10), Nodes (11), Nodes (12), None, Nodes (13)); when 1835 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), (Self.Factory.Aspect_Specification_Sequence), Nodes (7), (Self.Factory.Declarative_Item_Sequence), Nodes (8), Nodes (9), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (10), Nodes (11), Nodes (12)); when 1836 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), (Self.Factory.Aspect_Specification_Sequence), Nodes (7), (Self.Factory.Declarative_Item_Sequence), Nodes (8), Nodes (9), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (10), None, Nodes (11)); when 1837 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), (Self.Factory.Aspect_Specification_Sequence), Nodes (7), (Self.Factory.Declarative_Item_Sequence), No_Token, (Self.Factory.Statement_Sequence), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (8), Nodes (9), Nodes (10)); when 1838 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), (Self.Factory.Aspect_Specification_Sequence), Nodes (7), (Self.Factory.Declarative_Item_Sequence), No_Token, (Self.Factory.Statement_Sequence), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (8), None, Nodes (9)); when 1839 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, Nodes (1), Nodes (2), Nodes (3), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, Nodes (4), Nodes (5), Nodes (6), Nodes (7), Nodes (8), Nodes (9), Nodes (10), Nodes (11), Nodes (12), Nodes (13)); when 1840 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, Nodes (1), Nodes (2), Nodes (3), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, Nodes (4), Nodes (5), Nodes (6), Nodes (7), Nodes (8), Nodes (9), Nodes (10), Nodes (11), None, Nodes (12)); when 1841 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, Nodes (1), Nodes (2), Nodes (3), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, Nodes (4), Nodes (5), Nodes (6), Nodes (7), Nodes (8), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (9), Nodes (10), Nodes (11)); when 1842 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, Nodes (1), Nodes (2), Nodes (3), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, Nodes (4), Nodes (5), Nodes (6), Nodes (7), Nodes (8), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (9), None, Nodes (10)); when 1843 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, Nodes (1), Nodes (2), Nodes (3), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, Nodes (4), Nodes (5), Nodes (6), No_Token, (Self.Factory.Statement_Sequence), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (7), Nodes (8), Nodes (9)); when 1844 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, Nodes (1), Nodes (2), Nodes (3), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, Nodes (4), Nodes (5), Nodes (6), No_Token, (Self.Factory.Statement_Sequence), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (7), None, Nodes (8)); when 1845 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, Nodes (1), Nodes (2), Nodes (3), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, Nodes (4), Nodes (5), (Self.Factory.Declarative_Item_Sequence), Nodes (6), Nodes (7), Nodes (8), Nodes (9), Nodes (10), Nodes (11), Nodes (12)); when 1846 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, Nodes (1), Nodes (2), Nodes (3), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, Nodes (4), Nodes (5), (Self.Factory.Declarative_Item_Sequence), Nodes (6), Nodes (7), Nodes (8), Nodes (9), Nodes (10), None, Nodes (11)); when 1847 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, Nodes (1), Nodes (2), Nodes (3), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, Nodes (4), Nodes (5), (Self.Factory.Declarative_Item_Sequence), Nodes (6), Nodes (7), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (8), Nodes (9), Nodes (10)); when 1848 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, Nodes (1), Nodes (2), Nodes (3), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, Nodes (4), Nodes (5), (Self.Factory.Declarative_Item_Sequence), Nodes (6), Nodes (7), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (8), None, Nodes (9)); when 1849 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, Nodes (1), Nodes (2), Nodes (3), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, Nodes (4), Nodes (5), (Self.Factory.Declarative_Item_Sequence), No_Token, (Self.Factory.Statement_Sequence), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (6), Nodes (7), Nodes (8)); when 1850 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, Nodes (1), Nodes (2), Nodes (3), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, Nodes (4), Nodes (5), (Self.Factory.Declarative_Item_Sequence), No_Token, (Self.Factory.Statement_Sequence), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (6), None, Nodes (7)); when 1851 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, Nodes (1), Nodes (2), Nodes (3), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, (Self.Factory.Aspect_Specification_Sequence), Nodes (4), Nodes (5), Nodes (6), Nodes (7), Nodes (8), Nodes (9), Nodes (10), Nodes (11), Nodes (12)); when 1852 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, Nodes (1), Nodes (2), Nodes (3), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, (Self.Factory.Aspect_Specification_Sequence), Nodes (4), Nodes (5), Nodes (6), Nodes (7), Nodes (8), Nodes (9), Nodes (10), None, Nodes (11)); when 1853 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, Nodes (1), Nodes (2), Nodes (3), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, (Self.Factory.Aspect_Specification_Sequence), Nodes (4), Nodes (5), Nodes (6), Nodes (7), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (8), Nodes (9), Nodes (10)); when 1854 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, Nodes (1), Nodes (2), Nodes (3), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, (Self.Factory.Aspect_Specification_Sequence), Nodes (4), Nodes (5), Nodes (6), Nodes (7), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (8), None, Nodes (9)); when 1855 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, Nodes (1), Nodes (2), Nodes (3), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, (Self.Factory.Aspect_Specification_Sequence), Nodes (4), Nodes (5), No_Token, (Self.Factory.Statement_Sequence), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (6), Nodes (7), Nodes (8)); when 1856 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, Nodes (1), Nodes (2), Nodes (3), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, (Self.Factory.Aspect_Specification_Sequence), Nodes (4), Nodes (5), No_Token, (Self.Factory.Statement_Sequence), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (6), None, Nodes (7)); when 1857 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, Nodes (1), Nodes (2), Nodes (3), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, (Self.Factory.Aspect_Specification_Sequence), Nodes (4), (Self.Factory.Declarative_Item_Sequence), Nodes (5), Nodes (6), Nodes (7), Nodes (8), Nodes (9), Nodes (10), Nodes (11)); when 1858 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, Nodes (1), Nodes (2), Nodes (3), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, (Self.Factory.Aspect_Specification_Sequence), Nodes (4), (Self.Factory.Declarative_Item_Sequence), Nodes (5), Nodes (6), Nodes (7), Nodes (8), Nodes (9), None, Nodes (10)); when 1859 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, Nodes (1), Nodes (2), Nodes (3), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, (Self.Factory.Aspect_Specification_Sequence), Nodes (4), (Self.Factory.Declarative_Item_Sequence), Nodes (5), Nodes (6), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (7), Nodes (8), Nodes (9)); when 1860 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, Nodes (1), Nodes (2), Nodes (3), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, (Self.Factory.Aspect_Specification_Sequence), Nodes (4), (Self.Factory.Declarative_Item_Sequence), Nodes (5), Nodes (6), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (7), None, Nodes (8)); when 1861 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, Nodes (1), Nodes (2), Nodes (3), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, (Self.Factory.Aspect_Specification_Sequence), Nodes (4), (Self.Factory.Declarative_Item_Sequence), No_Token, (Self.Factory.Statement_Sequence), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (5), Nodes (6), Nodes (7)); when 1862 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, Nodes (1), Nodes (2), Nodes (3), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, (Self.Factory.Aspect_Specification_Sequence), Nodes (4), (Self.Factory.Declarative_Item_Sequence), No_Token, (Self.Factory.Statement_Sequence), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (5), None, Nodes (6)); when 1863 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, No_Token, Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), Nodes (8), Nodes (9), Nodes (10), Nodes (11), Nodes (12), Nodes (13), Nodes (14), Nodes (15)); when 1864 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, No_Token, Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), Nodes (8), Nodes (9), Nodes (10), Nodes (11), Nodes (12), Nodes (13), None, Nodes (14)); when 1865 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, No_Token, Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), Nodes (8), Nodes (9), Nodes (10), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (11), Nodes (12), Nodes (13)); when 1866 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, No_Token, Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), Nodes (8), Nodes (9), Nodes (10), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (11), None, Nodes (12)); when 1867 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, No_Token, Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), Nodes (8), No_Token, (Self.Factory.Statement_Sequence), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (9), Nodes (10), Nodes (11)); when 1868 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, No_Token, Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), Nodes (8), No_Token, (Self.Factory.Statement_Sequence), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (9), None, Nodes (10)); when 1869 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, No_Token, Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), (Self.Factory.Declarative_Item_Sequence), Nodes (8), Nodes (9), Nodes (10), Nodes (11), Nodes (12), Nodes (13), Nodes (14)); when 1870 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, No_Token, Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), (Self.Factory.Declarative_Item_Sequence), Nodes (8), Nodes (9), Nodes (10), Nodes (11), Nodes (12), None, Nodes (13)); when 1871 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, No_Token, Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), (Self.Factory.Declarative_Item_Sequence), Nodes (8), Nodes (9), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (10), Nodes (11), Nodes (12)); when 1872 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, No_Token, Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), (Self.Factory.Declarative_Item_Sequence), Nodes (8), Nodes (9), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (10), None, Nodes (11)); when 1873 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, No_Token, Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), (Self.Factory.Declarative_Item_Sequence), No_Token, (Self.Factory.Statement_Sequence), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (8), Nodes (9), Nodes (10)); when 1874 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, No_Token, Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), (Self.Factory.Declarative_Item_Sequence), No_Token, (Self.Factory.Statement_Sequence), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (8), None, Nodes (9)); when 1875 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, No_Token, Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), (Self.Factory.Aspect_Specification_Sequence), Nodes (6), Nodes (7), Nodes (8), Nodes (9), Nodes (10), Nodes (11), Nodes (12), Nodes (13), Nodes (14)); when 1876 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, No_Token, Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), (Self.Factory.Aspect_Specification_Sequence), Nodes (6), Nodes (7), Nodes (8), Nodes (9), Nodes (10), Nodes (11), Nodes (12), None, Nodes (13)); when 1877 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, No_Token, Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), (Self.Factory.Aspect_Specification_Sequence), Nodes (6), Nodes (7), Nodes (8), Nodes (9), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (10), Nodes (11), Nodes (12)); when 1878 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, No_Token, Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), (Self.Factory.Aspect_Specification_Sequence), Nodes (6), Nodes (7), Nodes (8), Nodes (9), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (10), None, Nodes (11)); when 1879 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, No_Token, Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), (Self.Factory.Aspect_Specification_Sequence), Nodes (6), Nodes (7), No_Token, (Self.Factory.Statement_Sequence), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (8), Nodes (9), Nodes (10)); when 1880 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, No_Token, Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), (Self.Factory.Aspect_Specification_Sequence), Nodes (6), Nodes (7), No_Token, (Self.Factory.Statement_Sequence), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (8), None, Nodes (9)); when 1881 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, No_Token, Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), (Self.Factory.Aspect_Specification_Sequence), Nodes (6), (Self.Factory.Declarative_Item_Sequence), Nodes (7), Nodes (8), Nodes (9), Nodes (10), Nodes (11), Nodes (12), Nodes (13)); when 1882 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, No_Token, Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), (Self.Factory.Aspect_Specification_Sequence), Nodes (6), (Self.Factory.Declarative_Item_Sequence), Nodes (7), Nodes (8), Nodes (9), Nodes (10), Nodes (11), None, Nodes (12)); when 1883 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, No_Token, Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), (Self.Factory.Aspect_Specification_Sequence), Nodes (6), (Self.Factory.Declarative_Item_Sequence), Nodes (7), Nodes (8), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (9), Nodes (10), Nodes (11)); when 1884 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, No_Token, Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), (Self.Factory.Aspect_Specification_Sequence), Nodes (6), (Self.Factory.Declarative_Item_Sequence), Nodes (7), Nodes (8), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (9), None, Nodes (10)); when 1885 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, No_Token, Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), (Self.Factory.Aspect_Specification_Sequence), Nodes (6), (Self.Factory.Declarative_Item_Sequence), No_Token, (Self.Factory.Statement_Sequence), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (7), Nodes (8), Nodes (9)); when 1886 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, No_Token, Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), (Self.Factory.Aspect_Specification_Sequence), Nodes (6), (Self.Factory.Declarative_Item_Sequence), No_Token, (Self.Factory.Statement_Sequence), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (7), None, Nodes (8)); when 1887 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, No_Token, Nodes (1), Nodes (2), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), Nodes (8), Nodes (9), Nodes (10), Nodes (11), Nodes (12)); when 1888 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, No_Token, Nodes (1), Nodes (2), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), Nodes (8), Nodes (9), Nodes (10), None, Nodes (11)); when 1889 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, No_Token, Nodes (1), Nodes (2), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (8), Nodes (9), Nodes (10)); when 1890 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, No_Token, Nodes (1), Nodes (2), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (8), None, Nodes (9)); when 1891 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, No_Token, Nodes (1), Nodes (2), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, Nodes (3), Nodes (4), Nodes (5), No_Token, (Self.Factory.Statement_Sequence), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (6), Nodes (7), Nodes (8)); when 1892 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, No_Token, Nodes (1), Nodes (2), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, Nodes (3), Nodes (4), Nodes (5), No_Token, (Self.Factory.Statement_Sequence), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (6), None, Nodes (7)); when 1893 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, No_Token, Nodes (1), Nodes (2), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, Nodes (3), Nodes (4), (Self.Factory.Declarative_Item_Sequence), Nodes (5), Nodes (6), Nodes (7), Nodes (8), Nodes (9), Nodes (10), Nodes (11)); when 1894 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, No_Token, Nodes (1), Nodes (2), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, Nodes (3), Nodes (4), (Self.Factory.Declarative_Item_Sequence), Nodes (5), Nodes (6), Nodes (7), Nodes (8), Nodes (9), None, Nodes (10)); when 1895 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, No_Token, Nodes (1), Nodes (2), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, Nodes (3), Nodes (4), (Self.Factory.Declarative_Item_Sequence), Nodes (5), Nodes (6), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (7), Nodes (8), Nodes (9)); when 1896 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, No_Token, Nodes (1), Nodes (2), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, Nodes (3), Nodes (4), (Self.Factory.Declarative_Item_Sequence), Nodes (5), Nodes (6), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (7), None, Nodes (8)); when 1897 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, No_Token, Nodes (1), Nodes (2), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, Nodes (3), Nodes (4), (Self.Factory.Declarative_Item_Sequence), No_Token, (Self.Factory.Statement_Sequence), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (5), Nodes (6), Nodes (7)); when 1898 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, No_Token, Nodes (1), Nodes (2), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, Nodes (3), Nodes (4), (Self.Factory.Declarative_Item_Sequence), No_Token, (Self.Factory.Statement_Sequence), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (5), None, Nodes (6)); when 1899 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, No_Token, Nodes (1), Nodes (2), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, (Self.Factory.Aspect_Specification_Sequence), Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), Nodes (8), Nodes (9), Nodes (10), Nodes (11)); when 1900 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, No_Token, Nodes (1), Nodes (2), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, (Self.Factory.Aspect_Specification_Sequence), Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), Nodes (8), Nodes (9), None, Nodes (10)); when 1901 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, No_Token, Nodes (1), Nodes (2), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, (Self.Factory.Aspect_Specification_Sequence), Nodes (3), Nodes (4), Nodes (5), Nodes (6), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (7), Nodes (8), Nodes (9)); when 1902 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, No_Token, Nodes (1), Nodes (2), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, (Self.Factory.Aspect_Specification_Sequence), Nodes (3), Nodes (4), Nodes (5), Nodes (6), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (7), None, Nodes (8)); when 1903 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, No_Token, Nodes (1), Nodes (2), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, (Self.Factory.Aspect_Specification_Sequence), Nodes (3), Nodes (4), No_Token, (Self.Factory.Statement_Sequence), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (5), Nodes (6), Nodes (7)); when 1904 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, No_Token, Nodes (1), Nodes (2), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, (Self.Factory.Aspect_Specification_Sequence), Nodes (3), Nodes (4), No_Token, (Self.Factory.Statement_Sequence), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (5), None, Nodes (6)); when 1905 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, No_Token, Nodes (1), Nodes (2), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, (Self.Factory.Aspect_Specification_Sequence), Nodes (3), (Self.Factory.Declarative_Item_Sequence), Nodes (4), Nodes (5), Nodes (6), Nodes (7), Nodes (8), Nodes (9), Nodes (10)); when 1906 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, No_Token, Nodes (1), Nodes (2), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, (Self.Factory.Aspect_Specification_Sequence), Nodes (3), (Self.Factory.Declarative_Item_Sequence), Nodes (4), Nodes (5), Nodes (6), Nodes (7), Nodes (8), None, Nodes (9)); when 1907 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, No_Token, Nodes (1), Nodes (2), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, (Self.Factory.Aspect_Specification_Sequence), Nodes (3), (Self.Factory.Declarative_Item_Sequence), Nodes (4), Nodes (5), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (6), Nodes (7), Nodes (8)); when 1908 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, No_Token, Nodes (1), Nodes (2), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, (Self.Factory.Aspect_Specification_Sequence), Nodes (3), (Self.Factory.Declarative_Item_Sequence), Nodes (4), Nodes (5), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (6), None, Nodes (7)); when 1909 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, No_Token, Nodes (1), Nodes (2), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, (Self.Factory.Aspect_Specification_Sequence), Nodes (3), (Self.Factory.Declarative_Item_Sequence), No_Token, (Self.Factory.Statement_Sequence), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (4), Nodes (5), Nodes (6)); when 1910 => Nodes (1) := Self.Factory.Procedure_Body (No_Token, No_Token, Nodes (1), Nodes (2), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, (Self.Factory.Aspect_Specification_Sequence), Nodes (3), (Self.Factory.Declarative_Item_Sequence), No_Token, (Self.Factory.Statement_Sequence), No_Token, (Self.Factory.Exception_Handler_Sequence), Nodes (4), None, Nodes (5)); when 1911 => Nodes (1) := Self.Factory.Procedure_Declaration (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), Nodes (8), No_Token, No_Token, None, No_Token, Nodes (10), Nodes (11)); when 1912 => Nodes (1) := Self.Factory.Procedure_Declaration (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), Nodes (8), No_Token, No_Token, None, No_Token, (Self.Factory.Aspect_Specification_Sequence), Nodes (10)); when 1913 => Nodes (1) := Self.Factory.Procedure_Declaration (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), No_Token, No_Token, Nodes (8), Nodes (9), No_Token, Nodes (10), Nodes (11)); when 1914 => Nodes (1) := Self.Factory.Procedure_Declaration (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), No_Token, No_Token, Nodes (8), Nodes (9), No_Token, (Self.Factory.Aspect_Specification_Sequence), Nodes (10)); when 1915 => Nodes (1) := Self.Factory.Procedure_Declaration (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), Nodes (8), No_Token, No_Token, None, Nodes (9), Nodes (10), Nodes (11)); when 1916 => Nodes (1) := Self.Factory.Procedure_Declaration (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), Nodes (8), No_Token, No_Token, None, Nodes (9), (Self.Factory.Aspect_Specification_Sequence), Nodes (10)); when 1917 => Nodes (1) := Self.Factory.Procedure_Declaration (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), No_Token, No_Token, No_Token, None, No_Token, Nodes (8), Nodes (9)); when 1918 => Nodes (1) := Self.Factory.Procedure_Declaration (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), No_Token, No_Token, No_Token, None, No_Token, (Self.Factory.Aspect_Specification_Sequence), Nodes (8)); when 1919 => Nodes (1) := Self.Factory.Procedure_Declaration (Nodes (1), Nodes (2), Nodes (3), Nodes (4), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, Nodes (5), No_Token, No_Token, None, No_Token, Nodes (7), Nodes (8)); when 1920 => Nodes (1) := Self.Factory.Procedure_Declaration (Nodes (1), Nodes (2), Nodes (3), Nodes (4), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, Nodes (5), No_Token, No_Token, None, No_Token, (Self.Factory.Aspect_Specification_Sequence), Nodes (7)); when 1921 => Nodes (1) := Self.Factory.Procedure_Declaration (Nodes (1), Nodes (2), Nodes (3), Nodes (4), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, No_Token, No_Token, Nodes (5), Nodes (6), No_Token, Nodes (7), Nodes (8)); when 1922 => Nodes (1) := Self.Factory.Procedure_Declaration (Nodes (1), Nodes (2), Nodes (3), Nodes (4), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, No_Token, No_Token, Nodes (5), Nodes (6), No_Token, (Self.Factory.Aspect_Specification_Sequence), Nodes (7)); when 1923 => Nodes (1) := Self.Factory.Procedure_Declaration (Nodes (1), Nodes (2), Nodes (3), Nodes (4), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, Nodes (5), No_Token, No_Token, None, Nodes (6), Nodes (7), Nodes (8)); when 1924 => Nodes (1) := Self.Factory.Procedure_Declaration (Nodes (1), Nodes (2), Nodes (3), Nodes (4), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, Nodes (5), No_Token, No_Token, None, Nodes (6), (Self.Factory.Aspect_Specification_Sequence), Nodes (7)); when 1925 => Nodes (1) := Self.Factory.Procedure_Declaration (Nodes (1), Nodes (2), Nodes (3), Nodes (4), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, No_Token, No_Token, No_Token, None, No_Token, Nodes (5), Nodes (6)); when 1926 => Nodes (1) := Self.Factory.Procedure_Declaration (Nodes (1), Nodes (2), Nodes (3), Nodes (4), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, No_Token, No_Token, No_Token, None, No_Token, (Self.Factory.Aspect_Specification_Sequence), Nodes (5)); when 1927 => Nodes (1) := Self.Factory.Procedure_Declaration (No_Token, Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), No_Token, No_Token, None, No_Token, Nodes (9), Nodes (10)); when 1928 => Nodes (1) := Self.Factory.Procedure_Declaration (No_Token, Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), No_Token, No_Token, None, No_Token, (Self.Factory.Aspect_Specification_Sequence), Nodes (9)); when 1929 => Nodes (1) := Self.Factory.Procedure_Declaration (No_Token, Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), No_Token, No_Token, Nodes (7), Nodes (8), No_Token, Nodes (9), Nodes (10)); when 1930 => Nodes (1) := Self.Factory.Procedure_Declaration (No_Token, Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), No_Token, No_Token, Nodes (7), Nodes (8), No_Token, (Self.Factory.Aspect_Specification_Sequence), Nodes (9)); when 1931 => Nodes (1) := Self.Factory.Procedure_Declaration (No_Token, Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), No_Token, No_Token, None, Nodes (8), Nodes (9), Nodes (10)); when 1932 => Nodes (1) := Self.Factory.Procedure_Declaration (No_Token, Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), No_Token, No_Token, None, Nodes (8), (Self.Factory.Aspect_Specification_Sequence), Nodes (9)); when 1933 => Nodes (1) := Self.Factory.Procedure_Declaration (No_Token, Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), No_Token, No_Token, No_Token, None, No_Token, Nodes (7), Nodes (8)); when 1934 => Nodes (1) := Self.Factory.Procedure_Declaration (No_Token, Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), No_Token, No_Token, No_Token, None, No_Token, (Self.Factory.Aspect_Specification_Sequence), Nodes (7)); when 1935 => Nodes (1) := Self.Factory.Procedure_Declaration (No_Token, Nodes (1), Nodes (2), Nodes (3), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, Nodes (4), No_Token, No_Token, None, No_Token, Nodes (6), Nodes (7)); when 1936 => Nodes (1) := Self.Factory.Procedure_Declaration (No_Token, Nodes (1), Nodes (2), Nodes (3), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, Nodes (4), No_Token, No_Token, None, No_Token, (Self.Factory.Aspect_Specification_Sequence), Nodes (6)); when 1937 => Nodes (1) := Self.Factory.Procedure_Declaration (No_Token, Nodes (1), Nodes (2), Nodes (3), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, No_Token, No_Token, Nodes (4), Nodes (5), No_Token, Nodes (6), Nodes (7)); when 1938 => Nodes (1) := Self.Factory.Procedure_Declaration (No_Token, Nodes (1), Nodes (2), Nodes (3), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, No_Token, No_Token, Nodes (4), Nodes (5), No_Token, (Self.Factory.Aspect_Specification_Sequence), Nodes (6)); when 1939 => Nodes (1) := Self.Factory.Procedure_Declaration (No_Token, Nodes (1), Nodes (2), Nodes (3), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, Nodes (4), No_Token, No_Token, None, Nodes (5), Nodes (6), Nodes (7)); when 1940 => Nodes (1) := Self.Factory.Procedure_Declaration (No_Token, Nodes (1), Nodes (2), Nodes (3), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, Nodes (4), No_Token, No_Token, None, Nodes (5), (Self.Factory.Aspect_Specification_Sequence), Nodes (6)); when 1941 => Nodes (1) := Self.Factory.Procedure_Declaration (No_Token, Nodes (1), Nodes (2), Nodes (3), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, No_Token, No_Token, No_Token, None, No_Token, Nodes (4), Nodes (5)); when 1942 => Nodes (1) := Self.Factory.Procedure_Declaration (No_Token, Nodes (1), Nodes (2), Nodes (3), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, No_Token, No_Token, No_Token, None, No_Token, (Self.Factory.Aspect_Specification_Sequence), Nodes (4)); when 1943 => Nodes (1) := Self.Factory.Procedure_Declaration (No_Token, No_Token, Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), No_Token, No_Token, None, No_Token, Nodes (8), Nodes (9)); when 1944 => Nodes (1) := Self.Factory.Procedure_Declaration (No_Token, No_Token, Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), No_Token, No_Token, None, No_Token, (Self.Factory.Aspect_Specification_Sequence), Nodes (8)); when 1945 => Nodes (1) := Self.Factory.Procedure_Declaration (No_Token, No_Token, Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), No_Token, No_Token, Nodes (6), Nodes (7), No_Token, Nodes (8), Nodes (9)); when 1946 => Nodes (1) := Self.Factory.Procedure_Declaration (No_Token, No_Token, Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), No_Token, No_Token, Nodes (6), Nodes (7), No_Token, (Self.Factory.Aspect_Specification_Sequence), Nodes (8)); when 1947 => Nodes (1) := Self.Factory.Procedure_Declaration (No_Token, No_Token, Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), No_Token, No_Token, None, Nodes (7), Nodes (8), Nodes (9)); when 1948 => Nodes (1) := Self.Factory.Procedure_Declaration (No_Token, No_Token, Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), No_Token, No_Token, None, Nodes (7), (Self.Factory.Aspect_Specification_Sequence), Nodes (8)); when 1949 => Nodes (1) := Self.Factory.Procedure_Declaration (No_Token, No_Token, Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), No_Token, No_Token, No_Token, None, No_Token, Nodes (6), Nodes (7)); when 1950 => Nodes (1) := Self.Factory.Procedure_Declaration (No_Token, No_Token, Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), No_Token, No_Token, No_Token, None, No_Token, (Self.Factory.Aspect_Specification_Sequence), Nodes (6)); when 1951 => Nodes (1) := Self.Factory.Procedure_Declaration (No_Token, No_Token, Nodes (1), Nodes (2), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, Nodes (3), No_Token, No_Token, None, No_Token, Nodes (5), Nodes (6)); when 1952 => Nodes (1) := Self.Factory.Procedure_Declaration (No_Token, No_Token, Nodes (1), Nodes (2), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, Nodes (3), No_Token, No_Token, None, No_Token, (Self.Factory.Aspect_Specification_Sequence), Nodes (5)); when 1953 => Nodes (1) := Self.Factory.Procedure_Declaration (No_Token, No_Token, Nodes (1), Nodes (2), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, No_Token, No_Token, Nodes (3), Nodes (4), No_Token, Nodes (5), Nodes (6)); when 1954 => Nodes (1) := Self.Factory.Procedure_Declaration (No_Token, No_Token, Nodes (1), Nodes (2), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, No_Token, No_Token, Nodes (3), Nodes (4), No_Token, (Self.Factory.Aspect_Specification_Sequence), Nodes (5)); when 1955 => Nodes (1) := Self.Factory.Procedure_Declaration (No_Token, No_Token, Nodes (1), Nodes (2), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, Nodes (3), No_Token, No_Token, None, Nodes (4), Nodes (5), Nodes (6)); when 1956 => Nodes (1) := Self.Factory.Procedure_Declaration (No_Token, No_Token, Nodes (1), Nodes (2), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, Nodes (3), No_Token, No_Token, None, Nodes (4), (Self.Factory.Aspect_Specification_Sequence), Nodes (5)); when 1957 => Nodes (1) := Self.Factory.Procedure_Declaration (No_Token, No_Token, Nodes (1), Nodes (2), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, No_Token, No_Token, No_Token, None, No_Token, Nodes (3), Nodes (4)); when 1958 => Nodes (1) := Self.Factory.Procedure_Declaration (No_Token, No_Token, Nodes (1), Nodes (2), No_Token, (Self.Factory.Parameter_Specification_Sequence), No_Token, No_Token, No_Token, No_Token, None, No_Token, (Self.Factory.Aspect_Specification_Sequence), Nodes (3)); when 1959 => null; when 1960 => null; when 1961 => declare List : Node := Nodes (1); begin Self.Factory.Append_Program_Unit_Name (List, Nodes (3)); Nodes (1) := List; end; when 1962 => declare List : Node := Self. Factory.Program_Unit_Name_Sequence; begin Self.Factory.Append_Program_Unit_Name (List, Nodes (2)); Nodes (1) := List; end; when 1963 => null; when 1964 => null; when 1965 => null; when 1966 => null; when 1967 => null; when 1968 => Nodes (1) := Self.Factory.Protected_Body (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), Nodes (8), Nodes (9)); when 1969 => Nodes (1) := Self.Factory.Protected_Body (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7), No_Token, Nodes (8)); when 1970 => Nodes (1) := Self.Factory.Protected_Body (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), (Self.Factory.Protected_Operation_Item_Sequence), Nodes (6), Nodes (7), Nodes (8)); when 1971 => Nodes (1) := Self.Factory.Protected_Body (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), (Self.Factory.Protected_Operation_Item_Sequence), Nodes (6), No_Token, Nodes (7)); when 1972 => Nodes (1) := Self.Factory.Protected_Body (Nodes (1), Nodes (2), Nodes (3), (Self.Factory.Aspect_Specification_Sequence), Nodes (4), Nodes (5), Nodes (6), Nodes (7), Nodes (8)); when 1973 => Nodes (1) := Self.Factory.Protected_Body (Nodes (1), Nodes (2), Nodes (3), (Self.Factory.Aspect_Specification_Sequence), Nodes (4), Nodes (5), Nodes (6), No_Token, Nodes (7)); when 1974 => Nodes (1) := Self.Factory.Protected_Body (Nodes (1), Nodes (2), Nodes (3), (Self.Factory.Aspect_Specification_Sequence), Nodes (4), (Self.Factory.Protected_Operation_Item_Sequence), Nodes (5), Nodes (6), Nodes (7)); when 1975 => Nodes (1) := Self.Factory.Protected_Body (Nodes (1), Nodes (2), Nodes (3), (Self.Factory.Aspect_Specification_Sequence), Nodes (4), (Self.Factory.Protected_Operation_Item_Sequence), Nodes (5), No_Token, Nodes (6)); when 1976 => Nodes (1) := Self.Factory.Protected_Body_Stub (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), Nodes (6), Nodes (7)); when 1977 => Nodes (1) := Self.Factory.Protected_Body_Stub (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5), (Self.Factory.Aspect_Specification_Sequence), Nodes (6)); when 1978 => Nodes (1) := Self.Factory.Protected_Definition (Nodes (1), Nodes (2), Nodes (3), Nodes (4), Nodes (5)); when 1979 => Nodes (1) := Self.Factory.Protected_Definition (Nodes (1), Nodes (2), Nodes (3), Nodes (4), No_Token); when 1980 => Nodes (1) := Self.Factory.Protected_Definition (Nodes (1), Nodes (2), (Self.Factory.Protected_Element_Declaration_Sequence), Nodes (3), Nodes (4)); when 1981 => Nodes (1) := Self.Factory.Protected_Definition (Nodes (1), Nodes (2), (Self.Factory.Protected_Element_Declaration_Sequence), Nodes (3), No_Token); when 1982 => Nodes (1) := Self.Factory.Protected_Definition (Nodes (1), No_Token, (Self.Factory.Protected_Element_Declaration_Sequence), Nodes (2), Nodes (3)); when 1983 => Nodes (1) := Self.Factory.Protected_Definition (Nodes (1), No_Token, (Self.Factory.Protected_Element_Declaration_Sequence), Nodes (2), No_Token); when 1984 => Nodes (1) := Self.Factory.Protected_Definition ((Self.Factory.Protected_Operation_Declaration_Sequence), Nodes (1), Nodes (2), Nodes (3), Nodes (4)); when 1985 => Nodes (1) := Self.Factory.Protected_Definition ((Self.Factory.Protected_Operation_Declaration_Sequence), Nodes (1), Nodes (2), Nodes (3), No_Token); when 1986 => Nodes (1) := Self.Factory.Protected_Definition ((Self.Factory.Protected_Operation_Declaration_Sequence), Nodes (1), (Self.Factory.Protected_Element_Declaration_Sequence), Nodes (2), Nodes (3)); when 1987 => Nodes (1) := Self.Factory.Protected_Definition ((Self.Factory.Protected_Operation_Declaration_Sequence), Nodes (1), (Self.Factory.Protected_Element_Declaration_Sequence), Nodes (2), No_Token); when 1988 => Nodes (1) := Self.Factory.Protected_Definition ((Self.Factory.Protected_Operation_Declaration_Sequence), No_Token, (Self.Factory.Protected_Element_Declaration_Sequence), Nodes (1), Nodes (2)); when 1989 => Nodes (1) := Self.Factory.Protected_Definition ((Self.Factory.Protected_Operation_Declaration_Sequence), No_Token, (Self.Factory.Protected_Element_Declaration_Sequence), Nodes (1), No_Token); when 1990 => null; when 1991 => null; when 1992 => declare List : Node := Nodes (1); begin Self.Factory.Append_Protected_Element_Declaration (List, Nodes (2)); Nodes (1) := List; end; when 1993 => declare List : Node := Self. Factory.Protected_Element_Declaration_Sequence; begin Self.Factory.Append_Protected_Element_Declaration (List, Nodes (1)); Nodes (1) := List; end; when 1994 => null; when 1995 => null; when 1996 => null; when 1997 => null; when 1998 => declare List : Node := Nodes (1); begin Self.Factory.Append_Protected_Operation_Declaration (List, Nodes (2)); Nodes (1) := List; end; when 1999 => declare List : Node := Self. Factory.Protected_Operation_Declaration_Sequence; begin Self.Factory.Append_Protected_Operation_Declaration (List, Nodes (1)); Nodes (1) := List; end; when 2000 => null; when others => raise Constraint_Error; end case; end Program.Parsers.On_Reduce_1501;
------------------------------------------------------------------------------ -- -- -- GNAT LIBRARY COMPONENTS -- -- -- -- G N A T . R E G P A T -- -- -- -- S p e c -- -- -- -- Copyright (C) 1986 by University of Toronto. -- -- Copyright (C) 1996-2010, AdaCore -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- -- -- -- -- -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- This package implements roughly the same set of regular expressions as -- are available in the Perl or Python programming languages. -- This is an extension of the original V7 style regular expression library -- written in C by Henry Spencer. Apart from the translation to Ada, the -- interface has been considerably changed to use the Ada String type -- instead of C-style nul-terminated strings. -- See file s-regpat.ads for full documentation of the interface ------------------------------------------------------------ -- Summary of Pattern Matching Packages in GNAT Hierarchy -- ------------------------------------------------------------ -- There are three related packages that perform pattern matching functions. -- the following is an outline of these packages, to help you determine -- which is best for your needs. -- GNAT.Regexp (files g-regexp.ads/s-regexp.ads/s-regexp.adb) -- This is a simple package providing Unix-style regular expression -- matching with the restriction that it matches entire strings. It -- is particularly useful for file name matching, and in particular -- it provides "globbing patterns" that are useful in implementing -- unix or DOS style wild card matching for file names. -- GNAT.Regpat (files g-regpat.ads/s-regpat.ads/s-regpat.adb) -- This is a more complete implementation of Unix-style regular -- expressions, copied from the Perl regular expression engine, -- written originally in C by Henry Spencer. It is functionally the -- same as that library. -- GNAT.Spitbol.Patterns (files g-spipat.ads/g-spipat.adb) -- This is a completely general pattern matching package based on the -- pattern language of SNOBOL4, as implemented in SPITBOL. The pattern -- language is modeled on context free grammars, with context sensitive -- extensions that provide full (type 0) computational capabilities. with System.Regpat; package GNAT.Regpat renames System.Regpat;
-- C52103M.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 ELSEWHERE.) -- THIS IS THE THIRD FILE IN -- DIVISION C : NON-NULL ARRAYS WHOSE LENGTHS ARE NOT DETERMINABLE -- STATICALLY. -- RM 07/20/81 -- SPS 3/22/83 WITH REPORT; PROCEDURE C52103M IS USE REPORT ; BEGIN TEST( "C52103M" , "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(5) ) := "ABCDE" ; ARR72 : STRING( IDENT_INT(5)..IDENT_INT(9) ) := "FGHIJ" ; BEGIN -- STRING ASSIGNMENT: ARR72 := ARR71 ; -- CHECKING THE VALUES AFTER THE STRING ASSIGNMENT: IF ARR72 /= "ABCDE" 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 UNUSED COMPONENT OF LHS ARRAY: ARR82( IDENT_INT(5)..IDENT_INT(5) ) := "Q" ; -- STRING LITERAL ASSIGNMENT: ARR82( IDENT_INT(5)..IDENT_INT(9) ) ( IDENT_INT(6)..IDENT_INT(9) ) := "BCDE" ; -- CHECKING THE VALUES AFTER THE SLICE ASSIGNMENT: IF ARR82 /= "QBCDE" OR ARR82( IDENT_INT(5)..IDENT_INT(9) ) /= "QBCDE" 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 UNUSED COMPONENT OF LHS ARRAY: ARR92( IDENT_INT(5)..IDENT_INT(5) ) := "Q" ; -- STRING SLICE ASSIGNMENT: ARR92( IDENT_INT(5)..IDENT_INT(9) ) ( IDENT_INT(6)..IDENT_INT(9) ) := ARR91 ( IDENT_INT(1)..IDENT_INT(5) ) ( IDENT_INT(2)..IDENT_INT(5) ) ( IDENT_INT(2)..IDENT_INT(5) ) ; -- CHECKING THE VALUES AFTER THE SLICE ASSIGNMENT: IF ARR92 /= "QBCDE" OR ARR92( IDENT_INT(5)..IDENT_INT(9) ) /= "QBCDE" THEN FAILED( "SLICE ASSIGNMENT NOT CORRECT (9)" ); END IF; EXCEPTION WHEN OTHERS => FAILED( "EXCEPTION RAISED - SUBTEST 9" ); END ; ------------------------------------------------------------------- RESULT ; END C52103M ;
-- Abstract: -- -- An unbounded queue of definite non-limited elements. -- -- Copyright (C) 2017 - 2019 Free Software Foundation, Inc. -- -- 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 MERCHAN- -- TABILITY 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. pragma License (Modified_GPL); with SAL.Gen_Definite_Doubly_Linked_Lists; generic type Element_Type is private; package SAL.Gen_Unbounded_Definite_Queues is package Pkg renames SAL.Gen_Unbounded_Definite_Queues; type Queue is tagged private; Empty_Queue : constant Queue; procedure Clear (Queue : in out Pkg.Queue); -- Empty Queue. function Count (Queue : in Pkg.Queue) return Base_Peek_Type; -- Return count of items in the Queue function Length (Queue : in Pkg.Queue) return Base_Peek_Type renames Count; function Is_Empty (Queue : in Pkg.Queue) return Boolean; -- Return true if no items are in Queue. function Is_Full (Queue : in Pkg.Queue) return Boolean is (False); -- Return true if Queue is full. function Remove (Queue : in out Pkg.Queue) return Element_Type; -- Remove head/front item from Queue, return it. -- -- Raise Container_Empty if Is_Empty. function Get (Queue : in out Pkg.Queue) return Element_Type renames Remove; procedure Drop (Queue : in out Pkg.Queue); -- Remove head/front item from Queue, discard it. -- -- Raise Container_Empty if Is_Empty. type Constant_Reference_Type (Element : not null access constant Element_Type) is private with Implicit_Dereference => Element; function Peek (Queue : in Pkg.Queue; N : Peek_Type := 1) return Constant_Reference_Type; pragma Inline (Peek); -- Return a constant reference to a queue item. N = 1 is the queue -- head. -- -- Raise Parameter_Error if N > Count type Variable_Reference_Type (Element : not null access Element_Type) is private with Implicit_Dereference => Element; function Variable_Peek (Queue : in out Pkg.Queue; N : Peek_Type := 1) return Variable_Reference_Type; pragma Inline (Variable_Peek); -- Return a variable reference to a queue item. N = 1 is the queue -- head. -- -- Raises Parameter_Error if N > Count procedure Add (Queue : in out Pkg.Queue; Item : in Element_Type); -- Add Element to the tail/back of Queue. procedure Put (Queue : in out Pkg.Queue; Item : in Element_Type) renames Add; procedure Add_To_Head (Queue : in out Pkg.Queue; Item : in Element_Type); -- Add Element to the head/front of Queue. private package Element_Lists is new SAL.Gen_Definite_Doubly_Linked_Lists (Element_Type); -- We don't provide cursors or write access to queue elements, so we -- don't need any tampering checks. type Queue is tagged record Data : Element_Lists.List; -- Add at Tail/Back = Last, remove at Head/Front = First. end record; type Constant_Reference_Type (Element : not null access constant Element_Type) is record Dummy : Integer := raise Program_Error with "uninitialized reference"; end record; type Variable_Reference_Type (Element : not null access Element_Type) is record Dummy : Integer := raise Program_Error with "uninitialized reference"; end record; Empty_Queue : constant Queue := (Data => Element_Lists.Empty_List); end SAL.Gen_Unbounded_Definite_Queues;
<?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_Loop_LB2D_buf_p</name> <ret_bitwidth>0</ret_bitwidth> <ports class_id="2" tracking_level="0" version="0"> <count>2</count> <item_version>0</item_version> <item class_id="3" tracking_level="1" version="0" object_id="_1"> <Value class_id="4" tracking_level="0" version="0"> <Obj class_id="5" tracking_level="0" version="0"> <type>1</type> <id>1</id> <name>in_stream_V_value_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo class_id="6" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>stream&amp;lt;PackedStencil&amp;lt;unsigned int, 1, 1, 1, 1&amp;gt; &amp;gt;.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>slice_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></originalName> <rtlName></rtlName> <coreName>FIFO_SRL</coreName> </Obj> <bitwidth>96</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>43</count> <item_version>0</item_version> <item class_id="9" tracking_level="1" version="0" object_id="_3"> <Value> <Obj> <type>0</type> <id>7</id> <name>buffer_0_value_V</name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</fileDirectory> <lineNumber>168</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item class_id="10" tracking_level="0" version="0"> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second class_id="11" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="12" tracking_level="0" version="0"> <first class_id="13" tracking_level="0" version="0"> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>168</second> </item> </second> </item> </inlineStackInfo> <originalName>buffer[0].value.V</originalName> <rtlName></rtlName> <coreName>RAM</coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>71</item> </oprand_edges> <opcode>alloca</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_4"> <Value> <Obj> <type>0</type> <id>8</id> <name>buffer_1_value_V</name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</fileDirectory> <lineNumber>168</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>168</second> </item> </second> </item> </inlineStackInfo> <originalName>buffer[1].value.V</originalName> <rtlName></rtlName> <coreName>RAM</coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>72</item> </oprand_edges> <opcode>alloca</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_5"> <Value> <Obj> <type>0</type> <id>9</id> <name></name> <fileName></fileName> <fileDirectory></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>73</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_6"> <Value> <Obj> <type>0</type> <id>11</id> <name>write_idx_1</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>write_idx_1</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>75</item> <item>76</item> <item>77</item> <item>78</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_7"> <Value> <Obj> <type>0</type> <id>12</id> <name>row</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>row</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>11</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>80</item> <item>81</item> <item>82</item> <item>83</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_8"> <Value> <Obj> <type>0</type> <id>13</id> <name>tmp</name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</fileDirectory> <lineNumber>177</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>177</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>84</item> <item>86</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_9"> <Value> <Obj> <type>0</type> <id>15</id> <name>row_1</name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</fileDirectory> <lineNumber>177</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>177</second> </item> </second> </item> </inlineStackInfo> <originalName>row</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>11</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>87</item> <item>89</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_10"> <Value> <Obj> <type>0</type> <id>16</id> <name></name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</fileDirectory> <lineNumber>177</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>177</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>90</item> <item>91</item> <item>92</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_11"> <Value> <Obj> <type>0</type> <id>20</id> <name>tmp_5</name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</fileDirectory> <lineNumber>187</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>187</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>10</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>113</item> <item>114</item> <item>116</item> <item>118</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_12"> <Value> <Obj> <type>0</type> <id>21</id> <name>icmp</name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</fileDirectory> <lineNumber>187</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>187</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>119</item> <item>121</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_13"> <Value> <Obj> <type>0</type> <id>22</id> <name></name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</fileDirectory> <lineNumber>179</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>179</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>122</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_14"> <Value> <Obj> <type>0</type> <id>24</id> <name>write_idx_1_1</name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</fileDirectory> <lineNumber>211</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>211</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>96</item> <item>97</item> <item>98</item> <item>99</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_15"> <Value> <Obj> <type>0</type> <id>25</id> <name>col</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>col</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>11</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>100</item> <item>101</item> <item>102</item> <item>103</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_16"> <Value> <Obj> <type>0</type> <id>26</id> <name>tmp_6</name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</fileDirectory> <lineNumber>179</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>179</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>104</item> <item>106</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_17"> <Value> <Obj> <type>0</type> <id>27</id> <name>col_1</name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</fileDirectory> <lineNumber>179</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>179</second> </item> </second> </item> </inlineStackInfo> <originalName>col</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>11</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>107</item> <item>108</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_18"> <Value> <Obj> <type>0</type> <id>28</id> <name></name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</fileDirectory> <lineNumber>179</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>179</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>109</item> <item>110</item> <item>111</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_19"> <Value> <Obj> <type>0</type> <id>30</id> <name>col_cast</name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</fileDirectory> <lineNumber>179</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>179</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>131</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_20"> <Value> <Obj> <type>0</type> <id>34</id> <name>tmp_7</name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</fileDirectory> <lineNumber>183</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>183</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>63</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>133</item> <item>134</item> <item>135</item> <item>137</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_21"> <Value> <Obj> <type>0</type> <id>35</id> <name>icmp1</name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</fileDirectory> <lineNumber>183</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>183</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>138</item> <item>140</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_22"> <Value> <Obj> <type>0</type> <id>36</id> <name>write_idx_1_3</name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</fileDirectory> <lineNumber>184</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>184</second> </item> </second> </item> </inlineStackInfo> <originalName>write_idx_1</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>141</item> <item>143</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_23"> <Value> <Obj> <type>0</type> <id>37</id> <name>p_write_idx_1_1</name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</fileDirectory> <lineNumber>183</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>183</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>144</item> <item>145</item> <item>146</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_24"> <Value> <Obj> <type>0</type> <id>38</id> <name>tmp_value_V_2</name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</fileDirectory> <lineNumber>186</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>186</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.value.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>148</item> <item>149</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_25"> <Value> <Obj> <type>0</type> <id>39</id> <name>buffer_0_value_V_ad</name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</fileDirectory> <lineNumber>179</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>179</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>11</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>150</item> <item>151</item> <item>152</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_26"> <Value> <Obj> <type>0</type> <id>40</id> <name>buffer_0_value_V_lo</name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</fileDirectory> <lineNumber>198</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>198</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>153</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_27"> <Value> <Obj> <type>0</type> <id>41</id> <name>buffer_1_value_V_ad</name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</fileDirectory> <lineNumber>179</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>179</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>11</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>154</item> <item>155</item> <item>156</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_28"> <Value> <Obj> <type>0</type> <id>42</id> <name>buffer_1_value_V_lo</name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</fileDirectory> <lineNumber>198</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>198</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>157</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_29"> <Value> <Obj> <type>0</type> <id>43</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_real/conv2d</fileDirectory> <lineNumber>187</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>187</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>158</item> <item>159</item> <item>160</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_30"> <Value> <Obj> <type>0</type> <id>45</id> <name>tmp_8</name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</fileDirectory> <lineNumber>183</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>183</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>161</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_31"> <Value> <Obj> <type>0</type> <id>46</id> <name>p_Val2_8_0_phi</name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</fileDirectory> <lineNumber>198</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>198</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>162</item> <item>163</item> <item>164</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_32"> <Value> <Obj> <type>0</type> <id>47</id> <name>p_Val2_8_1_phi</name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</fileDirectory> <lineNumber>198</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>198</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>165</item> <item>166</item> <item>167</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_33"> <Value> <Obj> <type>0</type> <id>48</id> <name>p_Result_s</name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</fileDirectory> <lineNumber>206</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>206</second> </item> </second> </item> </inlineStackInfo> <originalName>__Result__</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>96</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>169</item> <item>170</item> <item>171</item> <item>172</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_34"> <Value> <Obj> <type>0</type> <id>49</id> <name></name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</fileDirectory> <lineNumber>207</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>207</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>174</item> <item>175</item> <item>176</item> </oprand_edges> <opcode>write</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_35"> <Value> <Obj> <type>0</type> <id>50</id> <name></name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</fileDirectory> <lineNumber>208</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>208</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>177</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_36"> <Value> <Obj> <type>0</type> <id>52</id> <name>tmp_9</name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</fileDirectory> <lineNumber>183</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>183</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>127</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_37"> <Value> <Obj> <type>0</type> <id>53</id> <name></name> <fileName>../../../lib_files/Stencil.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</fileDirectory> <lineNumber>75</lineNumber> <contextFuncName>operator=</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>209</second> </item> <item> <first> <first>../../../lib_files/Stencil.h</first> <second>operator=</second> </first> <second>75</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>128</item> <item>129</item> <item>130</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_38"> <Value> <Obj> <type>0</type> <id>55</id> <name></name> <fileName>../../../lib_files/Stencil.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</fileDirectory> <lineNumber>75</lineNumber> <contextFuncName>operator=</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>209</second> </item> <item> <first> <first>../../../lib_files/Stencil.h</first> <second>operator=</second> </first> <second>75</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>124</item> <item>125</item> <item>297</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_39"> <Value> <Obj> <type>0</type> <id>56</id> <name></name> <fileName>../../../lib_files/Stencil.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</fileDirectory> <lineNumber>75</lineNumber> <contextFuncName>operator=</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>209</second> </item> <item> <first> <first>../../../lib_files/Stencil.h</first> <second>operator=</second> </first> <second>75</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>126</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_40"> <Value> <Obj> <type>0</type> <id>58</id> <name></name> <fileName>../../../lib_files/Stencil.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</fileDirectory> <lineNumber>75</lineNumber> <contextFuncName>operator=</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>209</second> </item> <item> <first> <first>../../../lib_files/Stencil.h</first> <second>operator=</second> </first> <second>75</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>178</item> <item>179</item> <item>296</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_41"> <Value> <Obj> <type>0</type> <id>59</id> <name></name> <fileName>../../../lib_files/Stencil.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</fileDirectory> <lineNumber>75</lineNumber> <contextFuncName>operator=</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>209</second> </item> <item> <first> <first>../../../lib_files/Stencil.h</first> <second>operator=</second> </first> <second>75</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>180</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_42"> <Value> <Obj> <type>0</type> <id>62</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_real/conv2d</fileDirectory> <lineNumber>179</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>179</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>123</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_43"> <Value> <Obj> <type>0</type> <id>64</id> <name>write_idx_1_2</name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</fileDirectory> <lineNumber>211</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>211</second> </item> </second> </item> </inlineStackInfo> <originalName>write_idx_1</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>93</item> <item>94</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_44"> <Value> <Obj> <type>0</type> <id>66</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_real/conv2d</fileDirectory> <lineNumber>177</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>177</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>95</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_45"> <Value> <Obj> <type>0</type> <id>68</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <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>12</count> <item_version>0</item_version> <item class_id="16" tracking_level="1" version="0" object_id="_46"> <Value> <Obj> <type>2</type> <id>70</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="_47"> <Value> <Obj> <type>2</type> <id>74</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="_48"> <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>11</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_49"> <Value> <Obj> <type>2</type> <id>85</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>11</bitwidth> </Value> <const_type>0</const_type> <content>1080</content> </item> <item class_id_reference="16" object_id="_50"> <Value> <Obj> <type>2</type> <id>88</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>11</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_51"> <Value> <Obj> <type>2</type> <id>105</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>11</bitwidth> </Value> <const_type>0</const_type> <content>1920</content> </item> <item class_id_reference="16" object_id="_52"> <Value> <Obj> <type>2</type> <id>115</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="_53"> <Value> <Obj> <type>2</type> <id>117</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>10</content> </item> <item class_id_reference="16" object_id="_54"> <Value> <Obj> <type>2</type> <id>120</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>10</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_55"> <Value> <Obj> <type>2</type> <id>136</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>63</content> </item> <item class_id_reference="16" object_id="_56"> <Value> <Obj> <type>2</type> <id>139</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>63</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_57"> <Value> <Obj> <type>2</type> <id>142</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>18446744073709551614</content> </item> </consts> <blocks class_id="17" tracking_level="0" version="0"> <count>12</count> <item_version>0</item_version> <item class_id="18" tracking_level="1" version="0" object_id="_58"> <Obj> <type>3</type> <id>10</id> <name>newFuncRoot</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>3</count> <item_version>0</item_version> <item>7</item> <item>8</item> <item>9</item> </node_objs> </item> <item class_id_reference="18" object_id="_59"> <Obj> <type>3</type> <id>17</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>5</count> <item_version>0</item_version> <item>11</item> <item>12</item> <item>13</item> <item>15</item> <item>16</item> </node_objs> </item> <item class_id_reference="18" object_id="_60"> <Obj> <type>3</type> <id>23</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>3</count> <item_version>0</item_version> <item>20</item> <item>21</item> <item>22</item> </node_objs> </item> <item class_id_reference="18" object_id="_61"> <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>5</count> <item_version>0</item_version> <item>24</item> <item>25</item> <item>26</item> <item>27</item> <item>28</item> </node_objs> </item> <item class_id_reference="18" object_id="_62"> <Obj> <type>3</type> <id>44</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>11</count> <item_version>0</item_version> <item>30</item> <item>34</item> <item>35</item> <item>36</item> <item>37</item> <item>38</item> <item>39</item> <item>40</item> <item>41</item> <item>42</item> <item>43</item> </node_objs> </item> <item class_id_reference="18" object_id="_63"> <Obj> <type>3</type> <id>51</id> <name>.preheader56.preheader.critedge.0</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>6</count> <item_version>0</item_version> <item>45</item> <item>46</item> <item>47</item> <item>48</item> <item>49</item> <item>50</item> </node_objs> </item> <item class_id_reference="18" object_id="_64"> <Obj> <type>3</type> <id>54</id> <name>._crit_edge</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>52</item> <item>53</item> </node_objs> </item> <item class_id_reference="18" object_id="_65"> <Obj> <type>3</type> <id>57</id> <name>branch4</name> <fileName></fileName> <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>55</item> <item>56</item> </node_objs> </item> <item class_id_reference="18" object_id="_66"> <Obj> <type>3</type> <id>60</id> <name>branch5</name> <fileName></fileName> <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>58</item> <item>59</item> </node_objs> </item> <item class_id_reference="18" object_id="_67"> <Obj> <type>3</type> <id>63</id> <name>._crit_edge33</name> <fileName></fileName> <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>62</item> </node_objs> </item> <item class_id_reference="18" object_id="_68"> <Obj> <type>3</type> <id>67</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>64</item> <item>66</item> </node_objs> </item> <item class_id_reference="18" object_id="_69"> <Obj> <type>3</type> <id>69</id> <name>.preheader.exitStub</name> <fileName></fileName> <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>68</item> </node_objs> </item> </blocks> <edges class_id="19" tracking_level="0" version="0"> <count>106</count> <item_version>0</item_version> <item class_id="20" tracking_level="1" version="0" object_id="_70"> <id>71</id> <edge_type>1</edge_type> <source_obj>70</source_obj> <sink_obj>7</sink_obj> </item> <item class_id_reference="20" object_id="_71"> <id>72</id> <edge_type>1</edge_type> <source_obj>70</source_obj> <sink_obj>8</sink_obj> </item> <item class_id_reference="20" object_id="_72"> <id>73</id> <edge_type>2</edge_type> <source_obj>17</source_obj> <sink_obj>9</sink_obj> </item> <item class_id_reference="20" object_id="_73"> <id>75</id> <edge_type>1</edge_type> <source_obj>74</source_obj> <sink_obj>11</sink_obj> </item> <item class_id_reference="20" object_id="_74"> <id>76</id> <edge_type>2</edge_type> <source_obj>10</source_obj> <sink_obj>11</sink_obj> </item> <item class_id_reference="20" object_id="_75"> <id>77</id> <edge_type>1</edge_type> <source_obj>64</source_obj> <sink_obj>11</sink_obj> </item> <item class_id_reference="20" object_id="_76"> <id>78</id> <edge_type>2</edge_type> <source_obj>67</source_obj> <sink_obj>11</sink_obj> </item> <item class_id_reference="20" object_id="_77"> <id>80</id> <edge_type>1</edge_type> <source_obj>79</source_obj> <sink_obj>12</sink_obj> </item> <item class_id_reference="20" object_id="_78"> <id>81</id> <edge_type>2</edge_type> <source_obj>10</source_obj> <sink_obj>12</sink_obj> </item> <item class_id_reference="20" object_id="_79"> <id>82</id> <edge_type>1</edge_type> <source_obj>15</source_obj> <sink_obj>12</sink_obj> </item> <item class_id_reference="20" object_id="_80"> <id>83</id> <edge_type>2</edge_type> <source_obj>67</source_obj> <sink_obj>12</sink_obj> </item> <item class_id_reference="20" object_id="_81"> <id>84</id> <edge_type>1</edge_type> <source_obj>12</source_obj> <sink_obj>13</sink_obj> </item> <item class_id_reference="20" object_id="_82"> <id>86</id> <edge_type>1</edge_type> <source_obj>85</source_obj> <sink_obj>13</sink_obj> </item> <item class_id_reference="20" object_id="_83"> <id>87</id> <edge_type>1</edge_type> <source_obj>12</source_obj> <sink_obj>15</sink_obj> </item> <item class_id_reference="20" object_id="_84"> <id>89</id> <edge_type>1</edge_type> <source_obj>88</source_obj> <sink_obj>15</sink_obj> </item> <item class_id_reference="20" object_id="_85"> <id>90</id> <edge_type>1</edge_type> <source_obj>13</source_obj> <sink_obj>16</sink_obj> </item> <item class_id_reference="20" object_id="_86"> <id>91</id> <edge_type>2</edge_type> <source_obj>23</source_obj> <sink_obj>16</sink_obj> </item> <item class_id_reference="20" object_id="_87"> <id>92</id> <edge_type>2</edge_type> <source_obj>69</source_obj> <sink_obj>16</sink_obj> </item> <item class_id_reference="20" object_id="_88"> <id>93</id> <edge_type>1</edge_type> <source_obj>24</source_obj> <sink_obj>64</sink_obj> </item> <item class_id_reference="20" object_id="_89"> <id>94</id> <edge_type>1</edge_type> <source_obj>70</source_obj> <sink_obj>64</sink_obj> </item> <item class_id_reference="20" object_id="_90"> <id>95</id> <edge_type>2</edge_type> <source_obj>17</source_obj> <sink_obj>66</sink_obj> </item> <item class_id_reference="20" object_id="_91"> <id>96</id> <edge_type>1</edge_type> <source_obj>11</source_obj> <sink_obj>24</sink_obj> </item> <item class_id_reference="20" object_id="_92"> <id>97</id> <edge_type>2</edge_type> <source_obj>23</source_obj> <sink_obj>24</sink_obj> </item> <item class_id_reference="20" object_id="_93"> <id>98</id> <edge_type>1</edge_type> <source_obj>37</source_obj> <sink_obj>24</sink_obj> </item> <item class_id_reference="20" object_id="_94"> <id>99</id> <edge_type>2</edge_type> <source_obj>63</source_obj> <sink_obj>24</sink_obj> </item> <item class_id_reference="20" object_id="_95"> <id>100</id> <edge_type>1</edge_type> <source_obj>79</source_obj> <sink_obj>25</sink_obj> </item> <item class_id_reference="20" object_id="_96"> <id>101</id> <edge_type>2</edge_type> <source_obj>23</source_obj> <sink_obj>25</sink_obj> </item> <item class_id_reference="20" object_id="_97"> <id>102</id> <edge_type>1</edge_type> <source_obj>27</source_obj> <sink_obj>25</sink_obj> </item> <item class_id_reference="20" object_id="_98"> <id>103</id> <edge_type>2</edge_type> <source_obj>63</source_obj> <sink_obj>25</sink_obj> </item> <item class_id_reference="20" object_id="_99"> <id>104</id> <edge_type>1</edge_type> <source_obj>25</source_obj> <sink_obj>26</sink_obj> </item> <item class_id_reference="20" object_id="_100"> <id>106</id> <edge_type>1</edge_type> <source_obj>105</source_obj> <sink_obj>26</sink_obj> </item> <item class_id_reference="20" object_id="_101"> <id>107</id> <edge_type>1</edge_type> <source_obj>25</source_obj> <sink_obj>27</sink_obj> </item> <item class_id_reference="20" object_id="_102"> <id>108</id> <edge_type>1</edge_type> <source_obj>88</source_obj> <sink_obj>27</sink_obj> </item> <item class_id_reference="20" object_id="_103"> <id>109</id> <edge_type>1</edge_type> <source_obj>26</source_obj> <sink_obj>28</sink_obj> </item> <item class_id_reference="20" object_id="_104"> <id>110</id> <edge_type>2</edge_type> <source_obj>44</source_obj> <sink_obj>28</sink_obj> </item> <item class_id_reference="20" object_id="_105"> <id>111</id> <edge_type>2</edge_type> <source_obj>67</source_obj> <sink_obj>28</sink_obj> </item> <item class_id_reference="20" object_id="_106"> <id>114</id> <edge_type>1</edge_type> <source_obj>12</source_obj> <sink_obj>20</sink_obj> </item> <item class_id_reference="20" object_id="_107"> <id>116</id> <edge_type>1</edge_type> <source_obj>115</source_obj> <sink_obj>20</sink_obj> </item> <item class_id_reference="20" object_id="_108"> <id>118</id> <edge_type>1</edge_type> <source_obj>117</source_obj> <sink_obj>20</sink_obj> </item> <item class_id_reference="20" object_id="_109"> <id>119</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>21</sink_obj> </item> <item class_id_reference="20" object_id="_110"> <id>121</id> <edge_type>1</edge_type> <source_obj>120</source_obj> <sink_obj>21</sink_obj> </item> <item class_id_reference="20" object_id="_111"> <id>122</id> <edge_type>2</edge_type> <source_obj>29</source_obj> <sink_obj>22</sink_obj> </item> <item class_id_reference="20" object_id="_112"> <id>123</id> <edge_type>2</edge_type> <source_obj>29</source_obj> <sink_obj>62</sink_obj> </item> <item class_id_reference="20" object_id="_113"> <id>124</id> <edge_type>1</edge_type> <source_obj>38</source_obj> <sink_obj>55</sink_obj> </item> <item class_id_reference="20" object_id="_114"> <id>125</id> <edge_type>1</edge_type> <source_obj>39</source_obj> <sink_obj>55</sink_obj> </item> <item class_id_reference="20" object_id="_115"> <id>126</id> <edge_type>2</edge_type> <source_obj>63</source_obj> <sink_obj>56</sink_obj> </item> <item class_id_reference="20" object_id="_116"> <id>127</id> <edge_type>1</edge_type> <source_obj>37</source_obj> <sink_obj>52</sink_obj> </item> <item class_id_reference="20" object_id="_117"> <id>128</id> <edge_type>1</edge_type> <source_obj>52</source_obj> <sink_obj>53</sink_obj> </item> <item class_id_reference="20" object_id="_118"> <id>129</id> <edge_type>2</edge_type> <source_obj>57</source_obj> <sink_obj>53</sink_obj> </item> <item class_id_reference="20" object_id="_119"> <id>130</id> <edge_type>2</edge_type> <source_obj>60</source_obj> <sink_obj>53</sink_obj> </item> <item class_id_reference="20" object_id="_120"> <id>131</id> <edge_type>1</edge_type> <source_obj>25</source_obj> <sink_obj>30</sink_obj> </item> <item class_id_reference="20" object_id="_121"> <id>134</id> <edge_type>1</edge_type> <source_obj>24</source_obj> <sink_obj>34</sink_obj> </item> <item class_id_reference="20" object_id="_122"> <id>135</id> <edge_type>1</edge_type> <source_obj>115</source_obj> <sink_obj>34</sink_obj> </item> <item class_id_reference="20" object_id="_123"> <id>137</id> <edge_type>1</edge_type> <source_obj>136</source_obj> <sink_obj>34</sink_obj> </item> <item class_id_reference="20" object_id="_124"> <id>138</id> <edge_type>1</edge_type> <source_obj>34</source_obj> <sink_obj>35</sink_obj> </item> <item class_id_reference="20" object_id="_125"> <id>140</id> <edge_type>1</edge_type> <source_obj>139</source_obj> <sink_obj>35</sink_obj> </item> <item class_id_reference="20" object_id="_126"> <id>141</id> <edge_type>1</edge_type> <source_obj>24</source_obj> <sink_obj>36</sink_obj> </item> <item class_id_reference="20" object_id="_127"> <id>143</id> <edge_type>1</edge_type> <source_obj>142</source_obj> <sink_obj>36</sink_obj> </item> <item class_id_reference="20" object_id="_128"> <id>144</id> <edge_type>1</edge_type> <source_obj>35</source_obj> <sink_obj>37</sink_obj> </item> <item class_id_reference="20" object_id="_129"> <id>145</id> <edge_type>1</edge_type> <source_obj>36</source_obj> <sink_obj>37</sink_obj> </item> <item class_id_reference="20" object_id="_130"> <id>146</id> <edge_type>1</edge_type> <source_obj>24</source_obj> <sink_obj>37</sink_obj> </item> <item class_id_reference="20" object_id="_131"> <id>149</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>38</sink_obj> </item> <item class_id_reference="20" object_id="_132"> <id>150</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>39</sink_obj> </item> <item class_id_reference="20" object_id="_133"> <id>151</id> <edge_type>1</edge_type> <source_obj>74</source_obj> <sink_obj>39</sink_obj> </item> <item class_id_reference="20" object_id="_134"> <id>152</id> <edge_type>1</edge_type> <source_obj>30</source_obj> <sink_obj>39</sink_obj> </item> <item class_id_reference="20" object_id="_135"> <id>153</id> <edge_type>1</edge_type> <source_obj>39</source_obj> <sink_obj>40</sink_obj> </item> <item class_id_reference="20" object_id="_136"> <id>154</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>41</sink_obj> </item> <item class_id_reference="20" object_id="_137"> <id>155</id> <edge_type>1</edge_type> <source_obj>74</source_obj> <sink_obj>41</sink_obj> </item> <item class_id_reference="20" object_id="_138"> <id>156</id> <edge_type>1</edge_type> <source_obj>30</source_obj> <sink_obj>41</sink_obj> </item> <item class_id_reference="20" object_id="_139"> <id>157</id> <edge_type>1</edge_type> <source_obj>41</source_obj> <sink_obj>42</sink_obj> </item> <item class_id_reference="20" object_id="_140"> <id>158</id> <edge_type>1</edge_type> <source_obj>21</source_obj> <sink_obj>43</sink_obj> </item> <item class_id_reference="20" object_id="_141"> <id>159</id> <edge_type>2</edge_type> <source_obj>51</source_obj> <sink_obj>43</sink_obj> </item> <item class_id_reference="20" object_id="_142"> <id>160</id> <edge_type>2</edge_type> <source_obj>54</source_obj> <sink_obj>43</sink_obj> </item> <item class_id_reference="20" object_id="_143"> <id>161</id> <edge_type>1</edge_type> <source_obj>37</source_obj> <sink_obj>45</sink_obj> </item> <item class_id_reference="20" object_id="_144"> <id>162</id> <edge_type>1</edge_type> <source_obj>45</source_obj> <sink_obj>46</sink_obj> </item> <item class_id_reference="20" object_id="_145"> <id>163</id> <edge_type>1</edge_type> <source_obj>42</source_obj> <sink_obj>46</sink_obj> </item> <item class_id_reference="20" object_id="_146"> <id>164</id> <edge_type>1</edge_type> <source_obj>40</source_obj> <sink_obj>46</sink_obj> </item> <item class_id_reference="20" object_id="_147"> <id>165</id> <edge_type>1</edge_type> <source_obj>45</source_obj> <sink_obj>47</sink_obj> </item> <item class_id_reference="20" object_id="_148"> <id>166</id> <edge_type>1</edge_type> <source_obj>40</source_obj> <sink_obj>47</sink_obj> </item> <item class_id_reference="20" object_id="_149"> <id>167</id> <edge_type>1</edge_type> <source_obj>42</source_obj> <sink_obj>47</sink_obj> </item> <item class_id_reference="20" object_id="_150"> <id>170</id> <edge_type>1</edge_type> <source_obj>38</source_obj> <sink_obj>48</sink_obj> </item> <item class_id_reference="20" object_id="_151"> <id>171</id> <edge_type>1</edge_type> <source_obj>47</source_obj> <sink_obj>48</sink_obj> </item> <item class_id_reference="20" object_id="_152"> <id>172</id> <edge_type>1</edge_type> <source_obj>46</source_obj> <sink_obj>48</sink_obj> </item> <item class_id_reference="20" object_id="_153"> <id>175</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>49</sink_obj> </item> <item class_id_reference="20" object_id="_154"> <id>176</id> <edge_type>1</edge_type> <source_obj>48</source_obj> <sink_obj>49</sink_obj> </item> <item class_id_reference="20" object_id="_155"> <id>177</id> <edge_type>2</edge_type> <source_obj>54</source_obj> <sink_obj>50</sink_obj> </item> <item class_id_reference="20" object_id="_156"> <id>178</id> <edge_type>1</edge_type> <source_obj>38</source_obj> <sink_obj>58</sink_obj> </item> <item class_id_reference="20" object_id="_157"> <id>179</id> <edge_type>1</edge_type> <source_obj>41</source_obj> <sink_obj>58</sink_obj> </item> <item class_id_reference="20" object_id="_158"> <id>180</id> <edge_type>2</edge_type> <source_obj>63</source_obj> <sink_obj>59</sink_obj> </item> <item class_id_reference="20" object_id="_159"> <id>281</id> <edge_type>2</edge_type> <source_obj>10</source_obj> <sink_obj>17</sink_obj> </item> <item class_id_reference="20" object_id="_160"> <id>282</id> <edge_type>2</edge_type> <source_obj>17</source_obj> <sink_obj>69</sink_obj> </item> <item class_id_reference="20" object_id="_161"> <id>283</id> <edge_type>2</edge_type> <source_obj>17</source_obj> <sink_obj>23</sink_obj> </item> <item class_id_reference="20" object_id="_162"> <id>284</id> <edge_type>2</edge_type> <source_obj>23</source_obj> <sink_obj>29</sink_obj> </item> <item class_id_reference="20" object_id="_163"> <id>285</id> <edge_type>2</edge_type> <source_obj>29</source_obj> <sink_obj>67</sink_obj> </item> <item class_id_reference="20" object_id="_164"> <id>286</id> <edge_type>2</edge_type> <source_obj>29</source_obj> <sink_obj>44</sink_obj> </item> <item class_id_reference="20" object_id="_165"> <id>287</id> <edge_type>2</edge_type> <source_obj>44</source_obj> <sink_obj>54</sink_obj> </item> <item class_id_reference="20" object_id="_166"> <id>288</id> <edge_type>2</edge_type> <source_obj>44</source_obj> <sink_obj>51</sink_obj> </item> <item class_id_reference="20" object_id="_167"> <id>289</id> <edge_type>2</edge_type> <source_obj>51</source_obj> <sink_obj>54</sink_obj> </item> <item class_id_reference="20" object_id="_168"> <id>290</id> <edge_type>2</edge_type> <source_obj>54</source_obj> <sink_obj>60</sink_obj> </item> <item class_id_reference="20" object_id="_169"> <id>291</id> <edge_type>2</edge_type> <source_obj>54</source_obj> <sink_obj>57</sink_obj> </item> <item class_id_reference="20" object_id="_170"> <id>292</id> <edge_type>2</edge_type> <source_obj>57</source_obj> <sink_obj>63</sink_obj> </item> <item class_id_reference="20" object_id="_171"> <id>293</id> <edge_type>2</edge_type> <source_obj>60</source_obj> <sink_obj>63</sink_obj> </item> <item class_id_reference="20" object_id="_172"> <id>294</id> <edge_type>2</edge_type> <source_obj>63</source_obj> <sink_obj>29</sink_obj> </item> <item class_id_reference="20" object_id="_173"> <id>295</id> <edge_type>2</edge_type> <source_obj>67</source_obj> <sink_obj>17</sink_obj> </item> <item class_id_reference="20" object_id="_174"> <id>296</id> <edge_type>4</edge_type> <source_obj>42</source_obj> <sink_obj>58</sink_obj> </item> <item class_id_reference="20" object_id="_175"> <id>297</id> <edge_type>4</edge_type> <source_obj>40</source_obj> <sink_obj>55</sink_obj> </item> </edges> </cdfg> <cdfg_regions class_id="21" tracking_level="0" version="0"> <count>7</count> <item_version>0</item_version> <item class_id="22" tracking_level="1" version="0" object_id="_176"> <mId>1</mId> <mTag>call_Loop_LB2D_buf_p</mTag> <mType>0</mType> <sub_regions> <count>3</count> <item_version>0</item_version> <item>2</item> <item>3</item> <item>7</item> </sub_regions> <basic_blocks> <count>0</count> <item_version>0</item_version> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>2077921</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_177"> <mId>2</mId> <mTag>Entry</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>10</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_178"> <mId>3</mId> <mTag>LB2D_buf</mTag> <mType>1</mType> <sub_regions> <count>3</count> <item_version>0</item_version> <item>4</item> <item>5</item> <item>6</item> </sub_regions> <basic_blocks> <count>0</count> <item_version>0</item_version> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>1080</mMinTripCount> <mMaxTripCount>1080</mMaxTripCount> <mMinLatency>2077920</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_179"> <mId>4</mId> <mTag>Region 1</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>17</item> <item>23</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_180"> <mId>5</mId> <mTag>LB2D_buf.1</mTag> <mType>1</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>7</count> <item_version>0</item_version> <item>29</item> <item>44</item> <item>51</item> <item>54</item> <item>57</item> <item>60</item> <item>63</item> </basic_blocks> <mII>1</mII> <mDepth>3</mDepth> <mMinTripCount>1920</mMinTripCount> <mMaxTripCount>1920</mMaxTripCount> <mMinLatency>1921</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_181"> <mId>6</mId> <mTag>Region 2</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>67</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_182"> <mId>7</mId> <mTag>Return</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>69</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> </cdfg_regions> <fsm class_id="24" tracking_level="1" version="0" object_id="_183"> <states class_id="25" tracking_level="0" version="0"> <count>6</count> <item_version>0</item_version> <item class_id="26" tracking_level="1" version="0" object_id="_184"> <id>1</id> <operations class_id="27" tracking_level="0" version="0"> <count>7</count> <item_version>0</item_version> <item class_id="28" tracking_level="1" version="0" object_id="_185"> <id>3</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_186"> <id>4</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_187"> <id>5</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_188"> <id>6</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_189"> <id>7</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_190"> <id>8</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_191"> <id>9</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_192"> <id>2</id> <operations> <count>12</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_193"> <id>11</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_194"> <id>12</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_195"> <id>13</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_196"> <id>14</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_197"> <id>15</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_198"> <id>16</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_199"> <id>18</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_200"> <id>19</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_201"> <id>20</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_202"> <id>21</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_203"> <id>22</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_204"> <id>68</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_205"> <id>3</id> <operations> <count>13</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_206"> <id>24</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_207"> <id>25</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_208"> <id>26</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_209"> <id>27</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_210"> <id>28</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_211"> <id>30</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_212"> <id>34</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_213"> <id>35</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_214"> <id>39</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_215"> <id>40</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_216"> <id>41</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_217"> <id>42</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_218"> <id>43</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_219"> <id>4</id> <operations> <count>8</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_220"> <id>36</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_221"> <id>37</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_222"> <id>38</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_223"> <id>40</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_224"> <id>42</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_225"> <id>45</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_226"> <id>52</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_227"> <id>53</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_228"> <id>5</id> <operations> <count>14</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_229"> <id>31</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_230"> <id>32</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_231"> <id>33</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_232"> <id>46</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_233"> <id>47</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_234"> <id>48</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_235"> <id>49</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_236"> <id>50</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_237"> <id>55</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_238"> <id>56</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_239"> <id>58</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_240"> <id>59</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_241"> <id>61</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_242"> <id>62</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_243"> <id>6</id> <operations> <count>3</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_244"> <id>64</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_245"> <id>65</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_246"> <id>66</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> </states> <transitions class_id="29" tracking_level="0" version="0"> <count>7</count> <item_version>0</item_version> <item class_id="30" tracking_level="1" version="0" object_id="_247"> <inState>1</inState> <outState>2</outState> <condition class_id="31" tracking_level="0" version="0"> <id>55</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="_248"> <inState>2</inState> <outState>3</outState> <condition> <id>57</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>1</count> <item_version>0</item_version> <item class_id="34" tracking_level="0" version="0"> <first class_id="35" tracking_level="0" version="0"> <first>13</first> <second>0</second> </first> <second>1</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_249"> <inState>6</inState> <outState>2</outState> <condition> <id>68</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="_250"> <inState>4</inState> <outState>5</outState> <condition> <id>70</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="_251"> <inState>5</inState> <outState>3</outState> <condition> <id>71</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_252"> <inState>3</inState> <outState>6</outState> <condition> <id>69</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>1</count> <item_version>0</item_version> <item> <first> <first>26</first> <second>0</second> </first> <second>0</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_253"> <inState>3</inState> <outState>4</outState> <condition> <id>72</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>1</count> <item_version>0</item_version> <item> <first> <first>26</first> <second>0</second> </first> <second>1</second> </item> </item> </sop> </condition> </item> </transitions> </fsm> <res class_id="-1"></res> <node_label_latency class_id="37" tracking_level="0" version="0"> <count>43</count> <item_version>0</item_version> <item class_id="38" tracking_level="0" version="0"> <first>7</first> <second class_id="39" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>8</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>9</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>11</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>12</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>13</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>15</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>16</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>20</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>21</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>22</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>24</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>25</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>26</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>27</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>28</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>30</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>34</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>35</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>36</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>37</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>38</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>39</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>40</first> <second> <first>2</first> <second>1</second> </second> </item> <item> <first>41</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>42</first> <second> <first>2</first> <second>1</second> </second> </item> <item> <first>43</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>45</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>46</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>47</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>48</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>49</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>50</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>52</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>53</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>55</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>56</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>58</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>59</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>62</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>64</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>66</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>68</first> <second> <first>1</first> <second>0</second> </second> </item> </node_label_latency> <bblk_ent_exit class_id="40" tracking_level="0" version="0"> <count>12</count> <item_version>0</item_version> <item class_id="41" tracking_level="0" version="0"> <first>10</first> <second class_id="42" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>17</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>23</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>29</first> <second> <first>2</first> <second>2</second> </second> </item> <item> <first>44</first> <second> <first>2</first> <second>4</second> </second> </item> <item> <first>51</first> <second> <first>3</first> <second>4</second> </second> </item> <item> <first>54</first> <second> <first>3</first> <second>3</second> </second> </item> <item> <first>57</first> <second> <first>4</first> <second>4</second> </second> </item> <item> <first>60</first> <second> <first>4</first> <second>4</second> </second> </item> <item> <first>63</first> <second> <first>4</first> <second>4</second> </second> </item> <item> <first>67</first> <second> <first>3</first> <second>3</second> </second> </item> <item> <first>69</first> <second> <first>1</first> <second>1</second> </second> </item> </bblk_ent_exit> <regions class_id="43" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="44" tracking_level="1" version="0" object_id="_254"> <region_name>LB2D_buf.1</region_name> <basic_blocks> <count>7</count> <item_version>0</item_version> <item>29</item> <item>44</item> <item>51</item> <item>54</item> <item>57</item> <item>60</item> <item>63</item> </basic_blocks> <nodes> <count>0</count> <item_version>0</item_version> </nodes> <anchor_node>-1</anchor_node> <region_type>8</region_type> <interval>1</interval> <pipe_depth>3</pipe_depth> </item> </regions> <dp_fu_nodes class_id="45" tracking_level="0" version="0"> <count>29</count> <item_version>0</item_version> <item class_id="46" tracking_level="0" version="0"> <first>74</first> <second> <count>1</count> <item_version>0</item_version> <item>7</item> </second> </item> <item> <first>78</first> <second> <count>1</count> <item_version>0</item_version> <item>8</item> </second> </item> <item> <first>82</first> <second> <count>1</count> <item_version>0</item_version> <item>38</item> </second> </item> <item> <first>88</first> <second> <count>1</count> <item_version>0</item_version> <item>49</item> </second> </item> <item> <first>95</first> <second> <count>1</count> <item_version>0</item_version> <item>39</item> </second> </item> <item> <first>101</first> <second> <count>3</count> <item_version>0</item_version> <item>40</item> <item>40</item> <item>55</item> </second> </item> <item> <first>106</first> <second> <count>1</count> <item_version>0</item_version> <item>41</item> </second> </item> <item> <first>112</first> <second> <count>3</count> <item_version>0</item_version> <item>42</item> <item>42</item> <item>58</item> </second> </item> <item> <first>127</first> <second> <count>1</count> <item_version>0</item_version> <item>11</item> </second> </item> <item> <first>139</first> <second> <count>1</count> <item_version>0</item_version> <item>12</item> </second> </item> <item> <first>149</first> <second> <count>1</count> <item_version>0</item_version> <item>24</item> </second> </item> <item> <first>161</first> <second> <count>1</count> <item_version>0</item_version> <item>25</item> </second> </item> <item> <first>168</first> <second> <count>1</count> <item_version>0</item_version> <item>13</item> </second> </item> <item> <first>174</first> <second> <count>1</count> <item_version>0</item_version> <item>15</item> </second> </item> <item> <first>180</first> <second> <count>1</count> <item_version>0</item_version> <item>20</item> </second> </item> <item> <first>190</first> <second> <count>1</count> <item_version>0</item_version> <item>21</item> </second> </item> <item> <first>196</first> <second> <count>1</count> <item_version>0</item_version> <item>26</item> </second> </item> <item> <first>202</first> <second> <count>1</count> <item_version>0</item_version> <item>27</item> </second> </item> <item> <first>208</first> <second> <count>1</count> <item_version>0</item_version> <item>30</item> </second> </item> <item> <first>214</first> <second> <count>1</count> <item_version>0</item_version> <item>34</item> </second> </item> <item> <first>224</first> <second> <count>1</count> <item_version>0</item_version> <item>35</item> </second> </item> <item> <first>230</first> <second> <count>1</count> <item_version>0</item_version> <item>36</item> </second> </item> <item> <first>236</first> <second> <count>1</count> <item_version>0</item_version> <item>37</item> </second> </item> <item> <first>243</first> <second> <count>1</count> <item_version>0</item_version> <item>45</item> </second> </item> <item> <first>247</first> <second> <count>1</count> <item_version>0</item_version> <item>52</item> </second> </item> <item> <first>251</first> <second> <count>1</count> <item_version>0</item_version> <item>46</item> </second> </item> <item> <first>256</first> <second> <count>1</count> <item_version>0</item_version> <item>47</item> </second> </item> <item> <first>261</first> <second> <count>1</count> <item_version>0</item_version> <item>48</item> </second> </item> <item> <first>271</first> <second> <count>1</count> <item_version>0</item_version> <item>64</item> </second> </item> </dp_fu_nodes> <dp_fu_nodes_expression class_id="48" tracking_level="0" version="0"> <count>25</count> <item_version>0</item_version> <item class_id="49" tracking_level="0" version="0"> <first>buffer_0_value_V_ad_gep_fu_95</first> <second> <count>1</count> <item_version>0</item_version> <item>39</item> </second> </item> <item> <first>buffer_0_value_V_alloca_fu_74</first> <second> <count>1</count> <item_version>0</item_version> <item>7</item> </second> </item> <item> <first>buffer_1_value_V_ad_gep_fu_106</first> <second> <count>1</count> <item_version>0</item_version> <item>41</item> </second> </item> <item> <first>buffer_1_value_V_alloca_fu_78</first> <second> <count>1</count> <item_version>0</item_version> <item>8</item> </second> </item> <item> <first>col_1_fu_202</first> <second> <count>1</count> <item_version>0</item_version> <item>27</item> </second> </item> <item> <first>col_cast_fu_208</first> <second> <count>1</count> <item_version>0</item_version> <item>30</item> </second> </item> <item> <first>col_phi_fu_161</first> <second> <count>1</count> <item_version>0</item_version> <item>25</item> </second> </item> <item> <first>icmp1_fu_224</first> <second> <count>1</count> <item_version>0</item_version> <item>35</item> </second> </item> <item> <first>icmp_fu_190</first> <second> <count>1</count> <item_version>0</item_version> <item>21</item> </second> </item> <item> <first>p_Result_s_fu_261</first> <second> <count>1</count> <item_version>0</item_version> <item>48</item> </second> </item> <item> <first>p_Val2_8_0_phi_fu_251</first> <second> <count>1</count> <item_version>0</item_version> <item>46</item> </second> </item> <item> <first>p_Val2_8_1_phi_fu_256</first> <second> <count>1</count> <item_version>0</item_version> <item>47</item> </second> </item> <item> <first>p_write_idx_1_1_fu_236</first> <second> <count>1</count> <item_version>0</item_version> <item>37</item> </second> </item> <item> <first>row_1_fu_174</first> <second> <count>1</count> <item_version>0</item_version> <item>15</item> </second> </item> <item> <first>row_phi_fu_139</first> <second> <count>1</count> <item_version>0</item_version> <item>12</item> </second> </item> <item> <first>tmp_5_fu_180</first> <second> <count>1</count> <item_version>0</item_version> <item>20</item> </second> </item> <item> <first>tmp_6_fu_196</first> <second> <count>1</count> <item_version>0</item_version> <item>26</item> </second> </item> <item> <first>tmp_7_fu_214</first> <second> <count>1</count> <item_version>0</item_version> <item>34</item> </second> </item> <item> <first>tmp_8_fu_243</first> <second> <count>1</count> <item_version>0</item_version> <item>45</item> </second> </item> <item> <first>tmp_9_fu_247</first> <second> <count>1</count> <item_version>0</item_version> <item>52</item> </second> </item> <item> <first>tmp_fu_168</first> <second> <count>1</count> <item_version>0</item_version> <item>13</item> </second> </item> <item> <first>write_idx_1_1_phi_fu_149</first> <second> <count>1</count> <item_version>0</item_version> <item>24</item> </second> </item> <item> <first>write_idx_1_2_fu_271</first> <second> <count>1</count> <item_version>0</item_version> <item>64</item> </second> </item> <item> <first>write_idx_1_3_fu_230</first> <second> <count>1</count> <item_version>0</item_version> <item>36</item> </second> </item> <item> <first>write_idx_1_phi_fu_127</first> <second> <count>1</count> <item_version>0</item_version> <item>11</item> </second> </item> </dp_fu_nodes_expression> <dp_fu_nodes_module> <count>0</count> <item_version>0</item_version> </dp_fu_nodes_module> <dp_fu_nodes_io> <count>2</count> <item_version>0</item_version> <item> <first>StgValue_53_write_fu_88</first> <second> <count>1</count> <item_version>0</item_version> <item>49</item> </second> </item> <item> <first>tmp_value_V_2_read_fu_82</first> <second> <count>1</count> <item_version>0</item_version> <item>38</item> </second> </item> </dp_fu_nodes_io> <return_ports> <count>0</count> <item_version>0</item_version> </return_ports> <dp_mem_port_nodes class_id="50" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="51" tracking_level="0" version="0"> <first class_id="52" tracking_level="0" version="0"> <first>buffer_0_value_V</first> <second>0</second> </first> <second> <count>2</count> <item_version>0</item_version> <item>40</item> <item>40</item> </second> </item> <item> <first> <first>buffer_0_value_V</first> <second>1</second> </first> <second> <count>1</count> <item_version>0</item_version> <item>55</item> </second> </item> <item> <first> <first>buffer_1_value_V</first> <second>0</second> </first> <second> <count>2</count> <item_version>0</item_version> <item>42</item> <item>42</item> </second> </item> <item> <first> <first>buffer_1_value_V</first> <second>1</second> </first> <second> <count>1</count> <item_version>0</item_version> <item>58</item> </second> </item> </dp_mem_port_nodes> <dp_reg_nodes> <count>19</count> <item_version>0</item_version> <item> <first>123</first> <second> <count>1</count> <item_version>0</item_version> <item>11</item> </second> </item> <item> <first>135</first> <second> <count>1</count> <item_version>0</item_version> <item>12</item> </second> </item> <item> <first>146</first> <second> <count>1</count> <item_version>0</item_version> <item>24</item> </second> </item> <item> <first>157</first> <second> <count>1</count> <item_version>0</item_version> <item>25</item> </second> </item> <item> <first>277</first> <second> <count>1</count> <item_version>0</item_version> <item>13</item> </second> </item> <item> <first>281</first> <second> <count>1</count> <item_version>0</item_version> <item>15</item> </second> </item> <item> <first>286</first> <second> <count>1</count> <item_version>0</item_version> <item>21</item> </second> </item> <item> <first>290</first> <second> <count>1</count> <item_version>0</item_version> <item>26</item> </second> </item> <item> <first>294</first> <second> <count>1</count> <item_version>0</item_version> <item>27</item> </second> </item> <item> <first>299</first> <second> <count>1</count> <item_version>0</item_version> <item>35</item> </second> </item> <item> <first>304</first> <second> <count>1</count> <item_version>0</item_version> <item>39</item> </second> </item> <item> <first>310</first> <second> <count>1</count> <item_version>0</item_version> <item>41</item> </second> </item> <item> <first>316</first> <second> <count>1</count> <item_version>0</item_version> <item>37</item> </second> </item> <item> <first>321</first> <second> <count>1</count> <item_version>0</item_version> <item>38</item> </second> </item> <item> <first>328</first> <second> <count>1</count> <item_version>0</item_version> <item>40</item> </second> </item> <item> <first>334</first> <second> <count>1</count> <item_version>0</item_version> <item>42</item> </second> </item> <item> <first>340</first> <second> <count>1</count> <item_version>0</item_version> <item>45</item> </second> </item> <item> <first>346</first> <second> <count>1</count> <item_version>0</item_version> <item>52</item> </second> </item> <item> <first>350</first> <second> <count>1</count> <item_version>0</item_version> <item>64</item> </second> </item> </dp_reg_nodes> <dp_regname_nodes> <count>19</count> <item_version>0</item_version> <item> <first>buffer_0_value_V_ad_reg_304</first> <second> <count>1</count> <item_version>0</item_version> <item>39</item> </second> </item> <item> <first>buffer_0_value_V_lo_reg_328</first> <second> <count>1</count> <item_version>0</item_version> <item>40</item> </second> </item> <item> <first>buffer_1_value_V_ad_reg_310</first> <second> <count>1</count> <item_version>0</item_version> <item>41</item> </second> </item> <item> <first>buffer_1_value_V_lo_reg_334</first> <second> <count>1</count> <item_version>0</item_version> <item>42</item> </second> </item> <item> <first>col_1_reg_294</first> <second> <count>1</count> <item_version>0</item_version> <item>27</item> </second> </item> <item> <first>col_reg_157</first> <second> <count>1</count> <item_version>0</item_version> <item>25</item> </second> </item> <item> <first>icmp1_reg_299</first> <second> <count>1</count> <item_version>0</item_version> <item>35</item> </second> </item> <item> <first>icmp_reg_286</first> <second> <count>1</count> <item_version>0</item_version> <item>21</item> </second> </item> <item> <first>p_write_idx_1_1_reg_316</first> <second> <count>1</count> <item_version>0</item_version> <item>37</item> </second> </item> <item> <first>row_1_reg_281</first> <second> <count>1</count> <item_version>0</item_version> <item>15</item> </second> </item> <item> <first>row_reg_135</first> <second> <count>1</count> <item_version>0</item_version> <item>12</item> </second> </item> <item> <first>tmp_6_reg_290</first> <second> <count>1</count> <item_version>0</item_version> <item>26</item> </second> </item> <item> <first>tmp_8_reg_340</first> <second> <count>1</count> <item_version>0</item_version> <item>45</item> </second> </item> <item> <first>tmp_9_reg_346</first> <second> <count>1</count> <item_version>0</item_version> <item>52</item> </second> </item> <item> <first>tmp_reg_277</first> <second> <count>1</count> <item_version>0</item_version> <item>13</item> </second> </item> <item> <first>tmp_value_V_2_reg_321</first> <second> <count>1</count> <item_version>0</item_version> <item>38</item> </second> </item> <item> <first>write_idx_1_1_reg_146</first> <second> <count>1</count> <item_version>0</item_version> <item>24</item> </second> </item> <item> <first>write_idx_1_2_reg_350</first> <second> <count>1</count> <item_version>0</item_version> <item>64</item> </second> </item> <item> <first>write_idx_1_reg_123</first> <second> <count>1</count> <item_version>0</item_version> <item>11</item> </second> </item> </dp_regname_nodes> <dp_reg_phi> <count>4</count> <item_version>0</item_version> <item> <first>123</first> <second> <count>1</count> <item_version>0</item_version> <item>11</item> </second> </item> <item> <first>135</first> <second> <count>1</count> <item_version>0</item_version> <item>12</item> </second> </item> <item> <first>146</first> <second> <count>1</count> <item_version>0</item_version> <item>24</item> </second> </item> <item> <first>157</first> <second> <count>1</count> <item_version>0</item_version> <item>25</item> </second> </item> </dp_reg_phi> <dp_regname_phi> <count>4</count> <item_version>0</item_version> <item> <first>col_reg_157</first> <second> <count>1</count> <item_version>0</item_version> <item>25</item> </second> </item> <item> <first>row_reg_135</first> <second> <count>1</count> <item_version>0</item_version> <item>12</item> </second> </item> <item> <first>write_idx_1_1_reg_146</first> <second> <count>1</count> <item_version>0</item_version> <item>24</item> </second> </item> <item> <first>write_idx_1_reg_123</first> <second> <count>1</count> <item_version>0</item_version> <item>11</item> </second> </item> </dp_regname_phi> <dp_port_io_nodes class_id="53" tracking_level="0" version="0"> <count>2</count> <item_version>0</item_version> <item class_id="54" tracking_level="0" version="0"> <first>in_stream_V_value_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>38</item> </second> </item> </second> </item> <item> <first>slice_stream_V_value_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>write</first> <second> <count>1</count> <item_version>0</item_version> <item>49</item> </second> </item> </second> </item> </dp_port_io_nodes> <port2core class_id="55" tracking_level="0" version="0"> <count>2</count> <item_version>0</item_version> <item class_id="56" tracking_level="0" version="0"> <first>1</first> <second>FIFO_SRL</second> </item> <item> <first>2</first> <second>FIFO_SRL</second> </item> </port2core> <node2core> <count>2</count> <item_version>0</item_version> <item> <first>7</first> <second>RAM</second> </item> <item> <first>8</first> <second>RAM</second> </item> </node2core> </syndb> </boost_serialization>
------------------------------------------------------------------------------ -- -- -- ASIS-for-GNAT IMPLEMENTATION COMPONENTS -- -- -- -- A 4 G . E N C L _ E L -- -- -- -- B o d y -- -- -- -- Copyright (C) 1995-2012, Free Software Foundation, Inc. -- -- -- -- ASIS-for-GNAT is free software; you can redistribute it and/or modify it -- -- under terms of the GNU General Public License as published by the Free -- -- Software Foundation; either version 2, or (at your option) any later -- -- version. ASIS-for-GNAT is distributed in the hope that it will be use- -- -- ful, but WITHOUT ANY WARRANTY; without even the implied warranty of MER- -- -- CHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General -- -- Public License for more details. You should have received a copy of the -- -- GNU General Public License distributed with ASIS-for-GNAT; see file -- -- COPYING. If not, write to the Free Software Foundation, 51 Franklin -- -- Street, Fifth Floor, Boston, MA 02110-1301, USA. -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- ASIS-for-GNAT was originally developed by the ASIS-for-GNAT team at the -- -- Software Engineering Laboratory of the Swiss Federal Institute of -- -- Technology (LGL-EPFL) in Lausanne, Switzerland, in cooperation with the -- -- Scientific Research Computer Center of Moscow State University (SRCC -- -- MSU), Russia, with funding partially provided by grants from the Swiss -- -- National Science Foundation and the Swiss Academy of Engineering -- -- Sciences. ASIS-for-GNAT is now maintained by AdaCore -- -- (http://www.adacore.com). -- -- -- ------------------------------------------------------------------------------ with Asis; use Asis; with Asis.Declarations; use Asis.Declarations; with Asis.Elements; use Asis.Elements; with Asis.Extensions; with Asis.Set_Get; use Asis.Set_Get; with A4G.A_Sem; use A4G.A_Sem; with A4G.A_Types; use A4G.A_Types; with A4G.Int_Knds; use A4G.Int_Knds; with A4G.Mapping; use A4G.Mapping; with A4G.Queries; use A4G.Queries; with A4G.Vcheck; use A4G.Vcheck; with Atree; use Atree; with Einfo; use Einfo; with Namet; use Namet; with Nlists; use Nlists; with Sinfo; use Sinfo; with Sinput; use Sinput; with Snames; with Stand; use Stand; with Types; use Types; package body A4G.Encl_El is ------------------------------------------------ -- The general approach to the implementation -- -- of the Enclosing_Element query -- ------------------------------------------------ -- There are important differences in the ways how an Enclosing_Element -- is retrieved for explicit and implicit Elements, and for the elements -- from expanded generics. For explicit Elements, the general way to get -- the enclosing Element is to do the necessary bottom-up tree traversing, -- for most of the cases all what we need if one step up the front-end -- tree, but sometimes the differences between front-end and ASIS trees -- require some non-trivial traversing. -- -- For implicit Elements, there is a semantic link between a top Element -- of an ASIS implicit sub-hierarchy and some explicit Element that -- "generates" this subhierarchy. For example, an implicit declaration of -- an inherited supprogram is "generated" by some derived type definition, -- so inside the implicit subhierarchy we use the same approach for -- retrieving the enclosing Element as for explicit Elements, but the -- enclosing Element for subhierarchy is the construct that "generates" the -- subhierarchy, and to get to this construct, the link stored as a part -- of implicit elements structure is used. -- -- For Elements from generic instantiations, we do bottom-up traversing of -- the ASIS/front-end tree structure corresponding to the expanded code -- in the same way as for explicit Elements, but when we are at the top of -- an expanded spec or body, the next Enclosing_Element step should go -- to the corresponding instantiation, so here we also do something -- different that bottom-up tree traversing -- -- But for most of the cases the way to get the enclosing Element is to -- map the bottom-up traversing of the compiler tree onto the ASIS Elements -- hierarchy. This is performed by Enclosing_Element_For_Explicit function, -- and all the other routines defined in this package detect and process -- various special cases. For implicit Elements and for Elements that are -- components of expanded generic structure the first thing is to check if -- this Element can be processed as if it is a usual explicit Element, and -- then correct result, if needed. --------------------------------------------------------------------- -- Mapping the bottom-up traversing of the compiler tree onto ASIS -- --------------------------------------------------------------------- -- Each ASIS Element contains the reference to the tree node it has been -- built from. In many cases the enclosing Element should be built on -- the parent node. In some cases the enclosing Element may be built on the -- same node. And there are some cases when we have to do some traversing -- that is specific to this particular Element to get to the compiler tree -- node corresponding to its enclosing Element. -- The way of getting the enclosing Element is implemented on the base of -- two look-up tables (switches). The first table defines if for the given -- element (that is, for the given Element kind, and the internal flat -- Element classification is used here) some regular way of constructing -- enclosing Element should be used, or some non-trivial traversing is -- needed. This non-trivial traversing is specific to the Element kind, and -- the corresponding routine is defined by the second look-up table. ------------------------------------------------- -- The general structure of this package body -- ------------------------------------------------- -- The rest of this package body has the following structure: -- -- Section 1 - definition of the first Enclosing_Element switch (makes -- the difference between trivial and non-trivial cases of -- mapping the bottom up compiler tree traversing onto ASIS -- -- Section 2 - declarations of routines implementing various cases of -- non-trivial bottom up compiler tree traversing -- -- Section 3 - definition of the second Enclosing_Element switch (maps -- Element kind requiring non-trivial actions onto -- corresponding routines -- -- Section 4 - (general-purpose) local subprograms -- -- Section 5 - bodies of the routines declared in Section 2 -- -- Section 6 - bodies of the routines declared in the package spec --------------------------------------------------------------------- -- Section 1 - Enclosing_Element first switch, separating trivial -- -- and non-trivial cases -- --------------------------------------------------------------------- -- This switch maps each value of the Internal_Element_Kinds onto one -- of the following values of the same type, and this mapping has the -- following meaning: -- Not_An_Element => Asis.Nil_Element should be returned as -- Enclosed Element; -- -- Trivial_Mapping => A standard Enclosing_Element constructor should -- be used, it is implemented by General_Encl_Elem -- function -- -- No_Mapping => is set for the special values added to the -- Internal_Element_Kinds literals to organize the -- Node_to_Element and Enclosing Element switches. -- -- Non_Trivial_Mapping => a special function is needed for this Element -- kind to get the Enclosing Element. This function -- is selected by second switch, -- -- Not_Implemented_Mapping => it means what is sounds -- -- any the other value => the Enclosing Element for the Element of the -- corresponding kind is based on the same node, but -- is of the specified kind Enclosing_Element_For_Explicits_First_Switch : constant array (Internal_Element_Kinds) of Internal_Element_Kinds := ( -- type Internal_Element_Kinds is ( -- Not_An_Element => Not_An_Element, -- Asis.Nil_Element should be returned as the -- Enclosing for the Asis.Nil_Element, should not it??? -- ------------------------------------------------------------------------------ -- -- -- A_Pragma, -- Asis.Elements -- ------------------------------------------------------------------------------ -- An_All_Calls_Remote_Pragma .. -- An_Asynchronous_Pragma, -- An_Atomic_Pragma, -- An_Atomic_Components_Pragma, -- An_Attach_Handler_Pragma, -- A_Controlled_Pragma, -- A_Convention_Pragma, -- A_Discard_Names_Pragma, -- An_Elaborate_Pragma, -- An_Elaborate_All_Pragma, -- An_Elaborate_Body_Pragma, -- An_Export_Pragma, -- An_Import_Pragma, -- An_Inline_Pragma, -- An_Inspection_Point_Pragma, -- An_Interrupt_Handler_Pragma, -- An_Interrupt_Priority_Pragma, -- A_Linker_Options_Pragma -- A_List_Pragma, -- A_Locking_Policy_Pragma, -- A_Normalize_Scalars_Pragma, -- An_Optimize_Pragma, -- A_Pack_Pragma, -- A_Page_Pragma, -- A_Preelaborate_Pragma, -- A_Priority_Pragma, -- A_Pure_Pragma, -- A_Queuing_Policy_Pragma, -- A_Remote_Call_Interface_Pragma, -- A_Remote_Types_Pragma, -- A_Restrictions_Pragma, -- A_Reviewable_Pragma, -- A_Shared_Passive_Pragma, -- A_Storage_Size_Pragma, -- A_Suppress_Pragma, -- A_Task_Dispatching_Policy_Pragma, -- A_Volatile_Pragma, -- A_Volatile_Components_Pragma, -- -- An_Implementation_Defined_Pragma, -- An_Unknown_Pragma => Non_Trivial_Mapping, -- ------------------------------------------------------------------------------ -- -- -- A_Defining_Name, -- Asis.Declarations -- ------------------------------------------------------------------------------ -- A_Defining_Identifier => Non_Trivial_Mapping, A_Defining_Character_Literal => An_Enumeration_Literal_Specification, A_Defining_Enumeration_Literal => An_Enumeration_Literal_Specification, -- -- -- A_Defining_Operator_Symbol => Non_Trivial_Mapping -- A_Defining_And_Operator .. -- A_Defining_Or_Operator, -- A_Defining_Xor_Operator, -- A_Defining_Equal_Operator, -- A_Defining_Not_Equal_Operator, -- A_Defining_Less_Than_Operator, -- A_Defining_Less_Than_Or_Equal_Operator, -- A_Defining_Greater_Than_Operator, -- A_Defining_Greater_Than_Or_Equal_Operator, -- A_Defining_Plus_Operator, -- A_Defining_Minus_Operator, -- A_Defining_Concatenate_Operator, -- A_Defining_Unary_Plus_Operator, -- A_Defining_Unary_Minus_Operator, -- A_Defining_Multiply_Operator, -- A_Defining_Divide_Operator, -- A_Defining_Mod_Operator, -- A_Defining_Rem_Operator, -- A_Defining_Exponentiate_Operator, -- A_Defining_Abs_Operator, A_Defining_Not_Operator => Non_Trivial_Mapping, A_Defining_Expanded_Name => Non_Trivial_Mapping, -- ------------------------------------------------------------------------------ -- -- -- A_Declaration, -- Asis.Declarations -- ------------------------------------------------------------------------------ -- An_Ordinary_Type_Declaration .. -- A_Task_Type_Declaration, -- A_Protected_Type_Declaration, -- An_Incomplete_Type_Declaration, -- A_Private_Type_Declaration, -- A_Private_Extension_Declaration, -- A_Subtype_Declaration, A_Variable_Declaration => Trivial_Mapping, A_Constant_Declaration => Trivial_Mapping, A_Deferred_Constant_Declaration .. -- A_Single_Task_Declaration, -- A_Single_Protected_Declaration, -- -- An_Integer_Number_Declaration, A_Real_Number_Declaration => Trivial_Mapping, -- An_Enumeration_Literal_Specification => Non_Trivial_Mapping, -- is it really so? -- A_Discriminant_Specification => Non_Trivial_Mapping, A_Component_Declaration => Non_Trivial_Mapping, A_Loop_Parameter_Specification .. -- A_Generalized_Iterator_Specification, An_Element_Iterator_Specification => Non_Trivial_Mapping, A_Procedure_Declaration => Non_Trivial_Mapping, A_Function_Declaration => Non_Trivial_Mapping, -- A_Parameter_Specification => Non_Trivial_Mapping, -- A_Procedure_Body_Declaration => Non_Trivial_Mapping, A_Function_Body_Declaration => Non_Trivial_Mapping, A_Return_Variable_Specification => Trivial_Mapping, A_Return_Constant_Specification => Trivial_Mapping, A_Null_Procedure_Declaration => Trivial_Mapping, An_Expression_Function_Declaration => Trivial_Mapping, A_Package_Declaration => Non_Trivial_Mapping, A_Package_Body_Declaration => Non_Trivial_Mapping, An_Object_Renaming_Declaration => Trivial_Mapping, An_Exception_Renaming_Declaration => Trivial_Mapping, A_Package_Renaming_Declaration => Non_Trivial_Mapping, A_Procedure_Renaming_Declaration => Non_Trivial_Mapping, A_Function_Renaming_Declaration => Non_Trivial_Mapping, A_Generic_Package_Renaming_Declaration => Non_Trivial_Mapping, A_Generic_Procedure_Renaming_Declaration => Non_Trivial_Mapping, A_Generic_Function_Renaming_Declaration => Non_Trivial_Mapping, A_Task_Body_Declaration => Non_Trivial_Mapping, A_Protected_Body_Declaration => Non_Trivial_Mapping, An_Entry_Declaration => Non_Trivial_Mapping, An_Entry_Body_Declaration => Trivial_Mapping, An_Entry_Index_Specification => Trivial_Mapping, A_Procedure_Body_Stub => Trivial_Mapping, A_Function_Body_Stub => Trivial_Mapping, A_Package_Body_Stub => Trivial_Mapping, A_Task_Body_Stub => Trivial_Mapping, A_Protected_Body_Stub => Trivial_Mapping, An_Exception_Declaration => Trivial_Mapping, A_Choice_Parameter_Specification => Trivial_Mapping, -- A_Generic_Procedure_Declaration => Non_Trivial_Mapping, A_Generic_Function_Declaration => Non_Trivial_Mapping, A_Generic_Package_Declaration => Non_Trivial_Mapping, A_Package_Instantiation => Non_Trivial_Mapping, A_Procedure_Instantiation => Non_Trivial_Mapping, A_Function_Instantiation => Non_Trivial_Mapping, A_Formal_Object_Declaration => Trivial_Mapping, A_Formal_Type_Declaration => Trivial_Mapping, A_Formal_Incomplete_Type_Declaration => Trivial_Mapping, A_Formal_Procedure_Declaration => Trivial_Mapping, A_Formal_Function_Declaration => Trivial_Mapping, A_Formal_Package_Declaration => Trivial_Mapping, A_Formal_Package_Declaration_With_Box => Trivial_Mapping, ------------------------------------------------------------------------------ -- -- -- A_Definition, -- Asis.Definitions -- ------------------------------------------------------------------------------ -- -- -- A_Type_Definition, -- A_Derived_Type_Definition => Trivial_Mapping, A_Derived_Record_Extension_Definition => Trivial_Mapping, -- An_Enumeration_Type_Definition => Non_Trivial_Mapping, -- A_Signed_Integer_Type_Definition => Trivial_Mapping, A_Modular_Type_Definition => Trivial_Mapping, -- -- -- A_Root_Type_Definition, ----- ######### -- -- A_Root_Integer_Definition, ----- ######### -- A_Root_Real_Definition, ----- ######### -- A_Root_Fixed_Definition, ----- ######### -- -- A_Universal_Integer_Definition, ----- ######### -- A_Universal_Real_Definition, ----- ######### -- A_Universal_Fixed_Definition, ----- ######### -- -- A_Floating_Point_Definition => Trivial_Mapping, -- An_Ordinary_Fixed_Point_Definition => Trivial_Mapping, A_Decimal_Fixed_Point_Definition => Trivial_Mapping, -- An_Unconstrained_Array_Definition => Trivial_Mapping, A_Constrained_Array_Definition => Trivial_Mapping, -- A_Record_Type_Definition => Trivial_Mapping, -- ??? A_Tagged_Record_Type_Definition => Trivial_Mapping, -- ??? -- --|A2005 start -- An_Interface_Type_Definition, An_Ordinary_Interface .. -- A_Limited_Interface, -- A_Task_Interface, -- A_Protected_Interface, A_Synchronized_Interface => Trivial_Mapping, -- --|A2005 end -- -- An_Access_Type_Definition, -- A_Pool_Specific_Access_To_Variable => Trivial_Mapping, An_Access_To_Variable => Trivial_Mapping, An_Access_To_Constant => Trivial_Mapping, -- An_Access_To_Procedure => Trivial_Mapping, An_Access_To_Protected_Procedure => Trivial_Mapping, An_Access_To_Function => Trivial_Mapping, An_Access_To_Protected_Function => Trivial_Mapping, -- -- A_Subtype_Indication => Non_Trivial_Mapping, -- -- -- A_Constraint, -- A_Range_Attribute_Reference => Non_Trivial_Mapping, -- ??? A_Simple_Expression_Range => Non_Trivial_Mapping, A_Digits_Constraint => Trivial_Mapping, A_Delta_Constraint => Trivial_Mapping, An_Index_Constraint => Non_Trivial_Mapping, A_Discriminant_Constraint => Non_Trivial_Mapping, -- A_Component_Definition => Trivial_Mapping, -- -- -- A_Discrete_Subtype_Definition, -- A_Discrete_Subtype_Indication_As_Subtype_Definition => Trivial_Mapping, A_Discrete_Range_Attribute_Reference_As_Subtype_Definition => Trivial_Mapping, A_Discrete_Simple_Expression_Range_As_Subtype_Definition => Trivial_Mapping, -- -- -- A_Discrete_Range, -- A_Discrete_Subtype_Indication => Non_Trivial_Mapping, A_Discrete_Range_Attribute_Reference => Non_Trivial_Mapping, A_Discrete_Simple_Expression_Range => Non_Trivial_Mapping, -- -- An_Unknown_Discriminant_Part => Non_Trivial_Mapping, A_Known_Discriminant_Part => Non_Trivial_Mapping, -- A_Record_Definition => Non_Trivial_Mapping, A_Null_Record_Definition => Non_Trivial_Mapping, -- A_Null_Component => Non_Trivial_Mapping, A_Variant_Part => Non_Trivial_Mapping, A_Variant => Trivial_Mapping, An_Others_Choice => Non_Trivial_Mapping, -- --|A2005 start An_Anonymous_Access_To_Variable .. -- An_Anonymous_Access_To_Constant -- An_Anonymous_Access_To_Procedure -- An_Anonymous_Access_To_Protected_Procedure -- An_Anonymous_Access_To_Function An_Anonymous_Access_To_Protected_Function => Trivial_Mapping, -- --|A2005 end A_Private_Type_Definition => A_Private_Type_Declaration, A_Tagged_Private_Type_Definition => A_Private_Type_Declaration, A_Private_Extension_Definition => A_Private_Extension_Declaration, -- A_Task_Definition => Trivial_Mapping, A_Protected_Definition => Non_Trivial_Mapping, -- -- -- A_Formal_Type_Definition, -- A_Formal_Private_Type_Definition .. -- A_Formal_Tagged_Private_Type_Definition, -- -- A_Formal_Derived_Type_Definition, -- -- A_Formal_Discrete_Type_Definition, -- -- A_Formal_Signed_Integer_Type_Definition, -- A_Formal_Modular_Type_Definition, -- -- A_Formal_Floating_Point_Definition, -- -- A_Formal_Ordinary_Fixed_Point_Definition, -- A_Formal_Decimal_Fixed_Point_Definition, -- -- A_Formal_Unconstrained_Array_Definition, -- A_Formal_Constrained_Array_Definition, -- -- -- A_Formal_Access_Type_Definition, -- -- A_Formal_Pool_Specific_Access_To_Variable, -- A_Formal_Access_To_Variable, -- A_Formal_Access_To_Constant, -- -- A_Formal_Access_To_Procedure, -- A_Formal_Access_To_Protected_Procedure, -- A_Formal_Access_To_Function, -- A_Formal_Access_To_Protected_Function An_Aspect_Specification => Trivial_Mapping, -- ------------------------------------------------------------------------------ -- -- -- An_Expression, -- Asis.Expressions --########## -- ------------------------------------------------------------------------------ -- An_Integer_Literal => Non_Trivial_Mapping, A_Real_Literal => Non_Trivial_Mapping, A_String_Literal => Non_Trivial_Mapping, An_Identifier => Non_Trivial_Mapping, -- -- -- An_Operator_Symbol, -- An_And_Operator .. -- An_Or_Operator, -- An_Xor_Operator, -- An_Equal_Operator, -- A_Not_Equal_Operator, -- A_Less_Than_Operator, -- A_Less_Than_Or_Equal_Operator, -- A_Greater_Than_Operator, -- A_Greater_Than_Or_Equal_Operator, -- A_Plus_Operator, -- A_Minus_Operator, -- A_Concatenate_Operator, -- A_Unary_Plus_Operator, -- A_Unary_Minus_Operator, -- A_Multiply_Operator, -- A_Divide_Operator, -- A_Mod_Operator, -- A_Rem_Operator, -- An_Exponentiate_Operator, -- An_Abs_Operator, -- A_Not_Operator => A_Function_Call, A_Not_Operator => Non_Trivial_Mapping, -- -- A_Character_Literal .. -- -- An_Enumeration_Literal, -- An_Explicit_Dereference => Trivial_Mapping, -- -- A_Function_Call => Non_Trivial_Mapping, -- -- -- An_Indexed_Component .. -- A_Slice => Trivial_Mapping, -- A_Selected_Component => Non_Trivial_Mapping, -- -- -- -- -- ??? Not_An_Attribute, -- -- -- An_Attribute_Reference => Non_Trivial_Mapping, -- -- -- An_Access_Attribute .. -- -- An_Address_Attribute, -- -- An_Adjacent_Attribute, -- -- An_Aft_Attribute, -- -- An_Alignment_Attribute, -- -- A_Base_Attribute, -- -- A_Bit_Order_Attribute, -- -- A_Body_Version_Attribute, -- -- A_Callable_Attribute, -- -- A_Caller_Attribute, -- -- A_Ceiling_Attribute, -- -- A_Class_Attribute, -- -- A_Component_Size_Attribute, -- -- A_Compose_Attribute, -- -- A_Constrained_Attribute, -- -- A_Copy_Sign_Attribute, -- -- A_Count_Attribute, -- -- A_Definite_Attribute, -- -- A_Delta_Attribute, -- -- A_Denorm_Attribute, -- -- A_Digits_Attribute, -- -- An_Exponent_Attribute, -- -- An_External_Tag_Attribute, -- -- A_First_Attribute, -- -- A_First_Bit_Attribute, -- -- A_Floor_Attribute, -- -- A_Fore_Attribute, -- -- A_Fraction_Attribute, -- -- An_Identity_Attribute, -- -- An_Image_Attribute, -- -- An_Input_Attribute, -- -- A_Last_Attribute, -- -- A_Last_Bit_Attribute, -- -- A_Leading_Part_Attribute, -- -- A_Length_Attribute, -- -- A_Machine_Attribute, -- -- A_Machine_Emax_Attribute, -- -- A_Machine_Emin_Attribute, -- -- A_Machine_Mantissa_Attribute, -- -- A_Machine_Overflows_Attribute, -- -- A_Machine_Radix_Attribute, -- -- A_Machine_Rounds_Attribute, -- -- A_Max_Attribute, -- -- A_Max_Size_In_Storage_Elements_Attribute, -- -- A_Min_Attribute, -- -- A_Model_Attribute, -- -- A_Model_Emin_Attribute, -- -- A_Model_Epsilon_Attribute, -- -- A_Model_Mantissa_Attribute, -- -- A_Model_Small_Attribute, -- -- A_Modulus_Attribute, -- -- An_Output_Attribute, -- -- A_Partition_ID_Attribute, -- -- A_Pos_Attribute, -- -- A_Position_Attribute, -- -- A_Pred_Attribute, -- -- A_Range_Attribute, -- -- A_Read_Attribute, -- -- A_Remainder_Attribute, -- -- A_Round_Attribute, -- -- A_Rounding_Attribute, -- -- A_Safe_First_Attribute, -- -- A_Safe_Last_Attribute, -- -- A_Scale_Attribute, -- -- A_Scaling_Attribute, -- -- A_Signed_Zeros_Attribute, -- -- A_Size_Attribute, -- -- A_Small_Attribute, -- -- A_Storage_Pool_Attribute, -- -- A_Storage_Size_Attribute, -- -- -- -- A_Succ_Attribute, -- -- A_Tag_Attribute, -- -- A_Terminated_Attribute, -- -- A_Truncation_Attribute, -- -- An_Unbiased_Rounding_Attribute, -- -- An_Unchecked_Access_Attribute, -- -- A_Val_Attribute, -- -- A_Valid_Attribute, -- -- A_Value_Attribute, -- -- A_Version_Attribute, -- -- A_Wide_Image_Attribute, -- -- A_Wide_Value_Attribute, -- -- A_Wide_Width_Attribute, -- -- A_Width_Attribute, -- -- A_Write_Attribute, -- -- -- -- An_Implementation_Defined_Attribute, -- Vendor Annex M -- An_Unknown_Attribute => Non_Trivial_Mapping, -- -- -- A_Record_Aggregate, -- -- An_Extension_Aggregate, -- -- A_Positional_Array_Aggregate, -- -- A_Named_Array_Aggregate, -- -- -- -- An_And_Then_Short_Circuit, -- -- An_Or_Else_Short_Circuit, -- -- -- -- An_In_Range_Membership_Test, -- -- A_Not_In_Range_Membership_Test, -- -- An_In_Type_Membership_Test, -- -- A_Not_In_Type_Membership_Test, -- -- -- -- A_Null_Literal, -- -- A_Parenthesized_Expression, -- -- -- -- A_Type_Conversion, -- -- A_Qualified_Expression, -- -- -- -- An_Allocation_From_Subtype, -- An_Allocation_From_Qualified_Expression, -- A_Case_Expression, -- Ada 2012 -- An_If_Expression, -- Ada 2012 -- A_For_All_Quantified_Expression, -- Ada 2012 -- A_For_Some_Quantified_Expression); -- Ada 2012 A_Character_Literal .. A_For_Some_Quantified_Expression => Non_Trivial_Mapping, -- ------------------------------------------------------------------------------ -- -- -- An_Association, -- Asis.Expressions -- ------------------------------------------------------------------------------ -- A_Pragma_Argument_Association => Trivial_Mapping, A_Discriminant_Association => Non_Trivial_Mapping, A_Record_Component_Association => Trivial_Mapping, An_Array_Component_Association => Non_Trivial_Mapping, A_Parameter_Association => Non_Trivial_Mapping, A_Generic_Association => Non_Trivial_Mapping, -- ------------------------------------------------------------------------------ -- -- -- A_Statement, -- Asis.Statements -- -- All subordinates of A_Statement kind require non trivial processing, -- this processing is the same for all of them except -- A_Terminate_Alternative_Statement ------------------------------------------------------------------------------ -- A_Null_Statement .. -- An_Assignment_Statement, -- An_If_Statement, -- A_Case_Statement, -- -- A_Loop_Statement, -- A_While_Loop_Statement, -- A_For_Loop_Statement, -- -- A_Block_Statement, -- An_Exit_Statement, -- A_Goto_Statement, -- -- A_Procedure_Call_Statement, -- A_Return_Statement, -- -- An_Accept_Statement, -- An_Entry_Call_Statement, -- -- A_Requeue_Statement, -- A_Requeue_Statement_With_Abort, -- -- A_Delay_Until_Statement, -- A_Delay_Relative_Statement, -- -- A_Terminate_Alternative_Statement, -- A_Selective_Accept_Statement, -- A_Timed_Entry_Call_Statement, -- A_Conditional_Entry_Call_Statement, -- An_Asynchronous_Select_Statement, -- -- An_Abort_Statement, -- A_Raise_Statement, A_Code_Statement => Non_Trivial_Mapping, -- ------------------------------------------------------------------------------ -- Path_Kinds -- Literals -- Ada RM 95 -- -- Detailed classification for -- ASIS_Element_Kinds.Element_Kinds(A_Path) literal -- corresponds to subtype Internal_Path_Kinds ------------------------------------------------------------------------------ An_If_Path => An_If_Statement, An_Elsif_Path => Trivial_Mapping, An_Else_Path => Non_Trivial_Mapping, A_Case_Path => Trivial_Mapping, A_Select_Path => Trivial_Mapping, An_Or_Path => Trivial_Mapping, A_Then_Abort_Path => Trivial_Mapping, -- ------------------------------------------------------------ -- An_Expression_Path, -- Asis.Expressions Ada 2015 -- Detailed classification for Asis.Element_Kinds (An_Expression_Path) -- literal corresponds to subtype Internal_Expression_Path_Kinds ------------------------------------------------------------ An_If_Expression_Path .. -- An_Elsif_Expression_Path, An_Else_Expression_Path => Non_Trivial_Mapping, ------------------------------------------------------------------------ -- -- -- A_Clause, -- Asis.Clauses -- ------------------------------------------------------------------------------ -- A_Use_Package_Clause => Non_Trivial_Mapping, A_Use_Type_Clause => Non_Trivial_Mapping, A_Use_All_Type_Clause => Non_Trivial_Mapping, A_With_Clause => Not_An_Element, -- -- -- A_Representation_Clause, -- An_Attribute_Definition_Clause => Non_Trivial_Mapping, An_Enumeration_Representation_Clause => Trivial_Mapping, A_Record_Representation_Clause => Trivial_Mapping, An_At_Clause => Trivial_Mapping, -- -- A_Component_Clause => Trivial_Mapping, -- ------------------------------------------------------------------------------ -- An_Exception_Handler => Non_Trivial_Mapping, -- ------------------------------------------------------------------------------ -- Special values added for Node -> Element and -- Element -> Enclosing Element switching, ------------------------------------------------------------------------------ Non_Trivial_Mapping => No_Mapping, Not_Implemented_Mapping => No_Mapping, Trivial_Mapping => No_Mapping, No_Mapping => No_Mapping, others => Not_Implemented_Mapping ); ------------------------------------------------------------------------- -- Section 2 - declarations of routines implementing various cases of -- -- non-trivial bottom up compiler tree traversing and -- -- accessed though the second switch -- ------------------------------------------------------------------------- function Not_Implemented_Enclosing_Element_Construction (Element : Asis.Element) return Asis.Element; -- Placeholders for "others" choice -- The functions below computes Enclosing_Elememnt for specific Element -- kinds; the corresponding situations cannot be covered by -- General_Encl_Elem function A_Pragma_Enclosing (Element : Asis.Element) return Asis.Element; function A_Defining_Expanded_Name_Enclosing (Element : Asis.Element) return Asis.Element; function A_Defining_Identifier_Enclosing (Element : Asis.Element) return Asis.Element; function A_Defining_Operator_Symbol_Enclosing (Element : Asis.Element) return Asis.Element; function A_Constant_Declaration_Enclosing (Element : Asis.Element) return Asis.Element; function An_Enumeration_Literal_Specification_Enclosing (Element : Asis.Element) return Asis.Element; function A_Discriminant_Specification_Enclosing (Element : Asis.Element) return Asis.Element; function A_Loop_Parameter_Specification_Enclosing (Element : Asis.Element) return Asis.Element; function A_Parameter_Specification_Enclosing (Element : Asis.Element) return Asis.Element; function An_Enumeration_Type_Definition_Enclosing (Element : Asis.Element) return Asis.Element; function A_Subtype_Indication_Enclosing (Element : Asis.Element) return Asis.Element; function A_Range_Attribute_Reference_Enclosing (Element : Asis.Element) return Asis.Element; function A_Simple_Expression_Range_Enclosing (Element : Asis.Element) return Asis.Element; function A_Discrete_Range_Enclosing (Element : Asis.Element) return Asis.Element; function A_Discriminant_Part_Enclosing (Element : Asis.Element) return Asis.Element; function A_Record_Definition_Enclosing (Element : Asis.Element) return Asis.Element; function A_Null_Component_Enclosing (Element : Asis.Element) return Asis.Element; function A_Variant_Part_Enclosing (Element : Asis.Element) return Asis.Element; function An_Others_Choice_Enclosing (Element : Asis.Element) return Asis.Element; function A_Statement_Enclosing (Element : Asis.Element) return Asis.Element; function A_Terminate_Alternative_Statement_Enclosing (Element : Asis.Element) return Asis.Element; function An_Else_Path_Enclosing (Element : Asis.Element) return Asis.Element; function An_Attribute_Definition_Clause_Enclosing (Element : Asis.Element) return Asis.Element; function An_Exception_Handler_Enclosing (Element : Asis.Element) return Asis.Element; function Possible_C_U_Enclosing (Element : Asis.Element) return Asis.Element; -- Called in a situation when Enclosing_Element may have to be Nil_Element, -- because we may reach the very top of the Element hierarchy of an ASIS -- Compilation_Unit, so logically the next step up should be from Elements -- into enclosing unit. function An_Association_Enclosing (Element : Asis.Element) return Asis.Element; -- Computes the Enclosing Element for parameter associations. The main -- difference with An_Expression_Enclosing is that here we may have to deal -- with normalized associations function An_Expression_Enclosing (Element : Asis.Element) return Asis.Element; -- This function implements the part of the semantic of the -- Asis.Elements.Enclosing_Element function corresponding to the -- enclosing element retrieving for elements representing Ada explicit -- constructs. It deals only with expressions - the hardest part -- for Enclosing_Element. -------------------------------------------------------------------- -- Section 3 - definition of the second Enclosing_Element switch -- -- (maps Element kind requiring non-trivial actions -- -- onto corresponding routines -- -------------------------------------------------------------------- type Enclosing_Element_Construction_For_Explicits_Items is access function (Element : Asis.Element) return Asis.Element; -- access to the local items of the constructing the Enclosing Elements -- for Explicit constructs Enclosing_Element_For_Explicits_Second_Switch : constant array (Internal_Element_Kinds) of Enclosing_Element_Construction_For_Explicits_Items := ( -- type Internal_Element_Kinds is ( -- -- Not_An_Element, -- Asis.Nil_Element -- ------------------------------------------------------------------------------ -- A_Pragma, -- Asis.Elements ------------------------------------------------------------------------------ An_All_Calls_Remote_Pragma .. -- An_Asynchronous_Pragma, -- An_Atomic_Pragma, -- An_Atomic_Components_Pragma, -- An_Attach_Handler_Pragma, -- A_Controlled_Pragma, -- A_Convention_Pragma, -- A_Discard_Names_Pragma, -- An_Elaborate_Pragma, -- An_Elaborate_All_Pragma, -- An_Elaborate_Body_Pragma, -- An_Export_Pragma, -- An_Import_Pragma, -- An_Inline_Pragma, -- An_Inspection_Point_Pragma, -- An_Interrupt_Handler_Pragma, -- An_Interrupt_Priority_Pragma, -- A_Linker_Options_Pragma -- A_List_Pragma, -- A_Locking_Policy_Pragma, -- A_Normalize_Scalars_Pragma, -- An_Optimize_Pragma, -- A_Pack_Pragma, -- A_Page_Pragma, -- A_Preelaborate_Pragma, -- A_Priority_Pragma, -- A_Pure_Pragma, -- A_Queuing_Policy_Pragma, -- A_Remote_Call_Interface_Pragma, -- A_Remote_Types_Pragma, -- A_Restrictions_Pragma, -- A_Reviewable_Pragma, -- A_Shared_Passive_Pragma, -- A_Storage_Size_Pragma, -- A_Suppress_Pragma, -- A_Task_Dispatching_Policy_Pragma, -- A_Volatile_Pragma, -- A_Volatile_Components_Pragma, -- -- An_Implementation_Defined_Pragma, -- An_Unknown_Pragma => A_Pragma_Enclosing'Access, ------------------------------------------------------------------------------ -- A_Defining_Name, -- Asis.Declarations ------------------------------------------------------------------------------ A_Defining_Identifier => A_Defining_Identifier_Enclosing'Access, -- A_Defining_Character_Literal, -- an Enclosing Element is based -- A_Defining_Enumeration_Literal, -- on the same Node -- -- -- A_Defining_Operator_Symbol -- A_Defining_And_Operator .. -- A_Defining_Or_Operator, -- A_Defining_Xor_Operator, -- A_Defining_Equal_Operator, -- A_Defining_Not_Equal_Operator, -- A_Defining_Less_Than_Operator, -- A_Defining_Less_Than_Or_Equal_Operator, -- A_Defining_Greater_Than_Operator, -- A_Defining_Greater_Than_Or_Equal_Operator, -- A_Defining_Plus_Operator, -- A_Defining_Minus_Operator, -- A_Defining_Concatenate_Operator, -- A_Defining_Unary_Plus_Operator, -- A_Defining_Unary_Minus_Operator, -- A_Defining_Multiply_Operator, -- A_Defining_Divide_Operator, -- A_Defining_Mod_Operator, -- A_Defining_Rem_Operator, -- A_Defining_Exponentiate_Operator, -- A_Defining_Abs_Operator, A_Defining_Not_Operator => A_Defining_Operator_Symbol_Enclosing'Access, A_Defining_Expanded_Name => A_Defining_Expanded_Name_Enclosing'Access, -- ------------------------------------------------------------------------------- -- -- -- A_Declaration, -- Asis.Declarations -- ------------------------------------------------------------------------------- -- -- An_Ordinary_Type_Declaration, -- 3.2.1 -- A_Task_Type_Declaration, -- 3.2.1 -- A_Protected_Type_Declaration, -- 3.2.1 -- An_Incomplete_Type_Declaration, -- 3.2.1 -- A_Private_Type_Declaration, -- 3.2.1 -- A_Private_Extension_Declaration, -- 3.2.1 -- -- A_Subtype_Declaration, -- 3.2.2 -- -- A_Variable_Declaration, -- 3.3.1 -> Trait_Kinds A_Constant_Declaration => A_Constant_Declaration_Enclosing'Access, -- This is turned off, see G416-009 -- A_Deferred_Constant_Declaration, -- 3.3.1 -> Trait_Kinds -- A_Single_Task_Declaration, -- 3.3.1 -- A_Single_Protected_Declaration, -- 3.3.1 -- -- An_Integer_Number_Declaration, -- 3.3.2 -- A_Real_Number_Declaration, -- 3.3.2 -- An_Enumeration_Literal_Specification => An_Enumeration_Literal_Specification_Enclosing'Access, -- A_Discriminant_Specification => A_Discriminant_Specification_Enclosing'Access, -- -- A_Component_Declaration => A_Component_Declaration_Enclosing'Access, A_Component_Declaration => An_Expression_Enclosing'Access, -- A_Loop_Parameter_Specification => A_Loop_Parameter_Specification_Enclosing'Access, A_Generalized_Iterator_Specification .. An_Element_Iterator_Specification => A_Loop_Parameter_Specification_Enclosing'Access, -- A_Procedure_Declaration => Possible_C_U_Enclosing'Access, A_Function_Declaration => Possible_C_U_Enclosing'Access, -- A_Parameter_Specification => A_Parameter_Specification_Enclosing'Access, A_Procedure_Body_Declaration => Possible_C_U_Enclosing'Access, A_Function_Body_Declaration => Possible_C_U_Enclosing'Access, -- A_Package_Declaration => Possible_C_U_Enclosing'Access, A_Package_Body_Declaration => Possible_C_U_Enclosing'Access, -- -- An_Object_Renaming_Declaration, -- 8.5.1 -- An_Exception_Renaming_Declaration, -- 8.5.2 A_Package_Renaming_Declaration => Possible_C_U_Enclosing'Access, A_Procedure_Renaming_Declaration => Possible_C_U_Enclosing'Access, A_Function_Renaming_Declaration => Possible_C_U_Enclosing'Access, A_Generic_Package_Renaming_Declaration => Possible_C_U_Enclosing'Access, A_Generic_Procedure_Renaming_Declaration => Possible_C_U_Enclosing'Access, A_Generic_Function_Renaming_Declaration => Possible_C_U_Enclosing'Access, A_Task_Body_Declaration => Possible_C_U_Enclosing'Access, A_Protected_Body_Declaration => Possible_C_U_Enclosing'Access, -- An_Entry_Declaration => An_Expression_Enclosing'Access, -- for entry declarations, the problem is for single task declarations -- rewritten as anonymous task type declaration and task object declaration, -- that's why we have to use An_Expression_Enclosing -- An_Entry_Body_Declaration, -- 9.5.2 -- An_Entry_Index_Specification, -- 9.5.2 -- -- A_Procedure_Body_Stub, -- 10.1.3 -- A_Function_Body_Stub, -- 10.1.3 -- A_Package_Body_Stub, -- 10.1.3 -- A_Task_Body_Stub, -- 10.1.3 -- A_Protected_Body_Stub, -- 10.1.3 -- -- An_Exception_Declaration, -- 11.1 -- A_Choice_Parameter_Specification, -- 11.2 -- A_Generic_Procedure_Declaration => Possible_C_U_Enclosing'Access, A_Generic_Function_Declaration => Possible_C_U_Enclosing'Access, A_Generic_Package_Declaration => Possible_C_U_Enclosing'Access, A_Package_Instantiation => Possible_C_U_Enclosing'Access, A_Procedure_Instantiation => Possible_C_U_Enclosing'Access, A_Function_Instantiation => Possible_C_U_Enclosing'Access, -- -- A_Formal_Object_Declaration, -- 12.4 -> Mode_Kinds -- -- A_Formal_Type_Declaration, -- 12.5 -- A_Formal_Procedure_Declaration, -- 12.6 -> Default_Kinds -- -- A_Formal_Function_Declaration, -- 12.6 -> Default_Kinds -- -- A_Formal_Package_Declaration, -- 12.7 -- A_Formal_Package_Declaration_With_Box, -- 12.7 -- ------------------------------------------------------------------------------- -- -- -- A_Definition, -- Asis.Definitions -- ------------------------------------------------------------------------------- -- -- -- A_Type_Definition, -- 3.2.1 -> Type_Kinds -- -- A_Derived_Type_Definition, -- 3.4 -> Trait_Kinds -- A_Derived_Record_Extension_Definition, -- 3.4 -> Trait_Kinds -- An_Enumeration_Type_Definition => An_Enumeration_Type_Definition_Enclosing'Access, -- -- A_Signed_Integer_Type_Definition, -- 3.5.4 -- A_Modular_Type_Definition, -- 3.5.4 -- -- -- A_Root_Type_Definition, -- 3.5.4(10), 3.5.6(4) -- -- -> Root_Type_Kinds -- A_Root_Integer_Definition, -- 3.5.4(9) -- A_Root_Real_Definition, -- 3.5.6(2) -- A_Root_Fixed_Definition, -- 3.5.6(2) -- -- A_Universal_Integer_Definition, -- 3.5.4(10) -- A_Universal_Real_Definition, -- 3.5.6(4) -- A_Universal_Fixed_Definition, -- 3.5.6(4) -- -- -- A_Floating_Point_Definition, -- 3.5.7 -- -- An_Ordinary_Fixed_Point_Definition, -- 3.5.9 -- A_Decimal_Fixed_Point_Definition, -- 3.5.9 -- -- An_Unconstrained_Array_Definition, -- 3.6 -- A_Constrained_Array_Definition, -- 3.6 -- -- A_Record_Type_Definition, -- 3.8 -> Trait_Kinds -- A_Tagged_Record_Type_Definition, -- 3.8 -> Trait_Kinds -- -- -- An_Access_Type_Definition, -- 3.10 -> Access_Type_Kinds -- -- A_Pool_Specific_Access_To_Variable, -- An_Access_To_Variable, -- An_Access_To_Constant, -- -- An_Access_To_Procedure, -- An_Access_To_Protected_Procedure, -- An_Access_To_Function, -- An_Access_To_Protected_Function, -- -- A_Subtype_Indication => A_Subtype_Indication_Enclosing'Access, -- -- -- A_Constraint, -- 3.2.2 -> Constraint_Kinds -- A_Range_Attribute_Reference => A_Range_Attribute_Reference_Enclosing'Access, A_Simple_Expression_Range => A_Simple_Expression_Range_Enclosing'Access, -- A_Digits_Constraint, -- 3.2.2, 3.5.9 -- A_Delta_Constraint, -- 3.2.2, N.3 -- An_Index_Constraint => An_Index_Constraint_Enclosing'Access, An_Index_Constraint => An_Expression_Enclosing'Access, A_Discriminant_Constraint => An_Expression_Enclosing'Access, -- -- A_Component_Definition, -- 3.6 -- -- -- A_Discrete_Subtype_Definition, -- 3.6 -> Discrete_Range_Kinds -- -- A_Discrete_Subtype_Indication_As_Subtype_Definition, -- A_Discrete_Range_Attribute_Reference_As_Subtype_Definition, -- A_Discrete_Simple_Expression_Range_As_Subtype_Definition, -- -- -- A_Discrete_Range, -- 3.6.1 -> Discrete_Range_Kinds -- A_Discrete_Subtype_Indication => A_Discrete_Range_Enclosing'Access, A_Discrete_Range_Attribute_Reference => A_Discrete_Range_Enclosing'Access, A_Discrete_Simple_Expression_Range => A_Discrete_Range_Enclosing'Access, -- -- An_Unknown_Discriminant_Part => A_Discriminant_Part_Enclosing'Access, A_Known_Discriminant_Part => A_Discriminant_Part_Enclosing'Access, -- A_Record_Definition => A_Record_Definition_Enclosing'Access, A_Null_Record_Definition => A_Record_Definition_Enclosing'Access, -- A_Null_Component => A_Null_Component_Enclosing'Access, A_Variant_Part => A_Variant_Part_Enclosing'Access, -- A_Variant, -- 3.8 -- An_Others_Choice => An_Others_Choice_Enclosing'Access, -- A_Private_Type_Definition, -- 7.3 -> Trait_Kinds -- A_Tagged_Private_Type_Definition, -- 7.3 -> Trait_Kinds -- A_Private_Extension_Definition, -- 7.3 -> Trait_Kinds -- -- A_Task_Definition, -- 9.1 A_Protected_Definition => An_Expression_Enclosing'Access, -- -- -- A_Formal_Type_Definition, -- 12.5 -> Formal_Type_Kinds -- -- A_Formal_Private_Type_Definition, -- 12.5.1 -> Trait_Kinds -- A_Formal_Tagged_Private_Type_Definition, -- 12.5.1 -> Trait_Kinds -- -- A_Formal_Derived_Type_Definition, -- 12.5.1 -> Trait_Kinds -- -- A_Formal_Discrete_Type_Definition, -- 12.5.2 -- -- A_Formal_Signed_Integer_Type_Definition, -- 12.5.2 -- A_Formal_Modular_Type_Definition, -- 12.5.2 -- -- A_Formal_Floating_Point_Definition, -- 12.5.2 -- -- A_Formal_Ordinary_Fixed_Point_Definition, -- 12.5.2 -- A_Formal_Decimal_Fixed_Point_Definition, -- 12.5.2 -- -- A_Formal_Unconstrained_Array_Definition, -- 12.5.3 -- A_Formal_Constrained_Array_Definition, -- 12.5.3 -- -- -- A_Formal_Access_Type_Definition, -- -- A_Formal_Pool_Specific_Access_To_Variable, -- A_Formal_Access_To_Variable, -- A_Formal_Access_To_Constant, -- -- A_Formal_Access_To_Procedure, -- A_Formal_Access_To_Protected_Procedure, -- A_Formal_Access_To_Function, -- A_Formal_Access_To_Protected_Function, -- ------------------------------------------------------------------------------- -- -- -- An_Expression, -- Asis.Expressions -- ------------------------------------------------------------------------------- -- -- An_Integer_Literal .. -- -- A_Real_Literal, -- 2.4.1 -- A_String_Literal => A_Literal_Enclosing'Access, -- -- An_Identifier => An_Expression_Enclosing'Access, -- An_Identifier => An_Identifier_Enclosing'Access, -- -- -- ---- An_Operator_Symbol, -- 4.1 -- -- An_And_Operator .. -- -- An_Or_Operator, -- or -- -- An_Xor_Operator, -- xor -- -- An_Equal_Operator, -- = -- -- A_Not_Equal_Operator, -- /= -- -- A_Less_Than_Operator, -- < -- -- A_Less_Than_Or_Equal_Operator, -- <= -- -- A_Greater_Than_Operator, -- > -- -- A_Greater_Than_Or_Equal_Operator, -- >= -- -- A_Plus_Operator, -- + -- -- A_Minus_Operator, -- - -- -- A_Concatenate_Operator, -- & -- -- A_Unary_Plus_Operator, -- + -- -- A_Unary_Minus_Operator, -- - -- -- A_Multiply_Operator, -- * -- -- A_Divide_Operator, -- / -- -- A_Mod_Operator, -- mod -- -- A_Rem_Operator, -- rem -- -- An_Exponentiate_Operator, -- ** -- -- An_Abs_Operator, -- abs -- A_Not_Operator => An_Operator_Symbol_Enclosing'Access, -- ??? Do we need An_Operator_Symbol_Enclosing??? A_Not_Operator => An_Expression_Enclosing'Access, -- -- A_Character_Literal .. -- -- An_Enumeration_Literal, -- 4.1 -- -- An_Explicit_Dereference, -- 4.1 -- -- A_Function_Call => A_Function_Call_Enclosing'Access, -- -- -- -- An_Indexed_Component, -- 4.1.1 -- -- A_Slice, -- 4.1.2 -- A_Selected_Component => An_Identifier_Enclosing'Access, -- -- -- -- An_Attribute_Reference, -- 4.1.4 -> Attribute_Kinds -- -- -- An_Access_Attribute .. -- -- An_Address_Attribute, -- -- An_Adjacent_Attribute, -- -- An_Aft_Attribute, -- -- An_Alignment_Attribute, -- -- A_Base_Attribute, -- -- A_Bit_Order_Attribute, -- -- A_Body_Version_Attribute, -- -- A_Callable_Attribute, -- -- A_Caller_Attribute, -- -- A_Ceiling_Attribute, -- -- A_Class_Attribute, -- -- A_Component_Size_Attribute, -- -- A_Compose_Attribute, -- -- A_Constrained_Attribute, -- -- A_Copy_Sign_Attribute, -- -- A_Count_Attribute, -- -- A_Definite_Attribute, -- -- A_Delta_Attribute, -- -- A_Denorm_Attribute, -- -- A_Digits_Attribute, -- -- An_Exponent_Attribute, -- -- An_External_Tag_Attribute, -- -- A_First_Attribute, -- -- A_First_Bit_Attribute, -- -- A_Floor_Attribute, -- -- A_Fore_Attribute, -- -- A_Fraction_Attribute, -- -- An_Identity_Attribute, -- -- An_Image_Attribute, -- -- An_Input_Attribute, -- -- A_Last_Attribute, -- -- A_Last_Bit_Attribute, -- -- A_Leading_Part_Attribute, -- -- A_Length_Attribute, -- -- A_Machine_Attribute, -- -- A_Machine_Emax_Attribute, -- -- A_Machine_Emin_Attribute, -- -- A_Machine_Mantissa_Attribute, -- -- A_Machine_Overflows_Attribute, -- -- A_Machine_Radix_Attribute, -- -- A_Machine_Rounds_Attribute, -- -- A_Max_Attribute, -- -- A_Max_Size_In_Storage_Elements_Attribute, -- -- A_Min_Attribute, -- -- A_Model_Attribute, -- -- A_Model_Emin_Attribute, -- -- A_Model_Epsilon_Attribute, -- -- A_Model_Mantissa_Attribute, -- -- A_Model_Small_Attribute, -- -- A_Modulus_Attribute, -- -- An_Output_Attribute, -- -- A_Partition_ID_Attribute, -- -- A_Pos_Attribute, -- -- A_Position_Attribute, -- A_Pred_Attribute => An_Attribute_Reference_Enclosing'Access, -- -- A_Range_Attribute => A_Range_Attribute_Enclosing'Access, -- -- A_Read_Attribute .. -- -- A_Remainder_Attribute, -- -- A_Round_Attribute, -- -- A_Rounding_Attribute, -- -- A_Safe_First_Attribute, -- -- A_Safe_Last_Attribute, -- -- A_Scale_Attribute, -- -- A_Scaling_Attribute, -- -- A_Signed_Zeros_Attribute, -- -- A_Size_Attribute, -- -- A_Small_Attribute, -- -- A_Storage_Pool_Attribute, -- -- A_Storage_Size_Attribute, -- -- -- -- A_Succ_Attribute, -- -- A_Tag_Attribute, -- -- A_Terminated_Attribute, -- -- A_Truncation_Attribute, -- -- An_Unbiased_Rounding_Attribute, -- -- An_Unchecked_Access_Attribute, -- -- A_Val_Attribute, -- -- A_Valid_Attribute, -- -- A_Value_Attribute, -- -- A_Version_Attribute, -- -- A_Wide_Image_Attribute, -- -- A_Wide_Value_Attribute, -- -- A_Wide_Width_Attribute, -- -- A_Width_Attribute, -- -- A_Write_Attribute, -- -- -- -- An_Implementation_Defined_Attribute, -- Vendor Annex M -- An_Unknown_Attribute => An_Attribute_Reference_Enclosing'Access, -- -- -- -- A_Record_Aggregate, -- 4.3 -- -- An_Extension_Aggregate, -- 4.3 -- -- A_Positional_Array_Aggregate, -- 4.3 -- -- A_Named_Array_Aggregate, -- 4.3 -- -- -- -- An_And_Then_Short_Circuit, -- 4.4 -- -- An_Or_Else_Short_Circuit, -- 4.4 -- -- -- -- An_In_Range_Membership_Test, -- 4.4 -- -- A_Not_In_Range_Membership_Test, -- 4.4 -- -- An_In_Type_Membership_Test, -- 4.4 -- -- A_Not_In_Type_Membership_Test, -- 4.4 -- -- -- -- A_Null_Literal, -- 4.4 -- -- A_Parenthesized_Expression, -- 4.4 -- -- -- -- A_Type_Conversion, -- 4.6 -- -- A_Qualified_Expression, -- 4.7 -- -- -- -- An_Allocation_From_Subtype, -- 4.8 -- -- An_Allocation_From_Qualified_Expression, -- 4.8 -- A_Case_Expression, -- Ada 2012 -- An_If_Expression, -- Ada 2012 -- A_For_All_Quantified_Expression, -- Ada 2012 -- A_For_Some_Quantified_Expression); -- Ada 2012 A_For_Some_Quantified_Expression => An_Expression_Enclosing'Access, ------------------------------------------------------------------------------- -- -- -- An_Association, -- Asis.Expressions -- ------------------------------------------------------------------------------- -- -- A_Pragma_Argument_Association, -- 2.8 A_Discriminant_Association => An_Expression_Enclosing'Access, -- A_Record_Component_Association, -- 4.3.1 An_Array_Component_Association => An_Expression_Enclosing'Access, A_Parameter_Association .. A_Generic_Association => An_Association_Enclosing'Access, -- ------------------------------------------------------------------------------- -- -- -- A_Statement, -- Asis.Statements -- ------------------------------------------------------------------------------- -- A_Null_Statement .. -- An_Assignment_Statement, -- 5.2 -- An_If_Statement, -- 5.3 -- A_Case_Statement, -- 5.4 -- -- A_Loop_Statement, -- 5.5 -- A_While_Loop_Statement, -- 5.5 -- A_For_Loop_Statement, -- 5.5 -- -- A_Block_Statement, -- 5.6 -- An_Exit_Statement, -- 5.7 -- A_Goto_Statement, -- 5.8 -- -- A_Procedure_Call_Statement, -- 6.4 -- A_Return_Statement, -- 6.5 -- -- An_Accept_Statement, -- 9.5.2 -- An_Entry_Call_Statement, -- 9.5.3 -- -- A_Requeue_Statement, -- 9.5.4 -- A_Requeue_Statement_With_Abort, -- 9.5.4 -- -- A_Delay_Until_Statement, -- 9.6 A_Delay_Relative_Statement => A_Statement_Enclosing'Access, -- A_Terminate_Alternative_Statement => A_Terminate_Alternative_Statement_Enclosing'Access, -- A_Selective_Accept_Statement .. -- A_Timed_Entry_Call_Statement, -- 9.7.3 -- A_Conditional_Entry_Call_Statement, -- 9.7.3 -- An_Asynchronous_Select_Statement, -- 9.7.4 -- -- An_Abort_Statement, -- 9.8 -- A_Raise_Statement, -- 11.3 A_Code_Statement => A_Statement_Enclosing'Access, -- ------------------------------------------------------------------------------- -- Path_Kinds -- Literals -- RM 95 ------------------------------------------------------------------------------ -- -- An_If_Path, -- An_Elsif_Path, -- An_Else_Path => An_Else_Path_Enclosing'Access, -- -- A_Case_Path, -- -- when discrete_choice_list => -- -- sequence_of_statements -- -- A_Select_Path, -- -- select [guard] select_alternative -- -- 9.7.2, 9.7.3: -- -- select entry_call_alternative -- -- 9.7.4: -- -- select triggering_alternative -- -- An_Or_Path, -- -- or [guard] select_alternative 9.7.2: -- -- or delay_alternative -- -- A_Then_Abort_Path, -- 9.7.4 -- -- then abort sequence_of_statements -- -- ------------------------------------------------------------ -- An_Expression_Path, -- Asis.Expressions Ada 2015 ------------------------------------------------------------ An_If_Expression_Path .. -- An_Elsif_Expression_Path, An_Else_Expression_Path => An_Expression_Enclosing'Access, ------------------------------------------------------------------------------- -- -- -- A_Clause, -- Asis.Clauses -- ------------------------------------------------------------------------------- -- A_Use_Package_Clause => Possible_C_U_Enclosing'Access, -- 8.4 A_Use_Type_Clause => Possible_C_U_Enclosing'Access, -- 8.4 A_Use_All_Type_Clause => Possible_C_U_Enclosing'Access, -- 8.4 Ada 2012 -- -- A_With_Clause, -- 10.1.2 -- -- -- A_Representation_Clause, -- 13.1 -> Representation_Clause_Kinds -- An_Attribute_Definition_Clause => An_Attribute_Definition_Clause_Enclosing'Access, -- An_Enumeration_Representation_Clause, -- 13.4 -- A_Record_Representation_Clause, -- 13.5.3 -- An_At_Clause, -- N.7 -- -- -- A_Component_Clause, -- 13.5.3 -- ------------------------------------------------------------------------------- -- An_Exception_Handler => An_Exception_Handler_Enclosing'Access, -- ------------------------------------------------------------------------------- -- -- Special values added for Node -> Element switching, -- -- see Asis_Vendor_Primitives.GNAT_to_Asis_Mapping body for -- -- more details ------------------------------------------------------------------------------- -- -- Non_Trivial_Mapping, -- Not_Implemented_Mapping, -- No_Mapping -- others => Not_Implemented_Enclosing_Element_Construction'Access); ------------------------------------------------------ -- Section 4 - (general-purpose) local subprograms -- ------------------------------------------------------ procedure Skip_Implicit_Subtype (Constr : in out Node_Id); -- Supposing that Constr is a constraint, this procedure checks if the -- parent node for it points to implicit subtype created in case if -- this constraint is used directly in object declaration, and if -- so, resets Constr to point to the constraint from the object -- declaration function Parent (Node : Node_Id) return Node_Id; -- this function is the modification of Atree.Parent. It is able -- to deal in the "ASIS mode" with the sequences of one-identifier -- declarations/with clauses resulting from the normalization of -- multi-name declarations/with clauses which is done by the -- compiler function General_Encl_Elem (Element : Asis.Element) return Asis.Element; -- Computes Enclosing_Element for most common cases procedure No_Enclosing_Element (Element_Kind : Internal_Element_Kinds); -- Should be called only in erroneous situations, when no Enclosing_Element -- can correspond to a given Element. Raises ASIS_Failed with the -- corresponding Diagnosis procedure Not_Implemented_Enclosing_Element_Construction (Element : Asis.Element); -- Generates Element-specific diagnosis about non-implemented case function Is_Top_Of_Expanded_Generic (N : Node_Id) return Boolean; -- Checks if N is the top node of the tree structure corresponding to -- expanded generic spec or body function Get_Rough_Enclosing_Node (Element : Asis.Element) return Node_Id; -- This function finds the node, which is the base for a "rough" -- enclosing element for the argument Element. Starting from the -- argument R_Node, we go up through the chain of Parent nodes -- till the first node, which is a member of some Node_List or to the node -- representing the unit declaration in a compilation unit function Get_Enclosing (Approximation : Asis.Element; Element : Asis.Element) return Asis.Element; -- This function finds the Enclosing Element for Element by traversing -- Approximation which is considered as a rough estimation for -- enclosing element. procedure Skip_Normalized_Declarations_Back (Node : in out Node_Id); -- this procedure is applied in case when the compiler may normalize a -- multi-identifier declaration (or multi-name with clause) in a set of -- equivalent one-identifier (one-name) declarations (clauses). It is -- intended to be called for Node representing any declaration -- (clause) in this normalized sequence, and it resets its parameter -- to point to the first declaration (clause) in this sequence -- -- There is no harm to call this procedure for Node which does not -- represent a normalized declaration (or even which does not represent -- any declaration at all), or for Node which represents the first -- declaration in a normalized chain - the procedure simply leaves -- its parameter intact. -- -- (In some sense this procedure may be considered as an "inversion -- of the local procedure Skip_Normalized_Declarations defined in -- the body of the A4G.Mapping package) --------------------------------------------------------------- -- Section 5 - bodies of the routines declared in Section 2 -- --------------------------------------------------------------- -------------------------------------- -- A_Constant_Declaration_Enclosing -- -------------------------------------- function A_Constant_Declaration_Enclosing (Element : Asis.Element) return Asis.Element is Result : Asis.Element := General_Encl_Elem (Element); Res_Node : Node_Id; begin -- The problem with constant declarations exists for a declarations -- created by the front-end to pass the actual expressions for generic -- IN parameters, see EC16-004 and EC22-007 Res_Node := Node (Element); if Present (Corresponding_Generic_Association (Res_Node)) then Res_Node := Parent (Res_Node); if No (Generic_Parent (Res_Node)) then -- This IF statement prevents us from doing this special -- processing for expanded package declarations, we have to do it -- only for wrapper packages created for subprogram instantiation Res_Node := Parent (Res_Node); Res_Node := Corresponding_Body (Res_Node); Res_Node := Parent (Res_Node); Res_Node := First (Sinfo.Declarations (Res_Node)); while Nkind (Res_Node) /= N_Subprogram_Body loop Res_Node := Next (Res_Node); end loop; Result := Node_To_Element_New (Node => Res_Node, Starting_Element => Element); end if; end if; return Result; end A_Constant_Declaration_Enclosing; ---------------------------------------- -- A_Defining_Expanded_Name_Enclosing -- --------------------------------------- function A_Defining_Expanded_Name_Enclosing (Element : Asis.Element) return Asis.Element is Parent_Node : Node_Id := Parent (R_Node (Element)); Parent_Node_Kind : constant Node_Kind := Nkind (Parent_Node); begin if Parent_Node_Kind = N_Function_Specification or else Parent_Node_Kind = N_Procedure_Specification or else Parent_Node_Kind = N_Package_Specification then -- one more step up required Parent_Node := Parent (Parent_Node); end if; return Node_To_Element_New (Node => Parent_Node, Starting_Element => Element); end A_Defining_Expanded_Name_Enclosing; ------------------------------------- -- A_Defining_Identifier_Enclosing -- ------------------------------------- function A_Defining_Identifier_Enclosing (Element : Asis.Element) return Asis.Element is -- A_Defining_Identifier may be processed just in the same way as -- A_Defining_Expanded_Name, except the following cases: -- - A_Defining_Identifier obtained as the child of -- A_Choice_Parameter_Specification element (by means of Names -- query) - both these elements are based on the same -- N_Defining_Identifier node -- -- - A_Defining_Identifier representing a statement label, it is -- obtained by means of Label_Names query, and it is based on -- N_Label node which is the member of the node list representing -- the corresponding statement sequence (or it can be based on -- N_Identifier node in case if the front-end rewrites a sequence of -- statement implementing the infinite loop by goto into -- N_Loop_Statement node. The Enclosing_Element of such -- A_Defining_Name element will be the statement labeled by it, see -- Asis_Statements.Label_Names. -- -- - A_Defining_Identifier representing a statement identifier, it is -- obtained by means of Statement_Identifier query, and it is based -- on N_Identifier node. The Enclosing_Element of the name is the -- named statement, see Asis_Statements.Statement_Identifier. But -- there is no difference in computing the Enclosing Element -- (compared to A_Defining_Expanded_Name) in this case. -- -- - A special processing is needed for a formal package defining name -- -- - A_Defining_Identifier is from a single task/protected declaration Parent_Node : Node_Id := Parent (R_Node (Element)); Parent_Node_Kind : constant Node_Kind := Nkind (Parent_Node); Result_Kind : Internal_Element_Kinds := Not_An_Element; begin if Nkind (Node (Element)) = N_Label then Parent_Node := Next (R_Node (Element)); -- R_Node (Element) definitely is a list member while not Is_Statement (Parent_Node) loop Parent_Node := Next (Parent_Node); end loop; elsif Nkind (Node (Element)) = N_Identifier and then Parent_Node_Kind = N_Loop_Statement and then Is_Rewrite_Substitution (Parent_Node) and then Nkind (Original_Node (Parent_Node)) = N_Goto_Statement then if Is_Empty_List (Sinfo.Statements (Parent_Node)) then -- Pathological case of -- -- <<Target>> goto target; Result_Kind := A_Goto_Statement; else Parent_Node := First (Sinfo.Statements (Parent_Node)); end if; elsif Parent_Node_Kind = N_Exception_Handler then Parent_Node := R_Node (Element); Result_Kind := A_Choice_Parameter_Specification; elsif Nkind (Parent_Node) = N_Generic_Package_Declaration and then Nkind (Original_Node (Parent_Node)) = N_Formal_Package_Declaration and then R_Node (Element) = Defining_Identifier (Original_Node (Parent_Node)) then -- A formal package with a box (but not its expanded spec!) Result_Kind := A_Formal_Package_Declaration_With_Box; elsif not Comes_From_Source (Parent_Node) and then Nkind (Parent_Node) = N_Object_Declaration and then Present (Etype (R_Node (Element))) and then Ekind (Etype (R_Node (Element))) in E_Task_Type .. E_Protected_Type then -- The case of a single task/protected definition - the problem here -- is that Parent field of the argument node points into artificial -- object declaration, see G214-005 Parent_Node := Etype (R_Node (Element)); if Ekind (Parent_Node) = E_Protected_Type then Result_Kind := A_Single_Protected_Declaration; else Result_Kind := A_Single_Task_Declaration; end if; Parent_Node := Parent (Parent_Node); else return A_Defining_Expanded_Name_Enclosing (Element); end if; return Node_To_Element_New (Node => Parent_Node, Internal_Kind => Result_Kind, Starting_Element => Element); end A_Defining_Identifier_Enclosing; ------------------------------------------ -- A_Defining_Operator_Symbol_Enclosing -- ------------------------------------------ function A_Defining_Operator_Symbol_Enclosing (Element : Asis.Element) return Asis.Element is Parent_Node : Node_Id := Parent (R_Node (Element)); Parent_Node_Kind : constant Node_Kind := Nkind (Parent_Node); begin if Parent_Node_Kind = N_Function_Specification then -- one more step up required Parent_Node := Parent (Parent_Node); end if; return Node_To_Element_New (Node => Parent_Node, Starting_Element => Element); end A_Defining_Operator_Symbol_Enclosing; -------------------------------- -- A_Discrete_Range_Enclosing -- -------------------------------- function A_Discrete_Range_Enclosing (Element : Asis.Element) return Asis.Element is Result_Node : Node_Id := Parent (R_Node (Element)); Result_Node_Kind : constant Node_Kind := Nkind (Result_Node); Result_Elem_Kind : Internal_Element_Kinds := Not_An_Element; begin if not Comes_From_Source (Result_Node) or else not Comes_From_Source (Parent (Result_Node)) then return An_Expression_Enclosing (Element); end if; if Nkind (Node (Element)) = N_Component_Clause then Result_Node := R_Node (Element); Result_Elem_Kind := A_Component_Clause; elsif Result_Node_Kind = N_Component_Association then Result_Elem_Kind := An_Array_Component_Association; end if; return Node_To_Element_New (Starting_Element => Element, Node => Result_Node, Internal_Kind => Result_Elem_Kind, Considering_Parent_Count => False); end A_Discrete_Range_Enclosing; ----------------------------------- -- A_Discriminant_Part_Enclosing -- ----------------------------------- function A_Discriminant_Part_Enclosing (Element : Asis.Element) return Asis.Element is begin return Node_To_Element_New (Node => R_Node (Element), Starting_Element => Element); end A_Discriminant_Part_Enclosing; -------------------------------------------- -- A_Discriminant_Specification_Enclosing -- -------------------------------------------- function A_Discriminant_Specification_Enclosing (Element : Asis.Element) return Asis.Element is begin return Node_To_Element_New ( Node => Parent (R_Node (Element)), Internal_Kind => A_Known_Discriminant_Part, Starting_Element => Element); end A_Discriminant_Specification_Enclosing; ---------------------------------------------- -- A_Loop_Parameter_Specification_Enclosing -- ---------------------------------------------- function A_Loop_Parameter_Specification_Enclosing (Element : Asis.Element) return Asis.Element is Result_Node : Node_Id; Tmp : Node_Id; Result : Asis.Element; begin Result_Node := Parent (R_Node (Element)); if Nkind (Result_Node) /= N_Quantified_Expression then -- We have got to N_Ineration_Sceme node only Result_Node := Parent (Result_Node); end if; if Declaration_Kind (Element) in A_Generalized_Iterator_Specification .. An_Element_Iterator_Specification then -- Here we may have to get to an artificial block statement the -- needed loop node is rewritten into Tmp := Parent (Parent (Result_Node)); if Nkind (Tmp) = N_Block_Statement and then Is_Rewrite_Substitution (Tmp) and then Nkind (Original_Node (Tmp)) = N_Loop_Statement then Result_Node := Tmp; end if; end if; Result := Node_To_Element_New (Node => Result_Node, Starting_Element => Element); if Int_Kind (Result) = A_Parenthesized_Expression then -- This is the case when an iteration scheme is used in a -- conditional or quantified expression. We go in bottom-up -- direction, so we can have A_Parenthesized_Expression only as the -- next enclosing Element Result := An_Expression_Enclosing (Element); end if; return Result; end A_Loop_Parameter_Specification_Enclosing; -------------------------------- -- A_Null_Component_Enclosing -- -------------------------------- function A_Null_Component_Enclosing (Element : Asis.Element) return Asis.Element is Parent_Node : constant Node_Id := Node (Element); Parent_Internal_Kind : Internal_Element_Kinds; begin if Nkind (Parent_Node) = N_Record_Definition then Parent_Internal_Kind := A_Record_Definition; else Parent_Internal_Kind := A_Variant; end if; return Node_To_Element_New (Node => Parent_Node, Internal_Kind => Parent_Internal_Kind, Starting_Element => Element); end A_Null_Component_Enclosing; ----------------------------------------- -- A_Parameter_Specification_Enclosing -- ----------------------------------------- function A_Parameter_Specification_Enclosing (Element : Asis.Element) return Asis.Element is Result_Node : Node_Id := Parent (R_Node (Element)); Result_Node_Kind : constant Node_Kind := Nkind (Result_Node); begin if not (Result_Node_Kind = N_Entry_Declaration or else Result_Node_Kind = N_Access_Function_Definition or else Result_Node_Kind = N_Access_Procedure_Definition or else Result_Node_Kind = N_Accept_Statement) -- --|A2005 start or else (Nkind (Parent (Result_Node)) = N_Identifier and then Is_Rewrite_Substitution (Parent (Result_Node)) and then Nkind (Original_Node (Parent (Result_Node))) = N_Access_Definition) or else Nkind (Parent (Result_Node)) = N_Access_Definition -- --|A2005 end then Result_Node := Parent (Result_Node); -- the first Parent gives N_Function/Procedure_Specification only end if; return Node_To_Element_New (Starting_Element => Element, Node => Result_Node, Considering_Parent_Count => False); end A_Parameter_Specification_Enclosing; ------------------------ -- A_Pragma_Enclosing -- ------------------------ function A_Pragma_Enclosing (Element : Asis.Element) return Asis.Element is Parent_Node : Node_Id := Atree.Parent (R_Node (Element)); Parent_Node_Kind : Node_Kind := Nkind (Parent_Node); Parent_Internal_Kind : Internal_Element_Kinds; begin if Parent_Node_Kind = N_Loop_Statement and then Is_Rewrite_Substitution (Parent_Node) and then Nkind (Original_Node (Parent_Node)) = N_Goto_Statement then -- This is the case when infinite loop implemented as -- -- <<Target>> ... -- ... -- goto Target; -- -- is rewritten into N_Loop_Statement Parent_Node := Parent (Parent_Node); Parent_Node_Kind := Nkind (Parent_Node); end if; -- filtering out compilation pragmas and correcting Parent_Node, -- if necessary case Parent_Node_Kind is when N_Handled_Sequence_Of_Statements | N_Package_Specification | N_Component_List => Parent_Node := Atree.Parent (Parent_Node); Parent_Node_Kind := Nkind (Parent_Node); when N_Compilation_Unit => return Asis.Nil_Element; when others => null; end case; -- special processing for Nodes requiring by-hand Enclosing Element -- kind determination and returning the result for all other Nodes case Parent_Node_Kind is when N_If_Statement => if List_Containing (R_Node (Element)) = Then_Statements (Parent_Node) then Parent_Internal_Kind := An_If_Path; else Parent_Internal_Kind := An_Else_Path; end if; -- ??? List_Containing (Node (Element)) ?? -- ??? or List_Containing (R_Node (Element)) ?? when N_Conditional_Entry_Call | N_Selective_Accept => Parent_Internal_Kind := An_Else_Path; when N_Record_Definition => Parent_Internal_Kind := An_Else_Path; when others => -- auto determination of the Enclosing Element kind: return Node_To_Element_New (Node => Parent_Node, Starting_Element => Element); end case; -- returning the Enclosing Element with the by-hand-defined kind: return Node_To_Element_New (Node => Parent_Node, Internal_Kind => Parent_Internal_Kind, Starting_Element => Element); end A_Pragma_Enclosing; ------------------------------------------- -- A_Range_Attribute_Reference_Enclosing -- ------------------------------------------- function A_Range_Attribute_Reference_Enclosing (Element : Asis.Element) return Asis.Element is Result_Node : Node_Id := Parent (R_Node (Element)); Tmp : Node_Id := Parent (Result_Node); begin if Nkind (Result_Node) = N_Subtype_Indication and then Nkind (Tmp) = N_Subtype_Declaration and then not Comes_From_Source (Tmp) then -- This N_Subtype_Declaration is from the tree structure created -- for an artificial subtype declaration, see C208-003 Tmp := Next (Tmp); Result_Node := Object_Definition (Tmp); end if; return Node_To_Element_New (Starting_Element => Element, Node => Result_Node, Considering_Parent_Count => False); end A_Range_Attribute_Reference_Enclosing; ----------------------------------- -- A_Record_Definition_Enclosing -- ----------------------------------- function A_Record_Definition_Enclosing (Element : Asis.Element) return Asis.Element is Parent_Node : Node_Id; Parent_Internal_Kind : Internal_Element_Kinds; begin if Nkind (Parent (R_Node (Element))) = N_Derived_Type_Definition then Parent_Node := Parent (R_Node (Element)); Parent_Internal_Kind := A_Derived_Record_Extension_Definition; else Parent_Node := Node (Element); if Tagged_Present (Parent_Node) then Parent_Internal_Kind := A_Tagged_Record_Type_Definition; else Parent_Internal_Kind := A_Record_Type_Definition; end if; end if; return Node_To_Element_New (Node => Parent_Node, Internal_Kind => Parent_Internal_Kind, Starting_Element => Element); end A_Record_Definition_Enclosing; ----------------------------------------- -- A_Simple_Expression_Range_Enclosing -- ---------------------------------------- function A_Simple_Expression_Range_Enclosing (Element : Asis.Element) return Asis.Element is Enclosing_Node : Node_Id := Node (Element); Enclosing_Node_Kind : Node_Kind := Nkind (Enclosing_Node); Context : Node_Id; Context_Kind : Node_Kind; Enclosing_Element_Kind : Internal_Element_Kinds; begin if Enclosing_Node_Kind = N_Signed_Integer_Type_Definition then -- back from Integer_Constraint return Node_To_Element_New (Starting_Element => Element, Node => R_Node (Element), Internal_Kind => A_Signed_Integer_Type_Definition, Considering_Parent_Count => False); else -- one step up Enclosing_Node := Parent (R_Node (Element)); Enclosing_Node_Kind := Nkind (Enclosing_Node); -- possible values of corresponding kinds of -- Enclosing_Node_Kind: Enclosing Element: -- -- N_Floating_Point_Definition A_Floating_Point_Definition (*) -- N_Ordinary_Fixed_Point_Definition An_Ordinary_Fixed_Point_Definition (*) -- N_Decimal_Fixed_Point_Definition A_Decimal_Fixed_Point_Definition (*) -- -- A_Constraint -- N_Digits_Constraint A_Digits_Constraint (*) -- N_Delta_Constraint A_Delta_Constraint (*) -- -- -- A_Subtype_Indication -- N_Subtype_Indication A_Discrete_Subtype_Indication -- (_As_Subtype_Definition) -- A_Subtype_Indication -- -- A_Discrete_Range -- N_Subtype_Indication A_Discrete_Subtype_Indication -- -- -- -- N_In An_In_Range_Membership_Test (*) -- N_Not_In A_Not_In_Range_Membership_Test (*) -- -- (*) means that the Enclosing Element can be obtained by Node_To_Elemen -- constructor with auto determination of the Element kind if Enclosing_Node_Kind /= N_Subtype_Indication then return Node_To_Element_New (Starting_Element => Element, Node => Enclosing_Node, Considering_Parent_Count => False); else -- A_Discrete_Subtype_Indication or -- A_Discrete_Subtype_Indication_As_Subtype_Definition -- or A_Subtype_Indication? -- First, we have to skip implicit subtype created for -- constraint directly included in object declaration, -- if any Skip_Implicit_Subtype (Enclosing_Node); Context := Parent (Enclosing_Node); Context_Kind := Nkind (Context); if Context_Kind = N_Subtype_Indication then -- it's impossible to make a decision on the base -- of this node, we shall go one more step up Context := Parent (Context); Context_Kind := Nkind (Context); end if; if Context_Kind = N_Subtype_Declaration or else ((Context_Kind = N_Constrained_Array_Definition or else Context_Kind = N_Unconstrained_Array_Definition) and then Enclosing_Node = Sinfo.Component_Definition (Context)) or else -- is it enough or should we add: -- and then Enclosing_Node = Subtype_Indication (Context)? Context_Kind = N_Derived_Type_Definition or else Context_Kind = N_Access_To_Object_Definition then Enclosing_Element_Kind := A_Subtype_Indication; elsif Context_Kind = N_Constrained_Array_Definition or else Context_Kind = N_Entry_Declaration or else Context_Kind = N_Entry_Index_Specification or else Context_Kind = N_Loop_Parameter_Specification then Enclosing_Element_Kind := A_Discrete_Subtype_Indication_As_Subtype_Definition; elsif Context_Kind = N_Component_Declaration or else Context_Kind = N_Object_Declaration or else Context_Kind = N_Component_Definition then Enclosing_Element_Kind := A_Subtype_Indication; else Enclosing_Element_Kind := A_Discrete_Subtype_Indication; end if; return Node_To_Element_New (Starting_Element => Element, Node => Enclosing_Node, Internal_Kind => Enclosing_Element_Kind, Considering_Parent_Count => False); end if; end if; end A_Simple_Expression_Range_Enclosing; --------------------------- -- A_Statement_Enclosing -- --------------------------- function A_Statement_Enclosing (Element : Asis.Element) return Asis.Element is Parent_Node : Node_Id := Parent (R_Node (Element)); Parent_Node_Kind : Node_Kind := Nkind (Parent_Node); Parent_Internal_Kind : Internal_Element_Kinds; begin if Parent_Node_Kind = N_Loop_Statement and then Is_Rewrite_Substitution (Parent_Node) and then Nkind (Original_Node (Parent_Node)) = N_Goto_Statement then -- This is the case when infinite loop implemented as -- -- <<Target>> ... -- ... -- goto Target; -- -- is rewritten into N_Loop_Statement Parent_Node := Parent (Parent_Node); Parent_Node_Kind := Nkind (Parent_Node); end if; if Parent_Node_Kind = N_If_Statement then if List_Containing (R_Node (Element)) = Then_Statements (Parent_Node) then Parent_Internal_Kind := An_If_Path; else Parent_Internal_Kind := An_Else_Path; end if; -- ??? List_Containing (Node (Element)) ?? -- ?? or List_Containing (R_Node (Element)) ?? elsif Parent_Node_Kind = N_Conditional_Entry_Call or else Parent_Node_Kind = N_Selective_Accept then Parent_Internal_Kind := An_Else_Path; else if Parent_Node_Kind = N_Handled_Sequence_Of_Statements then -- to go to N_Block_Statement, N_Accept_Statement, -- N_Subprogram_Body, N_Package_Body, N_Task_Body or -- N_Entry_Body node Parent_Node := Parent (Parent_Node); end if; return Node_To_Element_New (Node => Parent_Node, Starting_Element => Element); end if; return Node_To_Element_New (Node => Parent_Node, Internal_Kind => Parent_Internal_Kind, Starting_Element => Element); end A_Statement_Enclosing; ------------------------------------ -- A_Subtype_Indication_Enclosing -- ------------------------------------ function A_Subtype_Indication_Enclosing (Element : Asis.Element) return Asis.Element is Parent_Node : Node_Id := Parent (R_Node (Element)); Result_Node : Node_Id := R_Node (Element); Parent_Node_Kind : constant Node_Kind := Nkind (Parent_Node); Result_Kind : Internal_Element_Kinds; begin if Parent_Node_Kind = N_Component_Definition then Parent_Node := Parent (Parent_Node); -- This skips the normalized component declarations back! Parent_Node := Sinfo.Component_Definition (Parent_Node); end if; if Parent_Node_Kind = N_Allocator and then Nkind (Parent (Parent_Node)) = N_Component_Association and then not Comes_From_Source (Parent (Parent_Node)) then return An_Expression_Enclosing (Element); end if; if Parent_Node_Kind = N_Unconstrained_Array_Definition or else Parent_Node_Kind = N_Constrained_Array_Definition or else Parent_Node_Kind = N_Component_Declaration then Result_Kind := A_Component_Definition; elsif Parent_Node_Kind = N_Private_Extension_Declaration then Result_Kind := A_Private_Extension_Definition; Result_Node := Parent_Node; else return Node_To_Element_New (Starting_Element => Element, Node => Parent_Node, Considering_Parent_Count => False); end if; return Node_To_Element_New (Starting_Element => Element, Node => Result_Node, Internal_Kind => Result_Kind, Considering_Parent_Count => False); end A_Subtype_Indication_Enclosing; ------------------------------------------------- -- A_Terminate_Alternative_Statement_Enclosing -- ------------------------------------------------- function A_Terminate_Alternative_Statement_Enclosing (Element : Asis.Element) return Asis.Element is begin return Node_To_Element_New (Node => R_Node (Element), Starting_Element => Element); end A_Terminate_Alternative_Statement_Enclosing; ------------------------------ -- A_Variant_Part_Enclosing -- ------------------------------ function A_Variant_Part_Enclosing (Element : Asis.Element) return Asis.Element is Result_Node : constant Node_Id := Parent (Parent (R_Node (Element))); Result_Kind : Internal_Element_Kinds; begin if Nkind (Result_Node) = N_Record_Definition then Result_Kind := A_Record_Definition; else Result_Kind := A_Variant; end if; return Node_To_Element_New (Starting_Element => Element, Node => Result_Node, Internal_Kind => Result_Kind, Considering_Parent_Count => False); end A_Variant_Part_Enclosing; ------------------------------ -- An_Association_Enclosing -- ------------------------------ function An_Association_Enclosing (Element : Asis.Element) return Asis.Element is Result : Asis.Element; begin if Normalization_Case (Element) = Is_Not_Normalized then Result := An_Expression_Enclosing (Element); else Result := Node_To_Element_New (Node => R_Node (Element), Starting_Element => Element); Set_From_Implicit (Result, False); end if; return Result; end An_Association_Enclosing; ---------------------------------------------- -- An_Attribute_Definition_Clause_Enclosing -- ---------------------------------------------- function An_Attribute_Definition_Clause_Enclosing (Element : Asis.Element) return Asis.Element is Result_Node : Node_Id := Parent (R_Node (Element)); Result_Node_Kind : Node_Kind := Nkind (Result_Node); Result_Kind : Internal_Element_Kinds := Not_An_Element; begin if Result_Node_Kind = N_Component_List or else Result_Node_Kind = N_Package_Specification then Result_Node := Parent (Result_Node); Result_Node_Kind := Nkind (Result_Node); end if; if Result_Node_Kind = N_Record_Definition then Result_Kind := A_Record_Definition; elsif Result_Node_Kind = N_Variant then Result_Kind := A_Variant; end if; return Node_To_Element_New (Starting_Element => Element, Node => Result_Node, Internal_Kind => Result_Kind, Considering_Parent_Count => False); end An_Attribute_Definition_Clause_Enclosing; ---------------------------- -- An_Else_Path_Enclosing -- ---------------------------- function An_Else_Path_Enclosing (Element : Asis.Element) return Asis.Element is begin return Node_To_Element_New (Node => R_Node (Element), Starting_Element => Element); end An_Else_Path_Enclosing; ---------------------------------------------------- -- An_Enumeration_Literal_Specification_Enclosing -- ---------------------------------------------------- function An_Enumeration_Literal_Specification_Enclosing (Element : Asis.Element) return Asis.Element is Result_Node : Node_Id; Start_Elem : Asis.Element := Element; begin if Special_Case (Element) = Stand_Char_Literal then Result_Node := R_Node (Element); Set_Character_Code (Start_Elem, 0); Set_Special_Case (Start_Elem, Explicit_From_Standard); else Result_Node := Parent (R_Node (Element)); end if; return Node_To_Element_New (Starting_Element => Start_Elem, Node => Result_Node, Internal_Kind => An_Enumeration_Type_Definition); end An_Enumeration_Literal_Specification_Enclosing; ---------------------------------------------- -- An_Enumeration_Type_Definition_Enclosing -- ---------------------------------------------- function An_Enumeration_Type_Definition_Enclosing (Element : Asis.Element) return Asis.Element is Result_Node : Node_Id; begin if Special_Case (Element) = Stand_Char_Literal then Result_Node := R_Node (Element); if Nkind (Result_Node) = N_Defining_Identifier then -- we are in the definition of Standard.Boolean: Result_Node := Parent (Etype (Result_Node)); end if; else Result_Node := Parent (R_Node (Element)); end if; return Node_To_Element_New (Starting_Element => Element, Node => Result_Node, Internal_Kind => An_Ordinary_Type_Declaration); end An_Enumeration_Type_Definition_Enclosing; ------------------------------------ -- An_Exception_Handler_Enclosing -- ------------------------------------ function An_Exception_Handler_Enclosing (Element : Asis.Element) return Asis.Element is begin return Node_To_Element_New (Node => Parent (Parent (R_Node (Element))), Starting_Element => Element); end An_Exception_Handler_Enclosing; ----------------------------- -- An_Expression_Enclosing -- ----------------------------- function An_Expression_Enclosing (Element : Asis.Element) return Asis.Element is Start_Elem : Asis.Element := Element; Rough_Result_Node : Node_Id; Res_Entity : Entity_Id; Rough_Result_Element : Asis.Element; Rough_Res_Spec_Case : Special_Cases; Result_Element : Asis.Element; begin Rough_Result_Node := Get_Rough_Enclosing_Node (Element); if not (Sloc (Node (Start_Elem)) <= Standard_Location or else Special_Case (Start_Elem) = Configuration_File_Pragma) then Set_Special_Case (Start_Elem, Not_A_Special_Case); end if; Rough_Result_Element := Node_To_Element_New (Node => Rough_Result_Node, Starting_Element => Start_Elem); if Is_Top_Of_Expanded_Generic (Rough_Result_Node) and then Is_From_Instance (Element) and then (Nkind (Original_Node (Rough_Result_Node)) /= N_Formal_Package_Declaration or else Instantiation_Depth (Sloc (R_Node (Element))) > Instantiation_Depth (Sloc (Rough_Result_Node))) then -- ??? The content of this if statement is just a slightly edited -- ??? fragment of Enclosing_For_Explicit_Instance_Component if Nkind (Rough_Result_Node) = N_Package_Declaration or else Nkind (Rough_Result_Node) = N_Package_Body then Rough_Res_Spec_Case := Expanded_Package_Instantiation; -- and here we have to correct the result: Set_Node (Rough_Result_Element, R_Node (Rough_Result_Element)); if Nkind (Rough_Result_Node) = N_Package_Declaration then Set_Int_Kind (Rough_Result_Element, A_Package_Declaration); else Set_Int_Kind (Rough_Result_Element, A_Package_Body_Declaration); end if; else Rough_Res_Spec_Case := Expanded_Subprogram_Instantiation; end if; Set_Special_Case (Rough_Result_Element, Rough_Res_Spec_Case); end if; if Special_Case (Element) = Is_From_Gen_Association and then Is_Top_Of_Expanded_Generic (Node (Rough_Result_Element)) and then Instantiation_Depth (Sloc (Node (Rough_Result_Element))) = Instantiation_Depth (Sloc (Node (Element))) then Rough_Result_Element := Enclosing_Element (Rough_Result_Element); end if; if Nkind (Rough_Result_Node) = N_Subprogram_Declaration and then not Comes_From_Source (Rough_Result_Node) then Res_Entity := Defining_Unit_Name (Specification (Rough_Result_Node)); if (Ekind (Res_Entity) = E_Function and then not Comes_From_Source (Res_Entity) and then Chars (Res_Entity) = Snames.Name_Op_Ne) and then Present (Corresponding_Equality (Res_Entity)) then Set_Special_Case (Rough_Result_Element, Is_From_Imp_Neq_Declaration); end if; end if; Result_Element := Get_Enclosing (Approximation => Rough_Result_Element, Element => Element); return Result_Element; end An_Expression_Enclosing; -------------------------------- -- An_Others_Choice_Enclosing -- -------------------------------- function An_Others_Choice_Enclosing (Element : Asis.Element) return Asis.Element is Parent_Node : constant Node_Id := Parent (Parent (R_Node (Element))); Result_Node : Node_Id := Parent (R_Node (Element)); Result_Kind : Internal_Element_Kinds := Not_An_Element; begin if Nkind (Result_Node) = N_Component_Association then -- we have to find out, is it record or array component -- association. Parent_Node points to the enclosing aggregate if No (Etype (Parent_Node)) or else Is_Array_Type (Etype (Parent_Node)) then -- the first condition in 'or else' is true for multi-dimensional -- array aggregates Result_Kind := An_Array_Component_Association; else Result_Kind := A_Record_Component_Association; end if; elsif Nkind (Result_Node) = N_Package_Declaration and then Nkind (Original_Node (Result_Node)) = N_Formal_Package_Declaration then Result_Node := Last_Non_Pragma (Generic_Associations (Original_Node (Result_Node))); Result_Kind := A_Generic_Association; end if; return Node_To_Element_New (Starting_Element => Element, Node => Result_Node, Internal_Kind => Result_Kind, Considering_Parent_Count => False); end An_Others_Choice_Enclosing; ---------------------------------------------------- -- Not_Implemented_Enclosing_Element_Construction -- ---------------------------------------------------- function Not_Implemented_Enclosing_Element_Construction (Element : Asis.Element) return Asis.Element is begin Not_Implemented_Yet (Diagnosis => "Enclosing Element retrieval for the explicit Element " & "of the " & Internal_Element_Kinds'Image (Int_Kind (Element)) & " kind " & "has not been implemented yet"); return Asis.Nil_Element; -- to make the code syntactically correct; end Not_Implemented_Enclosing_Element_Construction; ---------------------------- -- Possible_C_U_Enclosing -- ---------------------------- function Possible_C_U_Enclosing (Element : Asis.Element) return Asis.Element is Parent_Node : Node_Id := Parent (R_Node (Element)); Parent_Node_Kind : constant Node_Kind := Nkind (Parent_Node); begin if Parent_Node_Kind = N_Compilation_Unit or else Parent_Node_Kind = N_Subunit then return Asis.Nil_Element; elsif Parent_Node_Kind = N_Package_Specification then Parent_Node := Parent (Parent_Node); elsif Parent_Node_Kind = N_Protected_Definition then Parent_Node := Parent (Parent_Node); Parent_Node := Protected_Definition (Original_Node (Parent_Node)); end if; return Node_To_Element_New (Starting_Element => Element, Node => Parent_Node); end Possible_C_U_Enclosing; ----------------------------------------------------------------- -- Section 6 - bodies for the routines defined in the package -- -- spec and local subprograms -- ----------------------------------------------------------------- --------------------------------- -- Corresponding_Instantiation -- --------------------------------- function Corresponding_Instantiation (Element : Asis.Element) return Asis.Element is Argument_Node : Node_Id := R_Node (Element); Argument_Kind : constant Internal_Element_Kinds := Int_Kind (Element); Result_Node : Node_Id := Argument_Node; Result_Kind : Internal_Element_Kinds; Result_Unit : constant Asis.Compilation_Unit := Encl_Unit (Element); begin if Argument_Kind = A_Package_Declaration or else Argument_Kind = A_Package_Body_Declaration then -- A formal package with box needs a special processing - it is -- based on the same node as the argument if Nkind (Original_Node (Argument_Node)) = N_Formal_Package_Declaration and then Box_Present (Original_Node (Argument_Node)) then Result_Kind := A_Formal_Package_Declaration_With_Box; else Argument_Node := Parent (Argument_Node); if Nkind (Argument_Node) in N_Generic_Declaration and then Is_List_Member (Result_Node) and then List_Containing (Result_Node) = Generic_Formal_Declarations (Argument_Node) then Result_Kind := A_Formal_Package_Declaration; else Result_Kind := A_Package_Instantiation; end if; end if; else if Argument_Kind = A_Procedure_Declaration or else Argument_Kind = A_Procedure_Body_Declaration then Result_Kind := A_Procedure_Instantiation; else Result_Kind := A_Function_Instantiation; end if; -- we have to go the N_Package_Decalaration node of an -- artificial package created by the compiler for a subprogram -- instantiation - two steps up the tree are needed: Result_Node := Parent (Result_Node); if Argument_Kind = A_Procedure_Declaration or else Argument_Kind = A_Function_Declaration then Result_Node := Parent (Result_Node); end if; end if; if Nkind (Parent (Result_Node)) = N_Compilation_Unit then -- For library-level subprogram instantiations we may have a -- problem in the tree created for the instantiation itself. if Nkind (Result_Node) = N_Package_Declaration and then not Is_Rewrite_Substitution (Result_Node) then Result_Node := Parent (Corresponding_Body (Result_Node)); if Nkind (Result_Node) = N_Defining_Program_Unit_Name then Result_Node := Parent (Result_Node); end if; end if; elsif Nkind (Original_Node (Result_Node)) /= N_Formal_Package_Declaration then -- "local" instantiation, therefore - one or two steps down the -- declaration list to get in the instantiation node, a formal -- package with a box is an exception: Result_Node := Next_Non_Pragma (Result_Node); if Nkind (Result_Node) = N_Package_Body then -- This is an expanded generic body Result_Node := Next_Non_Pragma (Result_Node); end if; end if; if Is_Rewrite_Substitution (Result_Node) and then Is_Rewrite_Substitution (Original_Node (Result_Node)) then Result_Node := Original_Node (Result_Node); end if; return Node_To_Element_New (Node => Result_Node, Internal_Kind => Result_Kind, In_Unit => Result_Unit); end Corresponding_Instantiation; ------------------------------------ -- Enclosing_Element_For_Explicit -- ------------------------------------ function Enclosing_Element_For_Explicit (Element : Asis.Element) return Asis.Element is Enclosing_Construction_Case : Internal_Element_Kinds; Element_Internal_Kind : Internal_Element_Kinds; Result_Element : Asis.Element; Res_Node : constant Node_Id := Standard_Package_Node; Res_Kind : Internal_Element_Kinds := Not_An_Element; Res_Spec_Case : Special_Cases; begin Element_Internal_Kind := Int_Kind (Element); -- A special case of fake Numeric_Error renaming is handled -- separately (see B712-0050) if Special_Case (Element) = Numeric_Error_Renaming then case Element_Internal_Kind is when An_Exception_Renaming_Declaration => Res_Kind := A_Package_Declaration; Res_Spec_Case := Explicit_From_Standard; when A_Defining_Identifier | An_Identifier => Res_Kind := An_Exception_Renaming_Declaration; Res_Spec_Case := Numeric_Error_Renaming; when others => null; end case; Result_Element := Node_To_Element_New (Starting_Element => Element, Node => Res_Node, Internal_Kind => Res_Kind, Spec_Case => Res_Spec_Case); return Result_Element; end if; -- A special case of a configuration pragma is handled separately -- (BA07-013) if Element_Internal_Kind in Internal_Pragma_Kinds and then Special_Case (Element) = Configuration_File_Pragma then return Asis.Nil_Element; end if; Enclosing_Construction_Case := Enclosing_Element_For_Explicits_First_Switch (Element_Internal_Kind); case Enclosing_Construction_Case is when Not_An_Element => return Asis.Nil_Element; when Trivial_Mapping => Result_Element := General_Encl_Elem (Element); when Non_Trivial_Mapping => Result_Element := Enclosing_Element_For_Explicits_Second_Switch (Element_Internal_Kind) (Element); when No_Mapping => No_Enclosing_Element (Element_Kind => Element_Internal_Kind); return Asis.Nil_Element; -- to avoid GNAT warning when Not_Implemented_Mapping => Not_Implemented_Enclosing_Element_Construction (Element => Element); when others => -- others means here that the Enclosing Element should -- based on the same node. Result_Element := Node_To_Element_New (Starting_Element => Element, Node => R_Node (Element), Internal_Kind => Enclosing_Construction_Case, Considering_Parent_Count => False); if Element_Internal_Kind = A_Defining_Character_Literal then Set_Character_Code (Result_Element, Character_Code (Element)); end if; end case; if Is_From_Implicit (Element) and then Statement_Kind (Element) = A_Null_Statement then -- Case of an implicit NULL statement needed for 'floating' labels, -- Ada 2012 Set_From_Implicit (Result_Element, False); end if; return Result_Element; end Enclosing_Element_For_Explicit; ----------------------------------------------- -- Enclosing_For_Explicit_Instance_Component -- ----------------------------------------------- function Enclosing_For_Explicit_Instance_Component (Element : Asis.Element) return Asis.Element is Result_Element : Asis.Element; Result_Node : Node_Id; Tmp_Node : Node_Id; Res_Spec_Case : Special_Cases; function Is_Top_Exp_Form_Pack_With_Box (Potential_Enclosing_Element : Asis.Element; Arg_Element : Asis.Element) return Boolean; -- Checks if Potential_Enclosing_Element is the top expanded spec -- (??? what about body???) for a formal package declaration with box. -- The problem here is that when going up the tree, we can get into this -- argument both from components of the formal package declaration with -- box and from the corresponding expanded spec. So we have to check -- if Potential_Enclosing_Element and Arg_Element are the same level -- of instantiating (nested instances may be a pain! The function needs -- more testing ???) -- See the discussion in E425-007 function Is_Top_Exp_Form_Pack_With_Box (Potential_Enclosing_Element : Asis.Element; Arg_Element : Asis.Element) return Boolean is EE_Inst_Level : Natural := 0; Arg_Inst_Level : Natural := 0; Src : Source_Ptr := Instantiation (Get_Source_File_Index (Sloc (R_Node (Potential_Enclosing_Element)))); function May_Be_Exp_Pack_Def_Name (N_Pack : Node_Id; N_Name : Node_Id) return Boolean; -- In case of the defining name of an expanded package created for a -- formal package with the box, we have the instantiation chain one -- link shorter then the rest of the expanded package, so we have -- to detect this situation. function May_Be_Nested_FP_Instantiation (N_Pack : Node_Id; N_Name : Node_Id) return Boolean; -- See E430-A01. We try to detect the situation when we go out of -- a chain of nested instantiations created by formal packages with -- the box function May_Be_Exp_Pack_Def_Name (N_Pack : Node_Id; N_Name : Node_Id) return Boolean is Result : Boolean := False; begin if Nkind (N_Name) = N_Defining_Identifier and then Nkind (Original_Node (N_Pack)) = N_Formal_Package_Declaration and then Box_Present (Original_Node (N_Pack)) then Result := N_Name = Defining_Unit_Name (Specification (N_Pack)); end if; return Result; end May_Be_Exp_Pack_Def_Name; function May_Be_Nested_FP_Instantiation (N_Pack : Node_Id; N_Name : Node_Id) return Boolean is Result : Boolean := False; begin if Nkind (N_Pack) = N_Generic_Package_Declaration and then Nkind (Original_Node (N_Pack)) = N_Formal_Package_Declaration and then Box_Present (Original_Node (N_Pack)) and then Nkind (N_Name) = N_Generic_Package_Declaration and then Nkind (Original_Node (N_Name)) = N_Formal_Package_Declaration and then Box_Present (Original_Node (N_Name)) then Result := True; end if; return Result; end May_Be_Nested_FP_Instantiation; begin if not (Nkind (Node (Potential_Enclosing_Element)) = N_Formal_Package_Declaration and then Nkind (R_Node (Potential_Enclosing_Element)) = N_Generic_Package_Declaration) or else (Int_Kind (Potential_Enclosing_Element) = A_Formal_Package_Declaration_With_Box and then Node (Arg_Element) = Defining_Identifier (Node (Potential_Enclosing_Element))) then return False; end if; while Src /= No_Location loop EE_Inst_Level := EE_Inst_Level + 1; Src := Instantiation (Get_Source_File_Index (Src)); end loop; Src := Instantiation (Get_Source_File_Index (Sloc (R_Node (Arg_Element)))); while Src /= No_Location loop Arg_Inst_Level := Arg_Inst_Level + 1; Src := Instantiation (Get_Source_File_Index (Src)); end loop; return (May_Be_Exp_Pack_Def_Name (R_Node (Potential_Enclosing_Element), R_Node (Arg_Element)) and then EE_Inst_Level = Arg_Inst_Level + 1) or else (May_Be_Nested_FP_Instantiation (R_Node (Potential_Enclosing_Element), R_Node (Arg_Element)) and then EE_Inst_Level + 1 = Arg_Inst_Level) or else EE_Inst_Level = Arg_Inst_Level; end Is_Top_Exp_Form_Pack_With_Box; begin Result_Element := Enclosing_Element_For_Explicit (Element); if Is_Nil (Result_Element) then -- There is a special case corresponding to the defining name in an -- artificial subtype declaration that is a means to pass an actual -- type in the expanded instantiation (see K811-006). Under some -- conditions the corresponding node in the tree is an Itype node, -- and it does not have a Parent reference set. Tmp_Node := Node (Element); if Nkind (Tmp_Node) = N_Defining_Identifier and then Is_Itype (Tmp_Node) then Tmp_Node := Associated_Node_For_Itype (Tmp_Node); Result_Element := Node_To_Element_New (Node => Tmp_Node, Starting_Element => Element, Internal_Kind => A_Subtype_Declaration); end if; end if; -- In case if the result argument is an artificial declaration -- used to pass an actual into expanded subprogram, we are -- in the spec of the artificial wrapper package. So we have to get -- to the expanded subprogram declaration (see G416-009) if Is_Top_Of_Expanded_Generic (R_Node (Result_Element)) then Tmp_Node := (R_Node (Result_Element)); if Nkind (Tmp_Node) = N_Package_Declaration and then No (Generic_Parent (Specification (Tmp_Node))) then -- This IF statement prevents us from doing this special -- processing for expanded package declarations, we have to do -- it only for wrapper packages created for subprogram -- instantiation Tmp_Node := Last (Visible_Declarations (Specification (Tmp_Node))); Result_Element := Node_To_Element_New (Node => Tmp_Node, Spec_Case => Expanded_Subprogram_Instantiation, Starting_Element => Element); end if; end if; -- and now we have to check if we are in the whole expanded -- declaration Result_Node := R_Node (Result_Element); if not (Is_Rewrite_Substitution (Result_Node) and then Nkind (Original_Node (Result_Node)) = N_Formal_Package_Declaration and then (Node (Element) = Defining_Identifier (Original_Node (Result_Node)) or else (Node (Element) /= Defining_Unit_Name (Specification (Result_Node)) and then Instantiation_Depth (Sloc (R_Node (Element))) = Instantiation_Depth (Sloc (Result_Node))))) and then Is_Top_Of_Expanded_Generic (Result_Node) then -- this is an artificial package or subprogram declaration -- created by the compiler as an expanded generic declaration if Nkind (Result_Node) = N_Package_Declaration or else Nkind (Result_Node) = N_Package_Body then Res_Spec_Case := Expanded_Package_Instantiation; -- and here we have to correct the result: Set_Node (Result_Element, R_Node (Result_Element)); if Nkind (Result_Node) = N_Package_Declaration then Set_Int_Kind (Result_Element, A_Package_Declaration); else Set_Int_Kind (Result_Element, A_Package_Body_Declaration); end if; else Res_Spec_Case := Expanded_Subprogram_Instantiation; end if; Set_Special_Case (Result_Element, Res_Spec_Case); elsif Is_Top_Exp_Form_Pack_With_Box (Result_Element, Element) then -- This case is somewhat special - we have not a package, but a -- generic package declaration as expanded code here Set_Int_Kind (Result_Element, A_Package_Declaration); Set_Special_Case (Result_Element, Expanded_Package_Instantiation); -- ??? What about expanded bodies for formal packages with a box? end if; -- and we have to correct Is_Part_Of_Instance field of the result - -- just in case. May be, it will not be necessary, if (and when) -- Enclosing_Element_For_Explicit takes the corresponding fields -- from its argument if not Is_Nil (Result_Element) then Set_From_Instance (Result_Element, True); end if; return Result_Element; end Enclosing_For_Explicit_Instance_Component; ------------------------------------ -- Enclosing_Element_For_Implicit -- ------------------------------------ function Enclosing_Element_For_Implicit (Element : Asis.Element) return Asis.Element is Arg_Kind : constant Internal_Element_Kinds := Int_Kind (Element); Result_Node : Node_Id := Empty; Result_Element : Asis.Element; Result_Kind : Internal_Element_Kinds := Not_An_Element; Res_Spec_Case : Special_Cases := Not_A_Special_Case; begin -- Special treatment for the declaration of implicit "/=", see F903-002: if Asis.Extensions.Is_Implicit_Neq_Declaration (Element) then Result_Element := Enclosing_Element (Asis.Declarations.Corresponding_Equality_Operator (Element)); else case Arg_Kind is when A_Procedure_Declaration | A_Function_Declaration | A_Procedure_Body_Declaration | A_Function_Body_Declaration | A_Procedure_Renaming_Declaration | A_Function_Renaming_Declaration | A_Discriminant_Specification | A_Component_Declaration => Result_Node := Original_Node (Node_Field_1 (Element)); if Nkind (Result_Node) in N_Entity and then (Arg_Kind in A_Procedure_Declaration .. A_Function_Declaration or else Arg_Kind in A_Procedure_Body_Declaration .. A_Function_Body_Declaration or else Arg_Kind in A_Procedure_Renaming_Declaration .. A_Function_Renaming_Declaration) then Result_Node := Original_Node (Parent (Node_Field_1 (Element))); end if; case Nkind (Result_Node) is when N_Private_Extension_Declaration => Result_Kind := A_Private_Extension_Definition; when N_Formal_Type_Declaration => Result_Node := Sinfo.Formal_Type_Definition (Result_Node); when others => Result_Node := Sinfo.Type_Definition (Result_Node); end case; Result_Element := Node_To_Element_New ( Node => Result_Node, Starting_Element => Element, Internal_Kind => Result_Kind); Set_From_Implicit (Result_Element, False); Set_From_Inherited (Result_Element, False); Set_Node_Field_1 (Result_Element, Empty); when Internal_Root_Type_Kinds => Result_Element := Element; Set_Int_Kind (Result_Element, An_Ordinary_Type_Declaration); when An_Ordinary_Type_Declaration => -- The only possible case is the declaration of a root or -- universal numeric type Result_Node := Standard_Package_Node; Res_Spec_Case := Explicit_From_Standard; Result_Kind := A_Package_Declaration; Result_Element := Node_To_Element_New (Node => Result_Node, Spec_Case => Res_Spec_Case, In_Unit => Encl_Unit (Element)); when An_Enumeration_Literal_Specification | An_Entry_Declaration => Result_Node := Sinfo.Type_Definition (Original_Node (Node_Field_1 (Element))); Result_Kind := A_Derived_Type_Definition; Result_Element := Node_To_Element_New ( Node => Result_Node, Starting_Element => Element, Internal_Kind => Result_Kind); Set_From_Implicit (Result_Element, False); Set_From_Inherited (Result_Element, False); Set_Node_Field_1 (Result_Element, Empty); when A_Generic_Association => Result_Element := Node_To_Element_New (Node => R_Node (Element), In_Unit => Encl_Unit (Element)); when others => if Normalization_Case (Element) = Is_Normalized_Defaulted_For_Box then Result_Node := Parent (Parent (Parent (Node (Element)))); while not (Nkind (Result_Node) in N_Generic_Instantiation or else Nkind (Original_Node (Result_Node)) = N_Formal_Package_Declaration) loop if Nkind (Parent (Result_Node)) = N_Compilation_Unit then -- Library level instantiation if Is_Rewrite_Substitution (Result_Node) then -- Package instantiation, the package does not have -- a body exit; else Result_Node := Corresponding_Body (Result_Node); while Nkind (Result_Node) /= N_Package_Body loop Result_Node := Parent (Result_Node); end loop; end if; exit; else Result_Node := Next (Result_Node); end if; end loop; Result_Element := Node_To_Element_New (Node => Result_Node, In_Unit => Encl_Unit (Element)); else Result_Element := Enclosing_Element_For_Explicit (Element); end if; end case; end if; if Int_Kind (Result_Element) = A_Function_Renaming_Declaration then -- See C125-002 Set_Int_Kind (Result_Element, A_Function_Declaration); elsif Int_Kind (Result_Element) = A_Procedure_Renaming_Declaration then Set_Int_Kind (Result_Element, A_Procedure_Declaration); end if; return Result_Element; end Enclosing_Element_For_Implicit; ---------------------------------------- -- Enclosing_Element_For_Limited_View -- ---------------------------------------- function Enclosing_Element_For_Limited_View (Element : Asis.Element) return Asis.Element is Result : Asis.Element := Enclosing_Element_For_Explicit (Element); begin if not Is_Nil (Result) then Set_Special_Case (Result, From_Limited_View); Set_From_Implicit (Result, True); Set_Int_Kind (Result, Limited_View_Kind (Result)); end if; return Result; end Enclosing_Element_For_Limited_View; ----------------------- -- General_Encl_Elem -- ----------------------- function General_Encl_Elem (Element : Asis.Element) return Asis.Element is Result_Node : Node_Id; Result_Nkind : Node_Kind; begin Result_Node := Parent (R_Node (Element)); Result_Nkind := Nkind (Result_Node); -- and now - special processing for some node kinds to skip nodes which -- are of no use in ASIS if Result_Nkind = N_Package_Specification or else Result_Nkind = N_Function_Specification or else Result_Nkind = N_Procedure_Specification or else Result_Nkind = N_Entry_Body_Formal_Part then Result_Node := Parent (Result_Node); end if; return Node_To_Element_New (Starting_Element => Element, Node => Result_Node, Considering_Parent_Count => False); end General_Encl_Elem; ------------------- -- Get_Enclosing -- ------------------- function Get_Enclosing (Approximation : Asis.Element; Element : Asis.Element) return Asis.Element is -- we need two-level traversing for searching for Enclosing Element: -- first, we go through the direct children of an approximate -- result, and none of them Is_Identical to Element, we repeat -- the search process for each direct child. We may implement -- this on top of Traverse_Element, but we prefer to code -- it manually on top of A4G.Queries Result_Element : Asis.Element; Result_Found : Boolean := False; -- needed to simulate the effect of Terminate_Immediatelly procedure Check_Possible_Enclosing (Appr_Enclosing : Asis.Element); -- implements the first level of the search. Appr_Enclosing is -- the "approximate" Enclosing Element, and this procedure -- checks if some of its components Is_Identical to Element -- (Element here is the parameter of Get_Enclosing function, -- as a global constant value inside Get_Enclosing, it is the -- same for all the (recursive) calls of Check_Possible_Enclosing ------------------------------ -- Check_Possible_Enclosing -- ------------------------------- procedure Check_Possible_Enclosing (Appr_Enclosing : Asis.Element) is Child_Access : constant Query_Array := Appropriate_Queries (Appr_Enclosing); -- this is the way to traverse the direct children Next_Child : Asis.Element; procedure Check_List (L : Asis.Element_List); -- checks if L contains a component which Is_Identical -- to (global) Element. Sets Result_Found ON if such a -- component is found procedure Check_List_Down (L : Asis.Element_List); -- calls Get_Enclosing for every component of L, by -- this the recursion and the second level of the search -- is implemented procedure Check_List (L : Asis.Element_List) is begin for L_El_Index in L'Range loop if Is_Identical (Element, L (L_El_Index)) then Result_Found := True; return; end if; end loop; end Check_List; procedure Check_List_Down (L : Asis.Element_List) is begin if Result_Found then return; -- it seems that we do not need this if... ??? end if; for L_El_Index in L'Range loop Check_Possible_Enclosing (L (L_El_Index)); if Result_Found then return; end if; end loop; end Check_List_Down; begin -- Check_Possible_Enclosing if Result_Found then return; -- now the only goal is to not disturb the setting of the -- global variable Result_Element to be returned as a result end if; -- first, setting the (global for this procedure) Result_Element: Result_Element := Appr_Enclosing; -- the first level of the search - checking all the direct -- children: for Each_Query in Child_Access'Range loop case Child_Access (Each_Query).Query_Kind is when Bug => null; when Single_Element_Query => Next_Child := Child_Access (Each_Query).Func_Simple (Appr_Enclosing); if Is_Identical (Element, Next_Child) then Result_Found := True; return; end if; when Element_List_Query => declare Child_List : constant Asis.Element_List := Child_Access (Each_Query).Func_List (Appr_Enclosing); begin Check_List (Child_List); if Result_Found then return; end if; end; when Element_List_Query_With_Boolean => declare Child_List : constant Asis.Element_List := Child_Access (Each_Query).Func_List_Boolean (Appr_Enclosing, Child_Access (Each_Query).Bool); begin Check_List (Child_List); if Result_Found then return; end if; end; end case; end loop; -- if we are here, we have hot found Element among the direct -- children of Appr_Enclosing. So we have to traverse the direct -- children again, but this time we have to go one step down, -- so here we have the second level of the search: for Each_Query in Child_Access'Range loop case Child_Access (Each_Query).Query_Kind is when Bug => null; when Single_Element_Query => Next_Child := Child_Access (Each_Query).Func_Simple (Appr_Enclosing); -- and here - recursively one step down if not Is_Nil (Next_Child) then Check_Possible_Enclosing (Next_Child); if Result_Found then return; end if; end if; when Element_List_Query => declare Child_List : constant Asis.Element_List := Child_Access (Each_Query).Func_List (Appr_Enclosing); begin -- and here - recursively one step down Check_List_Down (Child_List); if Result_Found then return; end if; end; when Element_List_Query_With_Boolean => declare Child_List : constant Asis.Element_List := Child_Access (Each_Query).Func_List_Boolean (Appr_Enclosing, Child_Access (Each_Query).Bool); begin -- and here - recursively one step down Check_List_Down (Child_List); if Result_Found then return; end if; end; end case; end loop; end Check_Possible_Enclosing; begin -- Get_Enclosing Check_Possible_Enclosing (Approximation); pragma Assert (Result_Found); return Result_Element; end Get_Enclosing; ------------------------------ -- Get_Rough_Enclosing_Node -- ------------------------------ function Get_Rough_Enclosing_Node (Element : Asis.Element) return Node_Id is Arg_Node : constant Node_Id := R_Node (Element); Result_Node : Node_Id; Res_Nkind : Node_Kind; function Is_Acceptable_As_Rough_Enclosing_Node (N : Node_Id) return Boolean; -- this function encapsulates the condition for choosing -- the rough enclosing node function Is_Acceptable_Impl_Neq_Decl (N : Node_Id) return Boolean; -- Implements a special check for Is_Acceptable_As_Rough_Enclosing_Node: -- in case if Element is a subcomponenet of an implicit declaration of -- "/=", checks that N represents the whole declaration of this "/=" ------------------------------------------- -- Is_Acceptable_As_Rough_Enclosing_Node -- ------------------------------------------- function Is_Acceptable_As_Rough_Enclosing_Node (N : Node_Id) return Boolean is N_K : constant Node_Kind := Nkind (N); Result : Boolean := True; begin if not (Is_Acceptable_Impl_Neq_Decl (N) or else Is_List_Member (N) or else (Nkind (Parent (N)) = N_Compilation_Unit or else Nkind (Parent (N)) = N_Subunit)) or else (Nkind (N) in N_Subexpr and then Nkind (N) /= N_Procedure_Call_Statement) or else Nkind (N) = N_Parameter_Association then Result := False; elsif N_K = N_Range or else -- N_K = N_Component_Association or else N_K = N_Subtype_Indication then Result := False; elsif N_K = N_Component_Association then if Special_Case (Element) = Is_From_Gen_Association or else Is_From_Rewritten_Aggregate (N) then Result := False; end if; elsif N_K = N_Procedure_Call_Statement and then Nkind (Parent (N)) = N_Pragma then Result := False; elsif not Comes_From_Source (N) and then Sloc (N) > Standard_Location and then not Is_Acceptable_Impl_Neq_Decl (N) then if not (Is_From_Instance (Element) and then Is_Top_Of_Expanded_Generic (N)) then Result := False; end if; end if; return Result; end Is_Acceptable_As_Rough_Enclosing_Node; --------------------------------- -- Is_Acceptable_Impl_Neq_Decl -- --------------------------------- function Is_Acceptable_Impl_Neq_Decl (N : Node_Id) return Boolean is Result : Boolean := False; begin if Special_Case (Element) = Is_From_Imp_Neq_Declaration and then Nkind (N) = N_Subprogram_Declaration and then not Comes_From_Source (N) and then Present (Corresponding_Equality (Defining_Unit_Name (Specification (N)))) then Result := True; end if; return Result; end Is_Acceptable_Impl_Neq_Decl; begin -- Get_Rough_Enclosing_Node Result_Node := Parent (Arg_Node); if Nkind (Result_Node) = N_Object_Renaming_Declaration and then Special_Case (Element) = Is_From_Gen_Association and then Present (Corresponding_Generic_Association (Result_Node)) then Result_Node := Corresponding_Generic_Association (Result_Node); elsif (Nkind (Result_Node) = N_Attribute_Definition_Clause or else Nkind (Result_Node) = N_Pragma) and then From_Aspect_Specification (Result_Node) then -- Result_Node := Corresponding_Aspect (Result_Node); null; -- SCz end if; while Present (Result_Node) and then not Is_Acceptable_As_Rough_Enclosing_Node (Result_Node) loop Result_Node := Parent (Result_Node); if Nkind (Result_Node) = N_Object_Renaming_Declaration and then Special_Case (Element) = Is_From_Gen_Association and then Present (Corresponding_Generic_Association (Result_Node)) then Result_Node := Corresponding_Generic_Association (Result_Node); elsif (Nkind (Result_Node) = N_Attribute_Definition_Clause or else Nkind (Result_Node) = N_Pragma) and then From_Aspect_Specification (Result_Node) then -- Result_Node := Corresponding_Aspect (Result_Node); null; -- SCz end if; if Nkind (Result_Node) = N_Compilation_Unit then -- this means that there is no node list on the way up -- the tree, and we have to go back to the node -- for the unit declaration: if Is_Standard (Encl_Unit (Element)) then Result_Node := Standard_Package_Node; else Result_Node := Unit (Result_Node); end if; if Nkind (Result_Node) = N_Subunit then Result_Node := Proper_Body (Result_Node); end if; exit; end if; end loop; -- and here we have to take into account possible normalization -- of multi-identifier declarations: Res_Nkind := Nkind (Result_Node); if Res_Nkind = N_Object_Declaration or else Res_Nkind = N_Number_Declaration or else Res_Nkind = N_Discriminant_Specification or else Res_Nkind = N_Component_Declaration or else Res_Nkind = N_Parameter_Specification or else Res_Nkind = N_Exception_Declaration or else Res_Nkind = N_Formal_Object_Declaration or else Res_Nkind = N_With_Clause then Skip_Normalized_Declarations_Back (Result_Node); end if; -- If we've got Result_Node pointing to the artificial package -- declaration created for library-level generic instantiation, -- we have to the body for which we have this instantiation as -- the original node if Nkind (Result_Node) = N_Package_Declaration and then not Comes_From_Source (Result_Node) and then Nkind (Parent (Result_Node)) = N_Compilation_Unit and then not Is_From_Instance (Element) and then not Is_Rewrite_Substitution (Result_Node) then Result_Node := Corresponding_Body (Result_Node); while Nkind (Result_Node) /= N_Package_Body loop Result_Node := Parent (Result_Node); end loop; end if; -- Below is the patch for 8706-003. It is needed when we are looking -- for the enclosing element for actual parameter in subprogram -- instantiation. In this case Result_Node points to the spec of a -- wrapper package, so we have to go to the instantiation. if Special_Case (Element) = Is_From_Gen_Association and then Nkind (Result_Node) = N_Package_Declaration and then not (Nkind (Original_Node (Result_Node)) = N_Package_Instantiation or else Nkind (Original_Node (Result_Node)) = N_Package_Body or else (Present (Generic_Parent (Specification (Result_Node))) and then Ekind (Generic_Parent (Specification (Result_Node))) = E_Generic_Package)) and then not Comes_From_Source (Result_Node) and then (Nkind (Parent (Arg_Node)) = N_Subprogram_Renaming_Declaration and then not Comes_From_Source (Parent (Arg_Node))) and then Instantiation_Depth (Sloc (Result_Node)) = Instantiation_Depth (Sloc (Arg_Node)) then if Is_Rewrite_Substitution (Result_Node) and then Nkind (Original_Node (Result_Node)) in N_Generic_Instantiation then Result_Node := Original_Node (Result_Node); else while not Comes_From_Source (Result_Node) loop Result_Node := Next_Non_Pragma (Result_Node); end loop; end if; end if; return Result_Node; end Get_Rough_Enclosing_Node; -------------------------------- -- Is_Top_Of_Expanded_Generic -- -------------------------------- function Is_Top_Of_Expanded_Generic (N : Node_Id) return Boolean is N_Kind : constant Node_Kind := Nkind (N); Result : Boolean := False; begin Result := ((not Comes_From_Source (N) or else Is_Rewrite_Insertion (N)) and then (N_Kind = N_Package_Declaration or else N_Kind = N_Package_Body or else N_Kind = N_Subprogram_Declaration or else N_Kind = N_Subprogram_Body) and then Nkind (Original_Node (N)) not in N_Renaming_Declaration) or else (Nkind (Parent (N)) = N_Package_Body and then not Comes_From_Source (Parent (N))) or else (Is_Rewrite_Substitution (N) and then Nkind (Original_Node (N)) = N_Package_Instantiation); -- Library-level package instantiation return Result; end Is_Top_Of_Expanded_Generic; -------------------------- -- No_Enclosing_Element -- -------------------------- procedure No_Enclosing_Element (Element_Kind : Internal_Element_Kinds) is begin Raise_ASIS_Failed ("No Enclosing Element can correspond " & "to the Element with Internal_Element_Kinds value of " & Internal_Element_Kinds'Image (Element_Kind)); end No_Enclosing_Element; ---------------------------------------------------- -- Not_Implemented_Enclosing_Element_Construction -- ---------------------------------------------------- procedure Not_Implemented_Enclosing_Element_Construction (Element : Asis.Element) is begin Not_Implemented_Yet (Diagnosis => "Enclosing Element retrieval for the explicit Element " & "of the " & Internal_Element_Kinds'Image (Int_Kind (Element)) & " kind " & "has not been implemented yet"); end Not_Implemented_Enclosing_Element_Construction; ------------ -- Parent -- ------------ function Parent (Node : Node_Id) return Node_Id is Result_Node : Node_Id; begin Result_Node := Atree.Parent (Node); Skip_Normalized_Declarations_Back (Result_Node); return Result_Node; end Parent; --------------------------- -- Skip_Implicit_Subtype -- --------------------------- procedure Skip_Implicit_Subtype (Constr : in out Node_Id) is begin if not Comes_From_Source (Parent (Constr)) then Constr := Parent (Constr); while Nkind (Constr) /= N_Object_Declaration loop Constr := Next_Non_Pragma (Constr); end loop; Constr := Object_Definition (Constr); end if; end Skip_Implicit_Subtype; --------------------------------------- -- Skip_Normalized_Declarations_Back -- --------------------------------------- procedure Skip_Normalized_Declarations_Back (Node : in out Node_Id) is Arg_Kind : constant Node_Kind := Nkind (Node); begin loop if Arg_Kind = N_Object_Declaration or else Arg_Kind = N_Number_Declaration or else Arg_Kind = N_Discriminant_Specification or else Arg_Kind = N_Component_Declaration or else Arg_Kind = N_Parameter_Specification or else Arg_Kind = N_Exception_Declaration or else Arg_Kind = N_Formal_Object_Declaration then if Prev_Ids (Node) then Node := Prev (Node); while Nkind (Node) /= Arg_Kind loop -- some implicit subtype declarations may be inserted by -- the compiler in between the normalized declarations, so: Node := Prev (Node); end loop; else return; end if; elsif Arg_Kind = N_With_Clause then if First_Name (Node) then return; else Node := Prev (Node); end if; else return; -- nothing to do! end if; end loop; end Skip_Normalized_Declarations_Back; end A4G.Encl_El;
-- CD5014V.ADA -- Grant of Unlimited Rights -- -- Under contracts F33600-87-D-0337, F33600-84-D-0280, MDA903-79-C-0687, -- F08630-91-C-0015, and DCA100-97-D-0025, the U.S. Government obtained -- unlimited rights in the software and documentation contained herein. -- Unlimited rights are defined in DFAR 252.227-7013(a)(19). By making -- this public release, the Government intends to confer upon all -- recipients unlimited rights equal to those held by the Government. -- These rights include rights to use, duplicate, release or disclose the -- released technical data and computer software in whole or in part, in -- any manner and for any purpose whatsoever, and to have or permit others -- to do so. -- -- DISCLAIMER -- -- ALL MATERIALS OR INFORMATION HEREIN RELEASED, MADE AVAILABLE OR -- DISCLOSED ARE AS IS. THE GOVERNMENT MAKES NO EXPRESS OR IMPLIED -- WARRANTY AS TO ANY MATTER WHATSOEVER, INCLUDING THE CONDITIONS OF THE -- SOFTWARE, DOCUMENTATION OR OTHER INFORMATION RELEASED, MADE AVAILABLE -- OR DISCLOSED, OR THE OWNERSHIP, MERCHANTABILITY, OR FITNESS FOR A -- PARTICULAR PURPOSE OF SAID MATERIAL. --* -- OBJECTIVE: -- CHECK THAT AN ADDRESS CLAUSE CAN BE GIVEN IN THE VISIBLE PART -- OF A GENERIC PACKAGE SPECIFICATION FOR A VARIABLE OF A FORMAL -- FIXED TYPE, WHERE THE VARIABLE IS DECLARED IN THE VISIBLE PART -- OF THE SPECIFICATION. -- HISTORY: -- BCB 10/08/87 CREATED ORIGINAL TEST. -- PWB 05/11/89 CHANGED EXTENSION FROM '.DEP' TO '.ADA'. WITH SYSTEM; USE SYSTEM; WITH SPPRT13; USE SPPRT13; WITH REPORT; USE REPORT; PROCEDURE CD5014V IS BEGIN TEST ("CD5014V", " AN ADDRESS CLAUSE CAN BE GIVEN " & "IN THE VISIBLE PART OF A GENERIC PACKAGE " & "SPECIFICATION FOR A VARIABLE OF A FORMAL " & "FIXED TYPE, WHERE THE VARIABLE IS DECLARED " & "IN THE VISIBLE PART OF THE SPECIFICATION"); DECLARE TYPE FIX IS DELTA 0.5 RANGE -30.00 .. 30.00; GENERIC TYPE FORM_FIXED_TYPE IS DELTA <>; PACKAGE PKG IS FORM_FIXED_OBJ1 : FORM_FIXED_TYPE := 5.0; FOR FORM_FIXED_OBJ1 USE AT VARIABLE_ADDRESS; END PKG; PACKAGE BODY PKG IS BEGIN IF EQUAL(3,3) THEN FORM_FIXED_OBJ1 := 20.0; END IF; IF FORM_FIXED_OBJ1 /= 20.0 THEN FAILED ("INCORRECT VALUE FOR FORMAL FIXED VARIABLE"); END IF; IF FORM_FIXED_OBJ1'ADDRESS /= VARIABLE_ADDRESS THEN FAILED ("INCORRECT ADDRESS FOR FORMAL FIXED " & "VARIABLE"); END IF; END PKG; PACKAGE PACK IS NEW PKG(FORM_FIXED_TYPE => FIX); BEGIN NULL; END; RESULT; END CD5014V;
-- //////////////////////////////////////////////////////////// -- // -- // SFML - Simple and Fast Multimedia Library -- // Copyright (C) 2007-2009 Laurent Gomila (laurent.gom@gmail.com) -- // -- // This software is provided 'as-is', without any express or implied warranty. -- // In no event will the authors be held liable for any damages arising from the use of this software. -- // -- // Permission is granted to anyone to use this software for any purpose, -- // including commercial applications, and to alter it and redistribute it freely, -- // subject to the following restrictions: -- // -- // 1. The origin of this software must not be misrepresented; -- // you must not claim that you wrote the original software. -- // If you use this software in a product, an acknowledgment -- // in the product documentation would be appreciated but is not required. -- // -- // 2. Altered source versions must be plainly marked as such, -- // and must not be misrepresented as being the original software. -- // -- // 3. This notice may not be removed or altered from any source distribution. -- // -- //////////////////////////////////////////////////////////// -- //////////////////////////////////////////////////////////// -- // Headers -- //////////////////////////////////////////////////////////// with Sf.Config; with Sf.Network.IPAddress; with Sf.Network.Types; package Sf.Network.Ftp is use Sf.Config; use Sf.Network.IPAddress; use Sf.Network.Types; -- //////////////////////////////////////////////////////////// -- /// Enumerate all the FTP file transfer modes -- //////////////////////////////////////////////////////////// type sfFtpTransferMode is (sfFtpBinary, sfFtpAscii, sfFtpEbcdic); -- //////////////////////////////////////////////////////////// -- /// Enumerate all the valid status codes returned in -- /// a FTP response -- //////////////////////////////////////////////////////////// subtype sfFtpStatus is sfUint32; sfFtpRestartMarkerReply : constant sfFtpStatus := 110; sfFtpServiceReadySoon : constant sfFtpStatus := 120; sfFtpDataConnectionAlreadyOpened : constant sfFtpStatus := 125; sfFtpOpeningDataConnection : constant sfFtpStatus := 150; sfFtpOk : constant sfFtpStatus := 200; sfFtpPointlessCommand : constant sfFtpStatus := 202; sfFtpSystemStatus : constant sfFtpStatus := 211; sfFtpDirectoryStatus : constant sfFtpStatus := 212; sfFtpFileStatus : constant sfFtpStatus := 213; sfFtpHelpMessage : constant sfFtpStatus := 214; sfFtpSystemType : constant sfFtpStatus := 215; sfFtpServiceReady : constant sfFtpStatus := 220; sfFtpClosingConnection : constant sfFtpStatus := 221; sfFtpDataConnectionOpened : constant sfFtpStatus := 225; sfFtpClosingDataConnection : constant sfFtpStatus := 226; sfFtpEnteringPassiveMode : constant sfFtpStatus := 227; sfFtpLoggedIn : constant sfFtpStatus := 230; sfFtpFileActionOk : constant sfFtpStatus := 250; sfFtpDirectoryOk : constant sfFtpStatus := 257; sfFtpNeedPassword : constant sfFtpStatus := 331; sfFtpNeedAccountToLogIn : constant sfFtpStatus := 332; sfFtpNeedInformation : constant sfFtpStatus := 350; sfFtpServiceUnavailable : constant sfFtpStatus := 421; sfFtpDataConnectionUnavailable : constant sfFtpStatus := 425; sfFtpTransferAborted : constant sfFtpStatus := 426; sfFtpFileActionAborted : constant sfFtpStatus := 450; sfFtpLocalError : constant sfFtpStatus := 451; sfFtpInsufficientStorageSpace : constant sfFtpStatus := 452; sfFtpCommandUnknown : constant sfFtpStatus := 500; sfFtpParametersUnknown : constant sfFtpStatus := 501; sfFtpCommandNotImplemented : constant sfFtpStatus := 502; sfFtpBadCommandSequence : constant sfFtpStatus := 503; sfFtpParameterNotImplemented : constant sfFtpStatus := 504; sfFtpNotLoggedIn : constant sfFtpStatus := 530; sfFtpNeedAccountToStore : constant sfFtpStatus := 532; sfFtpFileUnavailable : constant sfFtpStatus := 550; sfFtpPageTypeUnknown : constant sfFtpStatus := 551; sfFtpNotEnoughMemory : constant sfFtpStatus := 552; sfFtpFilenameNotAllowed : constant sfFtpStatus := 553; sfFtpInvalidResponse : constant sfFtpStatus := 1000; sfFtpConnectionFailed : constant sfFtpStatus := 1001; sfFtpConnectionClosed : constant sfFtpStatus := 1002; sfFtpInvalidFile : constant sfFtpStatus := 1003; -- //////////////////////////////////////////////////////////// -- /// Destroy an existing Ftp listing response -- /// -- /// \param FtpResponse : Ftp listing response to destroy -- /// -- //////////////////////////////////////////////////////////// procedure sfFtpListingResponse_Destroy (FtpListingResponse : sfFtpListingResponse_Ptr); -- //////////////////////////////////////////////////////////// -- /// Convenience function to check if the response status code -- /// means a success -- /// -- /// \param FtpListingResponse : Ftp listing response -- /// -- /// \return sfTrue if status is success (code < 400) -- /// -- //////////////////////////////////////////////////////////// function sfFtpListingResponse_IsOk (FtpListingResponse : sfFtpListingResponse_Ptr) return sfBool; -- //////////////////////////////////////////////////////////// -- /// Get the response status code -- /// -- /// \param FtpListingResponse : Ftp listing response -- /// -- /// \return Status code -- /// -- //////////////////////////////////////////////////////////// function sfFtpListingResponse_GetStatus (FtpListingResponse : sfFtpListingResponse_Ptr) return sfFtpStatus; -- //////////////////////////////////////////////////////////// -- /// Get the full message contained in the response -- /// -- /// \param FtpListingResponse : Ftp listing response -- /// -- /// \return The response message -- /// -- //////////////////////////////////////////////////////////// function sfFtpListingResponse_GetMessage (FtpListingResponse : sfFtpListingResponse_Ptr) return String; -- //////////////////////////////////////////////////////////// -- /// Get the number of filenames in the listing -- /// -- /// \param FtpListingResponse : Ftp listing response -- /// -- /// \return Total number of filenames -- /// -- //////////////////////////////////////////////////////////// function sfFtpListingResponse_GetCount (FtpListingResponse : sfFtpListingResponse_Ptr) return sfSize_t; -- //////////////////////////////////////////////////////////// -- /// Get the Index-th filename in the directory -- /// -- /// \param FtpListingResponse : Ftp listing response -- /// \param Index : Index of the filename to get -- /// -- /// \return Index-th filename -- /// -- //////////////////////////////////////////////////////////// function sfFtpListingResponse_GetFilename (FtpListingResponse : sfFtpListingResponse_Ptr; Index : sfSize_t) return String; -- //////////////////////////////////////////////////////////// -- /// Destroy an existing Ftp directory response -- /// -- /// \param FtpDirectoryResponse : Ftp directory response to destroy -- /// -- //////////////////////////////////////////////////////////// procedure sfFtpDirectoryResponse_Destroy (FtpDirectoryResponse : sfFtpDirectoryResponse_Ptr); -- //////////////////////////////////////////////////////////// -- /// Convenience function to check if the response status code -- /// means a success -- /// -- /// \param FtpDirectoryResponse : Ftp directory response -- /// -- /// \return sfTrue if status is success (code < 400) -- /// -- //////////////////////////////////////////////////////////// function sfFtpDirectoryResponse_IsOk (FtpDirectoryResponse : sfFtpDirectoryResponse_Ptr) return sfBool; -- //////////////////////////////////////////////////////////// -- /// Get the response status code -- /// -- /// \param FtpDirectoryResponse : Ftp directory response -- /// -- /// \return Status code -- /// -- //////////////////////////////////////////////////////////// function sfFtpDirectoryResponse_GetStatus (FtpDirectoryResponse : sfFtpDirectoryResponse_Ptr) return sfFtpStatus; -- //////////////////////////////////////////////////////////// -- /// Get the full message contained in the response -- /// -- /// \param FtpDirectoryResponse : Ftp directory response -- /// -- /// \return The response message -- /// -- //////////////////////////////////////////////////////////// function sfFtpDirectoryResponse_GetMessage (FtpDirectoryResponse : sfFtpDirectoryResponse_Ptr) return String; -- //////////////////////////////////////////////////////////// -- /// Get the directory returned in the response -- /// -- /// \param FtpDirectoryResponse : Ftp directory response -- /// -- /// \return Directory name -- /// -- //////////////////////////////////////////////////////////// function sfFtpDirectoryResponse_GetDirectory (FtpDirectoryResponse : sfFtpDirectoryResponse_Ptr) return String; -- //////////////////////////////////////////////////////////// -- /// Destroy an existing Ftp response -- /// -- /// \param FtpResponse : Ftp response to destroy -- /// -- //////////////////////////////////////////////////////////// procedure sfFtpResponse_Destroy (FtpResponse : sfFtpResponse_Ptr); -- //////////////////////////////////////////////////////////// -- /// Convenience function to check if the response status code -- /// means a success -- /// -- /// \param FtpResponse : Ftp response -- /// -- /// \return sfTrue if status is success (code < 400) -- /// -- //////////////////////////////////////////////////////////// function sfFtpResponse_IsOk (FtpResponse : sfFtpResponse_Ptr) return sfBool; -- //////////////////////////////////////////////////////////// -- /// Get the response status code -- /// -- /// \param FtpResponse : Ftp response -- /// -- /// \return Status code -- /// -- //////////////////////////////////////////////////////////// function sfFtpResponse_GetStatus (FtpResponse : sfFtpResponse_Ptr) return sfFtpStatus; -- //////////////////////////////////////////////////////////// -- /// Get the full message contained in the response -- /// -- /// \param FtpResponse : Ftp response -- /// -- /// \return The response message -- /// -- //////////////////////////////////////////////////////////// function sfFtpResponse_GetMessage (FtpResponse : sfFtpResponse_Ptr) return String; -- //////////////////////////////////////////////////////////// -- /// Construct a new Ftp -- /// -- /// \return Pointer to the new Ftp -- /// -- //////////////////////////////////////////////////////////// function sfFtp_Create return sfFtp_Ptr; -- //////////////////////////////////////////////////////////// -- /// Destroy an existing Ftp -- /// -- /// \param Ftp : Ftp to destroy -- /// -- //////////////////////////////////////////////////////////// procedure sfFtp_Destroy (Ftp : sfFtp_Ptr); -- //////////////////////////////////////////////////////////// -- /// Connect to the specified FTP server -- /// -- /// \param Ftp : Ftp instance -- /// \param Server : FTP server to connect to -- /// \param Port : Port used for connection (21 by default, standard FTP port) -- /// \param Timeout : Maximum time to wait (0 to use no timeout) -- /// -- /// \return Server response to the request -- /// -- //////////////////////////////////////////////////////////// function sfFtp_Connect (Ftp : sfFtp_Ptr; Server : sfIPAddress; Port : sfUint16; Timeout : Float) return sfFtpResponse_Ptr; -- //////////////////////////////////////////////////////////// -- /// Log in using anonymous account -- /// -- /// \param Ftp : Ftp instance -- /// -- /// \return Server response to the request -- /// -- //////////////////////////////////////////////////////////// function sfFtp_LoginAnonymous (Ftp : sfFtp_Ptr) return sfFtpResponse_Ptr; -- //////////////////////////////////////////////////////////// -- /// Log in using a username and a password -- /// -- /// \param Ftp : Ftp instance -- /// \param UserName : User name -- /// \param Password : Password -- /// -- /// \return Server response to the request -- /// -- //////////////////////////////////////////////////////////// function sfFtp_Login (Ftp : sfFtp_Ptr; UserName : String; Password : String) return sfFtpResponse_Ptr; -- //////////////////////////////////////////////////////////// -- /// Close the connection with FTP server -- /// -- /// \param Ftp : Ftp instance -- /// -- /// \return Server response to the request -- /// -- //////////////////////////////////////////////////////////// function sfFtp_Disconnect (Ftp : sfFtp_Ptr) return sfFtpResponse_Ptr; -- //////////////////////////////////////////////////////////// -- /// Send a null command just to prevent from being disconnected -- /// -- /// \param Ftp : Ftp instance -- /// -- /// \return Server response to the request -- /// -- //////////////////////////////////////////////////////////// function sfFtp_KeepAlive (Ftp : sfFtp_Ptr) return sfFtpResponse_Ptr; -- //////////////////////////////////////////////////////////// -- /// Get the current working directory -- /// -- /// \param Ftp : Ftp instance -- /// -- /// \return Server response to the request -- /// -- //////////////////////////////////////////////////////////// function sfFtp_GetWorkingDirectory (Ftp : sfFtp_Ptr) return sfFtpDirectoryResponse_Ptr; -- //////////////////////////////////////////////////////////// -- /// Get the contents of the given directory -- /// (subdirectories and files) -- /// -- /// \param Ftp : Ftp instance -- /// \param Directory : Directory to list ("" by default, the current one) -- /// -- /// \return Server response to the request -- /// -- //////////////////////////////////////////////////////////// function sfFtp_GetDirectoryListing (Ftp : sfFtp_Ptr; Directory : String) return sfFtpListingResponse_Ptr; -- //////////////////////////////////////////////////////////// -- /// Change the current working directory -- /// -- /// \param Ftp : Ftp instance -- /// \param Directory : New directory, relative to the current one -- /// -- /// \return Server response to the request -- /// -- //////////////////////////////////////////////////////////// function sfFtp_ChangeDirectory (Ftp : sfFtp_Ptr; Directory : String) return sfFtpResponse_Ptr; -- //////////////////////////////////////////////////////////// -- /// Go to the parent directory of the current one -- /// -- /// \param Ftp : Ftp instance -- /// -- /// \return Server response to the request -- /// -- //////////////////////////////////////////////////////////// function sfFtp_ParentDirectory (Ftp : sfFtp_Ptr) return sfFtpResponse_Ptr; -- //////////////////////////////////////////////////////////// -- /// Create a new directory -- /// -- /// \param Ftp : Ftp instance -- /// \param Name : Name of the directory to create -- /// -- /// \return Server response to the request -- /// -- //////////////////////////////////////////////////////////// function sfFtp_MakeDirectory (Ftp : sfFtp_Ptr; Name : String) return sfFtpResponse_Ptr; -- //////////////////////////////////////////////////////////// -- /// Remove an existing directory -- /// -- /// \param Ftp : Ftp instance -- /// \param Name : Name of the directory to remove -- /// -- /// \return Server response to the request -- /// -- //////////////////////////////////////////////////////////// function sfFtp_DeleteDirectory (Ftp : sfFtp_Ptr; Name : String) return sfFtpResponse_Ptr; -- //////////////////////////////////////////////////////////// -- /// Rename a file -- /// -- /// \param Ftp : Ftp instance -- /// \param File : File to rename -- /// \param NewName : New name -- /// -- /// \return Server response to the request -- /// -- //////////////////////////////////////////////////////////// function sfFtp_RenameFile (Ftp : sfFtp_Ptr; File : String; NewName : String) return sfFtpResponse_Ptr; -- //////////////////////////////////////////////////////////// -- /// Remove an existing file -- /// -- /// \param Ftp : Ftp instance -- /// \param Name : File to remove -- /// -- /// \return Server response to the request -- /// -- //////////////////////////////////////////////////////////// function sfFtp_DeleteFile (Ftp : sfFtp_Ptr; Name : String) return sfFtpResponse_Ptr; -- //////////////////////////////////////////////////////////// -- /// Download a file from the server -- /// -- /// \param Ftp : Ftp instance -- /// \param DistantFile : Path of the distant file to download -- /// \param DestPath : Where to put to file on the local computer -- /// \param Mode : Transfer mode (binary by default) -- /// -- /// \return Server response to the request -- /// -- //////////////////////////////////////////////////////////// function sfFtp_Download (Ftp : sfFtp_Ptr; DistantFile : String; DestPath : String; Mode : sfFtpTransferMode) return sfFtpResponse_Ptr; -- //////////////////////////////////////////////////////////// -- /// Upload a file to the server -- /// -- /// \param Ftp : Ftp instance -- /// \param LocalFile : Path of the local file to upload -- /// \param DestPath : Where to put to file on the server -- /// \param Mode : Transfer mode (binary by default) -- /// -- /// \return Server response to the request -- /// -- //////////////////////////////////////////////////////////// function sfFtp_Upload (Ftp : sfFtp_Ptr; LocalFile : String; DestPath : String; Mode : sfFtpTransferMode) return sfFtpResponse_Ptr; private pragma Convention (C, sfFtpTransferMode); pragma Import (C, sfFtpListingResponse_Destroy, "sfFtpListingResponse_Destroy"); pragma Import (C, sfFtpListingResponse_IsOk, "sfFtpListingResponse_IsOk"); pragma Import (C, sfFtpListingResponse_GetStatus, "sfFtpListingResponse_GetStatus"); pragma Import (C, sfFtpListingResponse_GetCount, "sfFtpListingResponse_GetCount"); pragma Import (C, sfFtpDirectoryResponse_Destroy, "sfFtpDirectoryResponse_Destroy"); pragma Import (C, sfFtpDirectoryResponse_IsOk, "sfFtpDirectoryResponse_IsOk"); pragma Import (C, sfFtpDirectoryResponse_GetStatus, "sfFtpDirectoryResponse_GetStatus"); pragma Import (C, sfFtpResponse_Destroy, "sfFtpResponse_Destroy"); pragma Import (C, sfFtpResponse_IsOk, "sfFtpResponse_IsOk"); pragma Import (C, sfFtpResponse_GetStatus, "sfFtpResponse_GetStatus"); pragma Import (C, sfFtp_Create, "sfFtp_Create"); pragma Import (C, sfFtp_Destroy, "sfFtp_Destroy"); pragma Import (C, sfFtp_Connect, "sfFtp_Connect"); pragma Import (C, sfFtp_LoginAnonymous, "sfFtp_LoginAnonymous"); pragma Import (C, sfFtp_Disconnect, "sfFtp_Disconnect"); pragma Import (C, sfFtp_KeepAlive, "sfFtp_KeepAlive"); pragma Import (C, sfFtp_GetWorkingDirectory, "sfFtp_GetWorkingDirectory"); pragma Import (C, sfFtp_ParentDirectory, "sfFtp_ParentDirectory"); end Sf.Network.Ftp;
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- P R J . P A R S -- -- -- -- S p e c -- -- -- -- Copyright (C) 2000-2005, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 2, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING. If not, write -- -- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, -- -- Boston, MA 02110-1301, USA. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- Implements the parsing of project files package Prj.Pars is procedure Set_Verbosity (To : Verbosity); -- Set the verbosity when parsing the project files procedure Parse (In_Tree : Project_Tree_Ref; Project : out Project_Id; Project_File_Name : String; Packages_To_Check : String_List_Access := All_Packages; When_No_Sources : Error_Warning := Error); -- Parse a project files and all its imported project files, in the -- project tree In_Tree. -- -- If parsing is successful, Project_Id is the project ID -- of the main project file; otherwise, Project_Id is set -- to No_Project. -- -- Packages_To_Check indicates the packages where any unknown attribute -- produces an error. For other packages, an unknown attribute produces -- a warning. -- -- When_No_Sources indicates what should be done when no sources -- are found in a project for a specified or implied language. end Prj.Pars;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME LIBRARY (GNARL) COMPONENTS -- -- -- -- S Y S T E M . S T A C K _ C H E C K I N G . O P E R A T I O N S -- -- -- -- S p e c -- -- -- -- Copyright (C) 1999-2009, Free Software Foundation, Inc. -- -- -- -- GNARL is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNARL was developed by the GNARL team at Florida State University. -- -- Extensive contributions were provided by Ada Core Technologies, Inc. -- -- -- ------------------------------------------------------------------------------ -- This version of this package is for implementations which use -- the stack limit approach (the limit of the stack is stored into a per -- thread variable). pragma Restrictions (No_Elaboration_Code); -- We want to guarantee the absence of elaboration code because the binder -- does not handle references to this package. pragma Polling (Off); -- Turn off polling, we do not want polling to take place during stack -- checking operations. It causes infinite loops and other problems. package System.Stack_Checking.Operations is pragma Preelaborate; procedure Initialize_Stack_Limit; pragma Export (C, Initialize_Stack_Limit, "__gnat_initialize_stack_limit"); -- This procedure is called before elaboration to setup the stack limit -- for the environment task and to register the hook to be called at -- task creation. end System.Stack_Checking.Operations;
------------------------------------------------------------------------------ -- -- -- 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.Generic_Hash; function AMF.DG.Clip_Paths.Hash is new AMF.Elements.Generic_Hash (DG_Clip_Path, DG_Clip_Path_Access);
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Ada Modeling Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2011-2012, Vadim Godunko <vgodunko@gmail.com> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with AMF.Internals.Tables.CMOF_Attributes; with AMF.String_Collections.Internals; with AMF.Visitors.CMOF_Iterators; with AMF.Visitors.CMOF_Visitors; package body AMF.Internals.CMOF_Opaque_Expressions is use AMF.Internals.Tables.CMOF_Attributes; ------------------- -- Enter_Element -- ------------------- overriding procedure Enter_Element (Self : not null access constant CMOF_Opaque_Expression_Proxy; Visitor : in out AMF.Visitors.Abstract_Visitor'Class; Control : in out AMF.Visitors.Traverse_Control) is begin if Visitor in AMF.Visitors.CMOF_Visitors.CMOF_Visitor'Class then AMF.Visitors.CMOF_Visitors.CMOF_Visitor'Class (Visitor).Enter_Opaque_Expression (AMF.CMOF.Opaque_Expressions.CMOF_Opaque_Expression_Access (Self), Control); end if; end Enter_Element; ------------------- -- Leave_Element -- ------------------- overriding procedure Leave_Element (Self : not null access constant CMOF_Opaque_Expression_Proxy; Visitor : in out AMF.Visitors.Abstract_Visitor'Class; Control : in out AMF.Visitors.Traverse_Control) is begin if Visitor in AMF.Visitors.CMOF_Visitors.CMOF_Visitor'Class then AMF.Visitors.CMOF_Visitors.CMOF_Visitor'Class (Visitor).Leave_Opaque_Expression (AMF.CMOF.Opaque_Expressions.CMOF_Opaque_Expression_Access (Self), Control); end if; end Leave_Element; ------------------- -- Visit_Element -- ------------------- overriding procedure Visit_Element (Self : not null access constant CMOF_Opaque_Expression_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.CMOF_Iterators.CMOF_Iterator'Class then AMF.Visitors.CMOF_Iterators.CMOF_Iterator'Class (Iterator).Visit_Opaque_Expression (Visitor, AMF.CMOF.Opaque_Expressions.CMOF_Opaque_Expression_Access (Self), Control); end if; end Visit_Element; ------------------------ -- All_Owned_Elements -- ------------------------ overriding function All_Owned_Elements (Self : not null access constant CMOF_Opaque_Expression_Proxy) return AMF.CMOF.Elements.Collections.Set_Of_CMOF_Element is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "All_Owned_Elements unimplemented"); raise Program_Error; return All_Owned_Elements (Self); end All_Owned_Elements; ------------------------ -- Get_Qualified_Name -- ------------------------ overriding function Get_Qualified_Name (Self : not null access constant CMOF_Opaque_Expression_Proxy) return Optional_String is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "Get_Qualified_Name unimplemented"); raise Program_Error; return Get_Qualified_Name (Self); end Get_Qualified_Name; ----------------------------- -- Is_Distinguishable_From -- ----------------------------- overriding function Is_Distinguishable_From (Self : not null access constant CMOF_Opaque_Expression_Proxy; N : AMF.CMOF.Named_Elements.CMOF_Named_Element_Access; Ns : AMF.CMOF.Namespaces.CMOF_Namespace_Access) return Boolean is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "Is_Distinguishable_From unimplemented"); raise Program_Error; return Is_Distinguishable_From (Self, N, Ns); end Is_Distinguishable_From; ------------------- -- Is_Computable -- ------------------- overriding function Is_Computable (Self : not null access constant CMOF_Opaque_Expression_Proxy) return Boolean is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "Is_Computable unimplemented"); raise Program_Error; return Is_Computable (Self); end Is_Computable; ------------------- -- Integer_Value -- ------------------- overriding function Integer_Value (Self : not null access constant CMOF_Opaque_Expression_Proxy) return Integer is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "Integer_Value unimplemented"); raise Program_Error; return Integer_Value (Self); end Integer_Value; ------------------- -- Boolean_Value -- ------------------- overriding function Boolean_Value (Self : not null access constant CMOF_Opaque_Expression_Proxy) return Boolean is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "Boolean_Value unimplemented"); raise Program_Error; return Boolean_Value (Self); end Boolean_Value; ------------------ -- String_Value -- ------------------ overriding function String_Value (Self : not null access constant CMOF_Opaque_Expression_Proxy) return League.Strings.Universal_String is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "String_Value unimplemented"); raise Program_Error; return String_Value (Self); end String_Value; --------------------- -- Unlimited_Value -- --------------------- overriding function Unlimited_Value (Self : not null access constant CMOF_Opaque_Expression_Proxy) return Unlimited_Natural is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "Unlimited_Value unimplemented"); raise Program_Error; return Unlimited_Value (Self); end Unlimited_Value; ------------- -- Is_Null -- ------------- overriding function Is_Null (Self : not null access constant CMOF_Opaque_Expression_Proxy) return Boolean is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "Is_Null unimplemented"); raise Program_Error; return Is_Null (Self); end Is_Null; -------------- -- Get_Body -- -------------- overriding function Get_Body (Self : not null access constant CMOF_Opaque_Expression_Proxy) return AMF.String_Collections.Sequence_Of_String is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "Get_Body unimplemented"); return AMF.String_Collections.Internals.Wrap (Internal_Get_Body (Self.Element)); end Get_Body; ------------------ -- Get_Language -- ------------------ overriding function Get_Language (Self : not null access constant CMOF_Opaque_Expression_Proxy) return AMF.String_Collections.Ordered_Set_Of_String is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "Get_Language unimplemented"); return AMF.String_Collections.Internals.Wrap (Internal_Get_Language (Self.Element)); end Get_Language; end AMF.Internals.CMOF_Opaque_Expressions;
--- util-pipes.adb.orig 2021-09-04 15:38:31 UTC +++ util-pipes.adb @@ -132,16 +132,8 @@ package body Util.Pipes is -- <stdio.h>, the ISO C standard requires that they also be available -- as real functions. Hence we may import them directly. - pragma Linker_Options ("util-nl.o"); - - function Get_NL return Interfaces.C.int; - pragma Import (C, Get_NL, "get_newline"); - - New_Line : constant Interfaces.C.int := Get_NL; - -- '\n' is replaced at compile-time by a C compiler. Hence we cannot - -- use fputs (To_C ("\n")) to generate whatever C expects as a newline. - -- Therefore, we have a little C wrapper which just returns '\n', and - -- we remember that value here. + New_Line : constant Interfaces.C.int := Interfaces.C.char'Pos + (Interfaces.C.nul); end Std_IO;
-- This spec has been automatically generated from STM32L4x3.svd pragma Restrictions (No_Elaboration_Code); pragma Ada_2012; pragma Style_Checks (Off); with HAL; with System; package STM32_SVD.RTC is pragma Preelaborate; --------------- -- Registers -- --------------- subtype TR_SU_Field is HAL.UInt4; subtype TR_ST_Field is HAL.UInt3; subtype TR_MNU_Field is HAL.UInt4; subtype TR_MNT_Field is HAL.UInt3; subtype TR_HU_Field is HAL.UInt4; subtype TR_HT_Field is HAL.UInt2; -- time register type TR_Register is record -- Second units in BCD format SU : TR_SU_Field := 16#0#; -- Second tens in BCD format ST : TR_ST_Field := 16#0#; -- unspecified Reserved_7_7 : HAL.Bit := 16#0#; -- Minute units in BCD format MNU : TR_MNU_Field := 16#0#; -- Minute tens in BCD format MNT : TR_MNT_Field := 16#0#; -- unspecified Reserved_15_15 : HAL.Bit := 16#0#; -- Hour units in BCD format HU : TR_HU_Field := 16#0#; -- Hour tens in BCD format HT : TR_HT_Field := 16#0#; -- AM/PM notation PM : Boolean := False; -- unspecified Reserved_23_31 : HAL.UInt9 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for TR_Register use record SU at 0 range 0 .. 3; ST at 0 range 4 .. 6; Reserved_7_7 at 0 range 7 .. 7; MNU at 0 range 8 .. 11; MNT at 0 range 12 .. 14; Reserved_15_15 at 0 range 15 .. 15; HU at 0 range 16 .. 19; HT at 0 range 20 .. 21; PM at 0 range 22 .. 22; Reserved_23_31 at 0 range 23 .. 31; end record; subtype DR_DU_Field is HAL.UInt4; subtype DR_DT_Field is HAL.UInt2; subtype DR_MU_Field is HAL.UInt4; subtype DR_WDU_Field is HAL.UInt3; subtype DR_YU_Field is HAL.UInt4; subtype DR_YT_Field is HAL.UInt4; -- date register type DR_Register is record -- Date units in BCD format DU : DR_DU_Field := 16#1#; -- Date tens in BCD format DT : DR_DT_Field := 16#0#; -- unspecified Reserved_6_7 : HAL.UInt2 := 16#0#; -- Month units in BCD format MU : DR_MU_Field := 16#1#; -- Month tens in BCD format MT : Boolean := False; -- Week day units WDU : DR_WDU_Field := 16#1#; -- Year units in BCD format YU : DR_YU_Field := 16#0#; -- Year tens in BCD format YT : DR_YT_Field := 16#0#; -- unspecified Reserved_24_31 : HAL.UInt8 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for DR_Register use record DU at 0 range 0 .. 3; DT at 0 range 4 .. 5; Reserved_6_7 at 0 range 6 .. 7; MU at 0 range 8 .. 11; MT at 0 range 12 .. 12; WDU at 0 range 13 .. 15; YU at 0 range 16 .. 19; YT at 0 range 20 .. 23; Reserved_24_31 at 0 range 24 .. 31; end record; subtype CR_WCKSEL_Field is HAL.UInt3; subtype CR_OSEL_Field is HAL.UInt2; -- control register type CR_Register is record -- Wakeup clock selection WCKSEL : CR_WCKSEL_Field := 16#0#; -- Time-stamp event active edge TSEDGE : Boolean := False; -- Reference clock detection enable (50 or 60 Hz) REFCKON : Boolean := False; -- Bypass the shadow registers BYPSHAD : Boolean := False; -- Hour format FMT : Boolean := False; -- unspecified Reserved_7_7 : HAL.Bit := 16#0#; -- Alarm A enable ALRAE : Boolean := False; -- Alarm B enable ALRBE : Boolean := False; -- Wakeup timer enable WUTE : Boolean := False; -- Time stamp enable TSE : Boolean := False; -- Alarm A interrupt enable ALRAIE : Boolean := False; -- Alarm B interrupt enable ALRBIE : Boolean := False; -- Wakeup timer interrupt enable WUTIE : Boolean := False; -- Time-stamp interrupt enable TSIE : Boolean := False; -- Add 1 hour (summer time change) ADD1H : Boolean := False; -- Subtract 1 hour (winter time change) SUB1H : Boolean := False; -- Backup BKP : Boolean := False; -- Calibration output selection COSEL : Boolean := False; -- Output polarity POL : Boolean := False; -- Output selection OSEL : CR_OSEL_Field := 16#0#; -- Calibration output enable COE : Boolean := False; -- timestamp on internal event enable ITSE : Boolean := False; -- unspecified Reserved_25_31 : HAL.UInt7 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for CR_Register use record WCKSEL at 0 range 0 .. 2; TSEDGE at 0 range 3 .. 3; REFCKON at 0 range 4 .. 4; BYPSHAD at 0 range 5 .. 5; FMT at 0 range 6 .. 6; Reserved_7_7 at 0 range 7 .. 7; ALRAE at 0 range 8 .. 8; ALRBE at 0 range 9 .. 9; WUTE at 0 range 10 .. 10; TSE at 0 range 11 .. 11; ALRAIE at 0 range 12 .. 12; ALRBIE at 0 range 13 .. 13; WUTIE at 0 range 14 .. 14; TSIE at 0 range 15 .. 15; ADD1H at 0 range 16 .. 16; SUB1H at 0 range 17 .. 17; BKP at 0 range 18 .. 18; COSEL at 0 range 19 .. 19; POL at 0 range 20 .. 20; OSEL at 0 range 21 .. 22; COE at 0 range 23 .. 23; ITSE at 0 range 24 .. 24; Reserved_25_31 at 0 range 25 .. 31; end record; -- initialization and status register type ISR_Register is record -- Read-only. Alarm A write flag ALRAWF : Boolean := True; -- Read-only. Alarm B write flag ALRBWF : Boolean := True; -- Read-only. Wakeup timer write flag WUTWF : Boolean := True; -- Shift operation pending SHPF : Boolean := False; -- Read-only. Initialization status flag INITS : Boolean := False; -- Registers synchronization flag RSF : Boolean := False; -- Read-only. Initialization flag INITF : Boolean := False; -- Initialization mode INIT : Boolean := False; -- Alarm A flag ALRAF : Boolean := False; -- Alarm B flag ALRBF : Boolean := False; -- Wakeup timer flag WUTF : Boolean := False; -- Time-stamp flag TSF : Boolean := False; -- Time-stamp overflow flag TSOVF : Boolean := False; -- Tamper detection flag TAMP1F : Boolean := False; -- RTC_TAMP2 detection flag TAMP2F : Boolean := False; -- RTC_TAMP3 detection flag TAMP3F : Boolean := False; -- Read-only. Recalibration pending Flag RECALPF : Boolean := False; -- unspecified Reserved_17_31 : HAL.UInt15 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for ISR_Register use record ALRAWF at 0 range 0 .. 0; ALRBWF at 0 range 1 .. 1; WUTWF at 0 range 2 .. 2; SHPF at 0 range 3 .. 3; INITS at 0 range 4 .. 4; RSF at 0 range 5 .. 5; INITF at 0 range 6 .. 6; INIT at 0 range 7 .. 7; ALRAF at 0 range 8 .. 8; ALRBF at 0 range 9 .. 9; WUTF at 0 range 10 .. 10; TSF at 0 range 11 .. 11; TSOVF at 0 range 12 .. 12; TAMP1F at 0 range 13 .. 13; TAMP2F at 0 range 14 .. 14; TAMP3F at 0 range 15 .. 15; RECALPF at 0 range 16 .. 16; Reserved_17_31 at 0 range 17 .. 31; end record; subtype PRER_PREDIV_S_Field is HAL.UInt15; subtype PRER_PREDIV_A_Field is HAL.UInt7; -- prescaler register type PRER_Register is record -- Synchronous prescaler factor PREDIV_S : PRER_PREDIV_S_Field := 16#FF#; -- unspecified Reserved_15_15 : HAL.Bit := 16#0#; -- Asynchronous prescaler factor PREDIV_A : PRER_PREDIV_A_Field := 16#7F#; -- unspecified Reserved_23_31 : HAL.UInt9 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for PRER_Register use record PREDIV_S at 0 range 0 .. 14; Reserved_15_15 at 0 range 15 .. 15; PREDIV_A at 0 range 16 .. 22; Reserved_23_31 at 0 range 23 .. 31; end record; subtype WUTR_WUT_Field is HAL.UInt16; -- wakeup timer register type WUTR_Register is record -- Wakeup auto-reload value bits WUT : WUTR_WUT_Field := 16#FFFF#; -- unspecified Reserved_16_31 : HAL.UInt16 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for WUTR_Register use record WUT at 0 range 0 .. 15; Reserved_16_31 at 0 range 16 .. 31; end record; subtype ALRMAR_SU_Field is HAL.UInt4; subtype ALRMAR_ST_Field is HAL.UInt3; subtype ALRMAR_MNU_Field is HAL.UInt4; subtype ALRMAR_MNT_Field is HAL.UInt3; subtype ALRMAR_HU_Field is HAL.UInt4; subtype ALRMAR_HT_Field is HAL.UInt2; subtype ALRMAR_DU_Field is HAL.UInt4; subtype ALRMAR_DT_Field is HAL.UInt2; -- alarm A register type ALRMAR_Register is record -- Second units in BCD format SU : ALRMAR_SU_Field := 16#0#; -- Second tens in BCD format ST : ALRMAR_ST_Field := 16#0#; -- Alarm A seconds mask MSK1 : Boolean := False; -- Minute units in BCD format MNU : ALRMAR_MNU_Field := 16#0#; -- Minute tens in BCD format MNT : ALRMAR_MNT_Field := 16#0#; -- Alarm A minutes mask MSK2 : Boolean := False; -- Hour units in BCD format HU : ALRMAR_HU_Field := 16#0#; -- Hour tens in BCD format HT : ALRMAR_HT_Field := 16#0#; -- AM/PM notation PM : Boolean := False; -- Alarm A hours mask MSK3 : Boolean := False; -- Date units or day in BCD format DU : ALRMAR_DU_Field := 16#0#; -- Date tens in BCD format DT : ALRMAR_DT_Field := 16#0#; -- Week day selection WDSEL : Boolean := False; -- Alarm A date mask MSK4 : Boolean := False; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for ALRMAR_Register use record SU at 0 range 0 .. 3; ST at 0 range 4 .. 6; MSK1 at 0 range 7 .. 7; MNU at 0 range 8 .. 11; MNT at 0 range 12 .. 14; MSK2 at 0 range 15 .. 15; HU at 0 range 16 .. 19; HT at 0 range 20 .. 21; PM at 0 range 22 .. 22; MSK3 at 0 range 23 .. 23; DU at 0 range 24 .. 27; DT at 0 range 28 .. 29; WDSEL at 0 range 30 .. 30; MSK4 at 0 range 31 .. 31; end record; subtype ALRMBR_SU_Field is HAL.UInt4; subtype ALRMBR_ST_Field is HAL.UInt3; subtype ALRMBR_MNU_Field is HAL.UInt4; subtype ALRMBR_MNT_Field is HAL.UInt3; subtype ALRMBR_HU_Field is HAL.UInt4; subtype ALRMBR_HT_Field is HAL.UInt2; subtype ALRMBR_DU_Field is HAL.UInt4; subtype ALRMBR_DT_Field is HAL.UInt2; -- alarm B register type ALRMBR_Register is record -- Second units in BCD format SU : ALRMBR_SU_Field := 16#0#; -- Second tens in BCD format ST : ALRMBR_ST_Field := 16#0#; -- Alarm B seconds mask MSK1 : Boolean := False; -- Minute units in BCD format MNU : ALRMBR_MNU_Field := 16#0#; -- Minute tens in BCD format MNT : ALRMBR_MNT_Field := 16#0#; -- Alarm B minutes mask MSK2 : Boolean := False; -- Hour units in BCD format HU : ALRMBR_HU_Field := 16#0#; -- Hour tens in BCD format HT : ALRMBR_HT_Field := 16#0#; -- AM/PM notation PM : Boolean := False; -- Alarm B hours mask MSK3 : Boolean := False; -- Date units or day in BCD format DU : ALRMBR_DU_Field := 16#0#; -- Date tens in BCD format DT : ALRMBR_DT_Field := 16#0#; -- Week day selection WDSEL : Boolean := False; -- Alarm B date mask MSK4 : Boolean := False; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for ALRMBR_Register use record SU at 0 range 0 .. 3; ST at 0 range 4 .. 6; MSK1 at 0 range 7 .. 7; MNU at 0 range 8 .. 11; MNT at 0 range 12 .. 14; MSK2 at 0 range 15 .. 15; HU at 0 range 16 .. 19; HT at 0 range 20 .. 21; PM at 0 range 22 .. 22; MSK3 at 0 range 23 .. 23; DU at 0 range 24 .. 27; DT at 0 range 28 .. 29; WDSEL at 0 range 30 .. 30; MSK4 at 0 range 31 .. 31; end record; subtype WPR_KEY_Field is HAL.UInt8; -- write protection register type WPR_Register is record -- Write-only. Write protection key KEY : WPR_KEY_Field := 16#0#; -- unspecified Reserved_8_31 : HAL.UInt24 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for WPR_Register use record KEY at 0 range 0 .. 7; Reserved_8_31 at 0 range 8 .. 31; end record; subtype SSR_SS_Field is HAL.UInt16; -- sub second register type SSR_Register is record -- Read-only. Sub second value SS : SSR_SS_Field; -- unspecified Reserved_16_31 : HAL.UInt16; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for SSR_Register use record SS at 0 range 0 .. 15; Reserved_16_31 at 0 range 16 .. 31; end record; subtype SHIFTR_SUBFS_Field is HAL.UInt15; -- shift control register type SHIFTR_Register is record -- Write-only. Subtract a fraction of a second SUBFS : SHIFTR_SUBFS_Field := 16#0#; -- unspecified Reserved_15_30 : HAL.UInt16 := 16#0#; -- Write-only. Add one second ADD1S : Boolean := False; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for SHIFTR_Register use record SUBFS at 0 range 0 .. 14; Reserved_15_30 at 0 range 15 .. 30; ADD1S at 0 range 31 .. 31; end record; subtype TSTR_SU_Field is HAL.UInt4; subtype TSTR_ST_Field is HAL.UInt3; subtype TSTR_MNU_Field is HAL.UInt4; subtype TSTR_MNT_Field is HAL.UInt3; subtype TSTR_HU_Field is HAL.UInt4; subtype TSTR_HT_Field is HAL.UInt2; -- time stamp time register type TSTR_Register is record -- Read-only. Second units in BCD format SU : TSTR_SU_Field; -- Read-only. Second tens in BCD format ST : TSTR_ST_Field; -- unspecified Reserved_7_7 : HAL.Bit; -- Read-only. Minute units in BCD format MNU : TSTR_MNU_Field; -- Read-only. Minute tens in BCD format MNT : TSTR_MNT_Field; -- unspecified Reserved_15_15 : HAL.Bit; -- Read-only. Hour units in BCD format HU : TSTR_HU_Field; -- Read-only. Hour tens in BCD format HT : TSTR_HT_Field; -- Read-only. AM/PM notation PM : Boolean; -- unspecified Reserved_23_31 : HAL.UInt9; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for TSTR_Register use record SU at 0 range 0 .. 3; ST at 0 range 4 .. 6; Reserved_7_7 at 0 range 7 .. 7; MNU at 0 range 8 .. 11; MNT at 0 range 12 .. 14; Reserved_15_15 at 0 range 15 .. 15; HU at 0 range 16 .. 19; HT at 0 range 20 .. 21; PM at 0 range 22 .. 22; Reserved_23_31 at 0 range 23 .. 31; end record; subtype TSDR_DU_Field is HAL.UInt4; subtype TSDR_DT_Field is HAL.UInt2; subtype TSDR_MU_Field is HAL.UInt4; subtype TSDR_WDU_Field is HAL.UInt3; -- time stamp date register type TSDR_Register is record -- Read-only. Date units in BCD format DU : TSDR_DU_Field; -- Read-only. Date tens in BCD format DT : TSDR_DT_Field; -- unspecified Reserved_6_7 : HAL.UInt2; -- Read-only. Month units in BCD format MU : TSDR_MU_Field; -- Read-only. Month tens in BCD format MT : Boolean; -- Read-only. Week day units WDU : TSDR_WDU_Field; -- unspecified Reserved_16_31 : HAL.UInt16; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for TSDR_Register use record DU at 0 range 0 .. 3; DT at 0 range 4 .. 5; Reserved_6_7 at 0 range 6 .. 7; MU at 0 range 8 .. 11; MT at 0 range 12 .. 12; WDU at 0 range 13 .. 15; Reserved_16_31 at 0 range 16 .. 31; end record; subtype TSSSR_SS_Field is HAL.UInt16; -- timestamp sub second register type TSSSR_Register is record -- Read-only. Sub second value SS : TSSSR_SS_Field; -- unspecified Reserved_16_31 : HAL.UInt16; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for TSSSR_Register use record SS at 0 range 0 .. 15; Reserved_16_31 at 0 range 16 .. 31; end record; subtype CALR_CALM_Field is HAL.UInt9; -- calibration register type CALR_Register is record -- Calibration minus CALM : CALR_CALM_Field := 16#0#; -- unspecified Reserved_9_12 : HAL.UInt4 := 16#0#; -- Use a 16-second calibration cycle period CALW16 : Boolean := False; -- Use an 8-second calibration cycle period CALW8 : Boolean := False; -- Increase frequency of RTC by 488.5 ppm CALP : Boolean := False; -- unspecified Reserved_16_31 : HAL.UInt16 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for CALR_Register use record CALM at 0 range 0 .. 8; Reserved_9_12 at 0 range 9 .. 12; CALW16 at 0 range 13 .. 13; CALW8 at 0 range 14 .. 14; CALP at 0 range 15 .. 15; Reserved_16_31 at 0 range 16 .. 31; end record; subtype TAMPCR_TAMPFREQ_Field is HAL.UInt3; subtype TAMPCR_TAMPFLT_Field is HAL.UInt2; subtype TAMPCR_TAMPPRCH_Field is HAL.UInt2; -- tamper configuration register type TAMPCR_Register is record -- Tamper 1 detection enable TAMP1E : Boolean := False; -- Active level for tamper 1 TAMP1TRG : Boolean := False; -- Tamper interrupt enable TAMPIE : Boolean := False; -- Tamper 2 detection enable TAMP2E : Boolean := False; -- Active level for tamper 2 TAMP2TRG : Boolean := False; -- Tamper 3 detection enable TAMP3E : Boolean := False; -- Active level for tamper 3 TAMP3TRG : Boolean := False; -- Activate timestamp on tamper detection event TAMPTS : Boolean := False; -- Tamper sampling frequency TAMPFREQ : TAMPCR_TAMPFREQ_Field := 16#0#; -- Tamper filter count TAMPFLT : TAMPCR_TAMPFLT_Field := 16#0#; -- Tamper precharge duration TAMPPRCH : TAMPCR_TAMPPRCH_Field := 16#0#; -- TAMPER pull-up disable TAMPPUDIS : Boolean := False; -- Tamper 1 interrupt enable TAMP1IE : Boolean := False; -- Tamper 1 no erase TAMP1NOERASE : Boolean := False; -- Tamper 1 mask flag TAMP1MF : Boolean := False; -- Tamper 2 interrupt enable TAMP2IE : Boolean := False; -- Tamper 2 no erase TAMP2NOERASE : Boolean := False; -- Tamper 2 mask flag TAMP2MF : Boolean := False; -- Tamper 3 interrupt enable TAMP3IE : Boolean := False; -- Tamper 3 no erase TAMP3NOERASE : Boolean := False; -- Tamper 3 mask flag TAMP3MF : Boolean := False; -- unspecified Reserved_25_31 : HAL.UInt7 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for TAMPCR_Register use record TAMP1E at 0 range 0 .. 0; TAMP1TRG at 0 range 1 .. 1; TAMPIE at 0 range 2 .. 2; TAMP2E at 0 range 3 .. 3; TAMP2TRG at 0 range 4 .. 4; TAMP3E at 0 range 5 .. 5; TAMP3TRG at 0 range 6 .. 6; TAMPTS at 0 range 7 .. 7; TAMPFREQ at 0 range 8 .. 10; TAMPFLT at 0 range 11 .. 12; TAMPPRCH at 0 range 13 .. 14; TAMPPUDIS at 0 range 15 .. 15; TAMP1IE at 0 range 16 .. 16; TAMP1NOERASE at 0 range 17 .. 17; TAMP1MF at 0 range 18 .. 18; TAMP2IE at 0 range 19 .. 19; TAMP2NOERASE at 0 range 20 .. 20; TAMP2MF at 0 range 21 .. 21; TAMP3IE at 0 range 22 .. 22; TAMP3NOERASE at 0 range 23 .. 23; TAMP3MF at 0 range 24 .. 24; Reserved_25_31 at 0 range 25 .. 31; end record; subtype ALRMASSR_SS_Field is HAL.UInt15; subtype ALRMASSR_MASKSS_Field is HAL.UInt4; -- alarm A sub second register type ALRMASSR_Register is record -- Sub seconds value SS : ALRMASSR_SS_Field := 16#0#; -- unspecified Reserved_15_23 : HAL.UInt9 := 16#0#; -- Mask the most-significant bits starting at this bit MASKSS : ALRMASSR_MASKSS_Field := 16#0#; -- unspecified Reserved_28_31 : HAL.UInt4 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for ALRMASSR_Register use record SS at 0 range 0 .. 14; Reserved_15_23 at 0 range 15 .. 23; MASKSS at 0 range 24 .. 27; Reserved_28_31 at 0 range 28 .. 31; end record; subtype ALRMBSSR_SS_Field is HAL.UInt15; subtype ALRMBSSR_MASKSS_Field is HAL.UInt4; -- alarm B sub second register type ALRMBSSR_Register is record -- Sub seconds value SS : ALRMBSSR_SS_Field := 16#0#; -- unspecified Reserved_15_23 : HAL.UInt9 := 16#0#; -- Mask the most-significant bits starting at this bit MASKSS : ALRMBSSR_MASKSS_Field := 16#0#; -- unspecified Reserved_28_31 : HAL.UInt4 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for ALRMBSSR_Register use record SS at 0 range 0 .. 14; Reserved_15_23 at 0 range 15 .. 23; MASKSS at 0 range 24 .. 27; Reserved_28_31 at 0 range 28 .. 31; end record; -- option register type OR_Register is record -- RTC_ALARM on PC13 output type RTC_ALARM_TYPE : Boolean := False; -- RTC_OUT remap RTC_OUT_RMP : Boolean := False; -- unspecified Reserved_2_31 : HAL.UInt30 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for OR_Register use record RTC_ALARM_TYPE at 0 range 0 .. 0; RTC_OUT_RMP at 0 range 1 .. 1; Reserved_2_31 at 0 range 2 .. 31; end record; ----------------- -- Peripherals -- ----------------- -- Real-time clock type RTC_Peripheral is record -- time register TR : aliased TR_Register; -- date register DR : aliased DR_Register; -- control register CR : aliased CR_Register; -- initialization and status register ISR : aliased ISR_Register; -- prescaler register PRER : aliased PRER_Register; -- wakeup timer register WUTR : aliased WUTR_Register; -- alarm A register ALRMAR : aliased ALRMAR_Register; -- alarm B register ALRMBR : aliased ALRMBR_Register; -- write protection register WPR : aliased WPR_Register; -- sub second register SSR : aliased SSR_Register; -- shift control register SHIFTR : aliased SHIFTR_Register; -- time stamp time register TSTR : aliased TSTR_Register; -- time stamp date register TSDR : aliased TSDR_Register; -- timestamp sub second register TSSSR : aliased TSSSR_Register; -- calibration register CALR : aliased CALR_Register; -- tamper configuration register TAMPCR : aliased TAMPCR_Register; -- alarm A sub second register ALRMASSR : aliased ALRMASSR_Register; -- alarm B sub second register ALRMBSSR : aliased ALRMBSSR_Register; -- option register OR_k : aliased OR_Register; -- backup register BKP0R : aliased HAL.UInt32; -- backup register BKP1R : aliased HAL.UInt32; -- backup register BKP2R : aliased HAL.UInt32; -- backup register BKP3R : aliased HAL.UInt32; -- backup register BKP4R : aliased HAL.UInt32; -- backup register BKP5R : aliased HAL.UInt32; -- backup register BKP6R : aliased HAL.UInt32; -- backup register BKP7R : aliased HAL.UInt32; -- backup register BKP8R : aliased HAL.UInt32; -- backup register BKP9R : aliased HAL.UInt32; -- backup register BKP10R : aliased HAL.UInt32; -- backup register BKP11R : aliased HAL.UInt32; -- backup register BKP12R : aliased HAL.UInt32; -- backup register BKP13R : aliased HAL.UInt32; -- backup register BKP14R : aliased HAL.UInt32; -- backup register BKP15R : aliased HAL.UInt32; -- backup register BKP16R : aliased HAL.UInt32; -- backup register BKP17R : aliased HAL.UInt32; -- backup register BKP18R : aliased HAL.UInt32; -- backup register BKP19R : aliased HAL.UInt32; -- backup register BKP20R : aliased HAL.UInt32; -- backup register BKP21R : aliased HAL.UInt32; -- backup register BKP22R : aliased HAL.UInt32; -- backup register BKP23R : aliased HAL.UInt32; -- backup register BKP24R : aliased HAL.UInt32; -- backup register BKP25R : aliased HAL.UInt32; -- backup register BKP26R : aliased HAL.UInt32; -- backup register BKP27R : aliased HAL.UInt32; -- backup register BKP28R : aliased HAL.UInt32; -- backup register BKP29R : aliased HAL.UInt32; -- backup register BKP30R : aliased HAL.UInt32; -- backup register BKP31R : aliased HAL.UInt32; end record with Volatile; for RTC_Peripheral use record TR at 16#0# range 0 .. 31; DR at 16#4# range 0 .. 31; CR at 16#8# range 0 .. 31; ISR at 16#C# range 0 .. 31; PRER at 16#10# range 0 .. 31; WUTR at 16#14# range 0 .. 31; ALRMAR at 16#1C# range 0 .. 31; ALRMBR at 16#20# range 0 .. 31; WPR at 16#24# range 0 .. 31; SSR at 16#28# range 0 .. 31; SHIFTR at 16#2C# range 0 .. 31; TSTR at 16#30# range 0 .. 31; TSDR at 16#34# range 0 .. 31; TSSSR at 16#38# range 0 .. 31; CALR at 16#3C# range 0 .. 31; TAMPCR at 16#40# range 0 .. 31; ALRMASSR at 16#44# range 0 .. 31; ALRMBSSR at 16#48# range 0 .. 31; OR_k at 16#4C# range 0 .. 31; BKP0R at 16#50# range 0 .. 31; BKP1R at 16#54# range 0 .. 31; BKP2R at 16#58# range 0 .. 31; BKP3R at 16#5C# range 0 .. 31; BKP4R at 16#60# range 0 .. 31; BKP5R at 16#64# range 0 .. 31; BKP6R at 16#68# range 0 .. 31; BKP7R at 16#6C# range 0 .. 31; BKP8R at 16#70# range 0 .. 31; BKP9R at 16#74# range 0 .. 31; BKP10R at 16#78# range 0 .. 31; BKP11R at 16#7C# range 0 .. 31; BKP12R at 16#80# range 0 .. 31; BKP13R at 16#84# range 0 .. 31; BKP14R at 16#88# range 0 .. 31; BKP15R at 16#8C# range 0 .. 31; BKP16R at 16#90# range 0 .. 31; BKP17R at 16#94# range 0 .. 31; BKP18R at 16#98# range 0 .. 31; BKP19R at 16#9C# range 0 .. 31; BKP20R at 16#A0# range 0 .. 31; BKP21R at 16#A4# range 0 .. 31; BKP22R at 16#A8# range 0 .. 31; BKP23R at 16#AC# range 0 .. 31; BKP24R at 16#B0# range 0 .. 31; BKP25R at 16#B4# range 0 .. 31; BKP26R at 16#B8# range 0 .. 31; BKP27R at 16#BC# range 0 .. 31; BKP28R at 16#C0# range 0 .. 31; BKP29R at 16#C4# range 0 .. 31; BKP30R at 16#C8# range 0 .. 31; BKP31R at 16#CC# range 0 .. 31; end record; -- Real-time clock RTC_Periph : aliased RTC_Peripheral with Import, Address => RTC_Base; end STM32_SVD.RTC;
-- { dg-do run } -- { dg-options "-O" } with Opt27_Pkg; procedure Opt27 is type Rec_T is record A, B, C, D, E : Integer; end record; package List is new Opt27_Pkg (Rec_T); My_List : List.List_T; function Is_Match (Element : Rec_T; Template : Integer) return Boolean is begin return (Element.C = Template); end; function Find_Int is new List.Find_Elem (Integer, Is_Match); Node : List.Node_T := Find_Int (10, My_List); begin if not List.Is_Null (Node) then raise Program_Error; end if; end;
------------------------------------------------------------------------------ -- -- -- 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. -- -- -- ------------------------------------------------------------------------------ package body NRF52_DK.LEDs is LEDs : array (1 .. 4) of GPIO_Point := (LED13, LED2, LED3, LED4); procedure Initialize_LEDs is Conf : GPIO_Configuration; begin Conf.Mode := Mode_Out; Conf.Resistors := No_Pull; for LED of LEDs loop LED.Configure_IO (Conf); LED.Set; end loop; end Initialize_LEDs; procedure Turn_On (This : in out User_LED) is begin This.Clear; end Turn_On; procedure Turn_Off (This : in out User_LED) is begin This.Set; end Turn_Off; end NRF52_DK.LEDs;
with NPC_PC; use NPC_PC; package body Enemy_BST is ------------------------------- -- Name: Jon Spohn -- David Rogina -- Enemy Package ------------------------------- --Make Enemy FUNCTION MakeNode (E : EnemyClass) RETURN EnemyTree IS Result : EnemyTree; BEGIN Result := NEW BinaryTreeNode; Result.Enemy := E; RETURN Result; END MakeNode; --------------------------------------------------------------------------------- --Connect Enemy node to left of tree PROCEDURE ConnectLeft (T : IN OUT EnemyTree; E : EnemyClass) IS BEGIN T.Left := MakeNode (E); END ConnectLeft; -------------------------------------------------------------------------------- --Connect Enemy node to right of tree PROCEDURE ConnectRight (T : IN OUT EnemyTree; E : EnemyClass) IS BEGIN T.Right := MakeNode (E); END ConnectRight; ---------------------------------------------------------------------------------- PROCEDURE Initialize (T: IN OUT EnemyTree) IS BEGIN T := NULL; END Initialize; ------------------------------------------------------------------------------------ --Insert Enemy Node into Tree PROCEDURE Insert (T : IN OUT EnemyTree; E : IN EnemyClass) IS BEGIN IF T = NULL THEN T := MakeNode (E); ELSIF (GetEnemyY(E)) < (GetEnemyY(T.Enemy)) THEN IF T.Left = NULL THEN ConnectLeft (T, E); ELSE Insert (T.Left, E); END IF; ELSIF (GetEnemyY(E)) > (GetEnemyY(T.Enemy)) THEN IF T.Right = NULL THEN ConnectRight (T, E); ELSE Insert (T.Right, E); END IF; ELSE Insert(T.Right , E); END IF; END Insert; ---------------------------------------------------------------------------------------- --Search through tree for enemy node with specific map coordinates FUNCTION Search (T: EnemyTree; X : integer; Y: integer) RETURN EnemyClass IS BEGIN IF Y < GetEnemyY(T.Enemy) THEN RETURN Search(T.Left,X,Y); ELSIF GetEnemyY(T.enemy) < Y THEN RETURN Search(T.Right,X,Y); ELSE if x = GetEnemyX(T.enemy) then RETURN T.Enemy; else Return Search(T.Right,X,Y); end if; END IF; END Search; ----------------------------------------------------------------------------------------- function GetLeft(ET: EnemyTree) Return EnemyTree is begin return ET.Left; end GetLeft; ----------------------------------------------------------------------------------------- function GetRight(ET : EnemyTree) return EnemyTree is begin return ET.Right; end GetRight; ----------------------------------------------------------------------------------------- function GetEnemy(ET : EnemyTree) return EnemyClass is begin return ET.Enemy; end GetEnemy; -------------------------------------------------------------------------------------------- --Determine if all enemies are killed or not, if so game ends function IsNull(ET : EnemyTree) return integer is begin if (ET = NULL) then return 0; else return 1; end if; end IsNull; --------------------------------------------------------------------------------------- --Find the smallest leaf of a parent node FUNCTION FindSmallest (T : EnemyTree) RETURN EnemyTree IS BEGIN -- FindSmallest IF T = NULL THEN RETURN NULL; ELSIF T.Left = NULL THEN RETURN T; ELSE RETURN FindSmallest(T.Left); END IF; END FindSmallest; ------------------------------------------------------------------------------------- --Delete an enemy node from the tree PROCEDURE Delete (T : IN OUT EnemyTree; K : IN EnemyClass) IS Temp: EnemyTree; BEGIN -- Delete IF GetEnemyY(K) < GetEnemyY(T.Enemy) THEN -- check left subtree Delete (T.Left, K); ELSIF GetEnemyY(T.Enemy) < GetEnemyY(K) THEN -- check right subtree Delete (T.Right, K); ELSE if GetEnemyX(K) = GetEnemyX(T.enemy) then IF T.Left = NULL AND T.Right = NULL THEN T := NULL; -- T is a leaf; delete it ELSIF T.Right = NULL THEN -- replace T by its predecessor T:= T.Left; ELSIF T.Left = NULL THEN -- replace T by its successor T := T.Right; else Temp := FindSmallest(T.Right); T.Enemy := Temp.Enemy; Delete(T.Right, (T.Enemy)); END IF; else Delete(T.Right,K); end if; END IF; END Delete; ---------------------------------------------------------------------------------------- end Enemy_BST;
with gel_demo_Server, gel_demo_Client; procedure launch_GEL_fused -- -- Launches the fused version. -- is begin gel_demo_Server.item.start; gel_demo_Client.item.start; end launch_GEL_fused;
------------------------------------------------------------------------------ -- -- -- GNAT EXAMPLE -- -- -- -- Copyright (C) 2016-2017, AdaCore -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 2, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING. If not, write -- -- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, -- -- Boston, MA 02110-1301, USA. -- -- -- -- As a special exception, if other files instantiate generics from this -- -- unit, or you link this unit with other files to produce an executable, -- -- this unit does not by itself cause the resulting executable to be -- -- covered by the GNU General Public License. This exception does not -- -- however invalidate any other reasons why the executable file might be -- -- covered by the GNU Public License. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ with System; with Interfaces; use Interfaces; with Ada.Synchronous_Task_Control; use Ada.Synchronous_Task_Control; with System.Multiprocessors; use System.Multiprocessors; package body Mandel is -- Initial picture X0_Min : constant Float := -2.0; X0_Max : constant Float := 0.7; Y0_Min : constant Float := -1.0; Y0_Max : constant Float := 1.0; Max_Iter : constant Natural := 256; function Compute_Color (X0, Y0 : Float) return Unsigned_32 is X, Y : Float; Xn, Yn : Float; Nbr_Iter : Natural; Col : Unsigned_32; begin Nbr_Iter := 0; X := X0; Y := Y0; while X * X + Y * Y < 4.0 and then Nbr_Iter < Max_Iter loop Xn := X * X - Y * Y; Yn := 2.0 * X * Y; X := Xn + X0; Y := Yn + Y0; Nbr_Iter := Nbr_Iter + 1; end loop; if Nbr_Iter < 32 then Col := 16#ff_000000# + 16#00_01_00_00# * Unsigned_32 (16#ff# * Nbr_Iter / 32); elsif Nbr_Iter < Max_Iter then Col := 16#ff_ff0000# + 16#00_00_01_00# * Unsigned_32 (16#ff# * (Nbr_Iter - 32) / (Max_Iter - 32)); else Col := 16#ff_000000#; end if; return Col; end Compute_Color; procedure Draw_Mandelbrot (X0, Y0 : Natural; Width, Height : Natural) is X, Y : Float; Col : Unsigned_32; X_Min, X_Max : Float; Y_Min, Y_Max : Float; -- Per pixel. Xstep, Ystep : Float; begin X_Min := X0_Min; X_Max := X0_Max; Y_Min := Y0_Min; Y_Max := Y0_Max; -- Adjust size declare S_Width : constant Float := Float (Width); S_Height : constant Float := Float (Height); M_Width : constant Float := X_Max - X_Min; M_Height : constant Float := Y_Max - Y_Min; Extra : Float; begin if S_Width * M_Height >= S_Height * M_Width then -- Screen is wider Extra := (S_Width * M_Height / S_Height) - M_Width; X_Min := X_Min - Extra / 2.0; X_Max := X_Max + Extra / 2.0; else -- Screen is taller Extra := (S_Height * M_Width / S_Width) - M_Height; Y_Min := Y_Min - Extra / 2.0; Y_Max := Y_Max + Extra / 2.0; end if; end; Xstep := (X_Max - X_Min) / Float (Width); Ystep := (Y_Max - Y_Min) / Float (Height); for S in reverse 1 .. 3 loop declare Size : constant Natural := 2 ** S; begin for Pix_X in 0 .. Width / Size - 1 loop X := X_Min + Float (Pix_X * Size) * Xstep; for Pix_Y in 0 .. Height / Size - 1 loop Y := Y_Min + Float (Pix_Y * Size) * Ystep; Col := Compute_Color (X, Y); for Yo in 0 .. Size - 1 loop for Xo in 0 .. Size - 1 loop Fb (Y0 + Pix_Y * Size + Yo, X0 + Pix_X * Size + Xo) := Col; end loop; end loop; end loop; end loop; end; end loop; for Pix_X in 0 .. Width - 1 loop X := X_Min + Float (Pix_X) * Xstep; for Pix_Y in 0 .. Height - 1 loop Y := Y_Min + Float (Pix_Y) * Ystep; Col := Compute_Color (X, Y); Fb (Y0 + Pix_Y, X0 + Pix_X) := Col; end loop; end loop; end Draw_Mandelbrot; task type T (Id : Natural) is pragma Cpu (CPU (Id)); pragma Priority (System.Default_Priority - 1); end T; task body T is T0 : Time; begin if Id = 2 then delay until Clock + Milliseconds (200); end if; loop Suspend_Until_True (Starts (Id)); T0 := Clock; for I in 1 .. 5 loop Draw_Mandelbrot (Regions (Id).X, Regions (Id).Y, Regions (Id).Width, Regions (Id).Height); delay until Time_First; end loop; Times (Id) := Clock - T0; Set_True (Wait (Id)); end loop; end T; T1 : T (1); T2 : T (2); T3 : T (3); T4 : T (4); end Mandel;
------------------------------------------------------------------------------ -- -- -- GNAT ncurses Binding Samples -- -- -- -- ncurses -- -- -- -- B O D Y -- -- -- ------------------------------------------------------------------------------ -- Copyright (c) 2000-2004,2008 Free Software Foundation, Inc. -- -- -- -- Permission is hereby granted, free of charge, to any person obtaining a -- -- copy of this software and associated documentation files (the -- -- "Software"), to deal in the Software without restriction, including -- -- without limitation the rights to use, copy, modify, merge, publish, -- -- distribute, distribute with modifications, sublicense, and/or sell -- -- copies of the Software, and to permit persons to whom the Software is -- -- furnished to do so, subject to the following conditions: -- -- -- -- The above copyright notice and this permission notice shall be included -- -- in all copies or substantial portions of the Software. -- -- -- -- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -- -- OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -- -- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -- -- IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -- -- DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -- -- OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR -- -- THE USE OR OTHER DEALINGS IN THE SOFTWARE. -- -- -- -- Except as contained in this notice, the name(s) of the above copyright -- -- holders shall not be used in advertising or otherwise to promote the -- -- sale, use or other dealings in this Software without prior written -- -- authorization. -- ------------------------------------------------------------------------------ -- Author: Eugene V. Melaragno <aldomel@ix.netcom.com> 2000 -- Version Control -- $Revision: 1.7 $ -- $Date: 2008/07/26 18:46:44 $ -- Binding Version 01.00 ------------------------------------------------------------------------------ -- A simplified version of the GNU getopt function -- copyright Free Software Foundtion with Ada.Strings.Fixed; with Ada.Strings.Bounded; with Ada.Text_IO; use Ada.Text_IO; package body ncurses2.getopt is nextchar : Natural := 0; -- Ncurses doesn't use the non option elements so we are spared -- the job of computing those. -- also the user is not allowed to modify argv or argc -- Doing so is Erroneous execution. -- longoptions are not handled. procedure Qgetopt (retval : out Integer; argc : Integer; argv : stringfunc; -- argv will be the Argument function. optstring : String; optind : in out Integer; -- ignored for ncurses, must be initialized to 1 by -- the caller Optarg : out stringa -- a garbage colector would be useful here. ) is package BS is new Ada.Strings.Bounded.Generic_Bounded_Length (200); use BS; optargx : Bounded_String; begin if argc < optind then retval := -1; return; end if; optargx := To_Bounded_String (""); if nextchar = 0 then if argv (optind) = "--" then -- the rest are non-options, we ignore them retval := -1; return; end if; if argv (optind)(1) /= '-' or argv (optind)'Length = 1 then optind := optind + 1; Optarg := new String'(argv (optind)); retval := 1; return; end if; nextchar := 2; -- skip the one hyphen. end if; -- Look at and handle the next short option-character. declare c : Character := argv (optind) (nextchar); temp : constant Natural := Ada.Strings.Fixed.Index (optstring, String'(1 => c)); begin if temp = 0 or c = ':' then Put_Line (Standard_Error, argv (optind) & ": invalid option -- " & c); c := '?'; return; end if; if optstring (temp + 1) = ':' then if optstring (temp + 2) = ':' then -- This is an option that accepts an argument optionally. if nextchar /= argv (optind)'Length then optargx := To_Bounded_String (argv (optind) (nextchar .. argv (optind)'Length)); else Optarg := null; end if; else -- This is an option that requires an argument. if nextchar /= argv (optind)'Length then optargx := To_Bounded_String (argv (optind) (nextchar .. argv (optind)'Length)); optind := optind + 1; elsif optind = argc then Put_Line (Standard_Error, argv (optind) & ": option requires an argument -- " & c); if optstring (optstring'First) = ':' then c := ':'; else c := '?'; end if; else -- increment it again when taking next ARGV-elt as argument. optind := optind + 1; optargx := To_Bounded_String (argv (optind)); optind := optind + 1; end if; end if; nextchar := 0; else -- no argument for the option if nextchar = argv (optind)'Length then optind := optind + 1; nextchar := 0; else nextchar := nextchar + 1; end if; end if; retval := Character'Pos (c); Optarg := new String'(To_String (optargx)); return; end; end Qgetopt; end ncurses2.getopt;
with FLTK.Widgets.Groups.Windows; private with Interfaces.C; package FLTK.Static is type Awake_Handler is access procedure; type Timeout_Handler is access procedure; type Idle_Handler is access procedure; type Buffer_Kind is (Selection, Clipboard); type Clipboard_Notify_Handler is access procedure (Kind : in Buffer_Kind); type File_Descriptor is new Integer; type File_Mode is (Read, Write, Except); type File_Handler is access procedure (FD : in File_Descriptor); type Box_Draw_Function is access procedure (X, Y, W, H : in Integer; My_Color : in Color); type Option is (Arrow_Focus, Visible_Focus, DND_Text, Show_Tooltips, FNFC_Uses_GTK, Last); procedure Add_Awake_Handler (Func : in Awake_Handler); function Get_Awake_Handler return Awake_Handler; procedure Add_Check (Func : in Timeout_Handler); function Has_Check (Func : in Timeout_Handler) return Boolean; procedure Remove_Check (Func : in Timeout_Handler); procedure Add_Timeout (Seconds : in Long_Float; Func : in Timeout_Handler); function Has_Timeout (Func : in Timeout_Handler) return Boolean; procedure Remove_Timeout (Func : in Timeout_Handler); procedure Repeat_Timeout (Seconds : in Long_Float; Func : in Timeout_Handler); procedure Add_Clipboard_Notify (Func : in Clipboard_Notify_Handler); procedure Remove_Clipboard_Notify (Func : in Clipboard_Notify_Handler); procedure Add_File_Descriptor (FD : in File_Descriptor; Func : in File_Handler); procedure Add_File_Descriptor (FD : in File_Descriptor; Mode : in File_Mode; Func : in File_Handler); procedure Remove_File_Descriptor (FD : in File_Descriptor); procedure Remove_File_Descriptor (FD : in File_Descriptor; Mode : in File_Mode); procedure Add_Idle (Func : in Idle_Handler); function Has_Idle (Func : in Idle_Handler) return Boolean; procedure Remove_Idle (Func : in Idle_Handler); procedure Get_Color (From : in Color; R, G, B : out Color_Component); procedure Set_Color (To : in Color; R, G, B : in Color_Component); procedure Free_Color (Value : in Color; Overlay : in Boolean := False); procedure Own_Colormap; procedure Set_Foreground (R, G, B : in Color_Component); procedure Set_Background (R, G, B : in Color_Component); procedure Set_Alt_Background (R, G, B : in Color_Component); procedure System_Colors; function Font_Image (Kind : in Font_Kind) return String; function Font_Family_Image (Kind : in Font_Kind) return String; procedure Set_Font_Kind (To, From : in Font_Kind); function Font_Sizes (Kind : in Font_Kind) return Font_Size_Array; procedure Setup_Fonts (How_Many_Set_Up : out Natural); function Get_Box_Height_Offset (Kind : in Box_Kind) return Integer; function Get_Box_Width_Offset (Kind : in Box_Kind) return Integer; function Get_Box_X_Offset (Kind : in Box_Kind) return Integer; function Get_Box_Y_Offset (Kind : in Box_Kind) return Integer; procedure Set_Box_Kind (To, From : in Box_Kind); function Draw_Box_Active return Boolean; -- function Get_Box_Draw_Function -- (Kind : in Box_Kind) -- return Box_Draw_Function; -- procedure Set_Box_Draw_Function -- (Kind : in Box_Kind; -- Func : in Box_Draw_Function; -- Offset_X, Offset_Y : in Integer := 0; -- Offset_W, Offset_H : in Integer := 0); procedure Copy (Text : in String; Dest : in Buffer_Kind); procedure Paste (Receiver : in FLTK.Widgets.Widget'Class; Source : in Buffer_Kind); procedure Selection (Owner : in FLTK.Widgets.Widget'Class; Text : in String); procedure Drag_Drop_Start; function Get_Drag_Drop_Text_Support return Boolean; procedure Set_Drag_Drop_Text_Support (To : in Boolean); procedure Enable_System_Input; procedure Disable_System_Input; function Has_Visible_Focus return Boolean; procedure Set_Visible_Focus (To : in Boolean); procedure Default_Window_Close (Item : in out FLTK.Widgets.Widget'Class); function Get_First_Window return access FLTK.Widgets.Groups.Windows.Window'Class; procedure Set_First_Window (To : in FLTK.Widgets.Groups.Windows.Window'Class); function Get_Next_Window (From : in FLTK.Widgets.Groups.Windows.Window'Class) return access FLTK.Widgets.Groups.Windows.Window'Class; function Get_Top_Modal return access FLTK.Widgets.Groups.Windows.Window'Class; function Read_Queue return access FLTK.Widgets.Widget'Class; procedure Do_Widget_Deletion; function Get_Scheme return String; procedure Set_Scheme (To : in String); function Is_Scheme (Scheme : in String) return Boolean; procedure Reload_Scheme; function Get_Option (Opt : in Option) return Boolean; procedure Set_Option (Opt : in Option; To : in Boolean); function Get_Default_Scrollbar_Size return Natural; procedure Set_Default_Scrollbar_Size (To : in Natural); private File_Mode_Codes : array (File_Mode) of Interfaces.C.int := (Read => 1, Write => 4, Except => 8); pragma Import (C, Own_Colormap, "fl_static_own_colormap"); pragma Import (C, System_Colors, "fl_static_get_system_colors"); pragma Import (C, Drag_Drop_Start, "fl_static_dnd"); pragma Import (C, Enable_System_Input, "fl_static_enable_im"); pragma Import (C, Disable_System_Input, "fl_static_disable_im"); pragma Import (C, Do_Widget_Deletion, "fl_static_do_widget_deletion"); pragma Import (C, Reload_Scheme, "fl_static_reload_scheme"); pragma Inline (Add_Awake_Handler); pragma Inline (Get_Awake_Handler); pragma Inline (Add_Check); pragma Inline (Has_Check); pragma Inline (Remove_Check); pragma Inline (Add_Timeout); pragma Inline (Has_Timeout); pragma Inline (Remove_Timeout); pragma Inline (Repeat_Timeout); pragma Inline (Add_Clipboard_Notify); pragma Inline (Remove_Clipboard_Notify); pragma Inline (Add_File_Descriptor); pragma Inline (Remove_File_Descriptor); pragma Inline (Add_Idle); pragma Inline (Has_Idle); pragma Inline (Remove_Idle); pragma Inline (Get_Color); pragma Inline (Set_Color); pragma Inline (Free_Color); pragma Inline (Own_Colormap); pragma Inline (Set_Foreground); pragma Inline (Set_Background); pragma Inline (Set_Alt_Background); pragma Inline (System_Colors); pragma Inline (Font_Image); pragma Inline (Font_Family_Image); pragma Inline (Set_Font_Kind); pragma Inline (Font_Sizes); pragma Inline (Setup_Fonts); pragma Inline (Get_Box_Height_Offset); pragma Inline (Get_Box_Width_Offset); pragma Inline (Get_Box_X_Offset); pragma Inline (Get_Box_Y_Offset); pragma Inline (Set_Box_Kind); pragma Inline (Draw_Box_Active); -- pragma Inline (Get_Box_Draw_Function); -- pragma Inline (Set_Box_Draw_Function); pragma Inline (Copy); pragma Inline (Paste); pragma Inline (Selection); pragma Inline (Drag_Drop_Start); pragma Inline (Get_Drag_Drop_Text_Support); pragma Inline (Set_Drag_Drop_Text_Support); pragma Inline (Enable_System_Input); pragma Inline (Disable_System_Input); pragma Inline (Has_Visible_Focus); pragma Inline (Set_Visible_Focus); pragma Inline (Default_Window_Close); pragma Inline (Get_First_Window); pragma Inline (Set_First_Window); pragma Inline (Get_Next_Window); pragma Inline (Get_Top_Modal); pragma Inline (Read_Queue); pragma Inline (Do_Widget_Deletion); pragma Inline (Get_Scheme); pragma Inline (Set_Scheme); pragma Inline (Is_Scheme); pragma Inline (Reload_Scheme); pragma Inline (Get_Option); pragma Inline (Set_Option); pragma Inline (Get_Default_Scrollbar_Size); pragma Inline (Set_Default_Scrollbar_Size); end FLTK.Static;
package body Unit_2 is task type Boring_Task_Type is entry Drop_Off_Work (Work_In : in Range_Type); end Boring_Task_Type; task body Boring_Task_Type is Work : Range_Type := 5; Result : Integer := 0; Factor : constant Positive := 2; begin -- Never ends: loop accept Drop_Off_Work (Work_In : in Range_Type) do Work := Work_In; end Drop_Off_Work; Result := Integer (Work) * Factor; end loop; end Boring_Task_Type; Boring_Task : Boring_Task_Type; procedure You_Do_It (Using : in Range_Type) is begin if Using = 5 then raise Dont_Like_5; else Boring_Task.Drop_Off_Work (Using); end if; end You_Do_It; -- EXPORTED: procedure Do_It (This : in Range_Type) is begin You_Do_It (Using => This); exception when X : Dont_Like_5 => null; end Do_It; -- PRIVATE: package body Parent_Class is -- EXPORTED: procedure Method_1 (This : in out Object) is begin This.Component_1 := This.Component_1 * 2; end Method_1; end Parent_Class; -- PRIVATE: package body Child_Class is -- EXPORTED: procedure Method_1 (This : in out Object) is begin This.Component_1 := This.Component_1 * 3; end Method_1; -- EXPORTED: function Method_2 (This : in out Object; Param_1 : in Integer) return Integer is Result : Integer := 0; begin Result := This.Component_1 + This.Component_2; This.Component_2 := Param_1; return Result; end Method_2; end Child_Class; end Unit_2;
pragma Ada_2005; pragma Style_Checks (Off); with Interfaces.C; use Interfaces.C; with Interfaces.C.Strings; with System; with CUPS.bits_types_h; limited with CUPS.bits_netdb_h; with CUPS.stdint_h; with CUPS.bits_sockaddr_h; with CUPS.unistd_h; limited with CUPS.bits_socket_h; limited with CUPS.bits_siginfo_h; limited with CUPS.time_h; private package CUPS.netdb_h is -- unsupported macro: h_errno (*__h_errno_location ()) HOST_NOT_FOUND : constant := 1; -- netdb.h:65 TRY_AGAIN : constant := 2; -- netdb.h:66 NO_RECOVERY : constant := 3; -- netdb.h:68 NO_DATA : constant := 4; -- netdb.h:70 NETDB_INTERNAL : constant := -1; -- netdb.h:74 NETDB_SUCCESS : constant := 0; -- netdb.h:75 -- unsupported macro: NO_ADDRESS NO_DATA IPPORT_RESERVED : constant := 1024; -- netdb.h:81 SCOPE_DELIMITER : aliased constant Character := '%'; -- netdb.h:86 -- unsupported macro: h_addr h_addr_list[0] GAI_WAIT : constant := 0; -- netdb.h:593 GAI_NOWAIT : constant := 1; -- netdb.h:594 AI_PASSIVE : constant := 16#0001#; -- netdb.h:598 AI_CANONNAME : constant := 16#0002#; -- netdb.h:599 AI_NUMERICHOST : constant := 16#0004#; -- netdb.h:600 AI_V4MAPPED : constant := 16#0008#; -- netdb.h:601 AI_ALL : constant := 16#0010#; -- netdb.h:602 AI_ADDRCONFIG : constant := 16#0020#; -- netdb.h:603 AI_IDN : constant := 16#0040#; -- netdb.h:606 AI_CANONIDN : constant := 16#0080#; -- netdb.h:609 AI_IDN_ALLOW_UNASSIGNED : constant := 16#0100#; -- netdb.h:610 AI_IDN_USE_STD3_ASCII_RULES : constant := 16#0200#; -- netdb.h:612 AI_NUMERICSERV : constant := 16#0400#; -- netdb.h:615 EAI_BADFLAGS : constant := -1; -- netdb.h:618 EAI_NONAME : constant := -2; -- netdb.h:619 EAI_AGAIN : constant := -3; -- netdb.h:620 EAI_FAIL : constant := -4; -- netdb.h:621 EAI_FAMILY : constant := -6; -- netdb.h:622 EAI_SOCKTYPE : constant := -7; -- netdb.h:623 EAI_SERVICE : constant := -8; -- netdb.h:624 EAI_MEMORY : constant := -10; -- netdb.h:625 EAI_SYSTEM : constant := -11; -- netdb.h:626 EAI_OVERFLOW : constant := -12; -- netdb.h:627 EAI_NODATA : constant := -5; -- netdb.h:629 EAI_ADDRFAMILY : constant := -9; -- netdb.h:630 EAI_INPROGRESS : constant := -100; -- netdb.h:631 EAI_CANCELED : constant := -101; -- netdb.h:632 EAI_NOTCANCELED : constant := -102; -- netdb.h:633 EAI_ALLDONE : constant := -103; -- netdb.h:634 EAI_INTR : constant := -104; -- netdb.h:635 EAI_IDN_ENCODE : constant := -105; -- netdb.h:636 NI_MAXHOST : constant := 1025; -- netdb.h:640 NI_MAXSERV : constant := 32; -- netdb.h:641 NI_NUMERICHOST : constant := 1; -- netdb.h:644 NI_NUMERICSERV : constant := 2; -- netdb.h:645 NI_NOFQDN : constant := 4; -- netdb.h:646 NI_NAMEREQD : constant := 8; -- netdb.h:647 NI_DGRAM : constant := 16; -- netdb.h:648 NI_IDN : constant := 32; -- netdb.h:650 NI_IDN_ALLOW_UNASSIGNED : constant := 64; -- netdb.h:651 NI_IDN_USE_STD3_ASCII_RULES : constant := 128; -- netdb.h:653 -- Copyright (C) 1996-2016 Free Software Foundation, Inc. -- This file is part of the GNU C Library. -- The GNU C Library is free software; you can redistribute it and/or -- modify it under the terms of the GNU Lesser General Public -- License as published by the Free Software Foundation; either -- version 2.1 of the License, or (at your option) any later version. -- The GNU C Library is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -- Lesser General Public License for more details. -- You should have received a copy of the GNU Lesser General Public -- License along with the GNU C Library; if not, see -- <http://www.gnu.org/licenses/>. -- All data returned by the network data base library are supplied in -- host order and returned in network order (suitable for use in -- system calls). -- This is necessary to make this include file properly replace the -- Sun version. -- Absolute file name for network data base files. -- Error status for non-reentrant lookup functions. -- We use a macro to access always the thread-specific `h_errno' variable. -- Function to get address of global `h_errno' variable. -- skipped func __h_errno_location -- Possible values left in `h_errno'. -- Highest reserved Internet port number. -- Scope delimiter for getaddrinfo(), getnameinfo(). -- Print error indicated by `h_errno' variable on standard error. STR -- if non-null is printed before the error string. procedure herror (uu_str : Interfaces.C.Strings.chars_ptr); -- netdb.h:92 pragma Import (C, herror, "herror"); -- Return string associated with error ERR_NUM. function hstrerror (uu_err_num : int) return Interfaces.C.Strings.chars_ptr; -- netdb.h:95 pragma Import (C, hstrerror, "hstrerror"); -- Description of data base entry for a single host. -- Official name of host. type hostent is record h_name : Interfaces.C.Strings.chars_ptr; -- netdb.h:102 h_aliases : System.Address; -- netdb.h:103 h_addrtype : aliased int; -- netdb.h:104 h_length : aliased int; -- netdb.h:105 h_addr_list : System.Address; -- netdb.h:106 end record; pragma Convention (C_Pass_By_Copy, hostent); -- netdb.h:100 -- Alias list. -- Host address type. -- Length of address. -- List of addresses from name server. -- Open host data base files and mark them as staying open even after -- a later search if STAY_OPEN is non-zero. -- This function is a possible cancellation point and therefore not -- marked with __THROW. procedure sethostent (uu_stay_open : int); -- netdb.h:117 pragma Import (C, sethostent, "sethostent"); -- Close host data base files and clear `stay open' flag. -- This function is a possible cancellation point and therefore not -- marked with __THROW. procedure endhostent; -- netdb.h:123 pragma Import (C, endhostent, "endhostent"); -- Get next entry from host data base file. Open data base if -- necessary. -- This function is a possible cancellation point and therefore not -- marked with __THROW. function gethostent return access hostent; -- netdb.h:130 pragma Import (C, gethostent, "gethostent"); -- Return entry from host data base which address match ADDR with -- length LEN and type TYPE. -- This function is a possible cancellation point and therefore not -- marked with __THROW. function gethostbyaddr (uu_addr : System.Address; uu_len : CUPS.bits_types_h.uu_socklen_t; uu_type : int) return access hostent; -- netdb.h:137 pragma Import (C, gethostbyaddr, "gethostbyaddr"); -- Return entry from host data base for host with NAME. -- This function is a possible cancellation point and therefore not -- marked with __THROW. function gethostbyname (uu_name : Interfaces.C.Strings.chars_ptr) return access hostent; -- netdb.h:144 pragma Import (C, gethostbyname, "gethostbyname"); -- Return entry from host data base for host with NAME. AF must be -- set to the address type which is `AF_INET' for IPv4 or `AF_INET6' -- for IPv6. -- This function is not part of POSIX and therefore no official -- cancellation point. But due to similarity with an POSIX interface -- or due to the implementation it is a cancellation point and -- therefore not marked with __THROW. function gethostbyname2 (uu_name : Interfaces.C.Strings.chars_ptr; uu_af : int) return access hostent; -- netdb.h:155 pragma Import (C, gethostbyname2, "gethostbyname2"); -- Reentrant versions of the functions above. The additional -- arguments specify a buffer of BUFLEN starting at BUF. The last -- argument is a pointer to a variable which gets the value which -- would be stored in the global variable `herrno' by the -- non-reentrant functions. -- These functions are not part of POSIX and therefore no official -- cancellation point. But due to similarity with an POSIX interface -- or due to the implementation they are cancellation points and -- therefore not marked with __THROW. function gethostent_r (uu_result_buf : access hostent; uu_buf : Interfaces.C.Strings.chars_ptr; uu_buflen : size_t; uu_result : System.Address; uu_h_errnop : access int) return int; -- netdb.h:167 pragma Import (C, gethostent_r, "gethostent_r"); function gethostbyaddr_r (uu_addr : System.Address; uu_len : CUPS.bits_types_h.uu_socklen_t; uu_type : int; uu_result_buf : access hostent; uu_buf : Interfaces.C.Strings.chars_ptr; uu_buflen : size_t; uu_result : System.Address; uu_h_errnop : access int) return int; -- netdb.h:172 pragma Import (C, gethostbyaddr_r, "gethostbyaddr_r"); function gethostbyname_r (uu_name : Interfaces.C.Strings.chars_ptr; uu_result_buf : access hostent; uu_buf : Interfaces.C.Strings.chars_ptr; uu_buflen : size_t; uu_result : System.Address; uu_h_errnop : access int) return int; -- netdb.h:179 pragma Import (C, gethostbyname_r, "gethostbyname_r"); function gethostbyname2_r (uu_name : Interfaces.C.Strings.chars_ptr; uu_af : int; uu_result_buf : access hostent; uu_buf : Interfaces.C.Strings.chars_ptr; uu_buflen : size_t; uu_result : System.Address; uu_h_errnop : access int) return int; -- netdb.h:185 pragma Import (C, gethostbyname2_r, "gethostbyname2_r"); -- Open network data base files and mark them as staying open even -- after a later search if STAY_OPEN is non-zero. -- This function is a possible cancellation point and therefore not -- marked with __THROW. procedure setnetent (uu_stay_open : int); -- netdb.h:198 pragma Import (C, setnetent, "setnetent"); -- Close network data base files and clear `stay open' flag. -- This function is a possible cancellation point and therefore not -- marked with __THROW. procedure endnetent; -- netdb.h:204 pragma Import (C, endnetent, "endnetent"); -- Get next entry from network data base file. Open data base if -- necessary. -- This function is a possible cancellation point and therefore not -- marked with __THROW. function getnetent return access CUPS.bits_netdb_h.netent; -- netdb.h:211 pragma Import (C, getnetent, "getnetent"); -- Return entry from network data base which address match NET and -- type TYPE. -- This function is a possible cancellation point and therefore not -- marked with __THROW. function getnetbyaddr (uu_net : CUPS.stdint_h.uint32_t; uu_type : int) return access CUPS.bits_netdb_h.netent; -- netdb.h:218 pragma Import (C, getnetbyaddr, "getnetbyaddr"); -- Return entry from network data base for network with NAME. -- This function is a possible cancellation point and therefore not -- marked with __THROW. function getnetbyname (uu_name : Interfaces.C.Strings.chars_ptr) return access CUPS.bits_netdb_h.netent; -- netdb.h:224 pragma Import (C, getnetbyname, "getnetbyname"); -- Reentrant versions of the functions above. The additional -- arguments specify a buffer of BUFLEN starting at BUF. The last -- argument is a pointer to a variable which gets the value which -- would be stored in the global variable `herrno' by the -- non-reentrant functions. -- These functions are not part of POSIX and therefore no official -- cancellation point. But due to similarity with an POSIX interface -- or due to the implementation they are cancellation points and -- therefore not marked with __THROW. function getnetent_r (uu_result_buf : access CUPS.bits_netdb_h.netent; uu_buf : Interfaces.C.Strings.chars_ptr; uu_buflen : size_t; uu_result : System.Address; uu_h_errnop : access int) return int; -- netdb.h:237 pragma Import (C, getnetent_r, "getnetent_r"); function getnetbyaddr_r (uu_net : CUPS.stdint_h.uint32_t; uu_type : int; uu_result_buf : access CUPS.bits_netdb_h.netent; uu_buf : Interfaces.C.Strings.chars_ptr; uu_buflen : size_t; uu_result : System.Address; uu_h_errnop : access int) return int; -- netdb.h:242 pragma Import (C, getnetbyaddr_r, "getnetbyaddr_r"); function getnetbyname_r (uu_name : Interfaces.C.Strings.chars_ptr; uu_result_buf : access CUPS.bits_netdb_h.netent; uu_buf : Interfaces.C.Strings.chars_ptr; uu_buflen : size_t; uu_result : System.Address; uu_h_errnop : access int) return int; -- netdb.h:248 pragma Import (C, getnetbyname_r, "getnetbyname_r"); -- Description of data base entry for a single service. -- Official service name. type servent is record s_name : Interfaces.C.Strings.chars_ptr; -- netdb.h:259 s_aliases : System.Address; -- netdb.h:260 s_port : aliased int; -- netdb.h:261 s_proto : Interfaces.C.Strings.chars_ptr; -- netdb.h:262 end record; pragma Convention (C_Pass_By_Copy, servent); -- netdb.h:257 -- Alias list. -- Port number. -- Protocol to use. -- Open service data base files and mark them as staying open even -- after a later search if STAY_OPEN is non-zero. -- This function is a possible cancellation point and therefore not -- marked with __THROW. procedure setservent (uu_stay_open : int); -- netdb.h:270 pragma Import (C, setservent, "setservent"); -- Close service data base files and clear `stay open' flag. -- This function is a possible cancellation point and therefore not -- marked with __THROW. procedure endservent; -- netdb.h:276 pragma Import (C, endservent, "endservent"); -- Get next entry from service data base file. Open data base if -- necessary. -- This function is a possible cancellation point and therefore not -- marked with __THROW. function getservent return access servent; -- netdb.h:283 pragma Import (C, getservent, "getservent"); -- Return entry from network data base for network with NAME and -- protocol PROTO. -- This function is a possible cancellation point and therefore not -- marked with __THROW. function getservbyname (uu_name : Interfaces.C.Strings.chars_ptr; uu_proto : Interfaces.C.Strings.chars_ptr) return access servent; -- netdb.h:290 pragma Import (C, getservbyname, "getservbyname"); -- Return entry from service data base which matches port PORT and -- protocol PROTO. -- This function is a possible cancellation point and therefore not -- marked with __THROW. function getservbyport (uu_port : int; uu_proto : Interfaces.C.Strings.chars_ptr) return access servent; -- netdb.h:297 pragma Import (C, getservbyport, "getservbyport"); -- Reentrant versions of the functions above. The additional -- arguments specify a buffer of BUFLEN starting at BUF. -- These functions are not part of POSIX and therefore no official -- cancellation point. But due to similarity with an POSIX interface -- or due to the implementation they are cancellation points and -- therefore not marked with __THROW. function getservent_r (uu_result_buf : access servent; uu_buf : Interfaces.C.Strings.chars_ptr; uu_buflen : size_t; uu_result : System.Address) return int; -- netdb.h:308 pragma Import (C, getservent_r, "getservent_r"); function getservbyname_r (uu_name : Interfaces.C.Strings.chars_ptr; uu_proto : Interfaces.C.Strings.chars_ptr; uu_result_buf : access servent; uu_buf : Interfaces.C.Strings.chars_ptr; uu_buflen : size_t; uu_result : System.Address) return int; -- netdb.h:312 pragma Import (C, getservbyname_r, "getservbyname_r"); function getservbyport_r (uu_port : int; uu_proto : Interfaces.C.Strings.chars_ptr; uu_result_buf : access servent; uu_buf : Interfaces.C.Strings.chars_ptr; uu_buflen : size_t; uu_result : System.Address) return int; -- netdb.h:318 pragma Import (C, getservbyport_r, "getservbyport_r"); -- Description of data base entry for a single service. -- Official protocol name. type protoent is record p_name : Interfaces.C.Strings.chars_ptr; -- netdb.h:328 p_aliases : System.Address; -- netdb.h:329 p_proto : aliased int; -- netdb.h:330 end record; pragma Convention (C_Pass_By_Copy, protoent); -- netdb.h:326 -- Alias list. -- Protocol number. -- Open protocol data base files and mark them as staying open even -- after a later search if STAY_OPEN is non-zero. -- This function is a possible cancellation point and therefore not -- marked with __THROW. procedure setprotoent (uu_stay_open : int); -- netdb.h:338 pragma Import (C, setprotoent, "setprotoent"); -- Close protocol data base files and clear `stay open' flag. -- This function is a possible cancellation point and therefore not -- marked with __THROW. procedure endprotoent; -- netdb.h:344 pragma Import (C, endprotoent, "endprotoent"); -- Get next entry from protocol data base file. Open data base if -- necessary. -- This function is a possible cancellation point and therefore not -- marked with __THROW. function getprotoent return access protoent; -- netdb.h:351 pragma Import (C, getprotoent, "getprotoent"); -- Return entry from protocol data base for network with NAME. -- This function is a possible cancellation point and therefore not -- marked with __THROW. function getprotobyname (uu_name : Interfaces.C.Strings.chars_ptr) return access protoent; -- netdb.h:357 pragma Import (C, getprotobyname, "getprotobyname"); -- Return entry from protocol data base which number is PROTO. -- This function is a possible cancellation point and therefore not -- marked with __THROW. function getprotobynumber (uu_proto : int) return access protoent; -- netdb.h:363 pragma Import (C, getprotobynumber, "getprotobynumber"); -- Reentrant versions of the functions above. The additional -- arguments specify a buffer of BUFLEN starting at BUF. -- These functions are not part of POSIX and therefore no official -- cancellation point. But due to similarity with an POSIX interface -- or due to the implementation they are cancellation points and -- therefore not marked with __THROW. function getprotoent_r (uu_result_buf : access protoent; uu_buf : Interfaces.C.Strings.chars_ptr; uu_buflen : size_t; uu_result : System.Address) return int; -- netdb.h:374 pragma Import (C, getprotoent_r, "getprotoent_r"); function getprotobyname_r (uu_name : Interfaces.C.Strings.chars_ptr; uu_result_buf : access protoent; uu_buf : Interfaces.C.Strings.chars_ptr; uu_buflen : size_t; uu_result : System.Address) return int; -- netdb.h:378 pragma Import (C, getprotobyname_r, "getprotobyname_r"); function getprotobynumber_r (uu_proto : int; uu_result_buf : access protoent; uu_buf : Interfaces.C.Strings.chars_ptr; uu_buflen : size_t; uu_result : System.Address) return int; -- netdb.h:383 pragma Import (C, getprotobynumber_r, "getprotobynumber_r"); -- Establish network group NETGROUP for enumeration. -- This function is not part of POSIX and therefore no official -- cancellation point. But due to similarity with an POSIX interface -- or due to the implementation it is a cancellation point and -- therefore not marked with __THROW. function setnetgrent (uu_netgroup : Interfaces.C.Strings.chars_ptr) return int; -- netdb.h:395 pragma Import (C, setnetgrent, "setnetgrent"); -- Free all space allocated by previous `setnetgrent' call. -- This function is not part of POSIX and therefore no official -- cancellation point. But due to similarity with an POSIX interface -- or due to the implementation it is a cancellation point and -- therefore not marked with __THROW. procedure endnetgrent; -- netdb.h:403 pragma Import (C, endnetgrent, "endnetgrent"); -- Get next member of netgroup established by last `setnetgrent' call -- and return pointers to elements in HOSTP, USERP, and DOMAINP. -- This function is not part of POSIX and therefore no official -- cancellation point. But due to similarity with an POSIX interface -- or due to the implementation it is a cancellation point and -- therefore not marked with __THROW. function getnetgrent (uu_hostp : System.Address; uu_userp : System.Address; uu_domainp : System.Address) return int; -- netdb.h:412 pragma Import (C, getnetgrent, "getnetgrent"); -- Test whether NETGROUP contains the triple (HOST,USER,DOMAIN). -- This function is not part of POSIX and therefore no official -- cancellation point. But due to similarity with an POSIX interface -- or due to the implementation it is a cancellation point and -- therefore not marked with __THROW. function innetgr (uu_netgroup : Interfaces.C.Strings.chars_ptr; uu_host : Interfaces.C.Strings.chars_ptr; uu_user : Interfaces.C.Strings.chars_ptr; uu_domain : Interfaces.C.Strings.chars_ptr) return int; -- netdb.h:423 pragma Import (C, innetgr, "innetgr"); -- Reentrant version of `getnetgrent' where result is placed in BUFFER. -- This function is not part of POSIX and therefore no official -- cancellation point. But due to similarity with an POSIX interface -- or due to the implementation it is a cancellation point and -- therefore not marked with __THROW. function getnetgrent_r (uu_hostp : System.Address; uu_userp : System.Address; uu_domainp : System.Address; uu_buffer : Interfaces.C.Strings.chars_ptr; uu_buflen : size_t) return int; -- netdb.h:432 pragma Import (C, getnetgrent_r, "getnetgrent_r"); -- Call `rshd' at port RPORT on remote machine *AHOST to execute CMD. -- The local user is LOCUSER, on the remote machine the command is -- executed as REMUSER. In *FD2P the descriptor to the socket for the -- connection is returned. The caller must have the right to use a -- reserved port. When the function returns *AHOST contains the -- official host name. -- This function is not part of POSIX and therefore no official -- cancellation point. But due to similarity with an POSIX interface -- or due to the implementation it is a cancellation point and -- therefore not marked with __THROW. function rcmd (uu_ahost : System.Address; uu_rport : unsigned_short; uu_locuser : Interfaces.C.Strings.chars_ptr; uu_remuser : Interfaces.C.Strings.chars_ptr; uu_cmd : Interfaces.C.Strings.chars_ptr; uu_fd2p : access int) return int; -- netdb.h:451 pragma Import (C, rcmd, "rcmd"); -- This is the equivalent function where the protocol can be selected -- and which therefore can be used for IPv6. -- This function is not part of POSIX and therefore no official -- cancellation point. But due to similarity with an POSIX interface -- or due to the implementation it is a cancellation point and -- therefore not marked with __THROW. function rcmd_af (uu_ahost : System.Address; uu_rport : unsigned_short; uu_locuser : Interfaces.C.Strings.chars_ptr; uu_remuser : Interfaces.C.Strings.chars_ptr; uu_cmd : Interfaces.C.Strings.chars_ptr; uu_fd2p : access int; uu_af : CUPS.bits_sockaddr_h.sa_family_t) return int; -- netdb.h:463 pragma Import (C, rcmd_af, "rcmd_af"); -- Call `rexecd' at port RPORT on remote machine *AHOST to execute -- CMD. The process runs at the remote machine using the ID of user -- NAME whose cleartext password is PASSWD. In *FD2P the descriptor -- to the socket for the connection is returned. When the function -- returns *AHOST contains the official host name. -- This function is not part of POSIX and therefore no official -- cancellation point. But due to similarity with an POSIX interface -- or due to the implementation it is a cancellation point and -- therefore not marked with __THROW. function rexec (uu_ahost : System.Address; uu_rport : int; uu_name : Interfaces.C.Strings.chars_ptr; uu_pass : Interfaces.C.Strings.chars_ptr; uu_cmd : Interfaces.C.Strings.chars_ptr; uu_fd2p : access int) return int; -- netdb.h:479 pragma Import (C, rexec, "rexec"); -- This is the equivalent function where the protocol can be selected -- and which therefore can be used for IPv6. -- This function is not part of POSIX and therefore no official -- cancellation point. But due to similarity with an POSIX interface -- or due to the implementation it is a cancellation point and -- therefore not marked with __THROW. function rexec_af (uu_ahost : System.Address; uu_rport : int; uu_name : Interfaces.C.Strings.chars_ptr; uu_pass : Interfaces.C.Strings.chars_ptr; uu_cmd : Interfaces.C.Strings.chars_ptr; uu_fd2p : access int; uu_af : CUPS.bits_sockaddr_h.sa_family_t) return int; -- netdb.h:491 pragma Import (C, rexec_af, "rexec_af"); -- Check whether user REMUSER on system RHOST is allowed to login as LOCUSER. -- If SUSER is not zero the user tries to become superuser. Return 0 if -- it is possible. -- This function is not part of POSIX and therefore no official -- cancellation point. But due to similarity with an POSIX interface -- or due to the implementation it is a cancellation point and -- therefore not marked with __THROW. function ruserok (uu_rhost : Interfaces.C.Strings.chars_ptr; uu_suser : int; uu_remuser : Interfaces.C.Strings.chars_ptr; uu_locuser : Interfaces.C.Strings.chars_ptr) return int; -- netdb.h:505 pragma Import (C, ruserok, "ruserok"); -- This is the equivalent function where the protocol can be selected -- and which therefore can be used for IPv6. -- This function is not part of POSIX and therefore no official -- cancellation point. But due to similarity with an POSIX interface -- or due to the implementation it is a cancellation point and -- therefore not marked with __THROW. function ruserok_af (uu_rhost : Interfaces.C.Strings.chars_ptr; uu_suser : int; uu_remuser : Interfaces.C.Strings.chars_ptr; uu_locuser : Interfaces.C.Strings.chars_ptr; uu_af : CUPS.bits_sockaddr_h.sa_family_t) return int; -- netdb.h:515 pragma Import (C, ruserok_af, "ruserok_af"); -- Check whether user REMUSER on system indicated by IPv4 address -- RADDR is allowed to login as LOCUSER. Non-IPv4 (e.g., IPv6) are -- not supported. If SUSER is not zero the user tries to become -- superuser. Return 0 if it is possible. -- This function is not part of POSIX and therefore no official -- cancellation point. But due to similarity with an POSIX interface -- or due to the implementation it is a cancellation point and -- therefore not marked with __THROW. function iruserok (uu_raddr : CUPS.stdint_h.uint32_t; uu_suser : int; uu_remuser : Interfaces.C.Strings.chars_ptr; uu_locuser : Interfaces.C.Strings.chars_ptr) return int; -- netdb.h:528 pragma Import (C, iruserok, "iruserok"); -- This is the equivalent function where the pfamiliy if the address -- pointed to by RADDR is determined by the value of AF. It therefore -- can be used for IPv6 -- This function is not part of POSIX and therefore no official -- cancellation point. But due to similarity with an POSIX interface -- or due to the implementation it is a cancellation point and -- therefore not marked with __THROW. function iruserok_af (uu_raddr : System.Address; uu_suser : int; uu_remuser : Interfaces.C.Strings.chars_ptr; uu_locuser : Interfaces.C.Strings.chars_ptr; uu_af : CUPS.bits_sockaddr_h.sa_family_t) return int; -- netdb.h:539 pragma Import (C, iruserok_af, "iruserok_af"); -- Try to allocate reserved port, returning a descriptor for a socket opened -- at this port or -1 if unsuccessful. The search for an available port -- will start at ALPORT and continues with lower numbers. -- This function is not part of POSIX and therefore no official -- cancellation point. But due to similarity with an POSIX interface -- or due to the implementation it is a cancellation point and -- therefore not marked with __THROW. function rresvport (uu_alport : access int) return int; -- netdb.h:551 pragma Import (C, rresvport, "rresvport"); -- This is the equivalent function where the protocol can be selected -- and which therefore can be used for IPv6. -- This function is not part of POSIX and therefore no official -- cancellation point. But due to similarity with an POSIX interface -- or due to the implementation it is a cancellation point and -- therefore not marked with __THROW. function rresvport_af (uu_alport : access int; uu_af : CUPS.bits_sockaddr_h.sa_family_t) return int; -- netdb.h:560 pragma Import (C, rresvport_af, "rresvport_af"); -- Extension from POSIX.1:2001. -- Structure to contain information about address of a service provider. -- Input flags. type addrinfo is record ai_flags : aliased int; -- netdb.h:569 ai_family : aliased int; -- netdb.h:570 ai_socktype : aliased int; -- netdb.h:571 ai_protocol : aliased int; -- netdb.h:572 ai_addrlen : aliased CUPS.unistd_h.socklen_t; -- netdb.h:573 ai_addr : access CUPS.bits_socket_h.sockaddr; -- netdb.h:574 ai_canonname : Interfaces.C.Strings.chars_ptr; -- netdb.h:575 ai_next : access addrinfo; -- netdb.h:576 end record; pragma Convention (C_Pass_By_Copy, addrinfo); -- netdb.h:567 -- Protocol family for socket. -- Socket type. -- Protocol for socket. -- Length of socket address. -- Socket address for socket. -- Canonical name for service location. -- Pointer to next in list. -- Structure used as control block for asynchronous lookup. -- Name to look up. type gaicb_uu_glibc_reserved_array is array (0 .. 4) of aliased int; type gaicb is record ar_name : Interfaces.C.Strings.chars_ptr; -- netdb.h:583 ar_service : Interfaces.C.Strings.chars_ptr; -- netdb.h:584 ar_request : access constant addrinfo; -- netdb.h:585 ar_result : access addrinfo; -- netdb.h:586 uu_return : aliased int; -- netdb.h:588 uu_glibc_reserved : aliased gaicb_uu_glibc_reserved_array; -- netdb.h:589 end record; pragma Convention (C_Pass_By_Copy, gaicb); -- netdb.h:581 -- Service name. -- Additional request specification. -- Pointer to result. -- The following are internal elements. -- Lookup mode. -- Possible values for `ai_flags' field in `addrinfo' structure. -- Error values for `getaddrinfo' function. -- Translate name of a service location and/or a service name to set of -- socket addresses. -- This function is a possible cancellation point and therefore not -- marked with __THROW. function getaddrinfo (uu_name : Interfaces.C.Strings.chars_ptr; uu_service : Interfaces.C.Strings.chars_ptr; uu_req : access constant addrinfo; uu_pai : System.Address) return int; -- netdb.h:662 pragma Import (C, getaddrinfo, "getaddrinfo"); -- Free `addrinfo' structure AI including associated storage. procedure freeaddrinfo (uu_ai : access addrinfo); -- netdb.h:668 pragma Import (C, freeaddrinfo, "freeaddrinfo"); -- Convert error return from getaddrinfo() to a string. function gai_strerror (uu_ecode : int) return Interfaces.C.Strings.chars_ptr; -- netdb.h:671 pragma Import (C, gai_strerror, "gai_strerror"); -- Translate a socket address to a location and service name. -- This function is a possible cancellation point and therefore not -- marked with __THROW. function getnameinfo (uu_sa : access constant CUPS.bits_socket_h.sockaddr; uu_salen : CUPS.unistd_h.socklen_t; uu_host : Interfaces.C.Strings.chars_ptr; uu_hostlen : CUPS.unistd_h.socklen_t; uu_serv : Interfaces.C.Strings.chars_ptr; uu_servlen : CUPS.unistd_h.socklen_t; uu_flags : int) return int; -- netdb.h:677 pragma Import (C, getnameinfo, "getnameinfo"); -- Enqueue ENT requests from the LIST. If MODE is GAI_WAIT wait until all -- requests are handled. If WAIT is GAI_NOWAIT return immediately after -- queueing the requests and signal completion according to SIG. -- This function is not part of POSIX and therefore no official -- cancellation point. But due to similarity with an POSIX interface -- or due to the implementation it is a cancellation point and -- therefore not marked with __THROW. function getaddrinfo_a (uu_mode : int; uu_list : System.Address; uu_ent : int; uu_sig : access CUPS.bits_siginfo_h.sigevent) return int; -- netdb.h:692 pragma Import (C, getaddrinfo_a, "getaddrinfo_a"); -- Suspend execution of the thread until at least one of the ENT requests -- in LIST is handled. If TIMEOUT is not a null pointer it specifies the -- longest time the function keeps waiting before returning with an error. -- This function is not part of POSIX and therefore no official -- cancellation point. But due to similarity with an POSIX interface -- or due to the implementation it is a cancellation point and -- therefore not marked with __THROW. function gai_suspend (uu_list : System.Address; uu_ent : int; uu_timeout : access constant CUPS.time_h.timespec) return int; -- netdb.h:703 pragma Import (C, gai_suspend, "gai_suspend"); -- Get the error status of the request REQ. function gai_error (uu_req : access gaicb) return int; -- netdb.h:707 pragma Import (C, gai_error, "gai_error"); -- Cancel the requests associated with GAICBP. function gai_cancel (uu_gaicbp : access gaicb) return int; -- netdb.h:710 pragma Import (C, gai_cancel, "gai_cancel"); end CUPS.netdb_h;